1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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):<br>required: **true**<br><p>The name of the Outpost.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_description):<br>required: **false**<br><p>The description of the Outpost.</p><br>
    ///   - [`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):<br>required: **true**<br><p> The ID or the Amazon Resource Name (ARN) of the site. </p><br>
    ///   - [`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):<br>required: **false**<br><p>The Availability Zone.</p><br>
    ///   - [`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):<br>required: **false**<br><p>The ID of the Availability Zone.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_outpost::builders::CreateOutpostFluentBuilder::set_tags):<br>required: **false**<br><p>The tags to apply to the Outpost.</p><br>
    ///   - [`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):<br>required: **false**<br><p> The type of hardware for this Outpost. </p><br>
    /// - 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())
    }
}