List Edge Packaging Jobs
| sagemaker_list_edge_packaging_jobs | R Documentation |
Returns a list of edge packaging jobs¶
Description¶
Returns a list of edge packaging jobs.
Usage¶
sagemaker_list_edge_packaging_jobs(NextToken, MaxResults,
CreationTimeAfter, CreationTimeBefore, LastModifiedTimeAfter,
LastModifiedTimeBefore, NameContains, ModelNameContains, StatusEquals,
SortBy, SortOrder)
Arguments¶
NextTokenThe response from the last list when returning a list large enough to need tokening.
MaxResultsMaximum number of results to select.
CreationTimeAfterSelect jobs where the job was created after specified time.
CreationTimeBeforeSelect jobs where the job was created before specified time.
LastModifiedTimeAfterSelect jobs where the job was updated after specified time.
LastModifiedTimeBeforeSelect jobs where the job was updated before specified time.
NameContainsFilter for jobs containing this name in their packaging job name.
ModelNameContainsFilter for jobs where the model name contains this string.
StatusEqualsThe job status to filter for.
SortByUse to specify what column to sort by.
SortOrderWhat direction to sort by.
Value¶
A list with the following syntax:
list(
EdgePackagingJobSummaries = list(
list(
EdgePackagingJobArn = "string",
EdgePackagingJobName = "string",
EdgePackagingJobStatus = "STARTING"|"INPROGRESS"|"COMPLETED"|"FAILED"|"STOPPING"|"STOPPED",
CompilationJobName = "string",
ModelName = "string",
ModelVersion = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_edge_packaging_jobs(
NextToken = "string",
MaxResults = 123,
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
NameContains = "string",
ModelNameContains = "string",
StatusEquals = "STARTING"|"INPROGRESS"|"COMPLETED"|"FAILED"|"STOPPING"|"STOPPED",
SortBy = "NAME"|"MODEL_NAME"|"CREATION_TIME"|"LAST_MODIFIED_TIME"|"STATUS",
SortOrder = "Ascending"|"Descending"
)