ApplicationReference
- class aws_cdk.interfaces.aws_refactorspaces.ApplicationReference(*, application_arn, application_identifier, environment_identifier)
Bases:
objectA reference to a Application resource.
- Parameters:
application_arn (
str) – The ARN of the Application resource.application_identifier (
str) – The ApplicationIdentifier of the Application resource.environment_identifier (
str) – The EnvironmentIdentifier of the Application 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.interfaces import aws_refactorspaces as interfaces_aws_refactorspaces application_reference = interfaces_aws_refactorspaces.ApplicationReference( application_arn="applicationArn", application_identifier="applicationIdentifier", environment_identifier="environmentIdentifier" )
Attributes
- application_arn
The ARN of the Application resource.
- application_identifier
The ApplicationIdentifier of the Application resource.
- environment_identifier
The EnvironmentIdentifier of the Application resource.