Struct aws_sdk_elasticbeanstalk::operation::retrieve_environment_info::builders::RetrieveEnvironmentInfoOutputBuilder
source · #[non_exhaustive]pub struct RetrieveEnvironmentInfoOutputBuilder { /* private fields */ }
Expand description
A builder for RetrieveEnvironmentInfoOutput
.
Implementations§
source§impl RetrieveEnvironmentInfoOutputBuilder
impl RetrieveEnvironmentInfoOutputBuilder
sourcepub fn environment_info(self, input: EnvironmentInfoDescription) -> Self
pub fn environment_info(self, input: EnvironmentInfoDescription) -> Self
Appends an item to environment_info
.
To override the contents of this collection use set_environment_info
.
The EnvironmentInfoDescription
of the environment.
sourcepub fn set_environment_info(
self,
input: Option<Vec<EnvironmentInfoDescription>>
) -> Self
pub fn set_environment_info( self, input: Option<Vec<EnvironmentInfoDescription>> ) -> Self
The EnvironmentInfoDescription
of the environment.
sourcepub fn get_environment_info(&self) -> &Option<Vec<EnvironmentInfoDescription>>
pub fn get_environment_info(&self) -> &Option<Vec<EnvironmentInfoDescription>>
The EnvironmentInfoDescription
of the environment.
sourcepub fn build(self) -> RetrieveEnvironmentInfoOutput
pub fn build(self) -> RetrieveEnvironmentInfoOutput
Consumes the builder and constructs a RetrieveEnvironmentInfoOutput
.
Trait Implementations§
source§impl Clone for RetrieveEnvironmentInfoOutputBuilder
impl Clone for RetrieveEnvironmentInfoOutputBuilder
source§fn clone(&self) -> RetrieveEnvironmentInfoOutputBuilder
fn clone(&self) -> RetrieveEnvironmentInfoOutputBuilder
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 RetrieveEnvironmentInfoOutputBuilder
impl Default for RetrieveEnvironmentInfoOutputBuilder
source§fn default() -> RetrieveEnvironmentInfoOutputBuilder
fn default() -> RetrieveEnvironmentInfoOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RetrieveEnvironmentInfoOutputBuilder
impl PartialEq for RetrieveEnvironmentInfoOutputBuilder
source§fn eq(&self, other: &RetrieveEnvironmentInfoOutputBuilder) -> bool
fn eq(&self, other: &RetrieveEnvironmentInfoOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RetrieveEnvironmentInfoOutputBuilder
Auto Trait Implementations§
impl Freeze for RetrieveEnvironmentInfoOutputBuilder
impl RefUnwindSafe for RetrieveEnvironmentInfoOutputBuilder
impl Send for RetrieveEnvironmentInfoOutputBuilder
impl Sync for RetrieveEnvironmentInfoOutputBuilder
impl Unpin for RetrieveEnvironmentInfoOutputBuilder
impl UnwindSafe for RetrieveEnvironmentInfoOutputBuilder
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.