Amazon Config · JSON Structure

Config Put Aggregation Authorization Request Structure

PutAggregationAuthorizationRequest schema

Type: object Properties: 3 Required: 2
AuditingComplianceConfiguration ManagementGovernanceSecurity

PutAggregationAuthorizationRequest is a JSON Structure definition published by Amazon Config, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AuthorizedAccountId AuthorizedAwsRegion Tags

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-put-aggregation-authorization-request-structure.json",
  "name": "PutAggregationAuthorizationRequest",
  "description": "PutAggregationAuthorizationRequest schema",
  "type": "object",
  "properties": {
    "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."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsList"
        },
        {
          "description": "An array of tag object."
        }
      ]
    }
  },
  "required": [
    "AuthorizedAccountId",
    "AuthorizedAwsRegion"
  ]
}