aws_sdk_networkmanager/client/
remove_attachment_routing_policy_label.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`RemoveAttachmentRoutingPolicyLabel`](crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`RemoveAttachmentRoutingPolicyLabelOutput`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelOutput) with field(s):
9    ///   - [`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>
10    ///   - [`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>
11    ///   - [`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>
12    /// - On failure, responds with [`SdkError<RemoveAttachmentRoutingPolicyLabelError>`](crate::operation::remove_attachment_routing_policy_label::RemoveAttachmentRoutingPolicyLabelError)
13    pub fn remove_attachment_routing_policy_label(
14        &self,
15    ) -> crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder {
16        crate::operation::remove_attachment_routing_policy_label::builders::RemoveAttachmentRoutingPolicyLabelFluentBuilder::new(self.handle.clone())
17    }
18}