Struct aws_sdk_opensearch::model::ClusterConfig
source · [−]#[non_exhaustive]pub struct ClusterConfig {
pub instance_type: Option<OpenSearchPartitionInstanceType>,
pub instance_count: Option<i32>,
pub dedicated_master_enabled: Option<bool>,
pub zone_awareness_enabled: Option<bool>,
pub zone_awareness_config: Option<ZoneAwarenessConfig>,
pub dedicated_master_type: Option<OpenSearchPartitionInstanceType>,
pub dedicated_master_count: Option<i32>,
pub warm_enabled: Option<bool>,
pub warm_type: Option<OpenSearchWarmPartitionInstanceType>,
pub warm_count: Option<i32>,
pub cold_storage_options: Option<ColdStorageOptions>,
}
Expand description
The configuration for the domain cluster, such as the type and number of instances.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.instance_type: Option<OpenSearchPartitionInstanceType>
The instance type for an OpenSearch cluster. UltraWarm instance types are not supported for data instances.
instance_count: Option<i32>
The number of instances in the specified domain cluster.
dedicated_master_enabled: Option<bool>
A boolean value to indicate whether a dedicated master node is enabled. See Dedicated master nodes in Amazon OpenSearch Service for more information.
zone_awareness_enabled: Option<bool>
A boolean value to indicate whether zone awareness is enabled. See Configuring a multi-AZ domain in Amazon OpenSearch Service for more information.
zone_awareness_config: Option<ZoneAwarenessConfig>
The zone awareness configuration for a domain when zone awareness is enabled.
dedicated_master_type: Option<OpenSearchPartitionInstanceType>
The instance type for a dedicated master node.
dedicated_master_count: Option<i32>
Total number of dedicated master nodes, active and on standby, for the cluster.
warm_enabled: Option<bool>
True to enable UltraWarm storage.
warm_type: Option<OpenSearchWarmPartitionInstanceType>
The instance type for the OpenSearch cluster's warm nodes.
warm_count: Option<i32>
The number of UltraWarm nodes in the cluster.
cold_storage_options: Option<ColdStorageOptions>
Specifies the ColdStorageOptions
config for a Domain
Implementations
The instance type for an OpenSearch cluster. UltraWarm instance types are not supported for data instances.
The number of instances in the specified domain cluster.
A boolean value to indicate whether a dedicated master node is enabled. See Dedicated master nodes in Amazon OpenSearch Service for more information.
A boolean value to indicate whether zone awareness is enabled. See Configuring a multi-AZ domain in Amazon OpenSearch Service for more information.
The zone awareness configuration for a domain when zone awareness is enabled.
The instance type for a dedicated master node.
Total number of dedicated master nodes, active and on standby, for the cluster.
True to enable UltraWarm storage.
The instance type for the OpenSearch cluster's warm nodes.
The number of UltraWarm nodes in the cluster.
Specifies the ColdStorageOptions
config for a Domain
Creates a new builder-style object to manufacture ClusterConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ClusterConfig
impl Send for ClusterConfig
impl Sync for ClusterConfig
impl Unpin for ClusterConfig
impl UnwindSafe for ClusterConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more