Amazon Config · Schema

ExclusionByResourceTypes

Specifies whether the configuration recorder excludes resource types from being recorded. Use the resourceTypes field to enter a comma-separated list of resource types to exclude as exemptions.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
resourceTypes object
View JSON Schema on GitHub

JSON Schema

config-exclusion-by-resource-types-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-exclusion-by-resource-types-schema.json",
  "title": "ExclusionByResourceTypes",
  "description": "Specifies whether the configuration recorder excludes resource types from being recorded. Use the <code>resourceTypes</code> field to enter a comma-separated list of resource types to exclude as exemptions.",
  "type": "object",
  "properties": {
    "resourceTypes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceTypeList"
        },
        {
          "description": "A comma-separated list of resource types to exclude from recording by the configuration recorder."
        }
      ]
    }
  }
}