Variable AppSyncEventsInfoSchemaConst
AppSyncEventsInfoSchema: ZodObject<
{
channel: ZodObject<
{ path: ZodString; segments: ZodArray<ZodString> },
$strip,
>;
channelNamespace: ZodObject<{ name: ZodString }, $strip>;
operation: ZodUnion<
readonly [ZodLiteral<"PUBLISH">, ZodLiteral<"SUBSCRIBE">],
>;
},
$strip,
> = ...
A zod schema for AppSync Events info object.
This schema is used when extending subscribe and publish events.