Amazon Config · JSON Structure

Config Get Resource Config History Request Structure

The input for the GetResourceConfigHistory action.

Type: object Properties: 7 Required: 2
AuditingComplianceConfiguration ManagementGovernanceSecurity

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

Properties

resourceType resourceId laterTime earlierTime chronologicalOrder limit nextToken

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-get-resource-config-history-request-structure.json",
  "name": "GetResourceConfigHistoryRequest",
  "description": "The input for the <a>GetResourceConfigHistory</a> action.",
  "type": "object",
  "properties": {
    "resourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceType"
        },
        {
          "description": "The resource type."
        }
      ]
    },
    "resourceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The ID of the resource (for example., <code>sg-xxxxxx</code>)."
        }
      ]
    },
    "laterTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LaterTime"
        },
        {
          "description": "The time stamp that indicates a later time. If not specified, current time is taken."
        }
      ]
    },
    "earlierTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EarlierTime"
        },
        {
          "description": "The time stamp that indicates an earlier time. If not specified, the action returns paginated results that contain configuration items that start when the first configuration item was recorded."
        }
      ]
    },
    "chronologicalOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChronologicalOrder"
        },
        {
          "description": "The chronological order for configuration items listed. By default, the results are listed in reverse chronological order."
        }
      ]
    },
    "limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Limit"
        },
        {
          "description": "The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "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."
        }
      ]
    }
  },
  "required": [
    "resourceType",
    "resourceId"
  ]
}