aws-sdk-rtbfabric 1.23.0

AWS SDK for RTBFabric
Documentation
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 [`UpdateLink`](crate::operation::update_link::builders::UpdateLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
    ///   - [`link_id(impl Into<String>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::set_link_id):<br>required: **true**<br><p>The unique identifier of the link.</p><br>
    ///   - [`log_settings(LinkLogSettings)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::log_settings) / [`set_log_settings(Option<LinkLogSettings>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::set_log_settings):<br>required: **false**<br><p>Settings for the application logs.</p><br>
    ///   - [`timeout_in_millis(i64)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::timeout_in_millis) / [`set_timeout_in_millis(Option<i64>)`](crate::operation::update_link::builders::UpdateLinkFluentBuilder::set_timeout_in_millis):<br>required: **false**<br><p>The timeout value in milliseconds.</p><br>
    /// - On success, responds with [`UpdateLinkOutput`](crate::operation::update_link::UpdateLinkOutput) with field(s):
    ///   - [`link_id(String)`](crate::operation::update_link::UpdateLinkOutput::link_id): <p>The unique identifier of the link.</p>
    ///   - [`status(LinkStatus)`](crate::operation::update_link::UpdateLinkOutput::status): <p>The status of the request.</p>
    /// - On failure, responds with [`SdkError<UpdateLinkError>`](crate::operation::update_link::UpdateLinkError)
    pub fn update_link(&self) -> crate::operation::update_link::builders::UpdateLinkFluentBuilder {
        crate::operation::update_link::builders::UpdateLinkFluentBuilder::new(self.handle.clone())
    }
}