Show / Hide Table of Contents

Interface ICloudWatchDimension

A CloudWatch dimension upon which to categorize your emails.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICloudWatchDimension
Syntax (vb)
Public Interface ICloudWatchDimension
Remarks

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.SES;

            var cloudWatchDimension = new CloudWatchDimension {
                DefaultValue = "defaultValue",
                Name = "name",
                Source = CloudWatchDimensionSource.EMAIL_HEADER
            };

Synopsis

Properties

DefaultValue

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

Name

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

Source

The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.

Properties

DefaultValue

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

string DefaultValue { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Name

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

string Name { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Source

The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.

CloudWatchDimensionSource Source { get; }
Property Value

CloudWatchDimensionSource

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX