PackageReference

class aws_cdk.aws_panorama.PackageReference(*, package_arn, package_id)

Bases: object

A 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 import aws_panorama as panorama

package_reference = 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.