interface BackupPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.BackupPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#BackupPlanReference |
Java | software.amazon.awscdk.services.backup.BackupPlanReference |
Python | aws_cdk.aws_backup.BackupPlanReference |
TypeScript | aws-cdk-lib » 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 backup } from 'aws-cdk-lib';
const backupPlanReference: 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