Lists current S3 Batch Operations jobs and jobs that have ended within the last 30 days for the AWS account making the request. For more information, see S3 Batch Operations in the Amazon Simple Storage Service Developer Guide.
Related actions include:
create_job
describe_job
update_job_priority
update_job_status
s3control_list_jobs(AccountId, JobStatuses, NextToken, MaxResults)
A list with the following syntax:
list(
NextToken = "string",
Jobs = list(
list(
JobId = "string",
Description = "string",
Operation = "LambdaInvoke"|"S3PutObjectCopy"|"S3PutObjectAcl"|"S3PutObjectTagging"|"S3InitiateRestoreObject"|"S3PutObjectLegalHold"|"S3PutObjectRetention",
Priority = 123,
Status = "Active"|"Cancelled"|"Cancelling"|"Complete"|"Completing"|"Failed"|"Failing"|"New"|"Paused"|"Pausing"|"Preparing"|"Ready"|"Suspended",
CreationTime = as.POSIXct(
"2015-01-01"
),
TerminationDate = as.POSIXct(
"2015-01-01"
),
ProgressSummary = list(
TotalNumberOfTasks = 123,
NumberOfTasksSucceeded = 123,
NumberOfTasksFailed = 123
)
)
)
)
[required]
The List Jobs
request returns jobs that match the statuses listed in
this element.
A pagination token to request the next page of results. Use the token
that Amazon S3 returned in the NextToken
element of the
ListJobsResult
from the previous List Jobs
request.
The maximum number of jobs that Amazon S3 will include in the
List Jobs
response. If there are more jobs than this number, the
response will include a pagination token in the NextToken
field to
enable you to retrieve the next page of results.
svc$list_jobs(
AccountId = "string",
JobStatuses = list(
"Active"|"Cancelled"|"Cancelling"|"Complete"|"Completing"|"Failed"|"Failing"|"New"|"Paused"|"Pausing"|"Preparing"|"Ready"|"Suspended"
),
NextToken = "string",
MaxResults = 123
)