Interface CfnExtensionAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExtensionAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.485Z")
@Stability(Stable)
public interface CfnExtensionAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnExtensionAssociation
.
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.*; CfnExtensionAssociationProps cfnExtensionAssociationProps = CfnExtensionAssociationProps.builder() .extensionIdentifier("extensionIdentifier") .extensionVersionNumber(123) .parameters(Map.of( "parametersKey", "parameters")) .resourceIdentifier("resourceIdentifier") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExtensionAssociationProps
static final class
An implementation forCfnExtensionAssociationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name, the ID, or the Amazon Resource Name (ARN) of the extension.default Number
The version number of the extension.default Object
The parameter names and values defined in the extensions.default String
The ARN of an application, configuration profile, or environment.getTags()
Adds one or more tags for the specified extension association.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtensionIdentifier
The name, the ID, or the Amazon Resource Name (ARN) of the extension. -
getExtensionVersionNumber
The version number of the extension.If not specified, AWS AppConfig uses the maximum version of the extension.
-
getParameters
The parameter names and values defined in the extensions.Extension parameters marked
Required
must be entered for this field. -
getResourceIdentifier
The ARN of an application, configuration profile, or environment. -
getTags
Adds one or more tags for the specified extension association.Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.
-
builder
-