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 [`DeleteLink`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`global_network_id(impl Into<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::global_network_id) / [`set_global_network_id(Option<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::set_global_network_id):<br>required: **true**<br><p>The ID of the global network.</p><br>
    ///   - [`link_id(impl Into<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::set_link_id):<br>required: **true**<br><p>The ID of the link.</p><br>
    /// - On success, responds with [`DeleteLinkOutput`](crate::operation::delete_link::DeleteLinkOutput) with field(s):
    ///   - [`link(Option<Link>)`](crate::operation::delete_link::DeleteLinkOutput::link): <p>Information about the link.</p>
    /// - On failure, responds with [`SdkError<DeleteLinkError>`](crate::operation::delete_link::DeleteLinkError)
    pub fn delete_link(&self) -> crate::operation::delete_link::builders::DeleteLinkFluentBuilder {
        crate::operation::delete_link::builders::DeleteLinkFluentBuilder::new(self.handle.clone())
    }
}