list_compliance_status
(**kwargs)¶Returns an array of PolicyComplianceStatus
objects. Use PolicyComplianceStatus
to get a summary of which member accounts are protected by the specified policy.
See also: AWS API Documentation
Request Syntax
response = client.list_compliance_status(
PolicyId='string',
NextToken='string',
MaxResults=123
)
[REQUIRED]
The ID of the Firewall Manager policy that you want the details 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.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.dict
Response Syntax
{
'PolicyComplianceStatusList': [
{
'PolicyOwner': 'string',
'PolicyId': 'string',
'PolicyName': 'string',
'MemberAccount': 'string',
'EvaluationResults': [
{
'ComplianceStatus': 'COMPLIANT'|'NON_COMPLIANT',
'ViolatorCount': 123,
'EvaluationLimitExceeded': True|False
},
],
'LastUpdated': datetime(2015, 1, 1),
'IssueInfoMap': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
PolicyComplianceStatusList (list) --
An array of PolicyComplianceStatus
objects.
(dict) --
Indicates whether the account is compliant with the specified policy. An account is considered noncompliant if it includes resources that are not protected by the policy, for WAF and Shield Advanced policies, or that are noncompliant with the policy, for security group policies.
PolicyOwner (string) --
The Amazon Web Services account that created the Firewall Manager policy.
PolicyId (string) --
The ID of the Firewall Manager policy.
PolicyName (string) --
The name of the Firewall Manager policy.
MemberAccount (string) --
The member account ID.
EvaluationResults (list) --
An array of EvaluationResult
objects.
(dict) --
Describes the compliance status for the account. An account is considered noncompliant if it includes resources that are not protected by the specified policy or that don't comply with the policy.
ComplianceStatus (string) --
Describes an Amazon Web Services account's compliance with the Firewall Manager policy.
ViolatorCount (integer) --
The number of resources that are noncompliant with the specified policy. For WAF and Shield Advanced policies, a resource is considered noncompliant if it is not associated with the policy. For security group policies, a resource is considered noncompliant if it doesn't comply with the rules of the policy and remediation is disabled or not possible.
EvaluationLimitExceeded (boolean) --
Indicates that over 100 resources are noncompliant with the Firewall Manager policy.
LastUpdated (datetime) --
Timestamp of the last update to the EvaluationResult
objects.
IssueInfoMap (dict) --
Details about problems with dependent services, such as WAF or Config, and the error message received that indicates the problem with the service.
NextToken (string) --
If you have more PolicyComplianceStatus
objects than the number that you specified for MaxResults
in the request, the response includes a NextToken
value. To list more PolicyComplianceStatus
objects, submit another ListComplianceStatus
request, and specify the NextToken
value from the response in the NextToken
value in the next request.
Exceptions
FMS.Client.exceptions.ResourceNotFoundException
FMS.Client.exceptions.InternalErrorException