aws_sdk_outposts/client/delete_outpost.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 [`DeleteOutpost`](crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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):<br>required: **true**<br><p>The ID or ARN of the Outpost.</p><br>
7 /// - On success, responds with [`DeleteOutpostOutput`](crate::operation::delete_outpost::DeleteOutpostOutput)
8 /// - On failure, responds with [`SdkError<DeleteOutpostError>`](crate::operation::delete_outpost::DeleteOutpostError)
9 pub fn delete_outpost(&self) -> crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder {
10 crate::operation::delete_outpost::builders::DeleteOutpostFluentBuilder::new(self.handle.clone())
11 }
12}