Description Usage Arguments Value Request syntax
View source: R/s3control_operations.R
Retrieves the configuration parameters and status for a Batch Operations job. For more information, see S3 Batch Operations in the Amazon Simple Storage Service Developer Guide.
Related actions include:
create_job
list_jobs
update_job_priority
update_job_status
1 | s3control_describe_job(AccountId, JobId)
|
AccountId |
[required] |
JobId |
[required] The ID for the job whose information you want to retrieve. |
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | list(
Job = list(
JobId = "string",
ConfirmationRequired = TRUE|FALSE,
Description = "string",
JobArn = "string",
Status = "Active"|"Cancelled"|"Cancelling"|"Complete"|"Completing"|"Failed"|"Failing"|"New"|"Paused"|"Pausing"|"Preparing"|"Ready"|"Suspended",
Manifest = list(
Spec = list(
Format = "S3BatchOperations_CSV_20180820"|"S3InventoryReport_CSV_20161130",
Fields = list(
"Ignore"|"Bucket"|"Key"|"VersionId"
)
),
Location = list(
ObjectArn = "string",
ObjectVersionId = "string",
ETag = "string"
)
),
Operation = list(
LambdaInvoke = list(
FunctionArn = "string"
),
S3PutObjectCopy = list(
TargetResource = "string",
CannedAccessControlList = "private"|"public-read"|"public-read-write"|"aws-exec-read"|"authenticated-read"|"bucket-owner-read"|"bucket-owner-full-control",
AccessControlGrants = list(
list(
Grantee = list(
TypeIdentifier = "id"|"emailAddress"|"uri",
Identifier = "string",
DisplayName = "string"
),
Permission = "FULL_CONTROL"|"READ"|"WRITE"|"READ_ACP"|"WRITE_ACP"
)
),
MetadataDirective = "COPY"|"REPLACE",
ModifiedSinceConstraint = as.POSIXct(
"2015-01-01"
),
NewObjectMetadata = list(
CacheControl = "string",
ContentDisposition = "string",
ContentEncoding = "string",
ContentLanguage = "string",
UserMetadata = list(
"string"
),
ContentLength = 123,
ContentMD5 = "string",
ContentType = "string",
HttpExpiresDate = as.POSIXct(
"2015-01-01"
),
RequesterCharged = TRUE|FALSE,
SSEAlgorithm = "AES256"|"KMS"
),
NewObjectTagging = list(
list(
Key = "string",
Value = "string"
)
),
RedirectLocation = "string",
RequesterPays = TRUE|FALSE,
StorageClass = "STANDARD"|"STANDARD_IA"|"ONEZONE_IA"|"GLACIER"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE",
UnModifiedSinceConstraint = as.POSIXct(
"2015-01-01"
),
SSEAwsKmsKeyId = "string",
TargetKeyPrefix = "string",
ObjectLockLegalHoldStatus = "OFF"|"ON",
ObjectLockMode = "COMPLIANCE"|"GOVERNANCE",
ObjectLockRetainUntilDate = as.POSIXct(
"2015-01-01"
)
),
S3PutObjectAcl = list(
AccessControlPolicy = list(
AccessControlList = list(
Owner = list(
ID = "string",
DisplayName = "string"
),
Grants = list(
list(
Grantee = list(
TypeIdentifier = "id"|"emailAddress"|"uri",
Identifier = "string",
DisplayName = "string"
),
Permission = "FULL_CONTROL"|"READ"|"WRITE"|"READ_ACP"|"WRITE_ACP"
)
)
),
CannedAccessControlList = "private"|"public-read"|"public-read-write"|"aws-exec-read"|"authenticated-read"|"bucket-owner-read"|"bucket-owner-full-control"
)
),
S3PutObjectTagging = list(
TagSet = list(
list(
Key = "string",
Value = "string"
)
)
),
S3InitiateRestoreObject = list(
ExpirationInDays = 123,
GlacierJobTier = "BULK"|"STANDARD"
),
S3PutObjectLegalHold = list(
LegalHold = list(
Status = "OFF"|"ON"
)
),
S3PutObjectRetention = list(
BypassGovernanceRetention = TRUE|FALSE,
Retention = list(
RetainUntilDate = as.POSIXct(
"2015-01-01"
),
Mode = "COMPLIANCE"|"GOVERNANCE"
)
)
),
Priority = 123,
ProgressSummary = list(
TotalNumberOfTasks = 123,
NumberOfTasksSucceeded = 123,
NumberOfTasksFailed = 123
),
StatusUpdateReason = "string",
FailureReasons = list(
list(
FailureCode = "string",
FailureReason = "string"
)
),
Report = list(
Bucket = "string",
Format = "Report_CSV_20180820",
Enabled = TRUE|FALSE,
Prefix = "string",
ReportScope = "AllTasks"|"FailedTasksOnly"
),
CreationTime = as.POSIXct(
"2015-01-01"
),
TerminationDate = as.POSIXct(
"2015-01-01"
),
RoleArn = "string",
SuspendedDate = as.POSIXct(
"2015-01-01"
),
SuspendedCause = "string"
)
)
|
1 2 3 4 | svc$describe_job(
AccountId = "string",
JobId = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.