pub struct DeleteFeatureGroup { /* 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.
Implementations§
source§impl DeleteFeatureGroup
impl DeleteFeatureGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteFeatureGroup, AwsResponseRetryClassifier>, SdkError<DeleteFeatureGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteFeatureGroup, AwsResponseRetryClassifier>, SdkError<DeleteFeatureGroupError>>
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<DeleteFeatureGroupOutput, SdkError<DeleteFeatureGroupError>>
pub async fn send(
self
) -> Result<DeleteFeatureGroupOutput, SdkError<DeleteFeatureGroupError>>
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 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.
Trait Implementations§
source§impl Clone for DeleteFeatureGroup
impl Clone for DeleteFeatureGroup
source§fn clone(&self) -> DeleteFeatureGroup
fn clone(&self) -> DeleteFeatureGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more