1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeCustomRoutingAccelerator`](crate::operation::describe_custom_routing_accelerator::builders::DescribeCustomRoutingAcceleratorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`accelerator_arn(impl Into<String>)`](crate::operation::describe_custom_routing_accelerator::builders::DescribeCustomRoutingAcceleratorFluentBuilder::accelerator_arn) / [`set_accelerator_arn(Option<String>)`](crate::operation::describe_custom_routing_accelerator::builders::DescribeCustomRoutingAcceleratorFluentBuilder::set_accelerator_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the accelerator to describe.</p><br>
    /// - On success, responds with [`DescribeCustomRoutingAcceleratorOutput`](crate::operation::describe_custom_routing_accelerator::DescribeCustomRoutingAcceleratorOutput) with field(s):
    ///   - [`accelerator(Option<CustomRoutingAccelerator>)`](crate::operation::describe_custom_routing_accelerator::DescribeCustomRoutingAcceleratorOutput::accelerator): <p>The description of the custom routing accelerator.</p>
    /// - On failure, responds with [`SdkError<DescribeCustomRoutingAcceleratorError>`](crate::operation::describe_custom_routing_accelerator::DescribeCustomRoutingAcceleratorError)
    pub fn describe_custom_routing_accelerator(
        &self,
    ) -> crate::operation::describe_custom_routing_accelerator::builders::DescribeCustomRoutingAcceleratorFluentBuilder {
        crate::operation::describe_custom_routing_accelerator::builders::DescribeCustomRoutingAcceleratorFluentBuilder::new(self.handle.clone())
    }
}