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

SubnetGroup

import type { SubnetGroup } from "https://aws-api.deno.dev/v0.4/services/memorydb.ts?docs=full";

Represents the output of one of the following operations:

  • CreateSubnetGroup
  • UpdateSubnetGroup

A subnet group is a collection of subnets (typically private) that you can designate for your clusters running in an Amazon Virtual Private Cloud (VPC) environment.

interface SubnetGroup {
ARN?: string | null;
Description?: string | null;
Name?: string | null;
Subnets?: Subnet[] | null;
VpcId?: string | null;
}

§Properties

§
ARN?: string | null
[src]

The ARN (Amazon Resource Name) of the subnet group.

§
Description?: string | null
[src]

A description of the subnet group

§
Name?: string | null
[src]

The name of the subnet group

§
Subnets?: Subnet[] | null
[src]

A list of subnets associated with the subnet group.

§
VpcId?: string | null
[src]

The Amazon Virtual Private Cloud identifier (VPC ID) of the subnet group.