1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteView`](crate::operation::delete_view::builders::DeleteViewFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`view_arn(impl Into<String>)`](crate::operation::delete_view::builders::DeleteViewFluentBuilder::view_arn) / [`set_view_arn(Option<String>)`](crate::operation::delete_view::builders::DeleteViewFluentBuilder::set_view_arn):<br>required: **true**<br><p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you want to delete.</p><br>
    /// - On success, responds with [`DeleteViewOutput`](crate::operation::delete_view::DeleteViewOutput) with field(s):
    ///   - [`view_arn(Option<String>)`](crate::operation::delete_view::DeleteViewOutput::view_arn): <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you successfully deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteViewError>`](crate::operation::delete_view::DeleteViewError)
    pub fn delete_view(&self) -> crate::operation::delete_view::builders::DeleteViewFluentBuilder {
        crate::operation::delete_view::builders::DeleteViewFluentBuilder::new(self.handle.clone())
    }
}