Show / Hide Table of Contents

Class CfnConfigurationSetPropsMixin.TagsProperty

An object that defines the tags (keys and values) that you want to associate with the configuration set.

Inheritance
object
CfnConfigurationSetPropsMixin.TagsProperty
Implements
CfnConfigurationSetPropsMixin.ITagsProperty
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 CfnConfigurationSetPropsMixin.TagsProperty : CfnConfigurationSetPropsMixin.ITagsProperty
Syntax (vb)
Public Class CfnConfigurationSetPropsMixin.TagsProperty Implements CfnConfigurationSetPropsMixin.ITagsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-tags.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 tagsProperty = new TagsProperty {
                 Key = "key",
                 Value = "value"
             };

Synopsis

Constructors

TagsProperty()

An object that defines the tags (keys and values) that you want to associate with the configuration set.

Properties

Key

One part of a key-value pair that defines a tag.

Value

The optional part of a key-value pair that defines a tag.

Constructors

TagsProperty()

An object that defines the tags (keys and values) that you want to associate with the configuration set.

public TagsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-tags.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 tagsProperty = new TagsProperty {
                 Key = "key",
                 Value = "value"
             };

Properties

Key

One part of a key-value pair that defines a tag.

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

string

Remarks

The maximum length of a tag key is 128 characters. The minimum length is 1 character.

If you specify tags for the configuration set, then this value is required.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-tags.html#cfn-pinpointemail-configurationset-tags-key

Value

The optional part of a key-value pair that defines a tag.

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

string

Remarks

The maximum length of a tag value is 256 characters. The minimum length is 0 characters. If you don’t want a resource to have a specific tag value, don’t specify a value for this parameter. Amazon Pinpoint will set the value to an empty string.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpointemail-configurationset-tags.html#cfn-pinpointemail-configurationset-tags-value

Implements

CfnConfigurationSetPropsMixin.ITagsProperty
Back to top Generated by DocFX