Amazon Config · Schema

DeleteRemediationConfigurationRequest

DeleteRemediationConfigurationRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

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

JSON Schema

config-delete-remediation-configuration-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-delete-remediation-configuration-request-schema.json",
  "title": "DeleteRemediationConfigurationRequest",
  "description": "DeleteRemediationConfigurationRequest schema",
  "type": "object",
  "properties": {
    "ConfigRuleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigRuleName"
        },
        {
          "description": "The name of the Config rule for which you want to delete remediation configuration."
        }
      ]
    },
    "ResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The type of a resource."
        }
      ]
    }
  },
  "required": [
    "ConfigRuleName"
  ]
}