pub struct ListProcessingJobs<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }
Expand description
Fluent builder constructing a request to ListProcessingJobs
.
Lists processing jobs that satisfy various filters.
Implementations
impl<C, M, R> ListProcessingJobs<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> ListProcessingJobs<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<ListProcessingJobsOutput, SdkError<ListProcessingJobsError>> where
R::Policy: SmithyRetryPolicy<ListProcessingJobsInputOperationOutputAlias, ListProcessingJobsOutput, ListProcessingJobsError, ListProcessingJobsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<ListProcessingJobsOutput, SdkError<ListProcessingJobsError>> where
R::Policy: SmithyRetryPolicy<ListProcessingJobsInputOperationOutputAlias, ListProcessingJobsOutput, ListProcessingJobsError, ListProcessingJobsInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
A filter that returns only processing jobs created after the specified time.
A filter that returns only processing jobs created after the specified time.
A filter that returns only processing jobs created after the specified time.
A filter that returns only processing jobs created after the specified time.
A filter that returns only processing jobs modified after the specified time.
A filter that returns only processing jobs modified after the specified time.
A filter that returns only processing jobs modified before the specified time.
A filter that returns only processing jobs modified before the specified time.
A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.
A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.
A filter that retrieves only processing jobs with a specific status.
A filter that retrieves only processing jobs with a specific status.
The field to sort results by. The default is CreationTime
.
The field to sort results by. The default is CreationTime
.
The sort order for results. The default is Ascending
.
The sort order for results. The default is Ascending
.
If the result of the previous ListProcessingJobs
request was truncated, the response includes a NextToken
. To retrieve the next set of processing jobs, use the token in the next request.
If the result of the previous ListProcessingJobs
request was truncated, the response includes a NextToken
. To retrieve the next set of processing jobs, use the token in the next request.
The maximum number of processing jobs to return in the response.
The maximum number of processing jobs to return in the response.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for ListProcessingJobs<C, M, R>
impl<C, M, R> Send for ListProcessingJobs<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for ListProcessingJobs<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for ListProcessingJobs<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for ListProcessingJobs<C, M, R>
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