#[non_exhaustive]pub struct CapacitySpecificationBuilder { /* private fields */ }
Expand description
A builder for CapacitySpecification
.
Implementations§
source§impl CapacitySpecificationBuilder
impl CapacitySpecificationBuilder
sourcepub fn throughput_mode(self, input: ThroughputMode) -> Self
pub fn throughput_mode(self, input: ThroughputMode) -> Self
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
- Provisioned capacity mode requiresreadCapacityUnits
andwriteCapacityUnits
as input.
The default is throughput_mode:PAY_PER_REQUEST
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
This field is required.sourcepub fn set_throughput_mode(self, input: Option<ThroughputMode>) -> Self
pub fn set_throughput_mode(self, input: Option<ThroughputMode>) -> Self
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
- Provisioned capacity mode requiresreadCapacityUnits
andwriteCapacityUnits
as input.
The default is throughput_mode:PAY_PER_REQUEST
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn get_throughput_mode(&self) -> &Option<ThroughputMode>
pub fn get_throughput_mode(&self) -> &Option<ThroughputMode>
The read/write throughput capacity mode for a table. The options are:
-
throughputMode:PAY_PER_REQUEST
and -
throughputMode:PROVISIONED
- Provisioned capacity mode requiresreadCapacityUnits
andwriteCapacityUnits
as input.
The default is throughput_mode:PAY_PER_REQUEST
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn read_capacity_units(self, input: i64) -> Self
pub fn read_capacity_units(self, input: i64) -> Self
The throughput capacity specified for read
operations defined in read capacity units
(RCUs)
.
sourcepub fn set_read_capacity_units(self, input: Option<i64>) -> Self
pub fn set_read_capacity_units(self, input: Option<i64>) -> Self
The throughput capacity specified for read
operations defined in read capacity units
(RCUs)
.
sourcepub fn get_read_capacity_units(&self) -> &Option<i64>
pub fn get_read_capacity_units(&self) -> &Option<i64>
The throughput capacity specified for read
operations defined in read capacity units
(RCUs)
.
sourcepub fn write_capacity_units(self, input: i64) -> Self
pub fn write_capacity_units(self, input: i64) -> Self
The throughput capacity specified for write
operations defined in write capacity units
(WCUs)
.
sourcepub fn set_write_capacity_units(self, input: Option<i64>) -> Self
pub fn set_write_capacity_units(self, input: Option<i64>) -> Self
The throughput capacity specified for write
operations defined in write capacity units
(WCUs)
.
sourcepub fn get_write_capacity_units(&self) -> &Option<i64>
pub fn get_write_capacity_units(&self) -> &Option<i64>
The throughput capacity specified for write
operations defined in write capacity units
(WCUs)
.
sourcepub fn build(self) -> Result<CapacitySpecification, BuildError>
pub fn build(self) -> Result<CapacitySpecification, BuildError>
Consumes the builder and constructs a CapacitySpecification
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CapacitySpecificationBuilder
impl Clone for CapacitySpecificationBuilder
source§fn clone(&self) -> CapacitySpecificationBuilder
fn clone(&self) -> CapacitySpecificationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CapacitySpecificationBuilder
impl Debug for CapacitySpecificationBuilder
source§impl Default for CapacitySpecificationBuilder
impl Default for CapacitySpecificationBuilder
source§fn default() -> CapacitySpecificationBuilder
fn default() -> CapacitySpecificationBuilder
source§impl PartialEq for CapacitySpecificationBuilder
impl PartialEq for CapacitySpecificationBuilder
source§fn eq(&self, other: &CapacitySpecificationBuilder) -> bool
fn eq(&self, other: &CapacitySpecificationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.