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

GatingRuleUpdate

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

Update to a gating rule. You can update the name or the evaluation period (wait period). If you don't specify one of the items to update, the item is unchanged.

interface GatingRuleUpdate {
Name: string;
SafetyRuleArn: string;
WaitPeriodMs: number;
}

§Properties

§
Name: string
[src]

The name for the gating rule. You can use any non-white space character in the name.

§
SafetyRuleArn: string
[src]

The Amazon Resource Name (ARN) of the gating rule.

§
WaitPeriodMs: number
[src]

An evaluation period, in milliseconds (ms), during which any request against the target routing controls will fail. This helps prevent "flapping" of state. The wait period is 5000 ms by default, but you can choose a custom value.