{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-start-remediation-execution-request-schema.json",
"title": "StartRemediationExecutionRequest",
"description": "StartRemediationExecutionRequest schema",
"type": "object",
"properties": {
"ConfigRuleName": {
"allOf": [
{
"$ref": "#/components/schemas/ConfigRuleName"
},
{
"description": "The list of names of Config rules that you want to run remediation execution for."
}
]
},
"ResourceKeys": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceKeys"
},
{
"description": "A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. "
}
]
}
},
"required": [
"ConfigRuleName",
"ResourceKeys"
]
}