Struct aws_sdk_s3control::input::ListJobsInput [−][src]
#[non_exhaustive]pub struct ListJobsInput {
pub account_id: Option<String>,
pub job_statuses: Option<Vec<JobStatus>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.account_id: Option<String>
The Amazon Web Services account ID associated with the S3 Batch Operations job.
job_statuses: Option<Vec<JobStatus>>
The List Jobs
request returns jobs that match the statuses listed in this element.
next_token: Option<String>
A pagination token to request the next page of results. Use the token that Amazon S3 returned in the NextToken
element of the ListJobsResult
from the previous List Jobs
request.
max_results: Option<i32>
The maximum number of jobs that Amazon S3 will include in the List Jobs
response. If there are more jobs than this number, the response will include a pagination token in the NextToken
field to enable you to retrieve the next page of results.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListJobs
>
Creates a new builder-style object to manufacture ListJobsInput
The Amazon Web Services account ID associated with the S3 Batch Operations job.
The List Jobs
request returns jobs that match the statuses listed in this element.
A pagination token to request the next page of results. Use the token that Amazon S3 returned in the NextToken
element of the ListJobsResult
from the previous List Jobs
request.
The maximum number of jobs that Amazon S3 will include in the List Jobs
response. If there are more jobs than this number, the response will include a pagination token in the NextToken
field to enable you to retrieve the next page of results.
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 RefUnwindSafe for ListJobsInput
impl Send for ListJobsInput
impl Sync for ListJobsInput
impl Unpin for ListJobsInput
impl UnwindSafe for ListJobsInput
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