Class: Aws::FMS::Types::ListPoliciesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListPoliciesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Specifies the number of ‘PolicySummary` objects that you want Firewall Manager to return for this request.
-
#next_token ⇒ String
If you specify a value for ‘MaxResults` and you have more `PolicySummary` objects than the number that you specify for `MaxResults`, Firewall Manager returns a `NextToken` value in the response that allows you to list another group of `PolicySummary` objects.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the number of ‘PolicySummary` objects that you want Firewall Manager to return for this request. If you have more `PolicySummary` objects than the number that you specify for `MaxResults`, the response includes a `NextToken` value that you can use to get another batch of `PolicySummary` objects.
2313 2314 2315 2316 2317 2318 |
# File 'lib/aws-sdk-fms/types.rb', line 2313 class ListPoliciesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If you specify a value for ‘MaxResults` and you have more `PolicySummary` objects than the number that you specify for `MaxResults`, Firewall Manager returns a `NextToken` value in the response that allows you to list another group of `PolicySummary` objects. For the second and subsequent `ListPolicies` requests, specify the value of `NextToken` from the previous response to get information about another batch of `PolicySummary` objects.
2313 2314 2315 2316 2317 2318 |
# File 'lib/aws-sdk-fms/types.rb', line 2313 class ListPoliciesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |