PackageVersionReference

class aws_cdk.aws_panorama.PackageVersionReference(*, package_id, package_version, patch_version)

Bases: object

A reference to a PackageVersion resource.

Parameters:
  • package_id (str) – The PackageId of the PackageVersion resource.

  • package_version (str) – The PackageVersion of the PackageVersion resource.

  • patch_version (str) – The PatchVersion of the PackageVersion 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_version_reference = panorama.PackageVersionReference(
    package_id="packageId",
    package_version="packageVersion",
    patch_version="patchVersion"
)

Attributes

package_id

The PackageId of the PackageVersion resource.

package_version

The PackageVersion of the PackageVersion resource.

patch_version

The PatchVersion of the PackageVersion resource.