Amazon Config · JSON Structure

Config Select Resource Config Request Structure

SelectResourceConfigRequest schema

Type: object Properties: 3 Required: 1
AuditingComplianceConfiguration ManagementGovernanceSecurity

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

Properties

Expression 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-select-resource-config-request-structure.json",
  "name": "SelectResourceConfigRequest",
  "description": "SelectResourceConfigRequest schema",
  "type": "object",
  "properties": {
    "Expression": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Expression"
        },
        {
          "description": "The SQL query <code>SELECT</code> command."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Limit"
        },
        {
          "description": "The maximum number of query results returned on each page. "
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response. "
        }
      ]
    }
  },
  "required": [
    "Expression"
  ]
}