aws_sdk_outposts/client/delete_quote.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 [`DeleteQuote`](crate::operation::delete_quote::builders::DeleteQuoteFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`quote_identifier(impl Into<String>)`](crate::operation::delete_quote::builders::DeleteQuoteFluentBuilder::quote_identifier) / [`set_quote_identifier(Option<String>)`](crate::operation::delete_quote::builders::DeleteQuoteFluentBuilder::set_quote_identifier):<br>required: **true**<br><p>The ID or ARN of the quote.</p><br>
7 /// - On success, responds with [`DeleteQuoteOutput`](crate::operation::delete_quote::DeleteQuoteOutput)
8 /// - On failure, responds with [`SdkError<DeleteQuoteError>`](crate::operation::delete_quote::DeleteQuoteError)
9 pub fn delete_quote(&self) -> crate::operation::delete_quote::builders::DeleteQuoteFluentBuilder {
10 crate::operation::delete_quote::builders::DeleteQuoteFluentBuilder::new(self.handle.clone())
11 }
12}