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.
6644 6645 6646 6647 6648 6649 |
# File 'lib/aws-sdk-glue/types.rb', line 6644 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.
6644 6645 6646 6647 6648 6649 |
# File 'lib/aws-sdk-glue/types.rb', line 6644 class DataCatalogEncryptionSettings < Struct.new( :encryption_at_rest, :connection_password_encryption) SENSITIVE = [] include Aws::Structure end |