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

CreateCacheSubnetGroupMessage

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

Represents the input of a CreateCacheSubnetGroup operation.

interface CreateCacheSubnetGroupMessage {
CacheSubnetGroupDescription: string;
CacheSubnetGroupName: string;
SubnetIds: string[];
Tags?: Tag[] | null;
}

§Properties

§
CacheSubnetGroupDescription: string
[src]

A description for the cache subnet group.

§
CacheSubnetGroupName: string
[src]

A name for the cache subnet group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters or hyphens.

Example: mysubnetgroup

§
SubnetIds: string[]
[src]

A list of VPC subnet IDs for the cache subnet group.

§
Tags?: Tag[] | null
[src]

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.