Interface ICatalog
- All Superinterfaces:
ICatalogRef,software.constructs.IConstruct,software.constructs.IDependable,IEnvironmentAware,IResource,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ICatalog.Jsii$Default
- All Known Implementing Classes:
Catalog,CatalogBase,ICatalog.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.065Z")
@Stability(Deprecated)
@Deprecated
public interface ICatalog
extends software.amazon.jsii.JsiiSerializable, IResource, ICatalogRef
Deprecated.
(deprecated) A Glue Data Catalog, either the implicit account-wide catalog or one created as an
AWS::Glue::Catalog resource.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDeprecated.Internal default implementation forICatalog.static final classDeprecated.A proxy class which represents a concrete javascript instance of this type. -
Method Summary
Methods inherited from interface software.amazon.awscdk.interfaces.glue.ICatalogRef
getCatalogRefMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogArn
Deprecated.(deprecated) The ARN of the catalog. -
getCatalogId
Deprecated.(deprecated) The id of the catalog (for the account-wide catalog, the AWS account id). -
getConnectionPasswordKey
Deprecated.(deprecated) The customer-managed KMS key used to encrypt connection passwords, if one was configured.Undefined when password encryption uses an AWS-managed key or is not configured. Grant access to it via
KeyGrants, e.g.if (catalog.connectionPasswordKey) { KeyGrants.fromKey(catalog.connectionPasswordKey).encrypt(grantee); }. -
getEncryptionKey
Deprecated.(deprecated) The customer-managed KMS key used for the catalog's encryption at rest, if one was configured.Undefined when encryption is disabled or an AWS-managed key is used. Grant access to it via
KeyGrants, e.g.if (catalog.encryptionKey) { KeyGrants.fromKey(catalog.encryptionKey).encrypt(grantee); }.
-