Class: Aws::KendraRanking::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kendraranking/lib/aws-sdk-kendraranking/types.rb

Overview

The request information to remove a tag from a rescore execution plan. A rescore execution plan is an Amazon Kendra Intelligent Ranking resource used for provisioning the Rescore API.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the rescore execution plan to remove the tag.

Returns:

  • (String)


598
599
600
601
602
603
# File 'gems/aws-sdk-kendraranking/lib/aws-sdk-kendraranking/types.rb', line 598

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

#tag_keysArray<String>

A list of tag keys to remove from the rescore execution plan. If a tag key does not exist on the resource, it is ignored.

Returns:

  • (Array<String>)


598
599
600
601
602
603
# File 'gems/aws-sdk-kendraranking/lib/aws-sdk-kendraranking/types.rb', line 598

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