// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetIpamRouteProtectionFindings`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`dry_run(bool)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::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_id(impl Into<String>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::ipam_id) / [`set_ipam_id(Option<String>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::set_ipam_id):<br>required: **true**<br><p>The ID of the IPAM to retrieve route protection findings for.</p><br>
/// - [`filters(Filter)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::set_filters):<br>required: **false**<br><p>One or more filters to apply to the results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next page of results.</p><br>
/// - [`max_results(i32)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::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>
/// - On success, responds with [`GetIpamRouteProtectionFindingsOutput`](crate::operation::get_ipam_route_protection_findings::GetIpamRouteProtectionFindingsOutput) with field(s):
/// - [`ipam_id(Option<String>)`](crate::operation::get_ipam_route_protection_findings::GetIpamRouteProtectionFindingsOutput::ipam_id): <p>The ID of the IPAM.</p>
/// - [`route_protection_findings(Option<Vec::<IpamRouteProtectionFinding>>)`](crate::operation::get_ipam_route_protection_findings::GetIpamRouteProtectionFindingsOutput::route_protection_findings): <p>The route protection findings.</p>
/// - [`next_token(Option<String>)`](crate::operation::get_ipam_route_protection_findings::GetIpamRouteProtectionFindingsOutput::next_token): <p>The token to use to retrieve the next page of results.</p>
/// - On failure, responds with [`SdkError<GetIpamRouteProtectionFindingsError>`](crate::operation::get_ipam_route_protection_findings::GetIpamRouteProtectionFindingsError)
pub fn get_ipam_route_protection_findings(
&self,
) -> crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder {
crate::operation::get_ipam_route_protection_findings::builders::GetIpamRouteProtectionFindingsFluentBuilder::new(self.handle.clone())
}
}