List Vector Enrichment Jobs
| sagemakergeospatialcapabilities_list_vector_enrichment_jobs | R Documentation |
Retrieves a list of vector enrichment jobs¶
Description¶
Retrieves a list of vector enrichment jobs.
Usage¶
sagemakergeospatialcapabilities_list_vector_enrichment_jobs(MaxResults,
NextToken, SortBy, SortOrder, StatusEquals)
Arguments¶
MaxResultsThe maximum number of items to return.
NextTokenIf the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
SortByThe parameter by which to sort the results.
SortOrderAn optional value that specifies whether you want the results sorted in
AscendingorDescendingorder.StatusEqualsA filter that retrieves only jobs with a specific status.
Value¶
A list with the following syntax:
list(
NextToken = "string",
VectorEnrichmentJobSummaries = list(
list(
Arn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
DurationInSeconds = 123,
Name = "string",
Status = "INITIALIZING"|"IN_PROGRESS"|"STOPPING"|"STOPPED"|"COMPLETED"|"FAILED"|"DELETING"|"DELETED",
Tags = list(
"string"
),
Type = "REVERSE_GEOCODING"|"MAP_MATCHING"
)
)
)