Class: Aws::TranscribeService::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transcribeservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to remove tags from. 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`.

Returns:

  • (String)


4855
4856
4857
4858
4859
4860
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4855

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

Removes the specified tag keys from the specified Amazon Transcribe resource.

Returns:

  • (Array<String>)


4855
4856
4857
4858
4859
4860
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4855

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end