Show / Hide Table of Contents

Interface CfnDeploymentStrategy.ITagsProperty

Metadata to assign to the deployment strategy.

Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.AWS.AppConfig.dll
Syntax (csharp)
public interface ITagsProperty
Syntax (vb)
Public Interface ITagsProperty
Remarks

Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-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.AWS.AppConfig;

TagsProperty tagsProperty = new TagsProperty {
    Key = "key",
    Value = "value"
};

Synopsis

Properties

Key

The key-value string map.

Value

The tag value can be up to 256 characters.

Properties

Key

The key-value string map.

virtual string Key { get; }
Property Value

System.String

Remarks

The valid character set is [a-zA-Z+-=._:/] . The tag key can be up to 128 characters and must not start with aws: .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-tags.html#cfn-appconfig-deploymentstrategy-tags-key

Value

The tag value can be up to 256 characters.

virtual string Value { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-tags.html#cfn-appconfig-deploymentstrategy-tags-value

Back to top Generated by DocFX