Interface CfnCampaign.CustomDeliveryConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.CustomDeliveryConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.CustomDeliveryConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.CustomDeliveryConfigurationPropertystatic final classAn implementation forCfnCampaign.CustomDeliveryConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeliveryUri
The destination to send the campaign or treatment to. This value can be one of the following:.- The name or Amazon Resource Name (ARN) of an AWS Lambda function to invoke to handle delivery of the campaign or treatment.
- The URL for a web application or service that supports HTTPS and can receive the message. The URL has to be a full URL, including the HTTPS protocol.
- See Also:
-
getEndpointTypes
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
ChannelTypeproperty of an endpoint.- See Also:
-
builder
-