Interface CfnExtensionAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExtensionAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.570Z")
@Stability(Stable)
public interface CfnExtensionAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnExtensionAssociationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appconfig.*;
CfnExtensionAssociationMixinProps cfnExtensionAssociationMixinProps = CfnExtensionAssociationMixinProps.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 forCfnExtensionAssociationMixinPropsstatic final classAn implementation forCfnExtensionAssociationMixinProps -
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
-