BackupVaultReference
- class aws_cdk.aws_backup.BackupVaultReference(*, backup_vault_arn, backup_vault_name)
Bases:
object
A reference to a BackupVault resource.
- Parameters:
backup_vault_arn (
str
) – The ARN of the BackupVault resource.backup_vault_name (
str
) – The BackupVaultName of the BackupVault resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_backup as backup backup_vault_reference = backup.BackupVaultReference( backup_vault_arn="backupVaultArn", backup_vault_name="backupVaultName" )
Attributes
- backup_vault_arn
The ARN of the BackupVault resource.
- backup_vault_name
The BackupVaultName of the BackupVault resource.