Class: Aws::FMS::Types::ListProtocolsListsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListProtocolsListsRequest
- Defined in:
- gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_lists ⇒ Boolean
Specifies whether the lists to retrieve are default lists owned by Firewall Manager.
-
#max_results ⇒ Integer
The maximum number of objects that you want Firewall Manager to return for this request.
-
#next_token ⇒ String
If you specify a value for
MaxResults
in your list request, and you have more objects than the maximum, Firewall Manager returns this token in the response.
Instance Attribute Details
#default_lists ⇒ Boolean
Specifies whether the lists to retrieve are default lists owned by Firewall Manager.
2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 2366 class ListProtocolsListsRequest < Struct.new( :default_lists, :next_token, :max_results) 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.
If you don't specify this, Firewall Manager returns all available objects.
2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 2366 class ListProtocolsListsRequest < Struct.new( :default_lists, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If you specify a value for MaxResults
in your list request, and
you have more objects than the maximum, Firewall Manager returns
this token in the response. For all but the first request, you
provide the token returned by the prior request in the request
parameters, to retrieve the next batch of objects.
2366 2367 2368 2369 2370 2371 2372 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 2366 class ListProtocolsListsRequest < Struct.new( :default_lists, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |