Amazon Config · JSON Structure

Config Put Evaluations Request Structure

Type: object Properties: 3 Required: 1
AuditingComplianceConfiguration ManagementGovernanceSecurity

PutEvaluationsRequest 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

Evaluations ResultToken TestMode

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-put-evaluations-request-structure.json",
  "name": "PutEvaluationsRequest",
  "description": "<p/>",
  "type": "object",
  "properties": {
    "Evaluations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Evaluations"
        },
        {
          "description": "The assessments that the Lambda function performs. Each evaluation identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that invokes the Lambda function."
        }
      ]
    },
    "ResultToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation."
        }
      ]
    },
    "TestMode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "<p>Use this parameter to specify a test run for <code>PutEvaluations</code>. You can verify whether your Lambda function will deliver evaluation results to Config. No updates occur to your existing evaluations, and evaluation results are not sent to Config.</p> <note> <p>When <code>TestMode</code> is <code>true</code>, <code>PutEvaluations</code> doesn't require a valid value for the <code>ResultToken</code> parameter, but the value cannot be null.</p> </note>"
        }
      ]
    }
  },
  "required": [
    "ResultToken"
  ]
}