interface CustomDeliveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnCampaign.CustomDeliveryConfigurationProperty |
Java | software.amazon.awscdk.services.pinpoint.CfnCampaign.CustomDeliveryConfigurationProperty |
Python | aws_cdk.aws_pinpoint.CfnCampaign.CustomDeliveryConfigurationProperty |
TypeScript | @aws-cdk/aws-pinpoint » CfnCampaign » CustomDeliveryConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpoint from '@aws-cdk/aws-pinpoint';
const customDeliveryConfigurationProperty: pinpoint.CfnCampaign.CustomDeliveryConfigurationProperty = {
deliveryUri: 'deliveryUri',
endpointTypes: ['endpointTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | string | CfnCampaign.CustomDeliveryConfigurationProperty.DeliveryUri. |
| endpoint | string[] | CfnCampaign.CustomDeliveryConfigurationProperty.EndpointTypes. |
deliveryUri?
Type:
string
(optional)
CfnCampaign.CustomDeliveryConfigurationProperty.DeliveryUri.
endpointTypes?
Type:
string[]
(optional)
CfnCampaign.CustomDeliveryConfigurationProperty.EndpointTypes.

.NET
Java
Python
TypeScript