aws-cdk-lib.aws_panorama.CfnPackageVersionProps

interface CfnPackageVersionProps

LanguageType name
.NETAmazon.CDK.AWS.Panorama.CfnPackageVersionProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspanorama#CfnPackageVersionProps
Javasoftware.amazon.awscdk.services.panorama.CfnPackageVersionProps
Pythonaws_cdk.aws_panorama.CfnPackageVersionProps
TypeScript aws-cdk-lib » aws_panorama » CfnPackageVersionProps

Properties for defining a CfnPackageVersion.

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-lib';
const cfnPackageVersionProps: panorama.CfnPackageVersionProps = {
  packageId: 'packageId',
  packageVersion: 'packageVersion',
  patchVersion: 'patchVersion',

  // the properties below are optional
  markLatest: false,
  ownerAccount: 'ownerAccount',
  updatedLatestPatchVersion: 'updatedLatestPatchVersion',
};

Properties

NameTypeDescription
packageIdstringA package ID.
packageVersionstringA package version.
patchVersionstringA patch version.
markLatest?boolean | IResolvableWhether to mark the new version as the latest version.
ownerAccount?stringAn owner account.
updatedLatestPatchVersion?stringIf the version was marked latest, the new version to maker as latest.

packageId

Type: string

A package ID.


packageVersion

Type: string

A package version.


patchVersion

Type: string

A patch version.


markLatest?

Type: boolean | IResolvable (optional)

Whether to mark the new version as the latest version.


ownerAccount?

Type: string (optional)

An owner account.


updatedLatestPatchVersion?

Type: string (optional)

If the version was marked latest, the new version to maker as latest.