aws-sdk-rtbfabric 1.22.0

AWS SDK for RTBFabric
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetLink`](crate::operation::get_link::builders::GetLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::get_link::builders::GetLinkFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::get_link::builders::GetLinkFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
    ///   - [`link_id(impl Into<String>)`](crate::operation::get_link::builders::GetLinkFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::get_link::builders::GetLinkFluentBuilder::set_link_id):<br>required: **true**<br><p>The unique identifier of the link.</p><br>
    /// - On success, responds with [`GetLinkOutput`](crate::operation::get_link::GetLinkOutput) with field(s):
    ///   - [`gateway_id(String)`](crate::operation::get_link::GetLinkOutput::gateway_id): <p>The unique identifier of the gateway.</p>
    ///   - [`peer_gateway_id(String)`](crate::operation::get_link::GetLinkOutput::peer_gateway_id): <p>The unique identifier of the peer gateway.</p>
    ///   - [`status(LinkStatus)`](crate::operation::get_link::GetLinkOutput::status): <p>The status of the link.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_link::GetLinkOutput::created_at): <p>The timestamp of when the link was created.</p>
    ///   - [`updated_at(DateTime)`](crate::operation::get_link::GetLinkOutput::updated_at): <p>The timestamp of when the link was updated.</p>
    ///   - [`direction(Option<LinkDirection>)`](crate::operation::get_link::GetLinkOutput::direction): <p>The direction of the link.</p>
    ///   - [`flow_modules(Option<Vec::<ModuleConfiguration>>)`](crate::operation::get_link::GetLinkOutput::flow_modules): <p>The configuration of flow modules.</p>
    ///   - [`pending_flow_modules(Option<Vec::<ModuleConfiguration>>)`](crate::operation::get_link::GetLinkOutput::pending_flow_modules): <p>The configuration of pending flow modules.</p>
    ///   - [`attributes(Option<LinkAttributes>)`](crate::operation::get_link::GetLinkOutput::attributes): <p>Attributes of the link.</p>
    ///   - [`log_settings(Option<LinkLogSettings>)`](crate::operation::get_link::GetLinkOutput::log_settings): <p>Settings for the application logs.</p>
    ///   - [`connectivity_type(Option<ConnectivityType>)`](crate::operation::get_link::GetLinkOutput::connectivity_type): <p>The connectivity type of the link.</p>
    ///   - [`link_id(String)`](crate::operation::get_link::GetLinkOutput::link_id): <p>The unique identifier of the link.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_link::GetLinkOutput::tags): <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
    ///   - [`http_responder_allowed(Option<bool>)`](crate::operation::get_link::GetLinkOutput::http_responder_allowed): <p>Boolean to specify if an HTTP responder is allowed.</p>
    ///   - [`timeout_in_millis(Option<i64>)`](crate::operation::get_link::GetLinkOutput::timeout_in_millis): <p>The timeout value in milliseconds.</p>
    /// - On failure, responds with [`SdkError<GetLinkError>`](crate::operation::get_link::GetLinkError)
    pub fn get_link(&self) -> crate::operation::get_link::builders::GetLinkFluentBuilder {
        crate::operation::get_link::builders::GetLinkFluentBuilder::new(self.handle.clone())
    }
}