Class: Aws::FSx::Types::ListTagsForResourceRequest

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

Overview

Note:

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

{
  resource_arn: "ResourceARN", # required
  max_results: 1,
  next_token: "NextToken",
}

The request object for ‘ListTagsForResource` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

(Optional) Maximum number of tags to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the ‘MaxResults` parameter specified in the request and the service’s internal maximum number of items per page.

Returns:

  • (Integer)


1024
1025
1026
1027
1028
1029
# File 'lib/aws-sdk-fsx/types.rb', line 1024

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

(Optional) Opaque pagination token returned from a previous ‘ListTagsForResource` operation (String). If a token present, the action continues the list from where the returning call left off.

Returns:

  • (String)


1024
1025
1026
1027
1028
1029
# File 'lib/aws-sdk-fsx/types.rb', line 1024

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :max_results,
  :next_token)
  include Aws::Structure
end

#resource_arnString

The ARN of the Amazon FSx resource that will have its tags listed.

Returns:

  • (String)


1024
1025
1026
1027
1028
1029
# File 'lib/aws-sdk-fsx/types.rb', line 1024

class ListTagsForResourceRequest < Struct.new(
  :resource_arn,
  :max_results,
  :next_token)
  include Aws::Structure
end