2017/09/05 - AWS CodeStar - 3 new api methods
Changes Update codestar client to latest version
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) --
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) --