interface BackupPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Backup.BackupPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbackup#BackupPlanReference |
Java | software.amazon.awscdk.interfaces.backup.BackupPlanReference |
Python | aws_cdk.interfaces.aws_backup.BackupPlanReference |
TypeScript | aws-cdk-lib » interfaces » aws_backup » BackupPlanReference |
A reference to a BackupPlan 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 backupPlanReference: interfaces_aws_backup.BackupPlanReference = {
backupPlanArn: 'backupPlanArn',
backupPlanId: 'backupPlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | The ARN of the BackupPlan resource. |
| backup | string | The BackupPlanId of the BackupPlan resource. |
backupPlanArn
Type:
string
The ARN of the BackupPlan resource.
backupPlanId
Type:
string
The BackupPlanId of the BackupPlan resource.

.NET
Go
Java
Python
TypeScript