Class: Aws::XRay::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ListTagsForResourceRequest
- Defined in:
- gems/aws-sdk-xray/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
-
#next_token ⇒ String
A pagination token.
-
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
Instance Attribute Details
#next_token ⇒ String
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.
2020 2021 2022 2023 2024 2025 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2020 class ListTagsForResourceRequest < Struct.new( :resource_arn, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
2020 2021 2022 2023 2024 2025 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2020 class ListTagsForResourceRequest < Struct.new( :resource_arn, :next_token) SENSITIVE = [] include Aws::Structure end |