ApplicationReference
- class aws_cdk.aws_refactorspaces.ApplicationReference(*, application_arn, application_identifier, environment_identifier)
Bases:
object
A 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 import aws_refactorspaces as refactorspaces application_reference = 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.