Struct aws_sdk_glue::client::fluent_builders::GetMLTaskRuns
source ·
[−]pub struct GetMLTaskRuns<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to GetMLTaskRuns
.
Gets a list of runs for a machine learning transform. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can get a sortable, filterable list of machine learning task runs by calling GetMLTaskRuns
with their parent transform's TransformID
and other optional parameters as documented in this section.
This operation returns a list of historic runs and must be paginated.
Implementations
impl<C, M, R> GetMLTaskRuns<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetMLTaskRuns<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<GetMlTaskRunsOutput, SdkError<GetMLTaskRunsError>> where
R::Policy: SmithyRetryPolicy<GetMlTaskRunsInputOperationOutputAlias, GetMlTaskRunsOutput, GetMLTaskRunsError, GetMlTaskRunsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<GetMlTaskRunsOutput, SdkError<GetMLTaskRunsError>> where
R::Policy: SmithyRetryPolicy<GetMlTaskRunsInputOperationOutputAlias, GetMlTaskRunsOutput, GetMLTaskRunsError, GetMlTaskRunsInputOperationRetryAlias>,
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
.
The unique identifier of the machine learning transform.
The unique identifier of the machine learning transform.
A token for pagination of the results. The default is empty.
A token for pagination of the results. The default is empty.
The maximum number of results to return.
The maximum number of results to return.
The filter criteria, in the TaskRunFilterCriteria
structure, for the task run.
The filter criteria, in the TaskRunFilterCriteria
structure, for the task run.
The sorting criteria, in the TaskRunSortCriteria
structure, for the task run.
The sorting criteria, in the TaskRunSortCriteria
structure, for the task run.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for GetMLTaskRuns<C, M, R>
impl<C, M, R> Unpin for GetMLTaskRuns<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for GetMLTaskRuns<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