Amazon Config · Schema

BatchGetAggregateResourceConfigRequest

BatchGetAggregateResourceConfigRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ConfigurationAggregatorName object
ResourceIdentifiers object
View JSON Schema on GitHub

JSON Schema

config-batch-get-aggregate-resource-config-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-batch-get-aggregate-resource-config-request-schema.json",
  "title": "BatchGetAggregateResourceConfigRequest",
  "description": "BatchGetAggregateResourceConfigRequest schema",
  "type": "object",
  "properties": {
    "ConfigurationAggregatorName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationAggregatorName"
        },
        {
          "description": "The name of the configuration aggregator."
        }
      ]
    },
    "ResourceIdentifiers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceIdentifiersList"
        },
        {
          "description": "A list of aggregate ResourceIdentifiers objects. "
        }
      ]
    }
  },
  "required": [
    "ConfigurationAggregatorName",
    "ResourceIdentifiers"
  ]
}