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.4/services/ec2.ts?docs=full";
interface ModifyVpcEndpointRequest {
AddRouteTableIds?: string[] | null;
AddSecurityGroupIds?: string[] | null;
AddSubnetIds?: string[] | null;
DnsOptions?: DnsOptionsSpecification | null;
DryRun?: boolean | null;
IpAddressType?: IpAddressType | 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) The IDs of the route tables to associate with the endpoint.

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

(Interface endpoint) The IDs of the security groups to associate with the network interface.

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

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

§
DnsOptions?: DnsOptionsSpecification | null
[src]

The DNS options for the endpoint.

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

§
IpAddressType?: IpAddressType | null
[src]

The IP address type for the endpoint.

§
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) The IDs of the route tables to disassociate from the endpoint.

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

(Interface endpoint) The IDs of the security groups to disassociate from the network interface.

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

(Interface endpoint) The IDs of the subnets from 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.