Interface CfnImageRecipe.LatestVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnImageRecipe.LatestVersionProperty.Jsii$Proxy
- Enclosing class:
CfnImageRecipe
@Stability(Stable)
public static interface CfnImageRecipe.LatestVersionProperty
extends software.amazon.jsii.JsiiSerializable
The latest version references of the image recipe.
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.imagebuilder.*;
LatestVersionProperty latestVersionProperty = LatestVersionProperty.builder()
.arn("arn")
.major("major")
.minor("minor")
.patch("patch")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnImageRecipe.LatestVersionPropertystatic final classAn implementation forCfnImageRecipe.LatestVersionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetArn()The Amazon Resource Name (ARN) of the image recipe.default StringgetMajor()The latest version ARN of the created image recipe, with the same major version.default StringgetMinor()The latest version ARN of the created image recipe, with the same minor version.default StringgetPatch()The latest version ARN of the created image recipe, with the same patch version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The Amazon Resource Name (ARN) of the image recipe.- See Also:
-
getMajor
The latest version ARN of the created image recipe, with the same major version.- See Also:
-
getMinor
The latest version ARN of the created image recipe, with the same minor version.- See Also:
-
getPatch
The latest version ARN of the created image recipe, with the same patch version.- See Also:
-
builder
-