Amazon Config · Schema

StartRemediationExecutionRequest

StartRemediationExecutionRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ConfigRuleName object
ResourceKeys object
View JSON Schema on GitHub

JSON Schema

config-start-remediation-execution-request-schema.json Raw ↑
{
  "$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"
  ]
}