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 marked Required 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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-extensionidentifier

extension_version_number

The version number of the extension.

If not specified, AWS AppConfig uses the maximum version of the extension.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-extensionversionnumber

parameters

The parameter names and values defined in the extensions.

Extension parameters marked Required must be entered for this field.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-parameters

resource_identifier

The ARN of an application, configuration profile, or environment.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-resourceidentifier

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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-tags