Amazon Config · Schema

ResourceFilters

Filters the results by resource account ID, region, resource ID, and resource name.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
AccountId object
ResourceId object
ResourceName object
Region object
View JSON Schema on GitHub

JSON Schema

config-resource-filters-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-resource-filters-schema.json",
  "title": "ResourceFilters",
  "description": "Filters the results by resource account ID, region, resource ID, and resource name.",
  "type": "object",
  "properties": {
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The 12-digit source account ID."
        }
      ]
    },
    "ResourceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The ID of the resource."
        }
      ]
    },
    "ResourceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the resource."
        }
      ]
    },
    "Region": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsRegion"
        },
        {
          "description": "The source region."
        }
      ]
    }
  }
}