Interface CfnComponent.LatestVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponent.LatestVersionProperty.Jsii$Proxy
- Enclosing class:
CfnComponent
@Stability(Stable)
public static interface CfnComponent.LatestVersionProperty
extends software.amazon.jsii.JsiiSerializable
The latest version references of the component.
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 forCfnComponent.LatestVersionPropertystatic final classAn implementation forCfnComponent.LatestVersionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetArn()The Amazon Resource Name (ARN) of the component.default StringgetMajor()The latest version ARN of the created component, with the same major version.default StringgetMinor()The latest version ARN of the created component, with the same minor version.default StringgetPatch()The latest version ARN of the created component, 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 component.- See Also:
-
getMajor
The latest version ARN of the created component, with the same major version.- See Also:
-
getMinor
The latest version ARN of the created component, with the same minor version.- See Also:
-
getPatch
The latest version ARN of the created component, with the same patch version.- See Also:
-
builder
-