interface LatestVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnWorkflowPropsMixin.LatestVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnWorkflowPropsMixin_LatestVersionProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnWorkflowPropsMixin.LatestVersionProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnWorkflowPropsMixin.LatestVersionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnWorkflowPropsMixin » 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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const latestVersionProperty: imagebuilder_mixins.CfnWorkflowPropsMixin.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