Class: Aws::TranscribeService::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::ListTagsForResourceRequest
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Returns a list of all tags associated with the specified Amazon Resource Name (ARN).
Instance Attribute Details
#resource_arn ⇒ String
Returns a list of all tags associated with the specified Amazon
Resource Name (ARN). 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
.
2500 2501 2502 2503 2504 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 2500 class ListTagsForResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |