// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetIpamRoutingPolicyRegistrations`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`dry_run(bool)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::set_dry_run):<br>required: **false**<br><p>Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p><br>
/// - [`ipam_internet_registry_association_id(impl Into<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::ipam_internet_registry_association_id) / [`set_ipam_internet_registry_association_id(Option<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::set_ipam_internet_registry_association_id):<br>required: **true**<br><p>The ID of the IPAM internet registry association.</p><br>
/// - [`cidr(impl Into<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::cidr) / [`set_cidr(Option<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::set_cidr):<br>required: **false**<br><p>Filter results to a specific CIDR prefix.</p><br>
/// - [`max_results(i32)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call. If not specified, all available results are returned. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
/// - On success, responds with [`GetIpamRoutingPolicyRegistrationsOutput`](crate::operation::get_ipam_routing_policy_registrations::GetIpamRoutingPolicyRegistrationsOutput) with field(s):
/// - [`ipam_routing_policy_registrations(Option<Vec::<IpamRoutingPolicyRegistration>>)`](crate::operation::get_ipam_routing_policy_registrations::GetIpamRoutingPolicyRegistrationsOutput::ipam_routing_policy_registrations): <p>The routing policy registrations.</p>
/// - [`next_token(Option<String>)`](crate::operation::get_ipam_routing_policy_registrations::GetIpamRoutingPolicyRegistrationsOutput::next_token): <p>The token to use to retrieve the next page of results.</p>
/// - On failure, responds with [`SdkError<GetIpamRoutingPolicyRegistrationsError>`](crate::operation::get_ipam_routing_policy_registrations::GetIpamRoutingPolicyRegistrationsError)
pub fn get_ipam_routing_policy_registrations(
&self,
) -> crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder {
crate::operation::get_ipam_routing_policy_registrations::builders::GetIpamRoutingPolicyRegistrationsFluentBuilder::new(self.handle.clone())
}
}