Struct aws_sdk_codedeploy::operation::batch_get_application_revisions::builders::BatchGetApplicationRevisionsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetApplicationRevisionsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetApplicationRevisionsOutput
.
Implementations§
source§impl BatchGetApplicationRevisionsOutputBuilder
impl BatchGetApplicationRevisionsOutputBuilder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of the application that corresponds to the revisions.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of the application that corresponds to the revisions.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of the application that corresponds to the revisions.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
Information about errors that might have occurred during the API call.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
Information about errors that might have occurred during the API call.
sourcepub fn get_error_message(&self) -> &Option<String>
pub fn get_error_message(&self) -> &Option<String>
Information about errors that might have occurred during the API call.
sourcepub fn revisions(self, input: RevisionInfo) -> Self
pub fn revisions(self, input: RevisionInfo) -> Self
Appends an item to revisions
.
To override the contents of this collection use set_revisions
.
Additional information about the revisions, including the type and location.
sourcepub fn set_revisions(self, input: Option<Vec<RevisionInfo>>) -> Self
pub fn set_revisions(self, input: Option<Vec<RevisionInfo>>) -> Self
Additional information about the revisions, including the type and location.
sourcepub fn get_revisions(&self) -> &Option<Vec<RevisionInfo>>
pub fn get_revisions(&self) -> &Option<Vec<RevisionInfo>>
Additional information about the revisions, including the type and location.
sourcepub fn build(self) -> BatchGetApplicationRevisionsOutput
pub fn build(self) -> BatchGetApplicationRevisionsOutput
Consumes the builder and constructs a BatchGetApplicationRevisionsOutput
.
Trait Implementations§
source§impl Clone for BatchGetApplicationRevisionsOutputBuilder
impl Clone for BatchGetApplicationRevisionsOutputBuilder
source§fn clone(&self) -> BatchGetApplicationRevisionsOutputBuilder
fn clone(&self) -> BatchGetApplicationRevisionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetApplicationRevisionsOutputBuilder
impl Default for BatchGetApplicationRevisionsOutputBuilder
source§fn default() -> BatchGetApplicationRevisionsOutputBuilder
fn default() -> BatchGetApplicationRevisionsOutputBuilder
source§impl PartialEq for BatchGetApplicationRevisionsOutputBuilder
impl PartialEq for BatchGetApplicationRevisionsOutputBuilder
source§fn eq(&self, other: &BatchGetApplicationRevisionsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetApplicationRevisionsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetApplicationRevisionsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetApplicationRevisionsOutputBuilder
impl RefUnwindSafe for BatchGetApplicationRevisionsOutputBuilder
impl Send for BatchGetApplicationRevisionsOutputBuilder
impl Sync for BatchGetApplicationRevisionsOutputBuilder
impl Unpin for BatchGetApplicationRevisionsOutputBuilder
impl UnwindSafe for BatchGetApplicationRevisionsOutputBuilder
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
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>
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>
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 more