Amazon Config · Schema

StartRemediationExecutionResponse

StartRemediationExecutionResponse schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
FailureMessage object
FailedItems object
View JSON Schema on GitHub

JSON Schema

config-start-remediation-execution-response-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-response-schema.json",
  "title": "StartRemediationExecutionResponse",
  "description": "StartRemediationExecutionResponse schema",
  "type": "object",
  "properties": {
    "FailureMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Returns a failure message. For example, the resource is already compliant."
        }
      ]
    },
    "FailedItems": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceKeys"
        },
        {
          "description": "For resources that have failed to start execution, the API returns a resource key object."
        }
      ]
    }
  }
}