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

Rule

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

Information about a rule.

interface Rule {
Actions: Action[];
Conditions: RuleCondition[];
IsDefault?: boolean | null;
Priority?: string | null;
RuleArn?: string | null;
}

§Properties

§
Actions: Action[]
[src]

The actions. Each rule must include exactly one of the following types of actions: forward, redirect, or fixed-response, and it must be the last action to be performed.

§
Conditions: RuleCondition[]
[src]

The conditions. Each rule can include zero or one of the following conditions: http-request-method, host-header, path-pattern, and source-ip, and zero or more of the following conditions: http-header and query-string.

§
IsDefault?: boolean | null
[src]

Indicates whether this is the default rule.

§
Priority?: string | null
[src]

The priority.

§
RuleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the rule.