@aws-cdk_aws-neptune-alpha.DatabaseClusterAttributes

interface DatabaseClusterAttributes ๐Ÿ”น

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

Properties that describe an existing cluster instance.

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';
import { aws_ec2 as ec2 } from 'aws-cdk-lib';

declare const securityGroup: ec2.SecurityGroup;
const databaseClusterAttributes: neptune_alpha.DatabaseClusterAttributes = {
  clusterEndpointAddress: 'clusterEndpointAddress',
  clusterIdentifier: 'clusterIdentifier',
  clusterResourceIdentifier: 'clusterResourceIdentifier',
  port: 123,
  readerEndpointAddress: 'readerEndpointAddress',
  securityGroup: securityGroup,
};

Properties

NameTypeDescription
clusterEndpointAddress๐Ÿ”นstringCluster endpoint address.
clusterIdentifier๐Ÿ”นstringIdentifier for the cluster.
clusterResourceIdentifier๐Ÿ”นstringResource Identifier for the cluster.
port๐Ÿ”นnumberThe database port.
readerEndpointAddress๐Ÿ”นstringReader endpoint address.
securityGroup๐Ÿ”นISecurityGroupThe security group of the database cluster.

clusterEndpointAddress๐Ÿ”น

Type: string

Cluster endpoint address.


clusterIdentifier๐Ÿ”น

Type: string

Identifier for the cluster.


clusterResourceIdentifier๐Ÿ”น

Type: string

Resource Identifier for the cluster.


port๐Ÿ”น

Type: number

The database port.


readerEndpointAddress๐Ÿ”น

Type: string

Reader endpoint address.


securityGroup๐Ÿ”น

Type: ISecurityGroup

The security group of the database cluster.