public static interface CfnCampaign.CustomDeliveryConfigurationProperty
This object is required if you use the CampaignCustomMessage
object to define the message to send for the campaign or campaign treatment.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.pinpoint.*; CustomDeliveryConfigurationProperty customDeliveryConfigurationProperty = CustomDeliveryConfigurationProperty.builder() .deliveryUri("deliveryUri") .endpointTypes(List.of("endpointTypes")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.CustomDeliveryConfigurationProperty.Builder
A builder for
CfnCampaign.CustomDeliveryConfigurationProperty |
static class |
CfnCampaign.CustomDeliveryConfigurationProperty.Jsii$Proxy
An implementation for
CfnCampaign.CustomDeliveryConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.CustomDeliveryConfigurationProperty.Builder |
builder() |
default java.lang.String |
getDeliveryUri()
The destination to send the campaign or treatment to.
|
default java.util.List<java.lang.String> |
getEndpointTypes()
The types of endpoints to send the campaign or treatment to.
|
default java.lang.String getDeliveryUri()
default java.util.List<java.lang.String> getEndpointTypes()
Each valid value maps to a type of channel that you can associate with an endpoint by using the ChannelType
property of an endpoint.
static CfnCampaign.CustomDeliveryConfigurationProperty.Builder builder()