RestoreTestingPlanReference
- class aws_cdk.aws_backup.RestoreTestingPlanReference(*, restore_testing_plan_arn, restore_testing_plan_name)
Bases:
object
A reference to a RestoreTestingPlan resource.
- Parameters:
restore_testing_plan_arn (
str
) – The ARN of the RestoreTestingPlan resource.restore_testing_plan_name (
str
) – The RestoreTestingPlanName of the RestoreTestingPlan 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 restore_testing_plan_reference = backup.RestoreTestingPlanReference( restore_testing_plan_arn="restoreTestingPlanArn", restore_testing_plan_name="restoreTestingPlanName" )
Attributes
- restore_testing_plan_arn
The ARN of the RestoreTestingPlan resource.
- restore_testing_plan_name
The RestoreTestingPlanName of the RestoreTestingPlan resource.