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