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

CreateDBClusterEndpointMessage

import type { CreateDBClusterEndpointMessage } from "https://aws-api.deno.dev/v0.3/services/neptune.ts?docs=full";
interface CreateDBClusterEndpointMessage {
DBClusterEndpointIdentifier: string;
DBClusterIdentifier: string;
EndpointType: string;
ExcludedMembers?: string[] | null;
StaticMembers?: string[] | null;
Tags?: Tag[] | null;
}

§Properties

§
DBClusterEndpointIdentifier: string
[src]

The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

§
DBClusterIdentifier: string
[src]

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

§
EndpointType: string
[src]

The type of the endpoint. One of: READER, WRITER, ANY.

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

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

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

List of DB instance identifiers that are part of the custom endpoint group.

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

The tags to be assigned to the Amazon Neptune resource.