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

TestRecommendation

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

Defines a test recommendation.

interface TestRecommendation {
appComponentName?: string | null;
dependsOnAlarms?: string[] | null;
description?: string | null;
intent?: string | null;
items?: RecommendationItem[] | null;
name?: string | null;
prerequisite?: string | null;
recommendationId?: string | null;
referenceId: string;
risk?: TestRisk | null;
type?: TestType | null;
}

§Properties

§
appComponentName?: string | null
[src]

The name of the Application Component.

§
dependsOnAlarms?: string[] | null
[src]

A list of recommended alarms that are used in the test and must be exported before or with the test.

§
description?: string | null
[src]

The description for the test recommendation.

§
intent?: string | null
[src]

The intent of the test recommendation.

§
items?: RecommendationItem[] | null
[src]

The test recommendation items.

§
name?: string | null
[src]

The name of the test recommendation.

§
prerequisite?: string | null
[src]

The prerequisite of the test recommendation.

§
recommendationId?: string | null
[src]

Identifier for the test recommendation.

§
referenceId: string
[src]

The reference identifier for the test recommendation.

§
risk?: TestRisk | null
[src]

The level of risk for this test recommendation.

§
type?: TestType | null
[src]

The type of test recommendation.