interface ComponentAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ComponentAttributes |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ComponentAttributes |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ComponentAttributes |
Python | aws_cdk.aws_imagebuilder_alpha.ComponentAttributes |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ComponentAttributes |
Properties for an EC2 Image Builder component.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
const componentAttributes: imagebuilder_alpha.ComponentAttributes = {
componentArn: 'componentArn',
componentName: 'componentName',
componentVersion: 'componentVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The ARN of the component. |
| component | string | The name of the component. |
| component | string | The version of the component. |
componentArn?
Type:
string
(optional, default: the ARN is automatically constructed if a componentName is provided, otherwise a componentArn is
required)
The ARN of the component.
componentName?
Type:
string
(optional, default: the name is automatically constructed if a componentArn is provided, otherwise a componentName is
required)
The name of the component.
componentVersion?
Type:
string
(optional, default: the latest version of the component, x.x.x)
The version of the component.

.NET
Go
Java
Python
TypeScript (