{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-get-conformance-pack-compliance-summary-request-schema.json",
"title": "GetConformancePackComplianceSummaryRequest",
"description": "GetConformancePackComplianceSummaryRequest schema",
"type": "object",
"properties": {
"ConformancePackNames": {
"allOf": [
{
"$ref": "#/components/schemas/ConformancePackNamesToSummarizeList"
},
{
"description": "Names of conformance packs."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/PageSizeLimit"
},
{
"description": "The maximum number of conformance packs returned on each page."
}
]
},
"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": [
"ConformancePackNames"
]
}