Class: Aws::Glue::Types::ExportEncryptionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#kms_key_arnString

The ARN of the KMS key used to encrypt the exported data.

Returns:

  • (String)


12257
12258
12259
12260
12261
12262
# File 'lib/aws-sdk-glue/types.rb', line 12257

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

#sse_algorithmString

The server-side encryption algorithm used for the exported data. Valid values are AES256 and aws:kms.

Returns:

  • (String)


12257
12258
12259
12260
12261
12262
# File 'lib/aws-sdk-glue/types.rb', line 12257

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