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

DisruptionCompliance

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

Defines the compliance against the resiliency policy for a disruption.

interface DisruptionCompliance {
achievableRpoInSecs?: number | null;
achievableRtoInSecs?: number | null;
complianceStatus: ComplianceStatus;
currentRpoInSecs?: number | null;
currentRtoInSecs?: number | null;
message?: string | null;
rpoDescription?: string | null;
rpoReferenceId?: string | null;
rtoDescription?: string | null;
rtoReferenceId?: string | null;
}

§Properties

§
achievableRpoInSecs?: number | null
[src]

The Recovery Point Objective (RPO) that is achievable, in seconds.

§
achievableRtoInSecs?: number | null
[src]

The Recovery Time Objective (RTO) that is achievable, in seconds

§
complianceStatus: ComplianceStatus
[src]

The current status of compliance for the resiliency policy.

§
currentRpoInSecs?: number | null
[src]

The current RPO, in seconds.

§
currentRtoInSecs?: number | null
[src]

The current RTO, in seconds.

§
message?: string | null
[src]

The disruption compliance message.

§
rpoDescription?: string | null
[src]

The RPO description.

§
rpoReferenceId?: string | null
[src]

The RPO reference identifier.

§
rtoDescription?: string | null
[src]

The RTO description.

§
rtoReferenceId?: string | null
[src]

The RTO reference identifier.