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

ModifyVpcEndpointRequest

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

Contains the parameters for ModifyVpcEndpoint.

interface ModifyVpcEndpointRequest {
AddRouteTableIds?: string[] | null;
AddSecurityGroupIds?: string[] | null;
AddSubnetIds?: string[] | null;
DryRun?: boolean | null;
PolicyDocument?: string | null;
PrivateDnsEnabled?: boolean | null;
RemoveRouteTableIds?: string[] | null;
RemoveSecurityGroupIds?: string[] | null;
RemoveSubnetIds?: string[] | null;
ResetPolicy?: boolean | null;
VpcEndpointId: string;
}

§Properties

§
AddRouteTableIds?: string[] | null
[src]

(Gateway endpoint) One or more route tables IDs to associate with the endpoint.

§
AddSecurityGroupIds?: string[] | null
[src]

(Interface endpoint) One or more security group IDs to associate with the network interface.

§
AddSubnetIds?: string[] | null
[src]

(Interface and Gateway Load Balancer endpoints) One or more subnet IDs in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.

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

§
PolicyDocument?: string | null
[src]

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.

§
PrivateDnsEnabled?: boolean | null
[src]

(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.

§
RemoveRouteTableIds?: string[] | null
[src]

(Gateway endpoint) One or more route table IDs to disassociate from the endpoint.

§
RemoveSecurityGroupIds?: string[] | null
[src]

(Interface endpoint) One or more security group IDs to disassociate from the network interface.

§
RemoveSubnetIds?: string[] | null
[src]

(Interface endpoint) One or more subnets IDs in which to remove the endpoint.

§
ResetPolicy?: boolean | null
[src]

(Gateway endpoint) Specify true to reset the policy document to the default policy. The default policy allows full access to the service.

§
VpcEndpointId: string
[src]

The ID of the endpoint.