Interface CfnRestoreTestingPlanMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRestoreTestingPlanMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.backup.*;
CfnRestoreTestingPlanMixinProps cfnRestoreTestingPlanMixinProps = CfnRestoreTestingPlanMixinProps.builder()
.recoveryPointSelection(RestoreTestingRecoveryPointSelectionProperty.builder()
.algorithm("algorithm")
.excludeVaults(List.of("excludeVaults"))
.includeVaults(List.of("includeVaults"))
.recoveryPointTypes(List.of("recoveryPointTypes"))
.selectionWindowDays(123)
.build())
.restoreTestingPlanName("restoreTestingPlanName")
.scheduleExpression("scheduleExpression")
.scheduleExpressionTimezone("scheduleExpressionTimezone")
.startWindowHours(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRestoreTestingPlanMixinPropsstatic final classAn implementation forCfnRestoreTestingPlanMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe specified criteria to assign a set of resources, such as recovery point types or backup vaults.default StringThe RestoreTestingPlanName is a unique string that is the name of the restore testing plan.default StringA CRON expression in specified timezone when a restore testing plan is executed.default StringOptional.default NumberDefaults to 24 hours.getTags()Optional tags to include.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRecoveryPointSelection
The specified criteria to assign a set of resources, such as recovery point types or backup vaults.Returns union: either
IResolvableorCfnRestoreTestingPlanPropsMixin.RestoreTestingRecoveryPointSelectionProperty- See Also:
-
getRestoreTestingPlanName
The RestoreTestingPlanName is a unique string that is the name of the restore testing plan.This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.
- See Also:
-
getScheduleExpression
A CRON expression in specified timezone when a restore testing plan is executed.When no CRON expression is provided, AWS Backup will use the default expression
cron(0 5 ? * * *).- See Also:
-
getScheduleExpressionTimezone
Optional.This is the timezone in which the schedule expression is set. By default, ScheduleExpressions are in UTC. You can modify this to a specified timezone.
- See Also:
-
getStartWindowHours
Defaults to 24 hours.A value in hours after a restore test is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, this parameter has a maximum value of 168 hours (one week).
- See Also:
-
getTags
Optional tags to include.A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters,numbers, spaces, and the following characters:
+ - = . _ : /.- See Also:
-
builder
-