#[non_exhaustive]pub struct ListApplicationRevisionsInput { /* private fields */ }
Expand description
Represents the input of a ListApplicationRevisions
operation.
Implementations
sourceimpl ListApplicationRevisionsInput
impl ListApplicationRevisionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationRevisions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationRevisions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListApplicationRevisions
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListApplicationRevisionsInput
.
sourceimpl ListApplicationRevisionsInput
impl ListApplicationRevisionsInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account.
sourcepub fn sort_by(&self) -> Option<&ApplicationRevisionSortBy>
pub fn sort_by(&self) -> Option<&ApplicationRevisionSortBy>
The column name to use to sort the list results:
-
registerTime
: Sort by the time the revisions were registered with CodeDeploy. -
firstUsedTime
: Sort by the time the revisions were first used in a deployment. -
lastUsedTime
: Sort by the time the revisions were last used in a deployment.
If not specified or set to null, the results are returned in an arbitrary order.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
The order in which to sort the list results:
-
ascending
: ascending order. -
descending
: descending order.
If not specified, the results are sorted in ascending order.
If set to null, the results are sorted in an arbitrary order.
sourcepub fn s3_bucket(&self) -> Option<&str>
pub fn s3_bucket(&self) -> Option<&str>
An Amazon S3 bucket name to limit the search for revisions.
If set to null, all of the user's buckets are searched.
sourcepub fn s3_key_prefix(&self) -> Option<&str>
pub fn s3_key_prefix(&self) -> Option<&str>
A key prefix for the set of Amazon S3 objects to limit the search for revisions.
sourcepub fn deployed(&self) -> Option<&ListStateFilterAction>
pub fn deployed(&self) -> Option<&ListStateFilterAction>
Whether to list revisions based on whether the revision is the target revision of a deployment group:
-
include
: List revisions that are target revisions of a deployment group. -
exclude
: Do not list revisions that are target revisions of a deployment group. -
ignore
: List all revisions.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An identifier returned from the previous ListApplicationRevisions
call. It can be used to return the next set of applications in the list.
Trait Implementations
sourceimpl Clone for ListApplicationRevisionsInput
impl Clone for ListApplicationRevisionsInput
sourcefn clone(&self) -> ListApplicationRevisionsInput
fn clone(&self) -> ListApplicationRevisionsInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more