CfnAllWorkflowBuildVersionsPropsMixin

class aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin(props, *, strategy=None)

Bases: Mixin

Returns the list of workflow build versions for a specified workflow version ARN.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-allworkflowbuildversions.html

CloudformationResource:

AWS::ImageBuilder::AllWorkflowBuildVersions

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_imagebuilder as imagebuilder
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_all_workflow_build_versions_props_mixin = imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin(imagebuilder.CfnAllWorkflowBuildVersionsMixinProps(),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::ImageBuilder::AllWorkflowBuildVersions.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = []

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

ParametersItemsProperty

class CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty(*, default_value=None, description=None, name=None, type=None)

Bases: object

Parameters:
  • default_value (Optional[Sequence[str]]) – The default value of this parameter if no input is provided.

  • description (Optional[str]) – Describes this parameter.

  • name (Optional[str]) – The name of this input parameter.

  • type (Optional[str]) – The type of input this parameter provides.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-parametersitems.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_imagebuilder as imagebuilder

parameters_items_property = imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin.ParametersItemsProperty(
    default_value=["defaultValue"],
    description="description",
    name="name",
    type="type"
)

Attributes

default_value

The default value of this parameter if no input is provided.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-parametersitems.html#cfn-imagebuilder-allworkflowbuildversions-parametersitems-defaultvalue

description

Describes this parameter.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-parametersitems.html#cfn-imagebuilder-allworkflowbuildversions-parametersitems-description

name

The name of this input parameter.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-parametersitems.html#cfn-imagebuilder-allworkflowbuildversions-parametersitems-name

type

The type of input this parameter provides.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-parametersitems.html#cfn-imagebuilder-allworkflowbuildversions-parametersitems-type

TagsItemsProperty

class CfnAllWorkflowBuildVersionsPropsMixin.TagsItemsProperty(*, key=None, value=None)

Bases: object

Parameters:
  • key (Optional[str])

  • value (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-tagsitems.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_imagebuilder as imagebuilder

tags_items_property = imagebuilder.CfnAllWorkflowBuildVersionsPropsMixin.TagsItemsProperty(
    key="key",
    value="value"
)

Attributes

key

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-tagsitems.html#cfn-imagebuilder-allworkflowbuildversions-tagsitems-key

Type:

see

value

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-allworkflowbuildversions-tagsitems.html#cfn-imagebuilder-allworkflowbuildversions-tagsitems-value

Type:

see