aws-sdk-networkmanager 1.102.0

AWS SDK for AWS Network Manager
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListAttachmentRoutingPolicyAssociations`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`core_network_id(impl Into<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::core_network_id) / [`set_core_network_id(Option<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::set_core_network_id):<br>required: **true**<br><p>The ID of the core network to list attachment routing policy associations for.</p><br>
    ///   - [`attachment_id(impl Into<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::attachment_id) / [`set_attachment_id(Option<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::set_attachment_id):<br>required: **false**<br><p>The ID of a specific attachment to filter the routing policy associations.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single page.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
    /// - On success, responds with [`ListAttachmentRoutingPolicyAssociationsOutput`](crate::operation::list_attachment_routing_policy_associations::ListAttachmentRoutingPolicyAssociationsOutput) with field(s):
    ///   - [`attachment_routing_policy_associations(Option<Vec::<AttachmentRoutingPolicyAssociationSummary>>)`](crate::operation::list_attachment_routing_policy_associations::ListAttachmentRoutingPolicyAssociationsOutput::attachment_routing_policy_associations): <p>The list of attachment routing policy associations.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_attachment_routing_policy_associations::ListAttachmentRoutingPolicyAssociationsOutput::next_token): <p>The token for the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListAttachmentRoutingPolicyAssociationsError>`](crate::operation::list_attachment_routing_policy_associations::ListAttachmentRoutingPolicyAssociationsError)
    pub fn list_attachment_routing_policy_associations(
        &self,
    ) -> crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder {
        crate::operation::list_attachment_routing_policy_associations::builders::ListAttachmentRoutingPolicyAssociationsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}