1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteOutpost`](crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`outpost_id(impl Into<String>)`](crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder::outpost_id) / [`set_outpost_id(Option<String>)`](crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder::set_outpost_id): <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
    /// - On success, responds with [`DeleteOutpostOutput`](crate::operation::delete_outpost::DeleteOutpostOutput)
    /// - On failure, responds with [`SdkError<DeleteOutpostError>`](crate::operation::delete_outpost::DeleteOutpostError)
    pub fn delete_outpost(
        &self,
    ) -> crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder {
        crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder::new(
            self.handle.clone(),
        )
    }
}