Interface CfnLegalHoldPropsMixin.RecoveryPointSelectionProperty

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

@Stability(Stable) public static interface CfnLegalHoldPropsMixin.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.cfnpropertymixins.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: