Interface DatastoreFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatastoreFilter.Builder,DatastoreFilter>,SdkBuilder<DatastoreFilter.Builder,DatastoreFilter>,SdkPojo
- Enclosing class:
- DatastoreFilter
public static interface DatastoreFilter.Builder extends SdkPojo, CopyableBuilder<DatastoreFilter.Builder,DatastoreFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatastoreFilter.BuildercreatedAfter(Instant createdAfter)A filter that allows the user to set cutoff dates for records.DatastoreFilter.BuildercreatedBefore(Instant createdBefore)A filter that allows the user to set cutoff dates for records.DatastoreFilter.BuilderdatastoreName(String datastoreName)Allows the user to filter data store results by name.DatastoreFilter.BuilderdatastoreStatus(String datastoreStatus)Allows the user to filter data store results by status.DatastoreFilter.BuilderdatastoreStatus(DatastoreStatus datastoreStatus)Allows the user to filter data store results by status.-
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, sdkFields
-
-
-
-
Method Detail
-
datastoreName
DatastoreFilter.Builder datastoreName(String datastoreName)
Allows the user to filter data store results by name.
- Parameters:
datastoreName- Allows the user to filter data store results by name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datastoreStatus
DatastoreFilter.Builder datastoreStatus(String datastoreStatus)
Allows the user to filter data store results by status.
- Parameters:
datastoreStatus- Allows the user to filter data store results by status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatastoreStatus,DatastoreStatus
-
datastoreStatus
DatastoreFilter.Builder datastoreStatus(DatastoreStatus datastoreStatus)
Allows the user to filter data store results by status.
- Parameters:
datastoreStatus- Allows the user to filter data store results by status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatastoreStatus,DatastoreStatus
-
createdBefore
DatastoreFilter.Builder createdBefore(Instant createdBefore)
A filter that allows the user to set cutoff dates for records. All data stores created before the specified date will be included in the results.
- Parameters:
createdBefore- A filter that allows the user to set cutoff dates for records. All data stores created before the specified date will be included in the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAfter
DatastoreFilter.Builder createdAfter(Instant createdAfter)
A filter that allows the user to set cutoff dates for records. All data stores created after the specified date will be included in the results.
- Parameters:
createdAfter- A filter that allows the user to set cutoff dates for records. All data stores created after the specified date will be included in the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-