@aws-cdk_aws-neptune-alpha.Endpoint

class Endpoint ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Neptune.Alpha.Endpoint
Gogithub.com/aws/aws-cdk-go/awscdkneptunealpha/v2#Endpoint
Javasoftware.amazon.awscdk.services.neptune.alpha.Endpoint
Pythonaws_cdk.aws_neptune_alpha.Endpoint
TypeScript (source)@aws-cdk/aws-neptune-alpha ยป Endpoint

Connection endpoint of a neptune cluster or instance.

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 neptune_alpha from '@aws-cdk/aws-neptune-alpha';
const endpoint = new neptune_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.