interface ComponentDataConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.ComponentDataConfig |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#ComponentDataConfig |
Java | software.amazon.awscdk.services.imagebuilder.alpha.ComponentDataConfig |
Python | aws_cdk.aws_imagebuilder_alpha.ComponentDataConfig |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป ComponentDataConfig |
Obtainable from
Component.render(), S3.render()
The rendered component data value, for use in CloudFormation.
- For inline components, data is the component text
- For S3-backed components, uri is the S3 URL
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 componentDataConfig: imagebuilder_alpha.ComponentDataConfig = {
data: 'data',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | The rendered component data, for use in CloudFormation. |
| uri? | string | The rendered component data URI, for use in CloudFormation. |
data?
Type:
string
(optional, default: none if uri is set)
The rendered component data, for use in CloudFormation.
uri?
Type:
string
(optional, default: none if data is set)
The rendered component data URI, for use in CloudFormation.

.NET
Go
Java
Python
TypeScript (