pub struct Builder { /* private fields */ }
Expand description
A builder for CapacityLimits
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn max_indexing_capacity_in_ocu(self, input: i32) -> Self
pub fn max_indexing_capacity_in_ocu(self, input: i32) -> Self
The maximum indexing capacity for collections.
sourcepub fn set_max_indexing_capacity_in_ocu(self, input: Option<i32>) -> Self
pub fn set_max_indexing_capacity_in_ocu(self, input: Option<i32>) -> Self
The maximum indexing capacity for collections.
sourcepub fn max_search_capacity_in_ocu(self, input: i32) -> Self
pub fn max_search_capacity_in_ocu(self, input: i32) -> Self
The maximum search capacity for collections.
sourcepub fn set_max_search_capacity_in_ocu(self, input: Option<i32>) -> Self
pub fn set_max_search_capacity_in_ocu(self, input: Option<i32>) -> Self
The maximum search capacity for collections.
sourcepub fn build(self) -> CapacityLimits
pub fn build(self) -> CapacityLimits
Consumes the builder and constructs a CapacityLimits
.