interface PackageReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Panorama.PackageReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspanorama#PackageReference |
Java | software.amazon.awscdk.interfaces.panorama.PackageReference |
Python | aws_cdk.interfaces.aws_panorama.PackageReference |
TypeScript | aws-cdk-lib » interfaces » aws_panorama » PackageReference |
A reference to a Package 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_panorama } from 'aws-cdk-lib/interfaces';
const packageReference: interfaces_panorama.PackageReference = {
packageArn: 'packageArn',
packageId: 'packageId',
};
Properties
| Name | Type | Description |
|---|---|---|
| package | string | The ARN of the Package resource. |
| package | string | The PackageId of the Package resource. |
packageArn
Type:
string
The ARN of the Package resource.
packageId
Type:
string
The PackageId of the Package resource.

.NET
Go
Java
Python
TypeScript