Show / Hide Table of Contents

Interface IServerlessCluster

Interface representing a serverless database cluster.

Inherited Members
IResource.ApplyRemovalPolicy(RemovalPolicy)
IResource.Env
IResource.Stack
IConnectable.Connections
ISecretAttachmentTarget.AsSecretAttachmentTarget()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IServerlessCluster : IResource, IConstruct, IDependable, 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

string

ClusterEndpoint

The endpoint to use for read/write operations.

Endpoint ClusterEndpoint { get; }
Property Value

Endpoint

Remarks

Attribute: EndpointAddress,EndpointPort

ClusterIdentifier

Identifier of the cluster.

string ClusterIdentifier { get; }
Property Value

string

ClusterReadEndpoint

Endpoint to use for load-balanced read-only operations.

Endpoint ClusterReadEndpoint { get; }
Property Value

Endpoint

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

Grant

Back to top Generated by DocFX