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

UpdateAnswerInput

import type { UpdateAnswerInput } from "https://aws-api.deno.dev/v0.4/services/wellarchitected.ts?docs=full";

Input to update answer.

interface UpdateAnswerInput {
ChoiceUpdates?: {
[key: string]: ChoiceUpdate | null | undefined;
}
| null;
IsApplicable?: boolean | null;
LensAlias: string;
Notes?: string | null;
QuestionId: string;
Reason?: AnswerReason | null;
SelectedChoices?: string[] | null;
WorkloadId: string;
}

§Properties

§
ChoiceUpdates?: {
[key: string]: ChoiceUpdate | null | undefined;
}
| null
[src]

A list of choices to update on a question in your workload. The String key corresponds to the choice ID to be updated.

§
IsApplicable?: boolean | null
[src]
§
LensAlias: string
[src]
§
Notes?: string | null
[src]
§
QuestionId: string
[src]
§
Reason?: AnswerReason | null
[src]

The reason why a question is not applicable to your workload.

§
SelectedChoices?: string[] | null
[src]
§
WorkloadId: string
[src]