interface RecoveryPointSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.CfnLegalHold.RecoveryPointSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnLegalHold_RecoveryPointSelectionProperty |
Java | software.amazon.awscdk.services.backup.CfnLegalHold.RecoveryPointSelectionProperty |
Python | aws_cdk.aws_backup.CfnLegalHold.RecoveryPointSelectionProperty |
TypeScript | aws-cdk-lib » aws_backup » CfnLegalHold » RecoveryPointSelectionProperty |
The criteria to assign a set of resources, such as resource types or backup vaults.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from 'aws-cdk-lib';
const recoveryPointSelectionProperty: backup.CfnLegalHold.RecoveryPointSelectionProperty = {
dateRange: {
fromDate: 'fromDate',
toDate: 'toDate',
},
resourceIdentifiers: ['resourceIdentifiers'],
vaultNames: ['vaultNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| date | IResolvable | Date | A date range for filtering recovery points. |
| resource | string[] | The resources included in the resource selection. |
| vault | string[] | The names of the vaults in which the selected recovery points are contained. |
dateRange?
Type:
IResolvable | Date
(optional)
A date range for filtering recovery points.
resourceIdentifiers?
Type:
string[]
(optional)
The resources included in the resource selection.
vaultNames?
Type:
string[]
(optional)
The names of the vaults in which the selected recovery points are contained.

.NET
Go
Java
Python
TypeScript