ComponentDataConfig
- class aws_cdk.aws_imagebuilder_alpha.ComponentDataConfig(*, data=None, uri=None)
Bases:
object(experimental) 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
- Parameters:
data (
Optional[str]) – (experimental) The rendered component data, for use in CloudFormation. Default: - none if uri is seturi (
Optional[str]) – (experimental) The rendered component data URI, for use in CloudFormation. Default: - none if data is set
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_imagebuilder_alpha as imagebuilder_alpha component_data_config = imagebuilder_alpha.ComponentDataConfig( data="data", uri="uri" )
Attributes
- data
(experimental) The rendered component data, for use in CloudFormation.
- Default:
none if uri is set
- Stability:
experimental
- uri
(experimental) The rendered component data URI, for use in CloudFormation.
- Default:
none if data is set
- Stability:
experimental