interface CfnPackageVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Panorama.CfnPackageVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspanorama#CfnPackageVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.panorama.CfnPackageVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_panorama.CfnPackageVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_panorama » CfnPackageVersionMixinProps |
Properties for CfnPackageVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_panorama as panorama } from '@aws-cdk/cfn-property-mixins';
const cfnPackageVersionMixinProps: panorama.CfnPackageVersionMixinProps = {
markLatest: false,
ownerAccount: 'ownerAccount',
packageId: 'packageId',
packageVersion: 'packageVersion',
patchVersion: 'patchVersion',
updatedLatestPatchVersion: 'updatedLatestPatchVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| mark | boolean | IResolvable | Whether to mark the new version as the latest version. |
| owner | string | An owner account. |
| package | string | A package ID. |
| package | string | A package version. |
| patch | string | A patch version. |
| updated | string | If the version was marked latest, the new version to maker as latest. |
markLatest?
Type:
boolean | IResolvable
(optional)
Whether to mark the new version as the latest version.
ownerAccount?
Type:
string
(optional)
An owner account.
packageId?
Type:
string
(optional)
A package ID.
packageVersion?
Type:
string
(optional)
A package version.
patchVersion?
Type:
string
(optional)
A patch version.
updatedLatestPatchVersion?
Type:
string
(optional)
If the version was marked latest, the new version to maker as latest.

.NET
Go
Java
Python
TypeScript