interface ApplicationInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Panorama.ApplicationInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspanorama#ApplicationInstanceReference |
Java | software.amazon.awscdk.interfaces.panorama.ApplicationInstanceReference |
Python | aws_cdk.interfaces.aws_panorama.ApplicationInstanceReference |
TypeScript | aws-cdk-lib » interfaces » aws_panorama » ApplicationInstanceReference |
A reference to a ApplicationInstance resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_panorama as interfaces_aws_panorama } from 'aws-cdk-lib/interfaces';
const applicationInstanceReference: interfaces_aws_panorama.ApplicationInstanceReference = {
applicationInstanceArn: 'applicationInstanceArn',
applicationInstanceId: 'applicationInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the ApplicationInstance resource. |
| application | string | The ApplicationInstanceId of the ApplicationInstance resource. |
applicationInstanceArn
Type:
string
The ARN of the ApplicationInstance resource.
applicationInstanceId
Type:
string
The ApplicationInstanceId of the ApplicationInstance resource.

.NET
Go
Java
Python
TypeScript