2017/09/05 - AWS CodeStar - 3 new api methods
Changes Added support to tag CodeStar projects. Tags can be used to organize and find CodeStar projects on key-value pairs that you can choose. For example, you could add a tag with a key of "Release" and a value of "Beta" to projects your organization is working on for an upcoming beta release.
Removes tags from a project.
See also: AWS API Documentation
Request Syntax
client.untag_project(
    id='string',
    tags=[
        'string',
    ]
)
string
[REQUIRED]
The ID of the project to remove tags from.
list
[REQUIRED]
The tags to remove from the project.
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --
Gets the tags for a project.
See also: AWS API Documentation
Request Syntax
client.list_tags_for_project(
    id='string',
    nextToken='string',
    maxResults=123
)
string
[REQUIRED]
The ID of the project to get tags for.
string
Reserved for future use.
integer
Reserved for future use.
dict
Response Syntax
{
    'tags': {
        'string': 'string'
    },
    'nextToken': 'string'
}
Response Structure
(dict) --
tags (dict) --
The tags for the project.
(string) --
(string) --
nextToken (string) --
Reserved for future use.
Adds tags to a project.
See also: AWS API Documentation
Request Syntax
client.tag_project(
    id='string',
    tags={
        'string': 'string'
    }
)
string
[REQUIRED]
The ID of the project you want to add a tag to.
dict
[REQUIRED]
The tags you want to add to the project.
(string) --
(string) --
dict
Response Syntax
{
    'tags': {
        'string': 'string'
    }
}
Response Structure
(dict) --
tags (dict) --
The tags for the project.
(string) --
(string) --