Amazon Config · JSON Structure

Config Remediation Execution Step Structure

Name of the step from the SSM document.

Type: object Properties: 5
AuditingComplianceConfiguration ManagementGovernanceSecurity

RemediationExecutionStep is a JSON Structure definition published by Amazon Config, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name State ErrorMessage StartTime StopTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-remediation-execution-step-structure.json",
  "name": "RemediationExecutionStep",
  "description": "Name of the step from the SSM document.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The details of the step."
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RemediationExecutionStepState"
        },
        {
          "description": "The valid status of the step."
        }
      ]
    },
    "ErrorMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "An error message if the step was interrupted during execution."
        }
      ]
    },
    "StartTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time when the step started."
        }
      ]
    },
    "StopTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time when the step stopped."
        }
      ]
    }
  }
}