Interface DatabaseClusterLookupOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DatabaseClusterLookupOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:21.513Z") @Stability(Stable) public interface DatabaseClusterLookupOptions extends software.amazon.jsii.JsiiSerializable
Properties for looking up an existing DatabaseCluster.

Example:

 Role myUserRole;
 IDatabaseCluster clusterFromLookup = DatabaseCluster.fromLookup(this, "ClusterFromLookup", DatabaseClusterLookupOptions.builder()
         .clusterIdentifier("my-cluster-id")
         .build());
 // Grant a connection
 clusterFromLookup.grantConnect(myUserRole, "my-user-id");