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/opensearch.ts?docs=full";

Options to specify the subnets and security groups for the VPC endpoint. For more information, see Launching your Amazon OpenSearch Service domains using a VPC.

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

§Properties

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

The Availability Zones for the domain. Exists only if the domain was created with VPCOptions.

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

The security groups for the VPC endpoint.

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

The subnets for the VPC endpoint.

§
VPCId?: string | null
[src]

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