@aws-cdk_aws-redshift-alpha.Endpoint

class Endpoint ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Redshift.Alpha.Endpoint
Gogithub.com/aws/aws-cdk-go/awscdkredshiftalpha/v2#Endpoint
Javasoftware.amazon.awscdk.services.redshift.alpha.Endpoint
Pythonaws_cdk.aws_redshift_alpha.Endpoint
TypeScript (source)@aws-cdk/aws-redshift-alpha ยป Endpoint

Connection endpoint of a redshift cluster.

Consists of a combination of hostname and port.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshift_alpha from '@aws-cdk/aws-redshift-alpha';
const endpoint = new redshift_alpha.Endpoint('address', 123);

Initializer

new Endpoint(address: string, port: number)

Parameters

  • address string
  • port number

Properties

NameTypeDescription
hostname๐Ÿ”นstringThe hostname of the endpoint.
port๐Ÿ”นnumberThe port of the endpoint.
socketAddress๐Ÿ”นstringThe combination of "HOSTNAME:PORT" for this endpoint.

hostname๐Ÿ”น

Type: string

The hostname of the endpoint.


port๐Ÿ”น

Type: number

The port of the endpoint.


socketAddress๐Ÿ”น

Type: string

The combination of "HOSTNAME:PORT" for this endpoint.