pub struct ListFeatureGroupsRequest {
pub creation_time_after: Option<f64>,
pub creation_time_before: Option<f64>,
pub feature_group_status_equals: Option<String>,
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub offline_store_status_equals: Option<String>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
}
Fields§
§creation_time_after: Option<f64>
Use this parameter to search for FeatureGroups
s created after a specific date and time.
creation_time_before: Option<f64>
Use this parameter to search for FeatureGroups
s created before a specific date and time.
feature_group_status_equals: Option<String>
A FeatureGroup
status. Filters by FeatureGroup
status.
max_results: Option<i64>
The maximum number of results returned by ListFeatureGroups
.
name_contains: Option<String>
A string that partially matches one or more FeatureGroup
s names. Filters FeatureGroup
s by name.
next_token: Option<String>
A token to resume pagination of ListFeatureGroups
results.
offline_store_status_equals: Option<String>
An OfflineStore
status. Filters by OfflineStore
status.
sort_by: Option<String>
The value on which the feature group list is sorted.
sort_order: Option<String>
The order in which feature groups are listed.
Trait Implementations§
Source§impl Clone for ListFeatureGroupsRequest
impl Clone for ListFeatureGroupsRequest
Source§fn clone(&self) -> ListFeatureGroupsRequest
fn clone(&self) -> ListFeatureGroupsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListFeatureGroupsRequest
impl Debug for ListFeatureGroupsRequest
Source§impl Default for ListFeatureGroupsRequest
impl Default for ListFeatureGroupsRequest
Source§fn default() -> ListFeatureGroupsRequest
fn default() -> ListFeatureGroupsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListFeatureGroupsRequest
impl PartialEq for ListFeatureGroupsRequest
Source§impl Serialize for ListFeatureGroupsRequest
impl Serialize for ListFeatureGroupsRequest
impl StructuralPartialEq for ListFeatureGroupsRequest
Auto Trait Implementations§
impl Freeze for ListFeatureGroupsRequest
impl RefUnwindSafe for ListFeatureGroupsRequest
impl Send for ListFeatureGroupsRequest
impl Sync for ListFeatureGroupsRequest
impl Unpin for ListFeatureGroupsRequest
impl UnwindSafe for ListFeatureGroupsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more