List Inference Experiments
| sagemaker_list_inference_experiments | R Documentation |
Returns the list of all inference experiments¶
Description¶
Returns the list of all inference experiments.
Usage¶
sagemaker_list_inference_experiments(NameContains, Type, StatusEquals,
CreationTimeAfter, CreationTimeBefore, LastModifiedTimeAfter,
LastModifiedTimeBefore, SortBy, SortOrder, NextToken, MaxResults)
Arguments¶
NameContainsSelects inference experiments whose names contain this name.
TypeSelects inference experiments of this type. For the possible types of inference experiments, see
create_inference_experiment.StatusEqualsSelects inference experiments which are in this status. For the possible statuses, see
describe_inference_experiment.CreationTimeAfterSelects inference experiments which were created after this timestamp.
CreationTimeBeforeSelects inference experiments which were created before this timestamp.
LastModifiedTimeAfterSelects inference experiments which were last modified after this timestamp.
LastModifiedTimeBeforeSelects inference experiments which were last modified before this timestamp.
SortByThe column by which to sort the listed inference experiments.
SortOrderThe direction of sorting (ascending or descending).
NextTokenThe response from the last list when returning a list large enough to need tokening.
MaxResultsThe maximum number of results to select.
Value¶
A list with the following syntax:
list(
InferenceExperiments = list(
list(
Name = "string",
Type = "ShadowMode",
Schedule = list(
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
),
Status = "Creating"|"Created"|"Updating"|"Running"|"Starting"|"Stopping"|"Completed"|"Cancelled",
StatusReason = "string",
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
CompletionTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
RoleArn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_inference_experiments(
NameContains = "string",
Type = "ShadowMode",
StatusEquals = "Creating"|"Created"|"Updating"|"Running"|"Starting"|"Stopping"|"Completed"|"Cancelled",
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123
)