Class: Aws::APIGateway::Types::UntagResourceRequest

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

Overview

Removes a tag from a given resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of a resource that can be tagged.

Returns:

  • (String)


5184
5185
5186
5187
5188
5189
# File 'lib/aws-sdk-apigateway/types.rb', line 5184

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

#tag_keysArray<String>

The Tag keys to delete.

Returns:

  • (Array<String>)


5184
5185
5186
5187
5188
5189
# File 'lib/aws-sdk-apigateway/types.rb', line 5184

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