Interface ICatalog.Jsii$Default

All Superinterfaces:
ICatalog, ICatalogRef, ICatalogRef.Jsii$Default, software.constructs.IConstruct, software.constructs.IConstruct.Jsii$Default, software.constructs.IDependable, software.constructs.IDependable.Jsii$Default, IEnvironmentAware, IEnvironmentAware.Jsii$Default, IResource, IResource.Jsii$Default, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ICatalog.Jsii$Proxy
Enclosing interface:
ICatalog

@Internal public static interface ICatalog.Jsii$Default extends ICatalog, IResource.Jsii$Default, ICatalogRef.Jsii$Default
Internal default implementation for ICatalog.
  • Method Details

    • getCatalogArn

      @Stability(Experimental) @NotNull default String getCatalogArn()
      (experimental) The ARN of the catalog.
      Specified by:
      getCatalogArn in interface ICatalog
    • getCatalogId

      @Stability(Experimental) @NotNull default String getCatalogId()
      (experimental) The id of the catalog (for the account-wide catalog, the AWS account id).
      Specified by:
      getCatalogId in interface ICatalog
    • getConnectionPasswordKey

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

      Specified by:
      getConnectionPasswordKey in interface ICatalog
    • getEncryptionKey

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

      Specified by:
      getEncryptionKey in interface ICatalog