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

TrustedAdvisorCheckSummary

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

A summary of a Trusted Advisor check result, including the alert status, last refresh, and number of resources examined.

interface TrustedAdvisorCheckSummary {
categorySpecificSummary: TrustedAdvisorCategorySpecificSummary;
checkId: string;
hasFlaggedResources?: boolean | null;
status: string;
timestamp: string;
}

§Properties

§

Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.

§
checkId: string
[src]

The unique identifier for the Trusted Advisor check.

§
hasFlaggedResources?: boolean | null
[src]

Specifies whether the Trusted Advisor check has flagged resources.

§
status: string
[src]

The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".

§
timestamp: string
[src]

The time of the last refresh of the check.