Struct aws_sdk_s3control::input::ListJobsInput
source · [−]#[non_exhaustive]pub struct ListJobsInput { /* private fields */ }Implementations
sourceimpl ListJobsInput
impl ListJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListJobs>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListJobsInput.
sourceimpl ListJobsInput
impl ListJobsInput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID associated with the S3 Batch Operations job.
sourcepub fn job_statuses(&self) -> Option<&[JobStatus]>
pub fn job_statuses(&self) -> Option<&[JobStatus]>
The List Jobs request returns jobs that match the statuses listed in this element.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> 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.
Trait Implementations
sourceimpl Clone for ListJobsInput
impl Clone for ListJobsInput
sourcefn clone(&self) -> ListJobsInput
fn clone(&self) -> ListJobsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListJobsInput
impl Debug for ListJobsInput
sourceimpl PartialEq<ListJobsInput> for ListJobsInput
impl PartialEq<ListJobsInput> for ListJobsInput
sourcefn eq(&self, other: &ListJobsInput) -> bool
fn eq(&self, other: &ListJobsInput) -> bool
impl StructuralPartialEq for ListJobsInput
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more