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 [`DescribeRoute`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`route_name(impl Into<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::route_name) / [`set_route_name(Option<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::set_route_name):<br>required: **true**<br><p>The name of the route to describe.</p><br>
    ///   - [`mesh_name(impl Into<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::mesh_name) / [`set_mesh_name(Option<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::set_mesh_name):<br>required: **true**<br><p>The name of the service mesh that the route resides in.</p><br>
    ///   - [`mesh_owner(impl Into<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::mesh_owner) / [`set_mesh_owner(Option<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::set_mesh_owner):<br>required: **false**<br><p>The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html">Working with shared meshes</a>.</p><br>
    ///   - [`virtual_router_name(impl Into<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::virtual_router_name) / [`set_virtual_router_name(Option<String>)`](crate::operation::describe_route::builders::DescribeRouteFluentBuilder::set_virtual_router_name):<br>required: **true**<br><p>The name of the virtual router that the route is associated with.</p><br>
    /// - On success, responds with [`DescribeRouteOutput`](crate::operation::describe_route::DescribeRouteOutput) with field(s):
    ///   - [`route(Option<RouteData>)`](crate::operation::describe_route::DescribeRouteOutput::route): <p>The full description of your route.</p>
    /// - On failure, responds with [`SdkError<DescribeRouteError>`](crate::operation::describe_route::DescribeRouteError)
    pub fn describe_route(&self) -> crate::operation::describe_route::builders::DescribeRouteFluentBuilder {
        crate::operation::describe_route::builders::DescribeRouteFluentBuilder::new(self.handle.clone())
    }
}