Show / Hide Table of Contents

Class CfnCampaign.CustomDeliveryConfigurationProperty

Specifies the delivery configuration settings for sending a campaign or campaign treatment through a custom channel.

Inheritance
object
CfnCampaign.CustomDeliveryConfigurationProperty
Implements
CfnCampaign.ICustomDeliveryConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.CustomDeliveryConfigurationProperty : CfnCampaign.ICustomDeliveryConfigurationProperty
Syntax (vb)
Public Class CfnCampaign.CustomDeliveryConfigurationProperty Implements CfnCampaign.ICustomDeliveryConfigurationProperty
Remarks

This object is required if you use the CampaignCustomMessage object to define the message to send for the campaign or campaign treatment.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-customdeliveryconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var customDeliveryConfigurationProperty = new CustomDeliveryConfigurationProperty {
                 DeliveryUri = "deliveryUri",
                 EndpointTypes = new [] { "endpointTypes" }
             };

Synopsis

Constructors

CustomDeliveryConfigurationProperty()

Specifies the delivery configuration settings for sending a campaign or campaign treatment through a custom channel.

Properties

DeliveryUri

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

EndpointTypes

The types of endpoints to send the campaign or treatment to.

Constructors

CustomDeliveryConfigurationProperty()

Specifies the delivery configuration settings for sending a campaign or campaign treatment through a custom channel.

public CustomDeliveryConfigurationProperty()
Remarks

This object is required if you use the CampaignCustomMessage object to define the message to send for the campaign or campaign treatment.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-customdeliveryconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var customDeliveryConfigurationProperty = new CustomDeliveryConfigurationProperty {
                 DeliveryUri = "deliveryUri",
                 EndpointTypes = new [] { "endpointTypes" }
             };

Properties

DeliveryUri

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

public string? DeliveryUri { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-customdeliveryconfiguration.html#cfn-pinpoint-campaign-customdeliveryconfiguration-deliveryuri

    EndpointTypes

    The types of endpoints to send the campaign or treatment to.

    public string[]? EndpointTypes { get; set; }
    Property Value

    string[]

    Remarks

    Each valid value maps to a type of channel that you can associate with an endpoint by using the ChannelType property of an endpoint.

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-customdeliveryconfiguration.html#cfn-pinpoint-campaign-customdeliveryconfiguration-endpointtypes

    Implements

    CfnCampaign.ICustomDeliveryConfigurationProperty
    Back to top Generated by DocFX