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

.NET
Go
Java
Python
TypeScript