#[non_exhaustive]pub struct UpdateFeatureMetadataInput {
pub feature_group_name: Option<String>,
pub feature_name: Option<String>,
pub description: Option<String>,
pub parameter_additions: Option<Vec<FeatureParameter>>,
pub parameter_removals: Option<Vec<String>>,
}
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 containing the feature that you're updating.
feature_name: Option<String>
The name of the feature that you're updating.
description: Option<String>
A description that you can write to better describe the feature.
parameter_additions: Option<Vec<FeatureParameter>>
A list of key-value pairs that you can add to better describe the feature.
parameter_removals: Option<Vec<String>>
A list of parameter keys that you can specify to remove parameters that describe your feature.
Implementations§
source§impl UpdateFeatureMetadataInput
impl UpdateFeatureMetadataInput
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 containing the feature that you're updating.
sourcepub fn feature_name(&self) -> Option<&str>
pub fn feature_name(&self) -> Option<&str>
The name of the feature that you're updating.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description that you can write to better describe the feature.
sourcepub fn parameter_additions(&self) -> &[FeatureParameter]
pub fn parameter_additions(&self) -> &[FeatureParameter]
A list of key-value pairs that you can add to better describe the feature.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_additions.is_none()
.
sourcepub fn parameter_removals(&self) -> &[String]
pub fn parameter_removals(&self) -> &[String]
A list of parameter keys that you can specify to remove parameters that describe your feature.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_removals.is_none()
.
source§impl UpdateFeatureMetadataInput
impl UpdateFeatureMetadataInput
sourcepub fn builder() -> UpdateFeatureMetadataInputBuilder
pub fn builder() -> UpdateFeatureMetadataInputBuilder
Creates a new builder-style object to manufacture UpdateFeatureMetadataInput
.
Trait Implementations§
source§impl Clone for UpdateFeatureMetadataInput
impl Clone for UpdateFeatureMetadataInput
source§fn clone(&self) -> UpdateFeatureMetadataInput
fn clone(&self) -> UpdateFeatureMetadataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateFeatureMetadataInput
impl Debug for UpdateFeatureMetadataInput
source§impl PartialEq for UpdateFeatureMetadataInput
impl PartialEq for UpdateFeatureMetadataInput
source§fn eq(&self, other: &UpdateFeatureMetadataInput) -> bool
fn eq(&self, other: &UpdateFeatureMetadataInput) -> bool
self
and other
values to be equal, and is used
by ==
.