Amazon Config · Schema

ResourceCountFilters

Filters the resource count based on account ID, region, and resource type.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ResourceType object
AccountId object
Region object
View JSON Schema on GitHub

JSON Schema

config-resource-count-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-count-filters-schema.json",
  "title": "ResourceCountFilters",
  "description": "Filters the resource count based on account ID, region, and resource type.",
  "type": "object",
  "properties": {
    "ResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceType"
        },
        {
          "description": "The type of the Amazon Web Services resource."
        }
      ]
    },
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The 12-digit ID of the account."
        }
      ]
    },
    "Region": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsRegion"
        },
        {
          "description": "The region where the account is located."
        }
      ]
    }
  }
}