Interface BackupCreationTimeFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BackupCreationTimeFilter.Builder,BackupCreationTimeFilter>,SdkBuilder<BackupCreationTimeFilter.Builder,BackupCreationTimeFilter>,SdkPojo
- Enclosing class:
- BackupCreationTimeFilter
public static interface BackupCreationTimeFilter.Builder extends SdkPojo, CopyableBuilder<BackupCreationTimeFilter.Builder,BackupCreationTimeFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BackupCreationTimeFilter.BuildercreatedAfter(Instant createdAfter)This timestamp includes recovery points only created after the specified time.BackupCreationTimeFilter.BuildercreatedBefore(Instant createdBefore)This timestamp includes recovery points only created before the specified time.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
createdAfter
BackupCreationTimeFilter.Builder createdAfter(Instant createdAfter)
This timestamp includes recovery points only created after the specified time.
- Parameters:
createdAfter- This timestamp includes recovery points only created after the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdBefore
BackupCreationTimeFilter.Builder createdBefore(Instant createdBefore)
This timestamp includes recovery points only created before the specified time.
- Parameters:
createdBefore- This timestamp includes recovery points only created before the specified time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-