CfnPackageVersionMixinProps
- class aws_cdk.mixins_preview.aws_panorama.mixins.CfnPackageVersionMixinProps(*, mark_latest=None, owner_account=None, package_id=None, package_version=None, patch_version=None, updated_latest_patch_version=None)
Bases:
objectProperties for CfnPackageVersionPropsMixin.
- Parameters:
mark_latest (
Union[bool,IResolvable,None]) – Whether to mark the new version as the latest version.owner_account (
Optional[str]) – An owner account.package_id (
Optional[str]) – A package ID.package_version (
Optional[str]) – A package version.patch_version (
Optional[str]) – A patch version.updated_latest_patch_version (
Optional[str]) – If the version was marked latest, the new version to maker as latest.
- See:
- 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.aws_panorama import mixins as panorama_mixins cfn_package_version_mixin_props = panorama_mixins.CfnPackageVersionMixinProps( mark_latest=False, owner_account="ownerAccount", package_id="packageId", package_version="packageVersion", patch_version="patchVersion", updated_latest_patch_version="updatedLatestPatchVersion" )
Attributes
- mark_latest
Whether to mark the new version as the latest version.
- owner_account
An owner account.
- package_id
A package ID.
- package_version
A package version.
- patch_version
A patch version.
- updated_latest_patch_version
If the version was marked latest, the new version to maker as latest.