ExtensionAssociationReference

class aws_cdk.aws_appconfig.ExtensionAssociationReference(*, extension_association_arn, extension_association_id)

Bases: object

A reference to a ExtensionAssociation resource.

Parameters:
  • extension_association_arn (str) – The ARN of the ExtensionAssociation resource.

  • extension_association_id (str) – The Id of the ExtensionAssociation resource.

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

extension_association_reference = appconfig.ExtensionAssociationReference(
    extension_association_arn="extensionAssociationArn",
    extension_association_id="extensionAssociationId"
)

Attributes

extension_association_arn

The ARN of the ExtensionAssociation resource.

extension_association_id

The Id of the ExtensionAssociation resource.