Amazon Config · Schema

DescribeConfigurationAggregatorSourcesStatusRequest

DescribeConfigurationAggregatorSourcesStatusRequest schema

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ConfigurationAggregatorName object
UpdateStatus object
NextToken object
Limit object
View JSON Schema on GitHub

JSON Schema

config-describe-configuration-aggregator-sources-status-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-describe-configuration-aggregator-sources-status-request-schema.json",
  "title": "DescribeConfigurationAggregatorSourcesStatusRequest",
  "description": "DescribeConfigurationAggregatorSourcesStatusRequest schema",
  "type": "object",
  "properties": {
    "ConfigurationAggregatorName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationAggregatorName"
        },
        {
          "description": "The name of the configuration aggregator."
        }
      ]
    },
    "UpdateStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AggregatedSourceStatusTypeList"
        },
        {
          "description": "<p>Filters the status type.</p> <ul> <li> <p>Valid value FAILED indicates errors while moving data.</p> </li> <li> <p>Valid value SUCCEEDED indicates the data was successfully moved.</p> </li> <li> <p>Valid value OUTDATED indicates the data is not the most recent.</p> </li> </ul>"
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Limit"
        },
        {
          "description": "The maximum number of AggregatorSourceStatus returned on each page. The default is maximum. If you specify 0, Config uses the default."
        }
      ]
    }
  },
  "required": [
    "ConfigurationAggregatorName"
  ]
}