Struct aws_sdk_memorydb::model::shard_configuration::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ShardConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn slots(self, input: impl Into<String>) -> Self
pub fn slots(self, input: impl Into<String>) -> Self
A string that specifies the keyspace for a particular node group. Keyspaces range from 0 to 16,383. The string is in the format startkey-endkey.
sourcepub fn set_slots(self, input: Option<String>) -> Self
pub fn set_slots(self, input: Option<String>) -> Self
A string that specifies the keyspace for a particular node group. Keyspaces range from 0 to 16,383. The string is in the format startkey-endkey.
sourcepub fn replica_count(self, input: i32) -> Self
pub fn replica_count(self, input: i32) -> Self
The number of read replica nodes in this shard.
sourcepub fn set_replica_count(self, input: Option<i32>) -> Self
pub fn set_replica_count(self, input: Option<i32>) -> Self
The number of read replica nodes in this shard.
sourcepub fn build(self) -> ShardConfiguration
pub fn build(self) -> ShardConfiguration
Consumes the builder and constructs a ShardConfiguration
.