interface DBSnapshotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBSnapshotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBSnapshotReference |
Java | software.amazon.awscdk.interfaces.rds.DBSnapshotReference |
Python | aws_cdk.interfaces.aws_rds.DBSnapshotReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » DBSnapshotReference |
A reference to a DBSnapshot 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_rds } from 'aws-cdk-lib/interfaces';
const dBSnapshotReference: interfaces_rds.DBSnapshotReference = {
dbSnapshotArn: 'dbSnapshotArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBSnapshotArn of the DBSnapshot resource. |
dbSnapshotArn
Type:
string
The DBSnapshotArn of the DBSnapshot resource.

.NET
Go
Java
Python
TypeScript