Amazon Config · Schema

RemediationExecutionStep

Name of the step from the SSM document.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
Name object
State object
ErrorMessage object
StartTime object
StopTime object
View JSON Schema on GitHub

JSON Schema

config-remediation-execution-step-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-remediation-execution-step-schema.json",
  "title": "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."
        }
      ]
    }
  }
}