Struct aws_sdk_codedeploy::operation::batch_get_application_revisions::BatchGetApplicationRevisionsInput
source · #[non_exhaustive]pub struct BatchGetApplicationRevisionsInput {
pub application_name: Option<String>,
pub revisions: Option<Vec<RevisionLocation>>,
}
Expand description
Represents the input of a BatchGetApplicationRevisions
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of an CodeDeploy application about which to get revision information.
revisions: Option<Vec<RevisionLocation>>
An array of RevisionLocation
objects that specify information to get about the application revisions, including type and location. The maximum number of RevisionLocation
objects you can specify is 25.
Implementations§
source§impl BatchGetApplicationRevisionsInput
impl BatchGetApplicationRevisionsInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of an CodeDeploy application about which to get revision information.
sourcepub fn revisions(&self) -> &[RevisionLocation]
pub fn revisions(&self) -> &[RevisionLocation]
An array of RevisionLocation
objects that specify information to get about the application revisions, including type and location. The maximum number of RevisionLocation
objects you can specify is 25.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .revisions.is_none()
.
source§impl BatchGetApplicationRevisionsInput
impl BatchGetApplicationRevisionsInput
sourcepub fn builder() -> BatchGetApplicationRevisionsInputBuilder
pub fn builder() -> BatchGetApplicationRevisionsInputBuilder
Creates a new builder-style object to manufacture BatchGetApplicationRevisionsInput
.
Trait Implementations§
source§impl Clone for BatchGetApplicationRevisionsInput
impl Clone for BatchGetApplicationRevisionsInput
source§fn clone(&self) -> BatchGetApplicationRevisionsInput
fn clone(&self) -> BatchGetApplicationRevisionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchGetApplicationRevisionsInput
impl PartialEq for BatchGetApplicationRevisionsInput
source§fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetApplicationRevisionsInput
Auto Trait Implementations§
impl Freeze for BatchGetApplicationRevisionsInput
impl RefUnwindSafe for BatchGetApplicationRevisionsInput
impl Send for BatchGetApplicationRevisionsInput
impl Sync for BatchGetApplicationRevisionsInput
impl Unpin for BatchGetApplicationRevisionsInput
impl UnwindSafe for BatchGetApplicationRevisionsInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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