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

EndpointAccess

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

Information about an Amazon Redshift Serverless VPC endpoint.

interface EndpointAccess {
address?: string | null;
endpointArn?: string | null;
endpointCreateTime?: Date | number | null;
endpointName?: string | null;
endpointStatus?: string | null;
port?: number | null;
subnetIds?: string[] | null;
vpcEndpoint?: VpcEndpoint | null;
vpcSecurityGroups?: VpcSecurityGroupMembership[] | null;
workgroupName?: string | null;
}

§Properties

§
address?: string | null
[src]

The DNS address of the endpoint.

§
endpointArn?: string | null
[src]

The Amazon Resource Name (ARN) of the VPC endpoint.

§
endpointCreateTime?: Date | number | null
[src]

The time that the endpoint was created.

§
endpointName?: string | null
[src]

The name of the VPC endpoint.

§
endpointStatus?: string | null
[src]

The status of the VPC endpoint.

§
port?: number | null
[src]

The port number on which Amazon Redshift Serverless accepts incoming connections.

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

The unique identifier of subnets where Amazon Redshift Serverless choose to deploy the VPC endpoint.

§
vpcEndpoint?: VpcEndpoint | null
[src]

The connection endpoint for connecting to Amazon Redshift Serverless.

§
vpcSecurityGroups?: VpcSecurityGroupMembership[] | null
[src]

The security groups associated with the endpoint.

§
workgroupName?: string | null
[src]

The name of the workgroup associated with the endpoint.