Class CfnPackageVersionProps
Properties for defining a CfnPackageVersion.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Panorama
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPackageVersionProps : ICfnPackageVersionProps
Syntax (vb)
Public Class CfnPackageVersionProps Implements ICfnPackageVersionProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Panorama;
var cfnPackageVersionProps = new CfnPackageVersionProps {
PackageId = "packageId",
PackageVersion = "packageVersion",
PatchVersion = "patchVersion",
// the properties below are optional
MarkLatest = false,
OwnerAccount = "ownerAccount",
UpdatedLatestPatchVersion = "updatedLatestPatchVersion"
};
Synopsis
Constructors
| CfnPackageVersionProps() | Properties for defining a |
Properties
| MarkLatest | Whether to mark the new version as the latest version. |
| OwnerAccount | An owner account. |
| PackageId | A package ID. |
| PackageVersion | A package version. |
| PatchVersion | A patch version. |
| UpdatedLatestPatchVersion | If the version was marked latest, the new version to maker as latest. |
Constructors
CfnPackageVersionProps()
Properties for defining a CfnPackageVersion.
public CfnPackageVersionProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Panorama;
var cfnPackageVersionProps = new CfnPackageVersionProps {
PackageId = "packageId",
PackageVersion = "packageVersion",
PatchVersion = "patchVersion",
// the properties below are optional
MarkLatest = false,
OwnerAccount = "ownerAccount",
UpdatedLatestPatchVersion = "updatedLatestPatchVersion"
};
Properties
MarkLatest
Whether to mark the new version as the latest version.
public object? MarkLatest { get; set; }
Property Value
Remarks
OwnerAccount
An owner account.
public string? OwnerAccount { get; set; }
Property Value
Remarks
PackageId
A package ID.
public string PackageId { get; set; }
Property Value
Remarks
PackageVersion
A package version.
public string PackageVersion { get; set; }
Property Value
Remarks
PatchVersion
A patch version.
public string PatchVersion { get; set; }
Property Value
Remarks
UpdatedLatestPatchVersion
If the version was marked latest, the new version to maker as latest.
public string? UpdatedLatestPatchVersion { get; set; }