@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:29.092Z") @Stability(value=Stable) public interface CfnDataCatalogEncryptionSettingsProps extends software.amazon.jsii.JsiiSerializable
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") .sseAwsKmsKeyId("sseAwsKmsKeyId") .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataCatalogEncryptionSettingsProps.Builder
A builder for
CfnDataCatalogEncryptionSettingsProps |
static class |
CfnDataCatalogEncryptionSettingsProps.Jsii$Proxy
An implementation for
CfnDataCatalogEncryptionSettingsProps |
Modifier and Type | Method and Description |
---|---|
static CfnDataCatalogEncryptionSettingsProps.Builder |
builder() |
String |
getCatalogId()
The ID of the Data Catalog in which the settings are created.
|
Object |
getDataCatalogEncryptionSettings()
Contains configuration information for maintaining Data Catalog security.
|
@Stability(value=Stable) @NotNull String getCatalogId()
@Stability(value=Stable) @NotNull Object getDataCatalogEncryptionSettings()
@Stability(value=Stable) static CfnDataCatalogEncryptionSettingsProps.Builder builder()
Copyright © 2023. All rights reserved.