Class: Aws::TranscribeService::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource you want to tag.
-
#tags ⇒ Array<Types::Tag>
Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.
Instance Attribute Details
#resource_arn ⇒ String
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
.
5035 5036 5037 5038 5039 5040 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5035 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
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.
5035 5036 5037 5038 5039 5040 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5035 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |