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¶
NameContains |
Selects inference experiments whose names contain this name. |
Type |
Selects inference experiments of this type. For the possible
types of inference experiments, see
|
StatusEquals |
Selects inference experiments which are in this status. For the
possible statuses, see
|
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. |
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
)