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

AuthorizeClientVpnIngressRequest

import type { AuthorizeClientVpnIngressRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface AuthorizeClientVpnIngressRequest {
AccessGroupId?: string | null;
AuthorizeAllGroups?: boolean | null;
ClientToken?: string | null;
ClientVpnEndpointId: string;
Description?: string | null;
DryRun?: boolean | null;
TargetNetworkCidr: string;
}

§Properties

§
AccessGroupId?: string | null
[src]

The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. Required if AuthorizeAllGroups is false or not specified.

§
AuthorizeAllGroups?: boolean | null
[src]

Indicates whether to grant access to all clients. Specify true to grant all clients who successfully establish a VPN connection access to the network. Must be set to true if AccessGroupId is not specified.

§
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.

§
ClientVpnEndpointId: string
[src]

The ID of the Client VPN endpoint.

§
Description?: string | null
[src]

A brief description of the authorization rule.

§
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.

§
TargetNetworkCidr: string
[src]

The IPv4 address range, in CIDR notation, of the network for which access is being authorized.