1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetVpcLink`](crate::operation::get_vpc_link::builders::GetVpcLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`vpc_link_id(impl Into<String>)`](crate::operation::get_vpc_link::builders::GetVpcLinkFluentBuilder::vpc_link_id) / [`set_vpc_link_id(Option<String>)`](crate::operation::get_vpc_link::builders::GetVpcLinkFluentBuilder::set_vpc_link_id):<br>required: **true**<br><p>The ID of the VPC link.</p><br>
    /// - On success, responds with [`GetVpcLinkOutput`](crate::operation::get_vpc_link::GetVpcLinkOutput) with field(s):
    ///   - [`created_date(Option<DateTime>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::created_date): <p>The timestamp when the VPC link was created.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::name): <p>The name of the VPC link.</p>
    ///   - [`security_group_ids(Option<Vec::<String>>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::security_group_ids): <p>A list of security group IDs for the VPC link.</p>
    ///   - [`subnet_ids(Option<Vec::<String>>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::subnet_ids): <p>A list of subnet IDs to include in the VPC link.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::tags): <p>Tags for the VPC link.</p>
    ///   - [`vpc_link_id(Option<String>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::vpc_link_id): <p>The ID of the VPC link.</p>
    ///   - [`vpc_link_status(Option<VpcLinkStatus>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::vpc_link_status): <p>The status of the VPC link.</p>
    ///   - [`vpc_link_status_message(Option<String>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::vpc_link_status_message): <p>A message summarizing the cause of the status of the VPC link.</p>
    ///   - [`vpc_link_version(Option<VpcLinkVersion>)`](crate::operation::get_vpc_link::GetVpcLinkOutput::vpc_link_version): <p>The version of the VPC link.</p>
    /// - On failure, responds with [`SdkError<GetVpcLinkError>`](crate::operation::get_vpc_link::GetVpcLinkError)
    pub fn get_vpc_link(&self) -> crate::operation::get_vpc_link::builders::GetVpcLinkFluentBuilder {
        crate::operation::get_vpc_link::builders::GetVpcLinkFluentBuilder::new(self.handle.clone())
    }
}