API Reference
    Preparing search index...

    Variable ConnectOutboundCampaignsSchemaConst

    ConnectOutboundCampaignsSchema: ZodObject<
        {
            InvocationMetadata: ZodObject<
                {
                    CampaignContext: ZodObject<
                        {
                            ActionId: ZodString;
                            CampaignId: ZodString;
                            CampaignName: ZodString;
                            RunId: ZodString;
                        },
                        $strip,
                    >;
                },
                $strip,
            >;
            Items: ZodObject<
                {
                    CustomerProfiles: ZodArray<
                        ZodObject<
                            {
                                CustomerData: ZodString;
                                IdempotencyToken: ZodString;
                                ProfileId: ZodString;
                            },
                            $strip,
                        >,
                    >;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    Zod schema for Amazon Connect Outbound Campaigns custom action events.

    {
    "InvocationMetadata": {
    "CampaignContext": {
    "CampaignId": "campaign-12345",
    "RunId": "run-67890",
    "ActionId": "activity-abc123",
    "CampaignName": "Welcome Campaign"
    }
    },
    "Items": {
    "CustomerProfiles": [
    {
    "ProfileId": "customer-001",
    "CustomerData": "{\"firstName\":\"John\",\"lastName\":\"Doe\",\"email\":\"john.doe@example.com\"}",
    "IdempotencyToken": "token-xyz789"
    }
    ]
    }
    }