Class: Aws::Glue::Types::ExportEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ExportEncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The encryption configuration for exported data catalog metadata.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt the exported data.
-
#sse_algorithm ⇒ String
The server-side encryption algorithm used for the exported data.
Instance Attribute Details
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt the exported data.
12200 12201 12202 12203 12204 12205 |
# File 'lib/aws-sdk-glue/types.rb', line 12200 class ExportEncryptionConfiguration < Struct.new( :sse_algorithm, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#sse_algorithm ⇒ String
The server-side encryption algorithm used for the exported data.
Valid values are AES256 and aws:kms.
12200 12201 12202 12203 12204 12205 |
# File 'lib/aws-sdk-glue/types.rb', line 12200 class ExportEncryptionConfiguration < Struct.new( :sse_algorithm, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |