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 . |
code_pipeline_name 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. |
wait_for_complete | Boolean | If set to true , the action will wait for the CodePipeline to finish. |
YAML example for AWS CodePipeline
yamlactions: - action: "Trigger AWS CodePipeline" type: "CODE_PIPELINE" region: "us-west-2" code_pipeline_name: "my_codepipeline_name" integration: "my_integration"
Last modified on Sep 24, 2024