1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateOutpost`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`outpost_id(impl Into<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::outpost_id) / [`set_outpost_id(Option<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::set_outpost_id): <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
    ///   - [`name(impl Into<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::set_name): <p>The name of the Outpost.</p>
    ///   - [`description(impl Into<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::set_description): <p>The description of the Outpost.</p>
    ///   - [`supported_hardware_type(SupportedHardwareType)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::supported_hardware_type) / [`set_supported_hardware_type(Option<SupportedHardwareType>)`](crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::set_supported_hardware_type): <p> The type of hardware for this Outpost. </p>
    /// - On success, responds with [`UpdateOutpostOutput`](crate::operation::update_outpost::UpdateOutpostOutput) with field(s):
    ///   - [`outpost(Option<Outpost>)`](crate::operation::update_outpost::UpdateOutpostOutput::outpost): <p>Information about an Outpost.</p>
    /// - On failure, responds with [`SdkError<UpdateOutpostError>`](crate::operation::update_outpost::UpdateOutpostError)
    pub fn update_outpost(
        &self,
    ) -> crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder {
        crate::operation::update_outpost::builders::UpdateOutpostFluentBuilder::new(
            self.handle.clone(),
        )
    }
}