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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/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)


5180
5181
5182
5183
5184
5185
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5180

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

#tag_keysArray<String>

The Tag keys to delete.

Returns:

  • (Array<String>)


5180
5181
5182
5183
5184
5185
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5180

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