tag_pipeline_resource
Add or update tags on AWS CodePipeline resources to organize, track, and manage pipelines efficiently. Specify pipeline name and tag key-value pairs for precise resource identification.
Instructions
Add or update tags for a pipeline resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pipelineName | Yes | Name of the pipeline | |
tags | Yes | List of tags to add or update |
Input Schema (JSON Schema)
{
"properties": {
"pipelineName": {
"description": "Name of the pipeline",
"type": "string"
},
"tags": {
"description": "List of tags to add or update",
"items": {
"properties": {
"key": {
"description": "Tag key",
"type": "string"
},
"value": {
"description": "Tag value",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"pipelineName",
"tags"
],
"type": "object"
}