#[non_exhaustive]pub struct ModifyClusterInputBuilder { /* private fields */ }
Expand description
A builder for ModifyClusterInput
.
Implementations§
source§impl ModifyClusterInputBuilder
impl ModifyClusterInputBuilder
sourcepub fn cluster_id(self, input: impl Into<String>) -> Self
pub fn cluster_id(self, input: impl Into<String>) -> Self
The unique identifier of the cluster.
This field is required.sourcepub fn set_cluster_id(self, input: Option<String>) -> Self
pub fn set_cluster_id(self, input: Option<String>) -> Self
The unique identifier of the cluster.
sourcepub fn get_cluster_id(&self) -> &Option<String>
pub fn get_cluster_id(&self) -> &Option<String>
The unique identifier of the cluster.
sourcepub fn step_concurrency_level(self, input: i32) -> Self
pub fn step_concurrency_level(self, input: i32) -> Self
The number of steps that can be executed concurrently. You can specify a minimum of 1 step and a maximum of 256 steps. We recommend that you do not change this parameter while steps are running or the ActionOnFailure
setting may not behave as expected. For more information see Step$ActionOnFailure
.
sourcepub fn set_step_concurrency_level(self, input: Option<i32>) -> Self
pub fn set_step_concurrency_level(self, input: Option<i32>) -> Self
The number of steps that can be executed concurrently. You can specify a minimum of 1 step and a maximum of 256 steps. We recommend that you do not change this parameter while steps are running or the ActionOnFailure
setting may not behave as expected. For more information see Step$ActionOnFailure
.
sourcepub fn get_step_concurrency_level(&self) -> &Option<i32>
pub fn get_step_concurrency_level(&self) -> &Option<i32>
The number of steps that can be executed concurrently. You can specify a minimum of 1 step and a maximum of 256 steps. We recommend that you do not change this parameter while steps are running or the ActionOnFailure
setting may not behave as expected. For more information see Step$ActionOnFailure
.
sourcepub fn build(self) -> Result<ModifyClusterInput, BuildError>
pub fn build(self) -> Result<ModifyClusterInput, BuildError>
Consumes the builder and constructs a ModifyClusterInput
.
source§impl ModifyClusterInputBuilder
impl ModifyClusterInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyClusterOutput, SdkError<ModifyClusterError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyClusterOutput, SdkError<ModifyClusterError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyClusterInputBuilder
impl Clone for ModifyClusterInputBuilder
source§fn clone(&self) -> ModifyClusterInputBuilder
fn clone(&self) -> ModifyClusterInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyClusterInputBuilder
impl Debug for ModifyClusterInputBuilder
source§impl Default for ModifyClusterInputBuilder
impl Default for ModifyClusterInputBuilder
source§fn default() -> ModifyClusterInputBuilder
fn default() -> ModifyClusterInputBuilder
impl StructuralPartialEq for ModifyClusterInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyClusterInputBuilder
impl RefUnwindSafe for ModifyClusterInputBuilder
impl Send for ModifyClusterInputBuilder
impl Sync for ModifyClusterInputBuilder
impl Unpin for ModifyClusterInputBuilder
impl UnwindSafe for ModifyClusterInputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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