interface BackupVaultReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Backup.BackupVaultReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbackup#BackupVaultReference |
Java | software.amazon.awscdk.interfaces.backup.BackupVaultReference |
Python | aws_cdk.interfaces.aws_backup.BackupVaultReference |
TypeScript | aws-cdk-lib » interfaces » aws_backup » BackupVaultReference |
A reference to a BackupVault resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as interfaces_aws_backup } from 'aws-cdk-lib/interfaces';
const backupVaultReference: interfaces_aws_backup.BackupVaultReference = {
backupVaultArn: 'backupVaultArn',
backupVaultName: 'backupVaultName',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | The ARN of the BackupVault resource. |
| backup | string | The BackupVaultName of the BackupVault resource. |
backupVaultArn
Type:
string
The ARN of the BackupVault resource.
backupVaultName
Type:
string
The BackupVaultName of the BackupVault resource.

.NET
Go
Java
Python
TypeScript