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

ResiliencyPolicy

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

Defines a resiliency policy.

interface ResiliencyPolicy {
creationTime?: Date | number | null;
dataLocationConstraint?: DataLocationConstraint | null;
estimatedCostTier?: EstimatedCostTier | null;
policy?: [key in DisruptionType]: FailurePolicy | null | undefined | null;
policyArn?: string | null;
policyDescription?: string | null;
policyName?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
tier?: ResiliencyPolicyTier | null;
}

§Properties

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

The timestamp for when the resiliency policy was created.

§
dataLocationConstraint?: DataLocationConstraint | null
[src]

Specifies a high-level geographical location constraint for where your resilience policy data can be stored.

§
estimatedCostTier?: EstimatedCostTier | null
[src]

Specifies the estimated cost tier of the resiliency policy.

§
policy?: [key in DisruptionType]: FailurePolicy | null | undefined | null
[src]

The resiliency policy.

§
policyArn?: string | null
[src]

The Amazon Resource Name (ARN) of the resiliency policy. The format for this ARN is: arn:partition:resiliencehub:region:account:resiliency-policy/policy-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference guide.

§
policyDescription?: string | null
[src]

The description for the policy.

§
policyName?: string | null
[src]

The name of the policy

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags assigned to the resource. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key/value pair.

§

The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).