Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PutEvaluationsRequest

import type { PutEvaluationsRequest } from "https://aws-api.deno.dev/v0.3/services/configservice.ts?docs=full";
interface PutEvaluationsRequest {
Evaluations?: Evaluation[] | null;
ResultToken: string;
TestMode?: boolean | null;
}

§Properties

§
Evaluations?: Evaluation[] | null
[src]

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: string
[src]

An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation.

§
TestMode?: boolean | null
[src]

Use this parameter to specify a test run for PutEvaluations. 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.

Note: When TestMode is true, PutEvaluations doesn't require a valid value for the ResultToken parameter, but the value cannot be null.