BackupPlanReference

class aws_cdk.aws_backup.BackupPlanReference(*, backup_plan_arn, backup_plan_id)

Bases: object

A reference to a BackupPlan resource.

Parameters:
  • backup_plan_arn (str) – The ARN of the BackupPlan resource.

  • backup_plan_id (str) – The BackupPlanId of the BackupPlan 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_plan_reference = backup.BackupPlanReference(
    backup_plan_arn="backupPlanArn",
    backup_plan_id="backupPlanId"
)

Attributes

backup_plan_arn

The ARN of the BackupPlan resource.

backup_plan_id

The BackupPlanId of the BackupPlan resource.