Get Job Tagging
s3control_get_job_tagging | R Documentation |
Returns the tags on an S3 Batch Operations job¶
Description¶
Returns the tags on an S3 Batch Operations job.
Permissions¶
To use the get_job_tagging
operation, you must have permission to
perform the s3:GetJobTagging
action. For more information, see
Controlling access and labeling jobs using
tags
in the Amazon S3 User Guide.
Related actions include:
-
create_job
-
put_job_tagging
-
delete_job_tagging
Usage¶
s3control_get_job_tagging(AccountId, JobId)
Arguments¶
AccountId |
[required] The Amazon Web Services account ID associated with the S3 Batch Operations job. |
JobId |
[required] The ID for the S3 Batch Operations job whose tags you want to retrieve. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$get_job_tagging(
AccountId = "string",
JobId = "string"
)