pub struct BatchGetApplicationRevisionsInput {
pub application_name: String,
pub revisions: Vec<RevisionLocation>,
}
Expand description
Represents the input of a BatchGetApplicationRevisions
operation.
Fields§
§application_name: String
The name of an AWS CodeDeploy application about which to get revision information.
revisions: 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.
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 Default for BatchGetApplicationRevisionsInput
impl Default for BatchGetApplicationRevisionsInput
Source§fn default() -> BatchGetApplicationRevisionsInput
fn default() -> BatchGetApplicationRevisionsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchGetApplicationRevisionsInput
impl PartialEq for BatchGetApplicationRevisionsInput
Source§fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
fn eq(&self, other: &BatchGetApplicationRevisionsInput) -> bool
Tests for
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
Mutably borrows from an owned value. Read more