#[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
source§impl PartialEq for ModifyClusterInputBuilder
impl PartialEq for ModifyClusterInputBuilder
source§fn eq(&self, other: &ModifyClusterInputBuilder) -> bool
fn eq(&self, other: &ModifyClusterInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.