Class: Aws::DataZone::Types::EncryptionConfiguration

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

Overview

The encryption configuration details.

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)


7592
7593
7594
7595
7596
7597
# File 'lib/aws-sdk-datazone/types.rb', line 7592

class EncryptionConfiguration < Struct.new(
  :kms_key_arn,
  :sse_algorithm)
  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].

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

Returns:

  • (String)


7592
7593
7594
7595
7596
7597
# File 'lib/aws-sdk-datazone/types.rb', line 7592

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