CfnExtensionAssociationProps
- class aws_cdk.aws_appconfig.CfnExtensionAssociationProps(*, extension_identifier=None, extension_version_number=None, parameters=None, resource_identifier=None, tags=None)
Bases:
object
Properties for defining a
CfnExtensionAssociation
.- Parameters:
extension_identifier (
Optional
[str
]) – The name, the ID, or the Amazon Resource Name (ARN) of the extension.extension_version_number (
Union
[int
,float
,None
]) – The version number of the extension. If not specified, AWS AppConfig uses the maximum version of the extension.parameters (
Union
[IResolvable
,Mapping
[str
,str
],None
]) – The parameter names and values defined in the extensions. Extension parameters markedRequired
must be entered for this field.resource_identifier (
Optional
[str
]) – The ARN of an application, configuration profile, or environment.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appconfig as appconfig cfn_extension_association_props = appconfig.CfnExtensionAssociationProps( extension_identifier="extensionIdentifier", extension_version_number=123, parameters={ "parameters_key": "parameters" }, resource_identifier="resourceIdentifier", tags=[CfnTag( key="key", value="value" )] )
Attributes
- extension_identifier
The name, the ID, or the Amazon Resource Name (ARN) of the extension.
- extension_version_number
The version number of the extension.
If not specified, AWS AppConfig uses the maximum version of the extension.
- parameters
The parameter names and values defined in the extensions.
Extension parameters marked
Required
must be entered for this field.
- resource_identifier
The ARN of an application, configuration profile, or environment.
- tags
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.