Struct aws_sdk_memorydb::model::shard_configuration::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for ShardConfiguration.
Implementations
sourceimpl 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.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more