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)


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_algorithmString

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

Returns:

  • (String)


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