List Compliance Status
| fms_list_compliance_status | R Documentation |
Returns an array of PolicyComplianceStatus objects¶
Description¶
Returns an array of PolicyComplianceStatus objects. Use
PolicyComplianceStatus to get a summary of which member accounts are
protected by the specified policy.
Usage¶
Arguments¶
PolicyId[required] The ID of the Firewall Manager policy that you want the details for.
NextTokenIf 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. For the second and subsequentlist_compliance_statusrequests, specify the value ofNextTokenfrom the previous response to get information about another batch ofPolicyComplianceStatusobjects.MaxResultsSpecifies the number of
PolicyComplianceStatusobjects that you want Firewall Manager to return for this request. If you have morePolicyComplianceStatusobjects than the number that you specify forMaxResults, the response includes aNextTokenvalue that you can use to get another batch ofPolicyComplianceStatusobjects.
Value¶
A list with the following syntax:
list(
PolicyComplianceStatusList = list(
list(
PolicyOwner = "string",
PolicyId = "string",
PolicyName = "string",
MemberAccount = "string",
EvaluationResults = list(
list(
ComplianceStatus = "COMPLIANT"|"NON_COMPLIANT",
ViolatorCount = 123,
EvaluationLimitExceeded = TRUE|FALSE
)
),
LastUpdated = as.POSIXct(
"2015-01-01"
),
IssueInfoMap = list(
"string"
)
)
),
NextToken = "string"
)