Amazon Config · JSON Structure

Config Aggregation Authorization Structure

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

Type: object Properties: 4
AuditingComplianceConfiguration ManagementGovernanceSecurity

AggregationAuthorization is a JSON Structure definition published by Amazon Config, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AggregationAuthorizationArn AuthorizedAccountId AuthorizedAwsRegion CreationTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-aggregation-authorization-structure.json",
  "name": "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."
        }
      ]
    }
  }
}