1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeVpcConnector`](crate::operation::describe_vpc_connector::builders::DescribeVpcConnectorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`vpc_connector_arn(impl Into<String>)`](crate::operation::describe_vpc_connector::builders::DescribeVpcConnectorFluentBuilder::vpc_connector_arn) / [`set_vpc_connector_arn(Option<String>)`](crate::operation::describe_vpc_connector::builders::DescribeVpcConnectorFluentBuilder::set_vpc_connector_arn): <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want a description for.</p>  <p>The ARN must be a full VPC connector ARN.</p>
    /// - On success, responds with [`DescribeVpcConnectorOutput`](crate::operation::describe_vpc_connector::DescribeVpcConnectorOutput) with field(s):
    ///   - [`vpc_connector(Option<VpcConnector>)`](crate::operation::describe_vpc_connector::DescribeVpcConnectorOutput::vpc_connector): <p>A description of the App Runner VPC connector that you specified in this request.</p>
    /// - On failure, responds with [`SdkError<DescribeVpcConnectorError>`](crate::operation::describe_vpc_connector::DescribeVpcConnectorError)
    pub fn describe_vpc_connector(
        &self,
    ) -> crate::operation::describe_vpc_connector::builders::DescribeVpcConnectorFluentBuilder {
        crate::operation::describe_vpc_connector::builders::DescribeVpcConnectorFluentBuilder::new(
            self.handle.clone(),
        )
    }
}