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 ==
.