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¶
MaxResults
The maximum number of items to return.
NextToken
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
SortBy
The parameter by which to sort the results.
SortOrder
An optional value that specifies whether you want the results sorted in
Ascending
orDescending
order.StatusEquals
A 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"
)
)
)