aws-sdk-networkmanager 1.102.0

AWS SDK for AWS Network Manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`RemoveAttachmentRoutingPolicyLabel`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`core_network_id(impl Into<String>)`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::core_network_id) / [`set_core_network_id(Option<String>)`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::set_core_network_id):<br>required: **true**<br><p>The ID of the core network containing the attachment.</p><br>
    ///   - [`attachment_id(impl Into<String>)`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::attachment_id) / [`set_attachment_id(Option<String>)`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::set_attachment_id):<br>required: **true**<br><p>The ID of the attachment to remove the routing policy label from.</p><br>
    /// - On success, responds with [`RemoveAttachmentRoutingPolicyLabelOutput`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelOutput) with field(s):
    ///   - [`core_network_id(Option<String>)`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelOutput::core_network_id): <p>The ID of the core network containing the attachment.</p>
    ///   - [`attachment_id(Option<String>)`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelOutput::attachment_id): <p>The ID of the attachment from which the routing policy label was removed.</p>
    ///   - [`routing_policy_label(Option<String>)`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelOutput::routing_policy_label): <p>The routing policy label that was removed from the attachment.</p>
    /// - On failure, responds with [`SdkError<RemoveAttachmentRoutingPolicyLabelError>`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelError)
    pub fn remove_attachment_routing_policy_label(
        &self,
    ) -> crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder {
        crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::new(self.handle.clone())
    }
}