pipeline_tags
Expands all tag keys and values for pipelines
in a region
Overview
Name | pipeline_tags |
Type | Resource |
Description | The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process. |
Id | aws.codepipeline.pipeline_tags |
Fields
Name | Datatype | Description |
---|---|---|
artifact_stores | array | A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline. |
disable_inbound_stage_transitions | array | Represents the input of a DisableStageTransition action. |
stages | array | Represents information about a stage and its definition. |
execution_mode | string | The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED. |
restart_execution_on_update | boolean | Indicates whether to rerun the CodePipeline pipeline after you update it. |
triggers | array | The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline. |
role_arn | string | The Amazon Resource Name (ARN) for CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn |
name | string | The name of the pipeline. |
variables | array | A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9@\-_]+. |
version | string | The version of the pipeline. |
artifact_store | object | The S3 bucket where artifacts for the pipeline are stored. |
pipeline_type | string | CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. |
tag_key | string | Tag key. |
tag_value | string | Tag value. |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
list_resources | SELECT | region |
SELECT
examples
Expands tags for all pipelines
in a region.
SELECT
region,
artifact_stores,
disable_inbound_stage_transitions,
stages,
execution_mode,
restart_execution_on_update,
triggers,
role_arn,
name,
variables,
version,
artifact_store,
pipeline_type,
tag_key,
tag_value
FROM aws.codepipeline.pipeline_tags
WHERE region = 'us-east-1';
Permissions
For permissions required to operate on the pipeline_tags
resource, see pipelines