interface ComponentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ImageBuilder.ComponentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsimagebuilder#ComponentReference |
Java | software.amazon.awscdk.interfaces.imagebuilder.ComponentReference |
Python | aws_cdk.interfaces.aws_imagebuilder.ComponentReference |
TypeScript | aws-cdk-lib » interfaces » aws_imagebuilder » ComponentReference |
A reference to a Component resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as interfaces_aws_imagebuilder } from 'aws-cdk-lib/interfaces';
const componentReference: interfaces_aws_imagebuilder.ComponentReference = {
componentArn: 'componentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The Arn of the Component resource. |
componentArn
Type:
string
The Arn of the Component resource.

.NET
Go
Java
Python
TypeScript