Class: Aws::FMS::Types::ListResourceSetResourcesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListResourceSetResourcesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
A unique identifier for the resource set, used in a request to refer to the resource set.
-
#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
#identifier ⇒ String
A unique identifier for the resource set, used in a request to refer to the resource set.
2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-fms/types.rb', line 2416 class ListResourceSetResourcesRequest < Struct.new( :identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#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.
2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-fms/types.rb', line 2416 class ListResourceSetResourcesRequest < Struct.new( :identifier, :max_results, :next_token) 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.
2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-fms/types.rb', line 2416 class ListResourceSetResourcesRequest < Struct.new( :identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |