Struct aws_sdk_emr::operation::modify_cluster::ModifyClusterInput
source · #[non_exhaustive]pub struct ModifyClusterInput { /* private fields */ }
Implementations§
source§impl ModifyClusterInput
impl ModifyClusterInput
sourcepub fn cluster_id(&self) -> Option<&str>
pub fn cluster_id(&self) -> Option<&str>
The unique identifier of the cluster.
sourcepub fn step_concurrency_level(&self) -> Option<i32>
pub fn 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
.
source§impl ModifyClusterInput
impl ModifyClusterInput
sourcepub fn builder() -> ModifyClusterInputBuilder
pub fn builder() -> ModifyClusterInputBuilder
Creates a new builder-style object to manufacture ModifyClusterInput
.
source§impl ModifyClusterInput
impl ModifyClusterInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyCluster, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ModifyCluster, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyCluster
>
Trait Implementations§
source§impl Clone for ModifyClusterInput
impl Clone for ModifyClusterInput
source§fn clone(&self) -> ModifyClusterInput
fn clone(&self) -> ModifyClusterInput
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 ModifyClusterInput
impl Debug for ModifyClusterInput
source§impl PartialEq<ModifyClusterInput> for ModifyClusterInput
impl PartialEq<ModifyClusterInput> for ModifyClusterInput
source§fn eq(&self, other: &ModifyClusterInput) -> bool
fn eq(&self, other: &ModifyClusterInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyClusterInput
Auto Trait Implementations§
impl RefUnwindSafe for ModifyClusterInput
impl Send for ModifyClusterInput
impl Sync for ModifyClusterInput
impl Unpin for ModifyClusterInput
impl UnwindSafe for ModifyClusterInput
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