Class: Aws::S3Tables::Types::EncryptionConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3tables/types.rb

Overview

Configuration specifying how data should be encrypted. This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

The Amazon Resource Name (ARN) of the KMS key to use for encryption. This field is required only when ‘sseAlgorithm` is set to `aws:kms`.

Returns:

  • (String)


422
423
424
425
426
427
# File 'lib/aws-sdk-s3tables/types.rb', line 422

class EncryptionConfiguration < Struct.new(
  :sse_algorithm,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#sse_algorithmString

The server-side encryption algorithm to use. Valid values are ‘AES256` for S3-managed encryption keys, or `aws:kms` for Amazon Web Services KMS-managed encryption keys. If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see [Permissions requirements for S3 Tables SSE-KMS encryption].

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html

Returns:

  • (String)


422
423
424
425
426
427
# File 'lib/aws-sdk-s3tables/types.rb', line 422

class EncryptionConfiguration < Struct.new(
  :sse_algorithm,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end