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

RemediationException

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

An object that represents the details about the remediation exception. The details include the rule name, an explanation of an exception, the time when the exception will be deleted, the resource ID, and resource type.

interface RemediationException {
ConfigRuleName: string;
ExpirationTime?: Date | number | null;
Message?: string | null;
ResourceId: string;
ResourceType: string;
}

§Properties

§
ConfigRuleName: string
[src]

The name of the Config rule.

§
ExpirationTime?: Date | number | null
[src]

The time when the remediation exception will be deleted.

§
Message?: string | null
[src]

An explanation of an remediation exception.

§
ResourceId: string
[src]

The ID of the resource (for example., sg-xxxxxx).

§
ResourceType: string
[src]

The type of a resource.