{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-get-compliance-details-by-config-rule-request-structure.json", "name": "GetComplianceDetailsByConfigRuleRequest", "description": "

", "type": "object", "properties": { "ConfigRuleName": { "allOf": [ { "$ref": "#/components/schemas/StringWithCharLimit64" }, { "description": "The name of the Config rule for which you want compliance information." } ] }, "ComplianceTypes": { "allOf": [ { "$ref": "#/components/schemas/ComplianceTypes" }, { "description": "

Filters the results by compliance.

INSUFFICIENT_DATA is a valid ComplianceType that is returned when an Config rule cannot be evaluated. However, INSUFFICIENT_DATA cannot be used as a ComplianceType for filtering results.

" } ] }, "Limit": { "allOf": [ { "$ref": "#/components/schemas/Limit" }, { "description": "The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "The nextToken string returned on a previous page that you use to get the next page of results in a paginated response." } ] } }, "required": [ "ConfigRuleName" ] }