WorkflowDataConfig

class aws_cdk.aws_imagebuilder_alpha.WorkflowDataConfig(*, data=None, uri=None)

Bases: object

(experimental) The rendered workflow data value, for use in CloudFormation.

  • For inline workflows, data is the workflow text

  • For S3-backed workflows, uri is the S3 URL

Parameters:
  • data (Optional[str]) – (experimental) The rendered workflow data, for use in CloudFormation. Default: - none if uri is set

  • uri (Optional[str]) – (experimental) The rendered workflow 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

workflow_data_config = imagebuilder_alpha.WorkflowDataConfig(
    data="data",
    uri="uri"
)

Attributes

data

(experimental) The rendered workflow data, for use in CloudFormation.

Default:
  • none if uri is set

Stability:

experimental

uri

(experimental) The rendered workflow data URI, for use in CloudFormation.

Default:
  • none if data is set

Stability:

experimental