Class: Aws::Glue::Types::DataCatalogEncryptionSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DataCatalogEncryptionSettings
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
When making an API call, you may pass DataCatalogEncryptionSettings data as a hash:
{
encryption_at_rest: {
catalog_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
sse_aws_kms_key_id: "NameString",
},
connection_password_encryption: {
return_connection_password_encrypted: false, # required
aws_kms_key_id: "NameString",
},
}
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
orUpdateConnection
and store it in theENCRYPTED_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.
7663 7664 7665 7666 7667 7668 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7663 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.
7663 7664 7665 7666 7667 7668 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7663 class DataCatalogEncryptionSettings < Struct.new( :encryption_at_rest, :connection_password_encryption) SENSITIVE = [] include Aws::Structure end |