Class: Aws::FMS::Types::ListComplianceStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::ListComplianceStatusRequest
- 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
PolicyComplianceStatusobjects that you want Firewall Manager to return for this request. -
#next_token ⇒ String
If you specify a value for
MaxResultsand you have morePolicyComplianceStatusobjects than the number that you specify forMaxResults, Firewall Manager returns aNextTokenvalue in the response that allows you to list another group ofPolicyComplianceStatusobjects. -
#policy_id ⇒ String
The ID of the Firewall Manager policy that you want the details for.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the number of PolicyComplianceStatus objects that you want Firewall Manager to return for this request. If you have more PolicyComplianceStatus objects than the number that you specify for MaxResults, the response includes a NextToken value that you can use to get another batch of PolicyComplianceStatus objects.
2158 2159 2160 2161 2162 2163 2164 |
# File 'lib/aws-sdk-fms/types.rb', line 2158 class ListComplianceStatusRequest < Struct.new( :policy_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If you specify a value for MaxResults and you have more PolicyComplianceStatus 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 PolicyComplianceStatus objects. For the second and subsequent ListComplianceStatus requests, specify the value of NextToken from the previous response to get information about another batch of PolicyComplianceStatus objects.
2158 2159 2160 2161 2162 2163 2164 |
# File 'lib/aws-sdk-fms/types.rb', line 2158 class ListComplianceStatusRequest < Struct.new( :policy_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#policy_id ⇒ String
The ID of the Firewall Manager policy that you want the details for.
2158 2159 2160 2161 2162 2163 2164 |
# File 'lib/aws-sdk-fms/types.rb', line 2158 class ListComplianceStatusRequest < Struct.new( :policy_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |