CfnPackageVersionPropsMixin

class aws_cdk.mixins_preview.aws_panorama.mixins.CfnPackageVersionPropsMixin(props, *, strategy=None)

Bases: Mixin

End of support notice: On May 31, 2026, AWS will end support for AWS Panorama .

After May 31, 2026, .. epigraph:

you will no longer be able to access the AWS Panorama console or AWS Panorama resources. For more information, see `AWS Panorama end of support <https://docs.aws.amazon.com/panorama/latest/dev/panorama-end-of-support.html>`_ .

Registers a package version.

see:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-packageversion.html

cloudformationResource:

AWS::Panorama::PackageVersion

mixin:

true

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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_panorama import mixins as panorama_mixins

cfn_package_version_props_mixin = panorama_mixins.CfnPackageVersionPropsMixin(panorama_mixins.CfnPackageVersionMixinProps(
    mark_latest=False,
    owner_account="ownerAccount",
    package_id="packageId",
    package_version="packageVersion",
    patch_version="patchVersion",
    updated_latest_patch_version="updatedLatestPatchVersion"
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::Panorama::PackageVersion.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['markLatest', 'ownerAccount', 'packageId', 'packageVersion', 'patchVersion', 'updatedLatestPatchVersion']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental