Interface ConnectionPasswordEncryption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionPasswordEncryption.Builder,ConnectionPasswordEncryption>,SdkBuilder<ConnectionPasswordEncryption.Builder,ConnectionPasswordEncryption>,SdkPojo
- Enclosing class:
- ConnectionPasswordEncryption
public static interface ConnectionPasswordEncryption.Builder extends SdkPojo, CopyableBuilder<ConnectionPasswordEncryption.Builder,ConnectionPasswordEncryption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionPasswordEncryption.BuilderawsKmsKeyId(String awsKmsKeyId)An KMS key that is used to encrypt the connection password.ConnectionPasswordEncryption.BuilderreturnConnectionPasswordEncrypted(Boolean returnConnectionPasswordEncrypted)When theReturnConnectionPasswordEncryptedflag is set to "true", passwords remain encrypted in the responses ofGetConnectionandGetConnections.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
returnConnectionPasswordEncrypted
ConnectionPasswordEncryption.Builder returnConnectionPasswordEncrypted(Boolean returnConnectionPasswordEncrypted)
When the
ReturnConnectionPasswordEncryptedflag is set to "true", passwords remain encrypted in the responses ofGetConnectionandGetConnections. This encryption takes effect independently from catalog encryption.- Parameters:
returnConnectionPasswordEncrypted- When theReturnConnectionPasswordEncryptedflag is set to "true", passwords remain encrypted in the responses ofGetConnectionandGetConnections. This encryption takes effect independently from catalog encryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
awsKmsKeyId
ConnectionPasswordEncryption.Builder awsKmsKeyId(String awsKmsKeyId)
An KMS key that is used to encrypt the connection password.
If connection password protection is enabled, the caller of
CreateConnectionandUpdateConnectionneeds at leastkms:Encryptpermission on the specified 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.
- Parameters:
awsKmsKeyId- An KMS key that is used to encrypt the connection password.If connection password protection is enabled, the caller of
CreateConnectionandUpdateConnectionneeds at leastkms:Encryptpermission on the specified 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-