// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListGroundStationReservations`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`ground_station_id(impl Into<String>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::ground_station_id) / [`set_ground_station_id(Option<String>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_ground_station_id):<br>required: **true**<br><p>ID of a ground station.</p><br>
/// - [`start_time(DateTime)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::start_time) / [`set_start_time(Option<DateTime>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_start_time):<br>required: **true**<br><p>Start time of the reservation window in UTC.</p><br>
/// - [`end_time(DateTime)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::end_time) / [`set_end_time(Option<DateTime>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_end_time):<br>required: **true**<br><p>End time of the reservation window in UTC.</p><br>
/// - [`reservation_types(ReservationType)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::reservation_types) / [`set_reservation_types(Option<Vec::<ReservationType>>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_reservation_types):<br>required: **false**<br><p>Types of reservations to filter by.</p><br>
/// - [`max_results(i32)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of ground station reservations returned.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::set_next_token):<br>required: **false**<br><p>Next token returned in the request of a previous <code>ListGroundStationReservations</code> call. Used to get the next page of results.</p><br>
/// - On success, responds with [`ListGroundStationReservationsOutput`](crate::operation::list_ground_station_reservations::ListGroundStationReservationsOutput) with field(s):
/// - [`reservation_list(Vec::<GroundStationReservationListItem>)`](crate::operation::list_ground_station_reservations::ListGroundStationReservationsOutput::reservation_list): <p>List of ground station reservations.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_ground_station_reservations::ListGroundStationReservationsOutput::next_token): <p>Next token to be used in a subsequent <code>ListGroundStationReservations</code> call to retrieve the next page of results.</p>
/// - On failure, responds with [`SdkError<ListGroundStationReservationsError>`](crate::operation::list_ground_station_reservations::ListGroundStationReservationsError)
pub fn list_ground_station_reservations(
&self,
) -> crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder {
crate::operation::list_ground_station_reservations::builders::ListGroundStationReservationsFluentBuilder::new(self.handle.clone())
}
}