aws_sdk_evidently/client/
delete_feature.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteFeature`](crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`project(impl Into<String>)`](crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that contains the feature to delete.</p><br>
7    ///   - [`feature(impl Into<String>)`](crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder::feature) / [`set_feature(Option<String>)`](crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder::set_feature):<br>required: **true**<br><p>The name of the feature to delete.</p><br>
8    /// - On success, responds with [`DeleteFeatureOutput`](crate::operation::delete_feature::DeleteFeatureOutput)
9    /// - On failure, responds with [`SdkError<DeleteFeatureError>`](crate::operation::delete_feature::DeleteFeatureError)
10    pub fn delete_feature(&self) -> crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder {
11        crate::operation::delete_feature::builders::DeleteFeatureFluentBuilder::new(self.handle.clone())
12    }
13}