Interface CfnExtensionAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExtensionAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-11T23:26:28.263Z")
@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
Modifier 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.- 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
Required
must be entered for this field.- 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
-