Interface CfnDataCatalogEncryptionSettingsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataCatalogEncryptionSettingsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:55.196Z")
@Stability(Stable)
public interface CfnDataCatalogEncryptionSettingsProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataCatalogEncryptionSettings
.
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.*; CfnDataCatalogEncryptionSettingsProps cfnDataCatalogEncryptionSettingsProps = CfnDataCatalogEncryptionSettingsProps.builder() .catalogId("catalogId") .dataCatalogEncryptionSettings(DataCatalogEncryptionSettingsProperty.builder() .connectionPasswordEncryption(ConnectionPasswordEncryptionProperty.builder() .kmsKeyId("kmsKeyId") .returnConnectionPasswordEncrypted(false) .build()) .encryptionAtRest(EncryptionAtRestProperty.builder() .catalogEncryptionMode("catalogEncryptionMode") .catalogEncryptionServiceRole("catalogEncryptionServiceRole") .sseAwsKmsKeyId("sseAwsKmsKeyId") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataCatalogEncryptionSettingsProps
static final class
An implementation forCfnDataCatalogEncryptionSettingsProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ID of the Data Catalog in which the settings are created.Contains configuration information for maintaining Data Catalog security.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The ID of the Data Catalog in which the settings are created.- See Also:
-
getDataCatalogEncryptionSettings
Contains configuration information for maintaining Data Catalog security.- See Also:
-
builder
-