Interface CfnContainerRecipe.LatestVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContainerRecipe.LatestVersionProperty.Jsii$Proxy
- Enclosing class:
CfnContainerRecipe
@Stability(Stable)
public static interface CfnContainerRecipe.LatestVersionProperty
extends software.amazon.jsii.JsiiSerializable
The resource ARNs with different wildcard variations of semantic versioning.
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 forCfnContainerRecipe.LatestVersionPropertystatic final classAn implementation forCfnContainerRecipe.LatestVersionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetArn()The latest version Amazon Resource Name (ARN) of the Image Builder resource.default StringgetMajor()The latest version Amazon Resource Name (ARN) with the samemajorversion of the Image Builder resource.default StringgetMinor()The latest version Amazon Resource Name (ARN) with the sameminorversion of the Image Builder resource.default StringgetPatch()The latest version Amazon Resource Name (ARN) with the samepatchversion of the Image Builder resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The latest version Amazon Resource Name (ARN) of the Image Builder resource.- See Also:
-
getMajor
The latest version Amazon Resource Name (ARN) with the samemajorversion of the Image Builder resource.- See Also:
-
getMinor
The latest version Amazon Resource Name (ARN) with the sameminorversion of the Image Builder resource.- See Also:
-
getPatch
The latest version Amazon Resource Name (ARN) with the samepatchversion of the Image Builder resource.- See Also:
-
builder
-