Struct aws_sdk_emr::operation::modify_instance_fleet::builders::ModifyInstanceFleetInputBuilder
source · #[non_exhaustive]pub struct ModifyInstanceFleetInputBuilder { /* private fields */ }
Expand description
A builder for ModifyInstanceFleetInput
.
Implementations§
source§impl ModifyInstanceFleetInputBuilder
impl ModifyInstanceFleetInputBuilder
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 instance_fleet(self, input: InstanceFleetModifyConfig) -> Self
pub fn instance_fleet(self, input: InstanceFleetModifyConfig) -> Self
The configuration parameters of the instance fleet.
This field is required.sourcepub fn set_instance_fleet(
self,
input: Option<InstanceFleetModifyConfig>
) -> Self
pub fn set_instance_fleet( self, input: Option<InstanceFleetModifyConfig> ) -> Self
The configuration parameters of the instance fleet.
sourcepub fn get_instance_fleet(&self) -> &Option<InstanceFleetModifyConfig>
pub fn get_instance_fleet(&self) -> &Option<InstanceFleetModifyConfig>
The configuration parameters of the instance fleet.
sourcepub fn build(self) -> Result<ModifyInstanceFleetInput, BuildError>
pub fn build(self) -> Result<ModifyInstanceFleetInput, BuildError>
Consumes the builder and constructs a ModifyInstanceFleetInput
.
source§impl ModifyInstanceFleetInputBuilder
impl ModifyInstanceFleetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ModifyInstanceFleetOutput, SdkError<ModifyInstanceFleetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ModifyInstanceFleetOutput, SdkError<ModifyInstanceFleetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyInstanceFleetInputBuilder
impl Clone for ModifyInstanceFleetInputBuilder
source§fn clone(&self) -> ModifyInstanceFleetInputBuilder
fn clone(&self) -> ModifyInstanceFleetInputBuilder
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 Default for ModifyInstanceFleetInputBuilder
impl Default for ModifyInstanceFleetInputBuilder
source§fn default() -> ModifyInstanceFleetInputBuilder
fn default() -> ModifyInstanceFleetInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ModifyInstanceFleetInputBuilder
impl PartialEq for ModifyInstanceFleetInputBuilder
source§fn eq(&self, other: &ModifyInstanceFleetInputBuilder) -> bool
fn eq(&self, other: &ModifyInstanceFleetInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyInstanceFleetInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyInstanceFleetInputBuilder
impl RefUnwindSafe for ModifyInstanceFleetInputBuilder
impl Send for ModifyInstanceFleetInputBuilder
impl Sync for ModifyInstanceFleetInputBuilder
impl Unpin for ModifyInstanceFleetInputBuilder
impl UnwindSafe for ModifyInstanceFleetInputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.