List Export Jobs
| sesv2_list_export_jobs | R Documentation |
Lists all of the export jobs¶
Description¶
Lists all of the export jobs.
Usage¶
Arguments¶
NextTokenThe pagination token returned from a previous call to
list_export_jobsto indicate the position in the list of export jobs.PageSizeMaximum number of export jobs to return at once. Use this parameter to paginate results. If additional export jobs exist beyond the specified limit, the
NextTokenelement is sent in the response. Use theNextTokenvalue in subsequent calls tolist_export_jobsto retrieve additional export jobs.ExportSourceTypeA value used to list export jobs that have a certain
ExportSourceType.JobStatusA value used to list export jobs that have a certain
JobStatus.
Value¶
A list with the following syntax:
list(
ExportJobs = list(
list(
JobId = "string",
ExportSourceType = "METRICS_DATA"|"MESSAGE_INSIGHTS",
JobStatus = "CREATED"|"PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLED",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
CompletedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_export_jobs(
NextToken = "string",
PageSize = 123,
ExportSourceType = "METRICS_DATA"|"MESSAGE_INSIGHTS",
JobStatus = "CREATED"|"PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLED"
)