ActionCategory

class aws_cdk.aws_codepipeline.ActionCategory(value)

Bases: Enum

ExampleMetadata:

fixture=action infused

Example:

# MyAction is some action type that produces variables, like EcrSourceAction
my_action = MyAction(
    # ...
    action_name="myAction"
)
OtherAction(
    # ...
    config=my_action.variables.my_variable,
    action_name="otherAction"
)

Attributes

APPROVAL = 'APPROVAL'
BUILD = 'BUILD'
DEPLOY = 'DEPLOY'
INVOKE = 'INVOKE'
SOURCE = 'SOURCE'
TEST = 'TEST'