Class: Aws::XRay::Types::UntagResourceRequest

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

Overview

Note:

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

{
  resource_arn: "AmazonResourceName", # required
  tag_keys: ["TagKey"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.

Returns:

  • (String)


3406
3407
3408
3409
3410
3411
# File 'lib/aws-sdk-xray/types.rb', line 3406

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

#tag_keysArray<String>

Keys for one or more tags that you want to remove from an X-Ray group or sampling rule.

Returns:

  • (Array<String>)


3406
3407
3408
3409
3410
3411
# File 'lib/aws-sdk-xray/types.rb', line 3406

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