List Transform Jobs
| sagemaker_list_transform_jobs | R Documentation |
Lists transform jobs¶
Description¶
Lists transform jobs.
Usage¶
sagemaker_list_transform_jobs(CreationTimeAfter, CreationTimeBefore,
LastModifiedTimeAfter, LastModifiedTimeBefore, NameContains,
StatusEquals, SortBy, SortOrder, NextToken, MaxResults)
Arguments¶
CreationTimeAfterA filter that returns only transform jobs created after the specified time.
CreationTimeBeforeA filter that returns only transform jobs created before the specified time.
LastModifiedTimeAfterA filter that returns only transform jobs modified after the specified time.
LastModifiedTimeBeforeA filter that returns only transform jobs modified before the specified time.
NameContainsA string in the transform job name. This filter returns only transform jobs whose name contains the specified string.
StatusEqualsA filter that retrieves only transform jobs with a specific status.
SortByThe field to sort results by. The default is
CreationTime.SortOrderThe sort order for results. The default is
Descending.NextTokenIf the result of the previous
list_transform_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of transform jobs, use the token in the next request.MaxResultsThe maximum number of transform jobs to return in the response. The default value is
10.
Value¶
A list with the following syntax:
list(
TransformJobSummaries = list(
list(
TransformJobName = "string",
TransformJobArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
TransformEndTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
TransformJobStatus = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
FailureReason = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_transform_jobs(
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",
StatusEquals = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123
)