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.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.glue.alpha.ICatalog
ICatalog.Jsii$Default, ICatalog.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.glue.ICatalogRef
ICatalogRef.Jsii$Default, ICatalogRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IDependable
software.constructs.IDependable.Jsii$Default, software.constructs.IDependable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
IEnvironmentAware.Jsii$Default, IEnvironmentAware.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default, IResource.Jsii$Proxy -
Method Summary
Modifier and TypeMethodDescriptiondefault String(experimental) The ARN of the catalog.default String(experimental) The id of the catalog (for the account-wide catalog, the AWS account id).default IKeyRef(experimental) The customer-managed KMS key used to encrypt connection passwords, if one was configured.default IKeyRef(experimental) The customer-managed KMS key used for the catalog's encryption at rest, if one was configured.Methods inherited from interface software.amazon.awscdk.interfaces.glue.ICatalogRef.Jsii$Default
getCatalogRefMethods inherited from interface software.constructs.IConstruct.Jsii$Default
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware.Jsii$Default
getEnvMethods inherited from interface software.amazon.awscdk.IResource.Jsii$Default
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogArn
(experimental) The ARN of the catalog.- Specified by:
getCatalogArnin interfaceICatalog
-
getCatalogId
(experimental) The id of the catalog (for the account-wide catalog, the AWS account id).- Specified by:
getCatalogIdin interfaceICatalog
-
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:
getConnectionPasswordKeyin interfaceICatalog
-
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:
getEncryptionKeyin interfaceICatalog
-