1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetAccountLink`](crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`link_id(impl Into<String>)`](crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder::set_link_id):<br>required: **false**<br><p>The identifier of the account to link.</p><br>
    ///   - [`linked_account_id(impl Into<String>)`](crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder::linked_account_id) / [`set_linked_account_id(Option<String>)`](crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder::set_linked_account_id):<br>required: **false**<br><p>The identifier of the account link</p><br>
    /// - On success, responds with [`GetAccountLinkOutput`](crate::operation::get_account_link::GetAccountLinkOutput) with field(s):
    ///   - [`account_link(Option<AccountLink>)`](crate::operation::get_account_link::GetAccountLinkOutput::account_link): <p>The account link of the account link to retrieve.</p>
    /// - On failure, responds with [`SdkError<GetAccountLinkError>`](crate::operation::get_account_link::GetAccountLinkError)
    pub fn get_account_link(&self) -> crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder {
        crate::operation::get_account_link::builders::GetAccountLinkFluentBuilder::new(self.handle.clone())
    }
}