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 [`GetVpcLinks`](crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(impl Into<String>)`](crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder::max_results) / [`set_max_results(Option<String>)`](crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of elements to be returned for this resource.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder::set_next_token):<br>required: **false**<br><p>The next page of elements from this collection. Not valid for the last element of the collection.</p><br>
    /// - On success, responds with [`GetVpcLinksOutput`](crate::operation::get_vpc_links::GetVpcLinksOutput) with field(s):
    ///   - [`items(Option<Vec::<VpcLink>>)`](crate::operation::get_vpc_links::GetVpcLinksOutput::items): <p>A collection of VPC links.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_vpc_links::GetVpcLinksOutput::next_token): <p>The next page of elements from this collection. Not valid for the last element of the collection.</p>
    /// - On failure, responds with [`SdkError<GetVpcLinksError>`](crate::operation::get_vpc_links::GetVpcLinksError)
    pub fn get_vpc_links(&self) -> crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder {
        crate::operation::get_vpc_links::builders::GetVpcLinksFluentBuilder::new(self.handle.clone())
    }
}