Class CfnPackageVersionProps
Properties for defining a CfnPackageVersion
.
Inheritance
System.Object
CfnPackageVersionProps
Implements
Namespace: Amazon.CDK.AWS.Panorama
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPackageVersionProps : Object, ICfnPackageVersionProps
Syntax (vb)
Public Class CfnPackageVersionProps
Inherits Object
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
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()
public CfnPackageVersionProps()
Properties
MarkLatest
Whether to mark the new version as the latest version.
public object MarkLatest { get; set; }
Property Value
System.Object
Remarks
OwnerAccount
An owner account.
public string OwnerAccount { get; set; }
Property Value
System.String
Remarks
PackageId
A package ID.
public string PackageId { get; set; }
Property Value
System.String
Remarks
PackageVersion
A package version.
public string PackageVersion { get; set; }
Property Value
System.String
Remarks
PatchVersion
A patch version.
public string PatchVersion { get; set; }
Property Value
System.String
Remarks
UpdatedLatestPatchVersion
If the version was marked latest, the new version to maker as latest.
public string UpdatedLatestPatchVersion { get; set; }
Property Value
System.String