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
// 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:
    ///   - [`gateway_id(impl Into<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::delete_link::builders::DeleteLinkFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</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 unique identifier of the link.</p><br>
    /// - On success, responds with [`DeleteLinkOutput`](crate::operation::delete_link::DeleteLinkOutput) with field(s):
    ///   - [`link_id(String)`](crate::operation::delete_link::DeleteLinkOutput::link_id): <p>The unique identifier of the link.</p>
    ///   - [`status(LinkStatus)`](crate::operation::delete_link::DeleteLinkOutput::status): <p>The status of 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())
    }
}