Variable CloudWatchLogsDecodeSchemaConst
CloudWatchLogsDecodeSchema: ZodObject<
{
logEvents: ZodArray<
ZodObject<
{ id: ZodString; message: ZodString; timestamp: ZodNumber },
"strip",
ZodTypeAny,
{ id: string; message: string; timestamp: number },
{ id: string; message: string; timestamp: number },
>,
"many",
>;
logGroup: ZodString;
logStream: ZodString;
messageType: ZodString;
owner: ZodString;
subscriptionFilters: ZodArray<ZodString, "many">;
},
"strip",
ZodTypeAny,
{
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[];
},
> = ...