Amazon Config · Schema

AggregationAuthorization

An object that represents the authorizations granted to aggregator accounts and regions.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
AggregationAuthorizationArn object
AuthorizedAccountId object
AuthorizedAwsRegion object
CreationTime object
View JSON Schema on GitHub

JSON Schema

config-aggregation-authorization-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-aggregation-authorization-schema.json",
  "title": "AggregationAuthorization",
  "description": "An object that represents the authorizations granted to aggregator accounts and regions.",
  "type": "object",
  "properties": {
    "AggregationAuthorizationArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the aggregation object."
        }
      ]
    },
    "AuthorizedAccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The 12-digit account ID of the account authorized to aggregate data."
        }
      ]
    },
    "AuthorizedAwsRegion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsRegion"
        },
        {
          "description": "The region authorized to collect aggregated data."
        }
      ]
    },
    "CreationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time stamp when the aggregation authorization was created."
        }
      ]
    }
  }
}