| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.Transcribe.TagResource
Description
Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.
To learn more about using tags with Amazon Transcribe, refer to Tagging resources.
Synopsis
- data TagResource = TagResource' {
- resourceArn :: Text
 - tags :: NonEmpty Tag
 
 - newTagResource :: Text -> NonEmpty Tag -> TagResource
 - tagResource_resourceArn :: Lens' TagResource Text
 - tagResource_tags :: Lens' TagResource (NonEmpty Tag)
 - data TagResourceResponse = TagResourceResponse' {
- httpStatus :: Int
 
 - newTagResourceResponse :: Int -> TagResourceResponse
 - tagResourceResponse_httpStatus :: Lens' TagResourceResponse Int
 
Creating a Request
data TagResource Source #
See: newTagResource smart constructor.
Constructors
| TagResource' | |
Fields 
  | |
Instances
Arguments
| :: Text | |
| -> NonEmpty Tag | |
| -> TagResource | 
Create a value of TagResource with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the resource you want to tag. ARNs
 have the format
 arn:partition:service:region:account-id:resource-type/resource-id.
For example,
 arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.
Valid values for resource-type are: transcription-job,
 medical-transcription-job, vocabulary, medical-vocabulary,
 vocabulary-filter, and language-model.
TagResource, tagResource_tags - Adds one or more custom tags, each in the form of a key:value pair, to
 the specified resource.
To learn more about using tags with Amazon Transcribe, refer to Tagging resources.
Request Lenses
tagResource_resourceArn :: Lens' TagResource Text Source #
The Amazon Resource Name (ARN) of the resource you want to tag. ARNs
 have the format
 arn:partition:service:region:account-id:resource-type/resource-id.
For example,
 arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.
Valid values for resource-type are: transcription-job,
 medical-transcription-job, vocabulary, medical-vocabulary,
 vocabulary-filter, and language-model.
tagResource_tags :: Lens' TagResource (NonEmpty Tag) Source #
Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.
To learn more about using tags with Amazon Transcribe, refer to Tagging resources.
Destructuring the Response
data TagResourceResponse Source #
See: newTagResourceResponse smart constructor.
Constructors
| TagResourceResponse' | |
Fields 
  | |
Instances
newTagResourceResponse Source #
Arguments
| :: Int | |
| -> TagResourceResponse | 
Create a value of TagResourceResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.
Response Lenses
tagResourceResponse_httpStatus :: Lens' TagResourceResponse Int Source #
The response's http status code.