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 [`DisassociateLink`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`global_network_id(impl Into<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::global_network_id) / [`set_global_network_id(Option<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::set_global_network_id):<br>required: **true**<br><p>The ID of the global network.</p><br>
    ///   - [`device_id(impl Into<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::device_id) / [`set_device_id(Option<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::set_device_id):<br>required: **true**<br><p>The ID of the device.</p><br>
    ///   - [`link_id(impl Into<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::set_link_id):<br>required: **true**<br><p>The ID of the link.</p><br>
    /// - On success, responds with [`DisassociateLinkOutput`](crate::operation::disassociate_link::DisassociateLinkOutput) with field(s):
    ///   - [`link_association(Option<LinkAssociation>)`](crate::operation::disassociate_link::DisassociateLinkOutput::link_association): <p>Information about the link association.</p>
    /// - On failure, responds with [`SdkError<DisassociateLinkError>`](crate::operation::disassociate_link::DisassociateLinkError)
    pub fn disassociate_link(&self) -> crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder {
        crate::operation::disassociate_link::builders::DisassociateLinkFluentBuilder::new(self.handle.clone())
    }
}