Interface IServerlessCluster
Interface representing a serverless database cluster.
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IServerlessCluster : IResource, IConnectable, ISecretAttachmentTarget
Syntax (vb)
Public Interface IServerlessCluster
Inherits IResource, IConstruct, IDependable, IConnectable, ISecretAttachmentTarget
Synopsis
Properties
ClusterArn | The ARN of the cluster. |
ClusterEndpoint | The endpoint to use for read/write operations. |
ClusterIdentifier | Identifier of the cluster. |
ClusterReadEndpoint | Endpoint to use for load-balanced read-only operations. |
Methods
GrantDataApiAccess(IGrantable) | Grant the given identity to access to the Data API. |
Properties
ClusterArn
The ARN of the cluster.
string ClusterArn { get; }
Property Value
System.String
ClusterEndpoint
The endpoint to use for read/write operations.
Endpoint ClusterEndpoint { get; }
Property Value
Remarks
Attribute: EndpointAddress,EndpointPort
ClusterIdentifier
Identifier of the cluster.
string ClusterIdentifier { get; }
Property Value
System.String
ClusterReadEndpoint
Endpoint to use for load-balanced read-only operations.
Endpoint ClusterReadEndpoint { get; }
Property Value
Remarks
Attribute: ReadEndpointAddress
Methods
GrantDataApiAccess(IGrantable)
Grant the given identity to access to the Data API.
Grant GrantDataApiAccess(IGrantable grantee)
Parameters
- grantee IGrantable
The principal to grant access to.
Returns