ActionCategory
- class aws_cdk.aws_codepipeline.ActionCategory(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
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'