interface BackupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DynamoDB.BackupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdynamodb#BackupReference |
Java | software.amazon.awscdk.interfaces.dynamodb.BackupReference |
Python | aws_cdk.interfaces.aws_dynamodb.BackupReference |
TypeScript | aws-cdk-lib » interfaces » aws_dynamodb » BackupReference |
A reference to a Backup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as interfaces_dynamodb } from 'aws-cdk-lib/interfaces';
const backupReference: interfaces_dynamodb.BackupReference = {
backupArn: 'backupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | The BackupArn of the Backup resource. |
backupArn
Type:
string
The BackupArn of the Backup resource.

.NET
Go
Java
Python
TypeScript