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

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

Overview

Note:

When making an API call, you may pass UntagResourceRequest data as a hash:

{
  resource_arn: "String", # required
  tag_keys: ["String"], # required
}

Removes a tag from a given resource.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

[Required] The ARN of a resource that can be tagged. The resource ARN must be URL-encoded.

Returns:

  • (String)


6908
6909
6910
6911
6912
# File 'lib/aws-sdk-apigateway/types.rb', line 6908

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

#tag_keysArray<String>

[Required] The Tag keys to delete.

Returns:

  • (Array<String>)


6908
6909
6910
6911
6912
# File 'lib/aws-sdk-apigateway/types.rb', line 6908

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