#[non_exhaustive]pub struct DescribeResizeInputBuilder { /* private fields */ }Expand description
A builder for DescribeResizeInput.
Implementations§
source§impl DescribeResizeInputBuilder
impl DescribeResizeInputBuilder
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive.
By default, resize operations for all clusters defined for an Amazon Web Services account are returned.
This field is required.sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive.
By default, resize operations for all clusters defined for an Amazon Web Services account are returned.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The unique identifier of a cluster whose resize progress you are requesting. This parameter is case-sensitive.
By default, resize operations for all clusters defined for an Amazon Web Services account are returned.
sourcepub fn build(self) -> Result<DescribeResizeInput, BuildError>
pub fn build(self) -> Result<DescribeResizeInput, BuildError>
Consumes the builder and constructs a DescribeResizeInput.
source§impl DescribeResizeInputBuilder
impl DescribeResizeInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeResizeOutput, SdkError<DescribeResizeError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeResizeOutput, SdkError<DescribeResizeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeResizeInputBuilder
impl Clone for DescribeResizeInputBuilder
source§fn clone(&self) -> DescribeResizeInputBuilder
fn clone(&self) -> DescribeResizeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeResizeInputBuilder
impl Debug for DescribeResizeInputBuilder
source§impl Default for DescribeResizeInputBuilder
impl Default for DescribeResizeInputBuilder
source§fn default() -> DescribeResizeInputBuilder
fn default() -> DescribeResizeInputBuilder
source§impl PartialEq for DescribeResizeInputBuilder
impl PartialEq for DescribeResizeInputBuilder
source§fn eq(&self, other: &DescribeResizeInputBuilder) -> bool
fn eq(&self, other: &DescribeResizeInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeResizeInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeResizeInputBuilder
impl RefUnwindSafe for DescribeResizeInputBuilder
impl Send for DescribeResizeInputBuilder
impl Sync for DescribeResizeInputBuilder
impl Unpin for DescribeResizeInputBuilder
impl UnwindSafe for DescribeResizeInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more