Struct aws_sdk_sagemaker::operation::update_feature_group::builders::UpdateFeatureGroupFluentBuilder
source · pub struct UpdateFeatureGroupFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateFeatureGroup
.
Updates the feature group.
Implementations§
source§impl UpdateFeatureGroupFluentBuilder
impl UpdateFeatureGroupFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateFeatureGroup, AwsResponseRetryClassifier>, SdkError<UpdateFeatureGroupError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateFeatureGroup, AwsResponseRetryClassifier>, SdkError<UpdateFeatureGroupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateFeatureGroupOutput, SdkError<UpdateFeatureGroupError>>
pub async fn send( self ) -> Result<UpdateFeatureGroupOutput, SdkError<UpdateFeatureGroupError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn feature_group_name(self, input: impl Into<String>) -> Self
pub fn feature_group_name(self, input: impl Into<String>) -> Self
The name of the feature group that you're updating.
sourcepub fn set_feature_group_name(self, input: Option<String>) -> Self
pub fn set_feature_group_name(self, input: Option<String>) -> Self
The name of the feature group that you're updating.
sourcepub fn feature_additions(self, input: FeatureDefinition) -> Self
pub fn feature_additions(self, input: FeatureDefinition) -> Self
Appends an item to FeatureAdditions
.
To override the contents of this collection use set_feature_additions
.
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.
sourcepub fn set_feature_additions(
self,
input: Option<Vec<FeatureDefinition>>
) -> Self
pub fn set_feature_additions( self, input: Option<Vec<FeatureDefinition>> ) -> Self
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.
Trait Implementations§
source§impl Clone for UpdateFeatureGroupFluentBuilder
impl Clone for UpdateFeatureGroupFluentBuilder
source§fn clone(&self) -> UpdateFeatureGroupFluentBuilder
fn clone(&self) -> UpdateFeatureGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more