Interface CatalogEncryptionOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
CatalogProps
- All Known Implementing Classes:
CatalogEncryptionOptions.Jsii$Proxy,CatalogProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:29.996Z")
@Stability(Deprecated)
@Deprecated
public interface CatalogEncryptionOptions
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Encryption configuration for a Glue Data Catalog.
Encryption is fixed at construction: a catalog either carries encryption settings or it does not, which keeps its configuration easy to reason about and avoids order-dependent mutation after the catalog is created.
Example:
import software.amazon.awscdk.services.iam.*;
Key key;
IRole role;
Catalog.encryptAccount(this, CatalogEncryptionOptions.builder()
.encryptionAtRest(DataCatalogEncryptionAtRest.kmsWithServiceRole(role, key))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Deprecated.default ConnectionPasswordEncryptionDeprecated.default DataCatalogEncryptionAtRestDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionPasswordEncryption
@Stability(Deprecated) @Deprecated @Nullable default ConnectionPasswordEncryption getConnectionPasswordEncryption()Deprecated.(deprecated) Connection-password encryption configuration for the catalog.Default: - connection-password encryption is not managed by CDK
-
getEncryptionAtRest
@Stability(Deprecated) @Deprecated @Nullable default DataCatalogEncryptionAtRest getEncryptionAtRest()Deprecated.(deprecated) Encryption-at-rest configuration for the catalog.Default: - encryption at rest is not managed by CDK (the catalog default applies)
-
builder
Deprecated.- Returns:
- a
CatalogEncryptionOptions.BuilderofCatalogEncryptionOptions
-