Skip to content

DBClusterEndpointAddressProps

Properties for defining a DBClusterEndpointAddress.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-polardb-dbclusterendpointaddress

Initializer

using AlibabaCloud.SDK.ROS.CDK.Polardb;
new DBClusterEndpointAddressProps {
    object DbClusterId,
    object DbEndpointId,
    object ConnectionStringPrefix = null,
    object NetType = null
};

Properties

Name Type Description
DbClusterId object Property dbClusterId: The ID of the ApsaraDB for POLARDB cluster for which a public connection point is to be created.
DbEndpointId object Property dbEndpointId: The ID of the cluster connection point.
ConnectionStringPrefix object Property connectionStringPrefix: The prefix of the connection string.
NetType object Property netType: The network type of the connection string.

DbClusterIdRequired

public object DbClusterId { get; set; }
  • Type: object

Property dbClusterId: The ID of the ApsaraDB for POLARDB cluster for which a public connection point is to be created.


DbEndpointIdRequired

public object DbEndpointId { get; set; }
  • Type: object

Property dbEndpointId: The ID of the cluster connection point.


ConnectionStringPrefixOptional

public object ConnectionStringPrefix { get; set; }
  • Type: object

Property connectionStringPrefix: The prefix of the connection string.

The prefix must comply with the following rules: It must start with a letter and consist of lowercase letters, digits, and hyphens(-), cannot end with a dash. The length is 6~30 characters.


NetTypeOptional

public object NetType { get; set; }
  • Type: object

Property netType: The network type of the connection string.

If set to Public, ROS will create, modify and delete Public address for you. If set to Private, ROS will only modify Private address for you. Default to Public.