ApplicationInstanceReference
- class aws_cdk.aws_panorama.ApplicationInstanceReference(*, application_instance_arn, application_instance_id)
Bases:
object
A reference to a ApplicationInstance resource.
- Parameters:
application_instance_arn (
str
) – The ARN of the ApplicationInstance resource.application_instance_id (
str
) – The ApplicationInstanceId of the ApplicationInstance 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_panorama as panorama application_instance_reference = panorama.ApplicationInstanceReference( application_instance_arn="applicationInstanceArn", application_instance_id="applicationInstanceId" )
Attributes
- application_instance_arn
The ARN of the ApplicationInstance resource.
- application_instance_id
The ApplicationInstanceId of the ApplicationInstance resource.