AWS CodePipeline with YAML

YAML parameters for AWS CodePipeline

Name Type Description
action Required String The name of the action.
type Required String The type of the action. Must be set to CODE_PIPELINE.
codepipelinename Required String The name of the AWS CodePipeline pipeline triggered by the action.
region Required String The Amazon region.
integration Required String The ID of the integration.
waitforcomplete Boolean If set to true, the action will wait for the CodePipeline to finish.

YAML example for AWS CodePipeline

yaml
actions: - action: "Trigger AWS CodePipeline" type: "CODE_PIPELINE" region: "us-west-2" code_pipeline_name: "my_codepipeline_name" integration: "my_integration"

Last modified on Mar 4, 2025