interface AmazonManagedComponentAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.AmazonManagedComponentAttributes |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#AmazonManagedComponentAttributes |
Java | software.amazon.awscdk.services.imagebuilder.alpha.AmazonManagedComponentAttributes |
Python | aws_cdk.aws_imagebuilder_alpha.AmazonManagedComponentAttributes |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป AmazonManagedComponentAttributes |
Properties for an EC2 Image Builder Amazon-managed 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 amazonManagedComponentAttributes: imagebuilder_alpha.AmazonManagedComponentAttributes = {
componentName: 'componentName',
// the properties below are optional
componentVersion: 'componentVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The name of the Amazon-managed component. |
| component | string | The version of the Amazon-managed component. |
componentName
Type:
string
The name of the Amazon-managed component.
componentVersion?
Type:
string
(optional, default: the latest version of the component, x.x.x)
The version of the Amazon-managed component.

.NET
Go
Java
Python
TypeScript (