LexModelBuildingService / Client / tag_resource
tag_resource¶
- LexModelBuildingService.Client.tag_resource(**kwargs)¶
Adds the specified tags to the specified resource. If a tag key already exists, the existing value is replaced with the new value.
Danger
This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.
See also: AWS API Documentation
Request Syntax
response = client.tag_resource( resourceArn='string', tags=[ { 'key': 'string', 'value': 'string' }, ] )
- Parameters:
resourceArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the bot, bot alias, or bot channel to tag.
tags (list) –
[REQUIRED]
A list of tag keys to add to the resource. If a tag key already exists, the existing value is replaced with the new value.
(dict) –
A list of key/value pairs that identify a bot, bot alias, or bot channel. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
key (string) – [REQUIRED]
The key for the tag. Keys are not case-sensitive and must be unique.
value (string) – [REQUIRED]
The value associated with a key. The value may be an empty string but it can’t be null.
- Return type:
dict
- Returns:
Response Syntax
{}Response Structure
(dict) –
Exceptions
LexModelBuildingService.Client.exceptions.NotFoundExceptionLexModelBuildingService.Client.exceptions.BadRequestExceptionLexModelBuildingService.Client.exceptions.ConflictExceptionLexModelBuildingService.Client.exceptions.InternalFailureExceptionLexModelBuildingService.Client.exceptions.LimitExceededException