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 [`GetOutpost`](crate::operation::get_outpost::builders::GetOutpostFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`outpost_id(impl Into<String>)`](crate::operation::get_outpost::builders::GetOutpostFluentBuilder::outpost_id) / [`set_outpost_id(Option<String>)`](crate::operation::get_outpost::builders::GetOutpostFluentBuilder::set_outpost_id):<br>required: **true**<br><p>The ID or ARN of the Outpost.</p><br>
    /// - On success, responds with [`GetOutpostOutput`](crate::operation::get_outpost::GetOutpostOutput) with field(s):
    ///   - [`outpost(Option<Outpost>)`](crate::operation::get_outpost::GetOutpostOutput::outpost): <p>Information about an Outpost.</p>
    /// - On failure, responds with [`SdkError<GetOutpostError>`](crate::operation::get_outpost::GetOutpostError)
    pub fn get_outpost(&self) -> crate::operation::get_outpost::builders::GetOutpostFluentBuilder {
        crate::operation::get_outpost::builders::GetOutpostFluentBuilder::new(self.handle.clone())
    }
}