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

CreateTrafficMirrorFilterRuleRequest

import type { CreateTrafficMirrorFilterRuleRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface CreateTrafficMirrorFilterRuleRequest {
ClientToken?: string | null;
Description?: string | null;
DestinationCidrBlock: string;
DestinationPortRange?: TrafficMirrorPortRangeRequest | null;
DryRun?: boolean | null;
Protocol?: number | null;
RuleNumber: number;
SourceCidrBlock: string;
SourcePortRange?: TrafficMirrorPortRangeRequest | null;
TrafficDirection: TrafficDirection;
TrafficMirrorFilterId: string;
}

§Properties

§
ClientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

§
Description?: string | null
[src]

The description of the Traffic Mirror rule.

§
DestinationCidrBlock: string
[src]

The destination CIDR block to assign to the Traffic Mirror rule.

§
DestinationPortRange?: TrafficMirrorPortRangeRequest | null
[src]

The destination port range.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
Protocol?: number | null
[src]

The protocol, for example UDP, to assign to the Traffic Mirror rule.

For information about the protocol value, see Protocol Numbers on the Internet Assigned Numbers Authority (IANA) website.

§

The action to take on the filtered traffic.

§
RuleNumber: number
[src]

The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given direction. The rules are processed in ascending order by rule number.

§
SourceCidrBlock: string
[src]

The source CIDR block to assign to the Traffic Mirror rule.

§
SourcePortRange?: TrafficMirrorPortRangeRequest | null
[src]

The source port range.

§
TrafficDirection: TrafficDirection
[src]

The type of traffic.

§
TrafficMirrorFilterId: string
[src]

The ID of the filter that this rule is associated with.