Interface CfnLegalHold.DateRangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLegalHold.DateRangeProperty.Jsii$Proxy
- Enclosing class:
CfnLegalHold
@Stability(Stable)
public static interface CfnLegalHold.DateRangeProperty
extends software.amazon.jsii.JsiiSerializable
A date range for filtering recovery points.
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.*;
DateRangeProperty dateRangeProperty = DateRangeProperty.builder()
.fromDate("fromDate")
.toDate("toDate")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLegalHold.DateRangePropertystatic final classAn implementation forCfnLegalHold.DateRangeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The beginning date, inclusive.The end date, inclusive.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFromDate
The beginning date, inclusive.ISO 8601 date-time.
- See Also:
-
getToDate
The end date, inclusive.ISO 8601 date-time.
- See Also:
-
builder
-