Returns the list of all inference experiments
Source:R/sagemaker_operations.R
sagemaker_list_inference_experiments.RdReturns the list of all inference experiments.
See https://www.paws-r-sdk.com/docs/sagemaker_list_inference_experiments/ for full documentation.
Usage
sagemaker_list_inference_experiments(
NameContains = NULL,
Type = NULL,
StatusEquals = NULL,
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
SortBy = NULL,
SortOrder = NULL,
NextToken = NULL,
MaxResults = NULL
)Arguments
- NameContains
Selects inference experiments whose names contain this name.
- Type
Selects inference experiments of this type. For the possible types of inference experiments, see
create_inference_experiment.- StatusEquals
Selects inference experiments which are in this status. For the possible statuses, see
describe_inference_experiment.- CreationTimeAfter
Selects inference experiments which were created after this timestamp.
- CreationTimeBefore
Selects inference experiments which were created before this timestamp.
- LastModifiedTimeAfter
Selects inference experiments which were last modified after this timestamp.
- LastModifiedTimeBefore
Selects inference experiments which were last modified before this timestamp.
- SortBy
The column by which to sort the listed inference experiments.
- SortOrder
The direction of sorting (ascending or descending).
- NextToken
The response from the last list when returning a list large enough to need tokening.
- MaxResults
The maximum number of results to select.