AwsManagedWorkflowAttributes

class aws_cdk.aws_imagebuilder_alpha.AwsManagedWorkflowAttributes(*, workflow_name, workflow_type)

Bases: object

(experimental) Properties for an EC2 Image Builder AWS-managed workflow.

Parameters:
  • workflow_name (str) – (experimental) The name of the AWS-managed workflow.

  • workflow_type (WorkflowType) – (experimental) The type of the AWS-managed workflow.

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

aws_managed_workflow_attributes = imagebuilder_alpha.AwsManagedWorkflowAttributes(
    workflow_name="workflowName",
    workflow_type=imagebuilder_alpha.WorkflowType.BUILD
)

Attributes

workflow_name

(experimental) The name of the AWS-managed workflow.

Stability:

experimental

workflow_type

(experimental) The type of the AWS-managed workflow.

Stability:

experimental