Class: Aws::XRay::Types::ListTagsForResourceRequest

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 ListTagsForResourceRequest data as a hash:

{
  resource_arn: "AmazonResourceName", # required
  next_token: "String",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A pagination token. If multiple pages of results are returned, use the ‘NextToken` value returned with the current page of results as the value of this parameter to get the next page of results.

Returns:

  • (String)


2020
2021
2022
2023
2024
2025
# File 'lib/aws-sdk-xray/types.rb', line 2020

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

#resource_arnString

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

Returns:

  • (String)


2020
2021
2022
2023
2024
2025
# File 'lib/aws-sdk-xray/types.rb', line 2020

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