pub struct DeleteFeatureFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteFeature.
Deletes an Evidently feature.
Implementations§
source§impl DeleteFeatureFluentBuilder
impl DeleteFeatureFluentBuilder
sourcepub fn as_input(&self) -> &DeleteFeatureInputBuilder
pub fn as_input(&self) -> &DeleteFeatureInputBuilder
Access the DeleteFeature as a reference.
sourcepub async fn send(
self
) -> Result<DeleteFeatureOutput, SdkError<DeleteFeatureError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteFeatureOutput, SdkError<DeleteFeatureError, 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<DeleteFeatureOutput, DeleteFeatureError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteFeatureOutput, DeleteFeatureError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project that contains the feature to delete.
sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project that contains the feature to delete.
sourcepub fn get_project(&self) -> &Option<String>
pub fn get_project(&self) -> &Option<String>
The name or ARN of the project that contains the feature to delete.
sourcepub fn set_feature(self, input: Option<String>) -> Self
pub fn set_feature(self, input: Option<String>) -> Self
The name of the feature to delete.
sourcepub fn get_feature(&self) -> &Option<String>
pub fn get_feature(&self) -> &Option<String>
The name of the feature to delete.
Trait Implementations§
source§impl Clone for DeleteFeatureFluentBuilder
impl Clone for DeleteFeatureFluentBuilder
source§fn clone(&self) -> DeleteFeatureFluentBuilder
fn clone(&self) -> DeleteFeatureFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more