interface LatestVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnWorkflow.LatestVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnWorkflow_LatestVersionProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnWorkflow.LatestVersionProperty |
Python | aws_cdk.aws_imagebuilder.CfnWorkflow.LatestVersionProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnWorkflow » LatestVersionProperty |
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 { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const latestVersionProperty: imagebuilder.CfnWorkflow.LatestVersionProperty = {
arn: 'arn',
major: 'major',
minor: 'minor',
patch: 'patch',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The latest version Amazon Resource Name (ARN) of the Image Builder resource. |
| major? | string | The latest version Amazon Resource Name (ARN) with the same major version of the Image Builder resource. |
| minor? | string | The latest version Amazon Resource Name (ARN) with the same minor version of the Image Builder resource. |
| patch? | string | The latest version Amazon Resource Name (ARN) with the same patch version of the Image Builder resource. |
arn?
Type:
string
(optional)
The latest version Amazon Resource Name (ARN) of the Image Builder resource.
major?
Type:
string
(optional)
The latest version Amazon Resource Name (ARN) with the same major version of the Image Builder resource.
minor?
Type:
string
(optional)
The latest version Amazon Resource Name (ARN) with the same minor version of the Image Builder resource.
patch?
Type:
string
(optional)
The latest version Amazon Resource Name (ARN) with the same patch version of the Image Builder resource.

.NET
Go
Java
Python
TypeScript