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

VPCDerivedInfo

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

Options to specify the subnets and security groups for VPC endpoint. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

interface VPCDerivedInfo {
AvailabilityZones?: string[] | null;
SecurityGroupIds?: string[] | null;
SubnetIds?: string[] | null;
VPCId?: string | null;
}

§Properties

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

The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

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

Specifies the security groups for VPC endpoint.

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

Specifies the subnets for VPC endpoint.

§
VPCId?: string | null
[src]

The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.