Class: Aws::FMS::Types::ListResourceSetsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListResourceSetsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of objects that you want Firewall Manager to return for this request.
-
#next_token ⇒ String
When you request a list of objects with a ‘MaxResults` setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a `NextToken` value in the response.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of objects that you want Firewall Manager to return for this request. If more objects are available, in the response, Firewall Manager provides a ‘NextToken` value that you can use in a subsequent call to get the next batch of objects.
2463 2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-fms/types.rb', line 2463 class ListResourceSetsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When you request a list of objects with a ‘MaxResults` setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a `NextToken` value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.
2463 2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-fms/types.rb', line 2463 class ListResourceSetsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |