PutAggregationAuthorizationRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-put-aggregation-authorization-request-schema.json", "title": "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" ] }