Interface DatabaseClusterLookupOptions

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

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-19T12:04:00.825Z") @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");