ExtensionReference
- class aws_cdk.aws_appconfig.ExtensionReference(*, extension_arn, extension_id)
Bases:
object
A reference to a Extension resource.
- Parameters:
extension_arn (
str
) – The ARN of the Extension resource.extension_id (
str
) – The Id of the Extension 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_reference = appconfig.ExtensionReference( extension_arn="extensionArn", extension_id="extensionId" )
Attributes
- extension_arn
The ARN of the Extension resource.
- extension_id
The Id of the Extension resource.