Amazon Config · Schema
DescribeAggregateComplianceByConfigRulesRequest
DescribeAggregateComplianceByConfigRulesRequest schema
AuditingComplianceConfiguration ManagementGovernanceSecurity
Properties
| Name | Type | Description |
|---|---|---|
| ConfigurationAggregatorName | object | |
| Filters | object | |
| Limit | object | |
| NextToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-describe-aggregate-compliance-by-config-rules-request-schema.json",
"title": "DescribeAggregateComplianceByConfigRulesRequest",
"description": "DescribeAggregateComplianceByConfigRulesRequest schema",
"type": "object",
"properties": {
"ConfigurationAggregatorName": {
"allOf": [
{
"$ref": "#/components/schemas/ConfigurationAggregatorName"
},
{
"description": "The name of the configuration aggregator."
}
]
},
"Filters": {
"allOf": [
{
"$ref": "#/components/schemas/ConfigRuleComplianceFilters"
},
{
"description": "Filters the results by ConfigRuleComplianceFilters object. "
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/GroupByAPILimit"
},
{
"description": "The maximum number of evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response."
}
]
}
},
"required": [
"ConfigurationAggregatorName"
]
}