Class: Aws::Glue::Types::EncryptionAtRest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Specifies the encryption-at-rest configuration for the Data Catalog.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_encryption_modeString

The encryption-at-rest mode for encrypting Data Catalog data.

Returns:

  • (String)


8196
8197
8198
8199
8200
8201
# File 'lib/aws-sdk-glue/types.rb', line 8196

class EncryptionAtRest < Struct.new(
  :catalog_encryption_mode,
  :sse_aws_kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#sse_aws_kms_key_idString

The ID of the KMS key to use for encryption at rest.

Returns:

  • (String)


8196
8197
8198
8199
8200
8201
# File 'lib/aws-sdk-glue/types.rb', line 8196

class EncryptionAtRest < Struct.new(
  :catalog_encryption_mode,
  :sse_aws_kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end