interface DBShardGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBShardGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBShardGroupReference |
Java | software.amazon.awscdk.interfaces.rds.DBShardGroupReference |
Python | aws_cdk.interfaces.aws_rds.DBShardGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » DBShardGroupReference |
A reference to a DBShardGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as interfaces_aws_rds } from 'aws-cdk-lib/interfaces';
const dBShardGroupReference: interfaces_aws_rds.DBShardGroupReference = {
dbShardGroupIdentifier: 'dbShardGroupIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBShardGroupIdentifier of the DBShardGroup resource. |
dbShardGroupIdentifier
Type:
string
The DBShardGroupIdentifier of the DBShardGroup resource.

.NET
Go
Java
Python
TypeScript