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.
  • Method Details

    • getCatalogArn

      @Stability(Deprecated) @Deprecated @NotNull String getCatalogArn()
      Deprecated.
      (deprecated) The ARN of the catalog.
    • getCatalogId

      @Stability(Deprecated) @Deprecated @NotNull String getCatalogId()
      Deprecated.
      (deprecated) The id of the catalog (for the account-wide catalog, the AWS account id).
    • getConnectionPasswordKey

      @Stability(Deprecated) @Deprecated @Nullable default IKeyRef 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

      @Stability(Deprecated) @Deprecated @Nullable default IKeyRef 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); }.