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