Interface CfnLegalHold.RecoveryPointSelectionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLegalHold.RecoveryPointSelectionProperty.Jsii$Proxy
Enclosing class:
CfnLegalHold

@Stability(Stable) public static interface CfnLegalHold.RecoveryPointSelectionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.backup.*;
 RecoveryPointSelectionProperty recoveryPointSelectionProperty = RecoveryPointSelectionProperty.builder()
         .dateRange(DateRangeProperty.builder()
                 .fromDate("fromDate")
                 .toDate("toDate")
                 .build())
         .resourceIdentifiers(List.of("resourceIdentifiers"))
         .vaultNames(List.of("vaultNames"))
         .build();
 

See Also: