Class CfnConfigurationSetEventDestination.CloudWatchDestinationProperty
An object that defines an Amazon CloudWatch destination for email events.
Inherited Members
Namespace: Amazon.CDK.AWS.PinpointEmail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfigurationSetEventDestination.CloudWatchDestinationProperty : CfnConfigurationSetEventDestination.ICloudWatchDestinationProperty
Syntax (vb)
Public Class CfnConfigurationSetEventDestination.CloudWatchDestinationProperty Implements CfnConfigurationSetEventDestination.ICloudWatchDestinationProperty
Remarks
You can use Amazon CloudWatch to monitor and gain insights on your email sending metrics.
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.PinpointEmail;
var cloudWatchDestinationProperty = new CloudWatchDestinationProperty {
DimensionConfigurations = new [] { new DimensionConfigurationProperty {
DefaultDimensionValue = "defaultDimensionValue",
DimensionName = "dimensionName",
DimensionValueSource = "dimensionValueSource"
} }
};
Synopsis
Constructors
CloudWatchDestinationProperty() | An object that defines an Amazon CloudWatch destination for email events. |
Properties
DimensionConfigurations | An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch. |
Constructors
CloudWatchDestinationProperty()
An object that defines an Amazon CloudWatch destination for email events.
public CloudWatchDestinationProperty()
Remarks
You can use Amazon CloudWatch to monitor and gain insights on your email sending metrics.
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.PinpointEmail;
var cloudWatchDestinationProperty = new CloudWatchDestinationProperty {
DimensionConfigurations = new [] { new DimensionConfigurationProperty {
DefaultDimensionValue = "defaultDimensionValue",
DimensionName = "dimensionName",
DimensionValueSource = "dimensionValueSource"
} }
};
Properties
DimensionConfigurations
An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch.
public object? DimensionConfigurations { get; set; }