@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.534Z") @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 © 2022. All rights reserved.