#[non_exhaustive]pub struct UpdateStorageInputBuilder { /* private fields */ }
Expand description
A builder for UpdateStorageInput
.
Implementations§
source§impl UpdateStorageInputBuilder
impl UpdateStorageInputBuilder
sourcepub fn cluster_arn(self, input: impl Into<String>) -> Self
pub fn cluster_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the cluster to be updated.
sourcepub fn set_cluster_arn(self, input: Option<String>) -> Self
pub fn set_cluster_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the cluster to be updated.
sourcepub fn current_version(self, input: impl Into<String>) -> Self
pub fn current_version(self, input: impl Into<String>) -> Self
The version of cluster to update from. A successful operation will then generate a new version.
sourcepub fn set_current_version(self, input: Option<String>) -> Self
pub fn set_current_version(self, input: Option<String>) -> Self
The version of cluster to update from. A successful operation will then generate a new version.
sourcepub fn provisioned_throughput(self, input: ProvisionedThroughput) -> Self
pub fn provisioned_throughput(self, input: ProvisionedThroughput) -> Self
EBS volume provisioned throughput information.
sourcepub fn set_provisioned_throughput(
self,
input: Option<ProvisionedThroughput>
) -> Self
pub fn set_provisioned_throughput( self, input: Option<ProvisionedThroughput> ) -> Self
EBS volume provisioned throughput information.
sourcepub fn storage_mode(self, input: StorageMode) -> Self
pub fn storage_mode(self, input: StorageMode) -> Self
Controls storage mode for supported storage tiers.
sourcepub fn set_storage_mode(self, input: Option<StorageMode>) -> Self
pub fn set_storage_mode(self, input: Option<StorageMode>) -> Self
Controls storage mode for supported storage tiers.
sourcepub fn volume_size_gb(self, input: i32) -> Self
pub fn volume_size_gb(self, input: i32) -> Self
size of the EBS volume to update.
sourcepub fn set_volume_size_gb(self, input: Option<i32>) -> Self
pub fn set_volume_size_gb(self, input: Option<i32>) -> Self
size of the EBS volume to update.
sourcepub fn build(self) -> Result<UpdateStorageInput, BuildError>
pub fn build(self) -> Result<UpdateStorageInput, BuildError>
Consumes the builder and constructs a UpdateStorageInput
.
Trait Implementations§
source§impl Clone for UpdateStorageInputBuilder
impl Clone for UpdateStorageInputBuilder
source§fn clone(&self) -> UpdateStorageInputBuilder
fn clone(&self) -> UpdateStorageInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateStorageInputBuilder
impl Debug for UpdateStorageInputBuilder
source§impl Default for UpdateStorageInputBuilder
impl Default for UpdateStorageInputBuilder
source§fn default() -> UpdateStorageInputBuilder
fn default() -> UpdateStorageInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateStorageInputBuilder> for UpdateStorageInputBuilder
impl PartialEq<UpdateStorageInputBuilder> for UpdateStorageInputBuilder
source§fn eq(&self, other: &UpdateStorageInputBuilder) -> bool
fn eq(&self, other: &UpdateStorageInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateStorageInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateStorageInputBuilder
impl Send for UpdateStorageInputBuilder
impl Sync for UpdateStorageInputBuilder
impl Unpin for UpdateStorageInputBuilder
impl UnwindSafe for UpdateStorageInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more