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