Class: Aws::Glue::Types::DataCatalogEncryptionSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DataCatalogEncryptionSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Contains configuration information for maintaining Data Catalog security.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_password_encryption ⇒ Types::ConnectionPasswordEncryption
When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of ‘CreateConnection` or `UpdateConnection` and store it in the `ENCRYPTED_PASSWORD` field in the connection properties.
-
#encryption_at_rest ⇒ Types::EncryptionAtRest
Specifies the encryption-at-rest configuration for the Data Catalog.
Instance Attribute Details
#connection_password_encryption ⇒ Types::ConnectionPasswordEncryption
When connection password protection is enabled, the Data Catalog uses a customer-provided key to encrypt the password as part of ‘CreateConnection` or `UpdateConnection` and store it in the `ENCRYPTED_PASSWORD` field in the connection properties. You can enable catalog encryption or only password encryption.
7378 7379 7380 7381 7382 7383 |
# File 'lib/aws-sdk-glue/types.rb', line 7378 class DataCatalogEncryptionSettings < Struct.new( :encryption_at_rest, :connection_password_encryption) SENSITIVE = [] include Aws::Structure end |
#encryption_at_rest ⇒ Types::EncryptionAtRest
Specifies the encryption-at-rest configuration for the Data Catalog.
7378 7379 7380 7381 7382 7383 |
# File 'lib/aws-sdk-glue/types.rb', line 7378 class DataCatalogEncryptionSettings < Struct.new( :encryption_at_rest, :connection_password_encryption) SENSITIVE = [] include Aws::Structure end |