Interface CfnPackageVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackageVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:34.711Z")
@Stability(Stable)
public interface CfnPackageVersionProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.panorama.*; CfnPackageVersionProps cfnPackageVersionProps = CfnPackageVersionProps.builder() .packageId("packageId") .packageVersion("packageVersion") .patchVersion("patchVersion") // the properties below are optional .markLatest(false) .ownerAccount("ownerAccount") .updatedLatestPatchVersion("updatedLatestPatchVersion") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPackageVersionProps
static final class
An implementation forCfnPackageVersionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPackageId
A package ID.- See Also:
-
getPackageVersion
A package version.- See Also:
-
getPatchVersion
A patch version.- See Also:
-
getMarkLatest
Whether to mark the new version as the latest version.- See Also:
-
getOwnerAccount
An owner account.- See Also:
-
getUpdatedLatestPatchVersion
If the version was marked latest, the new version to maker as latest.- See Also:
-
builder
- Returns:
- a
CfnPackageVersionProps.Builder
ofCfnPackageVersionProps
-