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

RuleGroupSourceStatefulRulesHeaderDetails

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

The inspection criteria for a stateful rule.

interface RuleGroupSourceStatefulRulesHeaderDetails {
Destination?: string | null;
DestinationPort?: string | null;
Direction?: string | null;
Protocol?: string | null;
Source?: string | null;
SourcePort?: string | null;
}

§Properties

§
Destination?: string | null
[src]

The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify ANY.

§
DestinationPort?: string | null
[src]

The destination port to inspect for. You can specify an individual port, such as 1994. You also can specify a port range, such as 1990:1994. To match with any port, specify ANY.

§
Direction?: string | null
[src]

The direction of traffic flow to inspect. If set to ANY, the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to FORWARD, the inspection only matches traffic going from the source to the destination.

§
Protocol?: string | null
[src]

The protocol to inspect for. To inspector for all protocols, use IP.

§
Source?: string | null
[src]

The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify ANY.

§
SourcePort?: string | null
[src]

The source port to inspect for. You can specify an individual port, such as 1994. You also can specify a port range, such as 1990:1994. To match with any port, specify ANY.