Description Usage Arguments Value Request syntax
View source: R/s3_operations.R
Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.
The following operations are related to
get_bucket_logging
:
create_bucket
put_bucket_logging
1 | s3_get_bucket_logging(Bucket, ExpectedBucketOwner)
|
Bucket |
[required] The bucket name for which to get the logging information. |
ExpectedBucketOwner |
The account id of the expected bucket owner. If the bucket is owned by a
different account, the request will fail with an HTTP
|
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | list(
LoggingEnabled = list(
TargetBucket = "string",
TargetGrants = list(
list(
Grantee = list(
DisplayName = "string",
EmailAddress = "string",
ID = "string",
Type = "CanonicalUser"|"AmazonCustomerByEmail"|"Group",
URI = "string"
),
Permission = "FULL_CONTROL"|"READ"|"WRITE"
)
),
TargetPrefix = "string"
)
)
|
1 2 3 4 | svc$get_bucket_logging(
Bucket = "string",
ExpectedBucketOwner = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.