Interface DatabaseClusterLookupOptions
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- DatabaseClusterLookupOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:46.997Z")
@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");
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDatabaseClusterLookupOptionsstatic final classAn implementation forDatabaseClusterLookupOptions
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getClusterIdentifierThe cluster identifier of the DatabaseCluster.
- 
builder
 
-