interface GlobalEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnGlobalClusterPropsMixin.GlobalEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnGlobalClusterPropsMixin_GlobalEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnGlobalClusterPropsMixin.GlobalEndpointProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnGlobalClusterPropsMixin.GlobalEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnGlobalClusterPropsMixin » GlobalEndpointProperty |
The writer endpoint for the new global database cluster.
This endpoint always points to the writer DB instance in the current primary cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const globalEndpointProperty: rds_mixins.CfnGlobalClusterPropsMixin.GlobalEndpointProperty = {
address: 'address',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The writer endpoint for the new global database cluster. |
address?
Type:
string
(optional)
The writer endpoint for the new global database cluster.
This endpoint always points to the writer DB instance in the current primary cluster.

.NET
Go
Java
Python
TypeScript