Struct aws_sdk_sagemaker::operation::delete_feature_group::builders::DeleteFeatureGroupFluentBuilder
source · pub struct DeleteFeatureGroupFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteFeatureGroup
.
Delete the FeatureGroup
and any data that was written to the OnlineStore
of the FeatureGroup
. Data cannot be accessed from the OnlineStore
immediately after DeleteFeatureGroup
is called.
Data written into the OfflineStore
will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your OfflineStore
are not deleted.
Note that it can take approximately 10-15 minutes to delete an OnlineStore
FeatureGroup
with the InMemory
StorageType
.
Implementations§
source§impl DeleteFeatureGroupFluentBuilder
impl DeleteFeatureGroupFluentBuilder
sourcepub fn as_input(&self) -> &DeleteFeatureGroupInputBuilder
pub fn as_input(&self) -> &DeleteFeatureGroupInputBuilder
Access the DeleteFeatureGroup as a reference.
sourcepub async fn send(
self
) -> Result<DeleteFeatureGroupOutput, SdkError<DeleteFeatureGroupError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteFeatureGroupOutput, SdkError<DeleteFeatureGroupError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<DeleteFeatureGroupOutput, DeleteFeatureGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteFeatureGroupOutput, DeleteFeatureGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 FeatureGroup
you want to delete. The name must be unique within an Amazon Web Services Region in an Amazon Web Services account.
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 FeatureGroup
you want to delete. The name must be unique within an Amazon Web Services Region in an Amazon Web Services account.
sourcepub fn get_feature_group_name(&self) -> &Option<String>
pub fn get_feature_group_name(&self) -> &Option<String>
The name of the FeatureGroup
you want to delete. The name must be unique within an Amazon Web Services Region in an Amazon Web Services account.
Trait Implementations§
source§impl Clone for DeleteFeatureGroupFluentBuilder
impl Clone for DeleteFeatureGroupFluentBuilder
source§fn clone(&self) -> DeleteFeatureGroupFluentBuilder
fn clone(&self) -> DeleteFeatureGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more