#[non_exhaustive]pub struct StartInstancesOutputBuilder { /* private fields */ }
Expand description
A builder for StartInstancesOutput
.
Implementations§
source§impl StartInstancesOutputBuilder
impl StartInstancesOutputBuilder
sourcepub fn starting_instances(self, input: InstanceStateChange) -> Self
pub fn starting_instances(self, input: InstanceStateChange) -> Self
Appends an item to starting_instances
.
To override the contents of this collection use set_starting_instances
.
Information about the started instances.
sourcepub fn set_starting_instances(
self,
input: Option<Vec<InstanceStateChange>>
) -> Self
pub fn set_starting_instances( self, input: Option<Vec<InstanceStateChange>> ) -> Self
Information about the started instances.
sourcepub fn get_starting_instances(&self) -> &Option<Vec<InstanceStateChange>>
pub fn get_starting_instances(&self) -> &Option<Vec<InstanceStateChange>>
Information about the started instances.
sourcepub fn build(self) -> StartInstancesOutput
pub fn build(self) -> StartInstancesOutput
Consumes the builder and constructs a StartInstancesOutput
.
Trait Implementations§
source§impl Clone for StartInstancesOutputBuilder
impl Clone for StartInstancesOutputBuilder
source§fn clone(&self) -> StartInstancesOutputBuilder
fn clone(&self) -> StartInstancesOutputBuilder
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 StartInstancesOutputBuilder
impl Debug for StartInstancesOutputBuilder
source§impl Default for StartInstancesOutputBuilder
impl Default for StartInstancesOutputBuilder
source§fn default() -> StartInstancesOutputBuilder
fn default() -> StartInstancesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StartInstancesOutputBuilder
impl PartialEq for StartInstancesOutputBuilder
source§fn eq(&self, other: &StartInstancesOutputBuilder) -> bool
fn eq(&self, other: &StartInstancesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartInstancesOutputBuilder
Auto Trait Implementations§
impl Freeze for StartInstancesOutputBuilder
impl RefUnwindSafe for StartInstancesOutputBuilder
impl Send for StartInstancesOutputBuilder
impl Sync for StartInstancesOutputBuilder
impl Unpin for StartInstancesOutputBuilder
impl UnwindSafe for StartInstancesOutputBuilder
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.