aws_sdk_outposts/client/get_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 [`GetQuote`](crate::operation::get_quote::builders::GetQuoteFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`quote_identifier(impl Into<String>)`](crate::operation::get_quote::builders::GetQuoteFluentBuilder::quote_identifier) / [`set_quote_identifier(Option<String>)`](crate::operation::get_quote::builders::GetQuoteFluentBuilder::set_quote_identifier):<br>required: **true**<br><p>The ID of the quote.</p><br>
7 /// - On success, responds with [`GetQuoteOutput`](crate::operation::get_quote::GetQuoteOutput) with field(s):
8 /// - [`quote(Option<Quote>)`](crate::operation::get_quote::GetQuoteOutput::quote): <p>Information about the quote.</p>
9 /// - On failure, responds with [`SdkError<GetQuoteError>`](crate::operation::get_quote::GetQuoteError)
10 pub fn get_quote(&self) -> crate::operation::get_quote::builders::GetQuoteFluentBuilder {
11 crate::operation::get_quote::builders::GetQuoteFluentBuilder::new(self.handle.clone())
12 }
13}