Interface CfnDeploymentStrategy.TagsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentStrategy.TagsProperty.Jsii$Proxy
- Enclosing class:
CfnDeploymentStrategy
@Stability(Stable)
public static interface CfnDeploymentStrategy.TagsProperty
extends software.amazon.jsii.JsiiSerializable
Metadata to assign to the deployment strategy.
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appconfig.*;
TagsProperty tagsProperty = TagsProperty.builder()
.key("key")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeploymentStrategy.TagsPropertystatic final classAn implementation forCfnDeploymentStrategy.TagsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key-value string map.The valid character set is
[a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start withaws:.- See Also:
-
getValue
The tag value can be up to 256 characters.- See Also:
-
builder
-