Class: Aws::Athena::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::EncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
If query and calculation results are encrypted in Amazon S3, indicates the encryption option used (for example, ‘SSE_KMS` or `CSE_KMS`) and key information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption_option ⇒ String
Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys (‘SSE_S3`), server-side encryption with KMS-managed keys (`SSE_KMS`), or client-side encryption with KMS-managed keys (`CSE_KMS`) is used.
-
#kms_key ⇒ String
For ‘SSE_KMS` and `CSE_KMS`, this is the KMS key ARN or ID.
Instance Attribute Details
#encryption_option ⇒ String
Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys (‘SSE_S3`), server-side encryption with KMS-managed keys (`SSE_KMS`), or client-side encryption with KMS-managed keys (`CSE_KMS`) is used.
If a query runs in a workgroup and the workgroup overrides client-side settings, then the workgroup’s setting for encryption is used. It specifies whether query results must be encrypted, for all queries that run in this workgroup.
1346 1347 1348 1349 1350 1351 |
# File 'lib/aws-sdk-athena/types.rb', line 1346 class EncryptionConfiguration < Struct.new( :encryption_option, :kms_key) SENSITIVE = [] include Aws::Structure end |
#kms_key ⇒ String
For ‘SSE_KMS` and `CSE_KMS`, this is the KMS key ARN or ID.
1346 1347 1348 1349 1350 1351 |
# File 'lib/aws-sdk-athena/types.rb', line 1346 class EncryptionConfiguration < Struct.new( :encryption_option, :kms_key) SENSITIVE = [] include Aws::Structure end |