ApplicationInstanceReference
- class aws_cdk.interfaces.aws_panorama.ApplicationInstanceReference(*, application_instance_arn, application_instance_id)
Bases:
objectA 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.interfaces import aws_panorama as interfaces_panorama application_instance_reference = interfaces_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.