WorkflowParameterValue

class aws_cdk.aws_imagebuilder_alpha.WorkflowParameterValue(value)

Bases: object

(experimental) The parameter value for a workflow parameter.

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_parameter_value = imagebuilder_alpha.WorkflowParameterValue.from_boolean(False)
Parameters:

value (Sequence[str])

Stability:

experimental

Attributes

value

(experimental) The rendered parameter value.

Stability:

experimental

Static Methods

classmethod from_boolean(value)

(experimental) The value of the parameter as a boolean.

Parameters:

value (bool) – The boolean value of the parameter.

Stability:

experimental

Return type:

WorkflowParameterValue

classmethod from_integer(value)

(experimental) The value of the parameter as an integer.

Parameters:

value (Union[int, float]) – The integer value of the parameter.

Stability:

experimental

Return type:

WorkflowParameterValue

classmethod from_string(value)

(experimental) The value of the parameter as a string.

Parameters:

value (str) – The string value of the parameter.

Stability:

experimental

Return type:

WorkflowParameterValue

classmethod from_string_list(values)

(experimental) The value of the parameter as a string list.

Parameters:

values (Sequence[str]) – The string list value of the parameter.

Stability:

experimental

Return type:

WorkflowParameterValue