Struct aws_sdk_codedeploy::input::ListApplicationRevisionsInput [−][src]
#[non_exhaustive]pub struct ListApplicationRevisionsInput {
pub application_name: Option<String>,
pub sort_by: Option<ApplicationRevisionSortBy>,
pub sort_order: Option<SortOrder>,
pub s3_bucket: Option<String>,
pub s3_key_prefix: Option<String>,
pub deployed: Option<ListStateFilterAction>,
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListApplicationRevisions
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 AWS CodeDeploy application associated with the IAM user or AWS account.
sort_by: Option<ApplicationRevisionSortBy>
The column name to use to sort the list results:
-
registerTime
: Sort by the time the revisions were registered with AWS 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.
sort_order: 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.
s3_bucket: Option<String>
An Amazon S3 bucket name to limit the search for revisions.
If set to null, all of the user's buckets are searched.
s3_key_prefix: Option<String>
A key prefix for the set of Amazon S3 objects to limit the search for revisions.
deployed: 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.
next_token: Option<String>
An identifier returned from the previous ListApplicationRevisions
call.
It can be used to return the next set of applications in the list.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationRevisions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApplicationRevisions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListApplicationRevisions
>
Creates a new builder-style object to manufacture ListApplicationRevisionsInput
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
The column name to use to sort the list results:
-
registerTime
: Sort by the time the revisions were registered with AWS 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.
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.
An Amazon S3 bucket name to limit the search for revisions.
If set to null, all of the user's buckets are searched.
A key prefix for the set of Amazon S3 objects to limit the search for revisions.
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.
An identifier returned from the previous ListApplicationRevisions
call.
It can be used to return the next set of applications in the list.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListApplicationRevisionsInput
impl Sync for ListApplicationRevisionsInput
impl Unpin for ListApplicationRevisionsInput
impl UnwindSafe for ListApplicationRevisionsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more