Amazon Config · Schema

DeletePendingAggregationRequestRequest

DeletePendingAggregationRequestRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
RequesterAccountId object
RequesterAwsRegion object
View JSON Schema on GitHub

JSON Schema

config-delete-pending-aggregation-request-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-delete-pending-aggregation-request-request-schema.json",
  "title": "DeletePendingAggregationRequestRequest",
  "description": "DeletePendingAggregationRequestRequest schema",
  "type": "object",
  "properties": {
    "RequesterAccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The 12-digit account ID of the account requesting to aggregate data."
        }
      ]
    },
    "RequesterAwsRegion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsRegion"
        },
        {
          "description": "The region requesting to aggregate data."
        }
      ]
    }
  },
  "required": [
    "RequesterAccountId",
    "RequesterAwsRegion"
  ]
}