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¶
NextToken
The response from the last list when returning a list large enough to need tokening.
MaxResults
Maximum number of results to select.
CreationTimeAfter
Select jobs where the job was created after specified time.
CreationTimeBefore
Select jobs where the job was created before specified time.
LastModifiedTimeAfter
Select jobs where the job was updated after specified time.
LastModifiedTimeBefore
Select jobs where the job was updated before specified time.
NameContains
Filter for jobs containing this name in their packaging job name.
ModelNameContains
Filter for jobs where the model name contains this string.
StatusEquals
The job status to filter for.
SortBy
Use to specify what column to sort by.
SortOrder
What 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"
)