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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLegalHold.RecoveryPointSelectionPropertystatic final classAn implementation forCfnLegalHold.RecoveryPointSelectionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateRange
A date range for filtering recovery points.Returns union: either
IResolvableorCfnLegalHold.DateRangeProperty- See Also:
-
getResourceIdentifiers
The resources included in the resource selection.- See Also:
-
getVaultNames
The names of the vaults in which the selected recovery points are contained.- See Also:
-
builder
-