ClusterProps
Properties for defining a Cluster.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-dashvector-cluster
Initializer
import { ClusterProps } from '@alicloud/ros-cdk-dashvector'
const clusterProps: ClusterProps = { ... }
Properties
| Name | Type | Description |
|---|---|---|
clusterName |
string | @alicloud/ros-cdk-core.IResolvable |
Property clusterName: The name of cluster. |
clusterType |
string | @alicloud/ros-cdk-core.IResolvable |
Property clusterType: The type of cluster. |
replicaCount |
number | @alicloud/ros-cdk-core.IResolvable |
Property replicaCount: The number of replicas. |
ignoreExisting |
boolean | @alicloud/ros-cdk-core.IResolvable |
Property ignoreExisting: Whether to ignore existing dash vector cluster False: ROS will perform a uniqueness check.If the dash vector cluster exists, an error will be reported when creating it. True: ROS will not check the uniqueness.If the dash vector cluster exists, the creation process will be ignored. If the dash vector cluster is not created by ROS, it will be ignored during update and delete stage. |
clusterNameRequired
public readonly clusterName: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property clusterName: The name of cluster.
clusterTypeRequired
public readonly clusterType: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
Property clusterType: The type of cluster.
replicaCountRequired
public readonly replicaCount: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
Property replicaCount: The number of replicas.
ignoreExistingOptional
public readonly ignoreExisting: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
Property ignoreExisting: Whether to ignore existing dash vector cluster False: ROS will perform a uniqueness check.If the dash vector cluster exists, an error will be reported when creating it. True: ROS will not check the uniqueness.If the dash vector cluster exists, the creation process will be ignored. If the dash vector cluster is not created by ROS, it will be ignored during update and delete stage.