Class: Aws::DataZone::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::EncryptionConfiguration
- 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
-
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to use for encryption.
-
#sse_algorithm ⇒ String
The server-side encryption algorithm to use.
Instance Attribute Details
#kms_key_arn ⇒ String
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.
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_algorithm ⇒ String
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.
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 |