SoftwarePackageVersionReference

class aws_cdk.aws_iot.SoftwarePackageVersionReference(*, package_name, version_name)

Bases: object

A reference to a SoftwarePackageVersion resource.

Parameters:
  • package_name (str) – The PackageName of the SoftwarePackageVersion resource.

  • version_name (str) – The VersionName of the SoftwarePackageVersion 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_iot as iot

software_package_version_reference = iot.SoftwarePackageVersionReference(
    package_name="packageName",
    version_name="versionName"
)

Attributes

package_name

The PackageName of the SoftwarePackageVersion resource.

version_name

The VersionName of the SoftwarePackageVersion resource.