1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeAcceleratorOfferings`](crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`location_type(LocationType)`](crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder::location_type) / [`set_location_type(Option<LocationType>)`](crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder::set_location_type):<br>required: **true**<br><p>The location type that you want to describe accelerator type offerings for. It can assume the following values: region: will return the accelerator type offering at the regional level. availability-zone: will return the accelerator type offering at the availability zone level. availability-zone-id: will return the accelerator type offering at the availability zone level returning the availability zone id.</p><br>
    ///   - [`accelerator_types(impl Into<String>)`](crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder::accelerator_types) / [`set_accelerator_types(Option<Vec::<String>>)`](crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder::set_accelerator_types):<br>required: **false**<br><p>The list of accelerator types to describe.</p><br>
    /// - On success, responds with [`DescribeAcceleratorOfferingsOutput`](crate::operation::describe_accelerator_offerings::DescribeAcceleratorOfferingsOutput) with field(s):
    ///   - [`accelerator_type_offerings(Option<Vec::<AcceleratorTypeOffering>>)`](crate::operation::describe_accelerator_offerings::DescribeAcceleratorOfferingsOutput::accelerator_type_offerings): <p>The list of accelerator type offerings for a specific location.</p>
    /// - On failure, responds with [`SdkError<DescribeAcceleratorOfferingsError>`](crate::operation::describe_accelerator_offerings::DescribeAcceleratorOfferingsError)
    pub fn describe_accelerator_offerings(
        &self,
    ) -> crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder {
        crate::operation::describe_accelerator_offerings::builders::DescribeAcceleratorOfferingsFluentBuilder::new(self.handle.clone())
    }
}