Variable CloudWatchLogsDecodeSchemaConst
CloudWatchLogsDecodeSchema: ZodObject<
{
logEvents: ZodArray<
ZodObject<
{ id: ZodString; message: ZodString; timestamp: ZodNumber },
"strip",
{ id: string; message: string; timestamp: number },
{ id: string; message: string; timestamp: number },
>,
>;
logGroup: ZodString;
logStream: ZodString;
messageType: ZodString;
owner: ZodString;
subscriptionFilters: ZodArray<ZodString>;
},
"strip",
{
logEvents: { id: string; message: string; timestamp: number }[];
logGroup: string;
logStream: string;
messageType: string;
owner: string;
subscriptionFilters: string[];
},
{
logEvents: { id: string; message: string; timestamp: number }[];
logGroup: string;
logStream: string;
messageType: string;
owner: string;
subscriptionFilters: string[];
},
> = ...