Show / Hide Table of Contents

Class CfnConfigurationSetEventDestinationPropsMixin.DimensionConfigurationProperty

An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch.

Inheritance
object
CfnConfigurationSetEventDestinationPropsMixin.DimensionConfigurationProperty
Implements
CfnConfigurationSetEventDestinationPropsMixin.IDimensionConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.PinpointEmail
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConfigurationSetEventDestinationPropsMixin.DimensionConfigurationProperty : CfnConfigurationSetEventDestinationPropsMixin.IDimensionConfigurationProperty
Syntax (vb)
Public Class CfnConfigurationSetEventDestinationPropsMixin.DimensionConfigurationProperty Implements CfnConfigurationSetEventDestinationPropsMixin.IDimensionConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-dimensionconfiguration.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.CfnPropertyMixins.AWS.PinpointEmail;

             var dimensionConfigurationProperty = new DimensionConfigurationProperty {
                 DefaultDimensionValue = "defaultDimensionValue",
                 DimensionName = "dimensionName",
                 DimensionValueSource = "dimensionValueSource"
             };

Synopsis

Constructors

DimensionConfigurationProperty()

An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch.

Properties

DefaultDimensionValue

The default value of the dimension that is published to Amazon CloudWatch if you don't provide the value of the dimension when you send an email.

DimensionName

The name of an Amazon CloudWatch dimension associated with an email sending metric.

DimensionValueSource

The location where Amazon Pinpoint finds the value of a dimension to publish to Amazon CloudWatch.

Constructors

DimensionConfigurationProperty()

An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch.

public DimensionConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-dimensionconfiguration.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.CfnPropertyMixins.AWS.PinpointEmail;

             var dimensionConfigurationProperty = new DimensionConfigurationProperty {
                 DefaultDimensionValue = "defaultDimensionValue",
                 DimensionName = "dimensionName",
                 DimensionValueSource = "dimensionValueSource"
             };

Properties

DefaultDimensionValue

The default value of the dimension that is published to Amazon CloudWatch if you don't provide the value of the dimension when you send an email.

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

string

Remarks

This value has to meet the following criteria:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-dimensionconfiguration.html#cfn-pinpointemail-configurationseteventdestination-dimensionconfiguration-defaultdimensionvalue

    DimensionName

    The name of an Amazon CloudWatch dimension associated with an email sending metric.

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

    string

    Remarks

    The name has to meet the following criteria:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-dimensionconfiguration.html#cfn-pinpointemail-configurationseteventdestination-dimensionconfiguration-dimensionname

      DimensionValueSource

      The location where Amazon Pinpoint finds the value of a dimension to publish to Amazon CloudWatch.

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

      string

      Remarks

      Acceptable values: MESSAGE_TAG , EMAIL_HEADER , and LINK_TAG .

      If you want Amazon Pinpoint to use the message tags that you specify using an X-SES-MESSAGE-TAGS header or a parameter to the SendEmail API, choose MESSAGE_TAG . If you want Amazon Pinpoint to use your own email headers, choose EMAIL_HEADER . If you want Amazon Pinpoint to use tags that are specified in your links, choose LINK_TAG .

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationseteventdestination-dimensionconfiguration.html#cfn-pinpointemail-configurationseteventdestination-dimensionconfiguration-dimensionvaluesource

      Implements

      CfnConfigurationSetEventDestinationPropsMixin.IDimensionConfigurationProperty
      Back to top Generated by DocFX