Skip to main content

ground_station_reservations

Creates, updates, deletes, gets or lists a ground_station_reservations resource.

Overview

Nameground_station_reservations
TypeResource
Idaws.groundstation.ground_station_reservations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
antenna_namestringName of an antenna. (pattern: <code>[ a-zA-Z0-9-._:=]{4,256}</code>)
end_timestring (date-time)End time of a ground station reservation in UTC.
ground_station_idstringID of a ground station. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>)
reservation_detailsobjectDetails of a ground station reservation.
reservation_typestringType of a ground station reservation. (MAINTENANCE, CONTACT)
start_timestring (date-time)Start time of a ground station reservation in UTC.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ground_station_reservationsselectground_station_id, startTime, endTime, regionreservationTypes, maxResults, nextTokenReturns a list of reservations for a specified ground station.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endTimestring (date-time)End time of the reservation window in UTC.
ground_station_idstringID of a ground station.
regionstringAWS region (default: us-east-1)
startTimestring (date-time)Start time of the reservation window in UTC.
maxResultsintegerMaximum number of ground station reservations returned.
nextTokenstringNext token returned in the request of a previous ListGroundStationReservations call. Used to get the next page of results.
reservationTypesarrayTypes of reservations to filter by.

SELECT examples

Returns a list of reservations for a specified ground station.

SELECT
antenna_name,
end_time,
ground_station_id,
reservation_details,
reservation_type,
start_time
FROM aws.groundstation.ground_station_reservations
WHERE ground_station_id = '{{ ground_station_id }}' -- required
AND startTime = '{{ startTime }}' -- required
AND endTime = '{{ endTime }}' -- required
AND region = '{{ region }}' -- required
AND reservationTypes = '{{ reservationTypes }}'
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;