@Stability(value=Stable)
public static interface CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty
extends software.amazon.jsii.JsiiSerializable
You can enable catalog encryption or only password encryption.
When a CreationConnection request arrives containing a password, the Data Catalog first encrypts the password using your AWS KMS key. It then encrypts the whole connection object again if catalog encryption is also enabled.
This encryption requires that you set AWS KMS key permissions to enable or restrict access on the password key according to your security requirements. For example, you might want only administrators to have decrypt permission on the password key.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
ConnectionPasswordEncryptionProperty connectionPasswordEncryptionProperty = ConnectionPasswordEncryptionProperty.builder()
.kmsKeyId("kmsKeyId")
.returnConnectionPasswordEncrypted(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty.Builder
|
static class |
CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty.Jsii$Proxy
An implementation for
CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty.Builder |
builder() |
default String |
getKmsKeyId()
An AWS KMS key that is used to encrypt the connection password.
|
default Object |
getReturnConnectionPasswordEncrypted()
When the `ReturnConnectionPasswordEncrypted` flag is set to "true", passwords remain encrypted in the responses of `GetConnection` and `GetConnections` .
|
@Stability(value=Stable) @Nullable default String getKmsKeyId()
If connection password protection is enabled, the caller of CreateConnection and UpdateConnection needs at least kms:Encrypt permission on the specified AWS KMS key, to encrypt passwords before storing them in the Data Catalog. You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.
@Stability(value=Stable) @Nullable default Object getReturnConnectionPasswordEncrypted()
This encryption takes effect independently from catalog encryption.
@Stability(value=Stable) static CfnDataCatalogEncryptionSettings.ConnectionPasswordEncryptionProperty.Builder builder()
Copyright © 2022. All rights reserved.