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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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)


7477
7478
7479
7480
7481
7482
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 7477

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.

Returns:

  • (String)


7477
7478
7479
7480
7481
7482
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 7477

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