RestoreTestingSelectionReference

class aws_cdk.aws_backup.RestoreTestingSelectionReference(*, restore_testing_plan_name, restore_testing_selection_name)

Bases: object

A reference to a RestoreTestingSelection resource.

Parameters:
  • restore_testing_plan_name (str) – The RestoreTestingPlanName of the RestoreTestingSelection resource.

  • restore_testing_selection_name (str) – The RestoreTestingSelectionName of the RestoreTestingSelection 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_selection_reference = backup.RestoreTestingSelectionReference(
    restore_testing_plan_name="restoreTestingPlanName",
    restore_testing_selection_name="restoreTestingSelectionName"
)

Attributes

restore_testing_plan_name

The RestoreTestingPlanName of the RestoreTestingSelection resource.

restore_testing_selection_name

The RestoreTestingSelectionName of the RestoreTestingSelection resource.