1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateOutpost`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_name): <p>The name of the Outpost.</p>
    ///   - [`description(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_description): <p>The description of the Outpost.</p>
    ///   - [`site_id(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::site_id) / [`set_site_id(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_site_id): <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
    ///   - [`availability_zone(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::availability_zone) / [`set_availability_zone(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_availability_zone): <p>The Availability Zone.</p>
    ///   - [`availability_zone_id(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::availability_zone_id) / [`set_availability_zone_id(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_availability_zone_id): <p>The ID of the Availability Zone.</p>
    ///   - [`tags(HashMap<String, String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::tags) / [`set_tags(Option<HashMap<String, String>>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_tags): <p>The tags to apply to the Outpost.</p>
    ///   - [`supported_hardware_type(SupportedHardwareType)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::supported_hardware_type) / [`set_supported_hardware_type(Option<SupportedHardwareType>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_supported_hardware_type): <p> The type of hardware for this Outpost. </p>
    /// - On success, responds with [`CreateOutpostOutput`](crate::operation::create_outpost::CreateOutpostOutput) with field(s):
    ///   - [`outpost(Option<Outpost>)`](crate::operation::create_outpost::CreateOutpostOutput::outpost): <p>Information about an Outpost.</p>
    /// - On failure, responds with [`SdkError<CreateOutpostError>`](crate::operation::create_outpost::CreateOutpostError)
    pub fn create_outpost(
        &self,
    ) -> crate::operation::create_outpost::builders::CreateOutpostFluentBuilder {
        crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::new(
            self.handle.clone(),
        )
    }
}