interface CfnRestoreTestingPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnRestoreTestingPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnRestoreTestingPlanMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnRestoreTestingPlanMixinProps |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnRestoreTestingPlanMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnRestoreTestingPlanMixinProps |
Properties for CfnRestoreTestingPlanPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
const cfnRestoreTestingPlanMixinProps: backup_mixins.CfnRestoreTestingPlanMixinProps = {
recoveryPointSelection: {
algorithm: 'algorithm',
excludeVaults: ['excludeVaults'],
includeVaults: ['includeVaults'],
recoveryPointTypes: ['recoveryPointTypes'],
selectionWindowDays: 123,
},
restoreTestingPlanName: 'restoreTestingPlanName',
scheduleExpression: 'scheduleExpression',
scheduleExpressionTimezone: 'scheduleExpressionTimezone',
startWindowHours: 123,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| recovery | IResolvable | Restore | The specified criteria to assign a set of resources, such as recovery point types or backup vaults. |
| restore | string | The RestoreTestingPlanName is a unique string that is the name of the restore testing plan. |
| schedule | string | A CRON expression in specified timezone when a restore testing plan is executed. |
| schedule | string | Optional. |
| start | number | Defaults to 24 hours. |
| tags? | Cfn[] | Optional tags to include. |
recoveryPointSelection?
Type:
IResolvable | Restore
(optional)
The specified criteria to assign a set of resources, such as recovery point types or backup vaults.
restoreTestingPlanName?
Type:
string
(optional)
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.
scheduleExpression?
Type:
string
(optional)
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 ? * * *) .
scheduleExpressionTimezone?
Type:
string
(optional)
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.
startWindowHours?
Type:
number
(optional)
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).
tags?
Type:
Cfn[]
(optional)
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: + - = . _ : /.

.NET
Go
Java
Python
TypeScript