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

Recommendation

import type { Recommendation } from "https://aws-api.deno.dev/v0.3/services/devopsguru.ts?docs=full";

Recommendation information to help you remediate detected anomalous behavior that generated an insight.

interface Recommendation {
Description?: string | null;
Link?: string | null;
Name?: string | null;
Reason?: string | null;
RelatedAnomalies?: RecommendationRelatedAnomaly[] | null;
RelatedEvents?: RecommendationRelatedEvent[] | null;
}

§Properties

§
Description?: string | null
[src]

A description of the problem.

§
Name?: string | null
[src]

The name of the recommendation.

§
Reason?: string | null
[src]

The reason DevOps Guru flagged the anomalous behavior as a problem.

§
RelatedAnomalies?: RecommendationRelatedAnomaly[] | null
[src]

Anomalies that are related to the problem. Use these Anomalies to learn more about what's happening and to help address the issue.

§
RelatedEvents?: RecommendationRelatedEvent[] | null
[src]

Events that are related to the problem. Use these events to learn more about what's happening and to help address the issue.