Interface CfnExtensionAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExtensionAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:44.704Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExtensionAssociationPropsstatic final classAn implementation forCfnExtensionAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name, the ID, or the Amazon Resource Name (ARN) of the extension.default NumberThe version number of the extension.default ObjectThe parameter names and values defined in the extensions.default StringThe 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.- See Also:
-
getExtensionVersionNumber
The version number of the extension.If not specified, AWS AppConfig uses the maximum version of the extension.
- See Also:
-
getParameters
The parameter names and values defined in the extensions.Extension parameters marked
Requiredmust be entered for this field.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getResourceIdentifier
The ARN of an application, configuration profile, or environment.- See Also:
-
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.
- See Also:
-
builder
-