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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[RevisionLocation]>
pub fn revisions(&self) -> Option<&[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.
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
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 PartialEq<BatchGetApplicationRevisionsInput> for BatchGetApplicationRevisionsInput
impl PartialEq<BatchGetApplicationRevisionsInput> for BatchGetApplicationRevisionsInput
source§fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetApplicationRevisionsInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more