Learn R Programming

paws.storage (version 0.1.12)

s3_get_bucket_encryption: Returns the default encryption configuration for an Amazon S3 bucket

Description

Returns the default encryption configuration for an Amazon S3 bucket. For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption.

To use this operation, you must have permission to perform the s3:GetEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

The following operations are related to get_bucket_encryption:

  • put_bucket_encryption

  • delete_bucket_encryption

Usage

s3_get_bucket_encryption(Bucket, ExpectedBucketOwner)

Value

A list with the following syntax:

list(
  ServerSideEncryptionConfiguration = list(
    Rules = list(
      list(
        ApplyServerSideEncryptionByDefault = list(
          SSEAlgorithm = "AES256"|"aws:kms",
          KMSMasterKeyID = "string"
        ),
        BucketKeyEnabled = TRUE|FALSE
      )
    )
  )
)

Arguments

Bucket

[required] The name of the bucket from which the server-side encryption configuration is retrieved.

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 403 (Access Denied) error.

Request syntax

svc$get_bucket_encryption(
  Bucket = "string",
  ExpectedBucketOwner = "string"
)