{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-custom-delivery-configuration-schema.json", "title": "CustomDeliveryConfiguration", "description": "Specifies the delivery configuration settings for sending a campaign or campaign treatment through a custom channel. This object is required if you use the CampaignCustomMessage object to define the message to send for the campaign or campaign treatment.", "type": "object", "properties": { "DeliveryUri": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "

The destination to send the campaign or treatment to. This value can be one of the following:

" } ] }, "EndpointTypes": { "allOf": [ { "$ref": "#/components/schemas/ListOf__EndpointTypesElement" }, { "description": "The types of endpoints to send the campaign or treatment to. Each valid value maps to a type of channel that you can associate with an endpoint by using the ChannelType property of an endpoint." } ] } }, "required": [ "DeliveryUri" ] }