PackageReference
- class aws_cdk.interfaces.aws_panorama.PackageReference(*, package_arn, package_id)
Bases:
objectA reference to a Package resource.
- Parameters:
package_arn (
str) – The ARN of the Package resource.package_id (
str) – The PackageId of the Package 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_aws_panorama package_reference = interfaces_aws_panorama.PackageReference( package_arn="packageArn", package_id="packageId" )
Attributes
- package_arn
The ARN of the Package resource.
- package_id
The PackageId of the Package resource.