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 [`GetOutpostInstanceTypes`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`outpost_id(impl Into<String>)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::outpost_id) / [`set_outpost_id(Option<String>)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::set_outpost_id):<br>required: **true**<br><p>The ID or ARN of the Outpost.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token.</p><br>
    ///   - [`max_results(i32)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum page size.</p><br>
    /// - On success, responds with [`GetOutpostInstanceTypesOutput`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesOutput) with field(s):
    ///   - [`instance_types(Option<Vec::<InstanceTypeItem>>)`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesOutput::instance_types): <p>Information about the instance types.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesOutput::next_token): <p>The pagination token.</p>
    ///   - [`outpost_id(Option<String>)`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesOutput::outpost_id): <p>The ID of the Outpost.</p>
    ///   - [`outpost_arn(Option<String>)`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesOutput::outpost_arn): <p>The Amazon Resource Name (ARN) of the Outpost.</p>
    /// - On failure, responds with [`SdkError<GetOutpostInstanceTypesError>`](crate::operation::get_outpost_instance_types::GetOutpostInstanceTypesError)
    pub fn get_outpost_instance_types(&self) -> crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder {
        crate::operation::get_outpost_instance_types::builders::GetOutpostInstanceTypesFluentBuilder::new(self.handle.clone())
    }
}