#[non_exhaustive]pub struct UpdateFeatureGroupInput {
pub feature_group_name: Option<String>,
pub feature_additions: Option<Vec<FeatureDefinition>>,
pub online_store_config: Option<OnlineStoreConfigUpdate>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.feature_group_name: Option<String>
The name or Amazon Resource Name (ARN) of the feature group that you're updating.
feature_additions: Option<Vec<FeatureDefinition>>
Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.
online_store_config: Option<OnlineStoreConfigUpdate>
Updates the feature group online store configuration.
Implementations§
source§impl UpdateFeatureGroupInput
impl UpdateFeatureGroupInput
sourcepub fn feature_group_name(&self) -> Option<&str>
pub fn feature_group_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the feature group that you're updating.
sourcepub fn feature_additions(&self) -> &[FeatureDefinition]
pub fn feature_additions(&self) -> &[FeatureDefinition]
Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .feature_additions.is_none()
.
sourcepub fn online_store_config(&self) -> Option<&OnlineStoreConfigUpdate>
pub fn online_store_config(&self) -> Option<&OnlineStoreConfigUpdate>
Updates the feature group online store configuration.
source§impl UpdateFeatureGroupInput
impl UpdateFeatureGroupInput
sourcepub fn builder() -> UpdateFeatureGroupInputBuilder
pub fn builder() -> UpdateFeatureGroupInputBuilder
Creates a new builder-style object to manufacture UpdateFeatureGroupInput
.
Trait Implementations§
source§impl Clone for UpdateFeatureGroupInput
impl Clone for UpdateFeatureGroupInput
source§fn clone(&self) -> UpdateFeatureGroupInput
fn clone(&self) -> UpdateFeatureGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateFeatureGroupInput
impl Debug for UpdateFeatureGroupInput
source§impl PartialEq for UpdateFeatureGroupInput
impl PartialEq for UpdateFeatureGroupInput
source§fn eq(&self, other: &UpdateFeatureGroupInput) -> bool
fn eq(&self, other: &UpdateFeatureGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.