@Stability(value=Stable)
public static interface CfnCampaign.CustomDeliveryConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getDeliveryUri()
The destination to send the campaign or treatment to.
|
default List<String> |
getEndpointTypes()
The types of endpoints to send the campaign or treatment to.
|
@Stability(value=Stable) @Nullable default String getDeliveryUri()
@Stability(value=Stable) @Nullable default List<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.
@Stability(value=Stable) static CfnCampaign.CustomDeliveryConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.