Description Usage Arguments Value Request syntax
View source: R/s3control_operations.R
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
1 | s3control_list_jobs(AccountId, JobStatuses, NextToken, MaxResults)
|
AccountId |
[required] |
JobStatuses |
The |
NextToken |
A pagination token to request the next page of results. Use the token
that Amazon S3 returned in the |
MaxResults |
The maximum number of jobs that Amazon S3 will include in the
|
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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
)
)
)
)
|
1 2 3 4 5 6 7 8 | svc$list_jobs(
AccountId = "string",
JobStatuses = list(
"Active"|"Cancelled"|"Cancelling"|"Complete"|"Completing"|"Failed"|"Failing"|"New"|"Paused"|"Pausing"|"Preparing"|"Ready"|"Suspended"
),
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.