Skip to main content

antennas

Creates, updates, deletes, gets or lists an antennas resource.

Overview

Nameantennas
TypeResource
Idaws.groundstation.antennas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
antenna_namestringName of the antenna. (pattern: <code>[ a-zA-Z0-9-._:=]{4,256}</code>)
ground_station_namestringName of the ground station the antenna is associated with. (pattern: <code>[ a-zA-Z0-9-._:=]{4,97}</code>)
regionstringRegion of the antenna. (pattern: <code>[\w-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_antennasselectground_station_id, regionmaxResults, nextTokenReturns a list of antennas at 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
ground_station_idstringID of a ground station.
regionstringAWS region (default: us-east-1)
maxResultsintegerMaximum number of antennas returned.
nextTokenstringNext token returned in the request of a previous ListAntennas call. Used to get the next page of results.

SELECT examples

Returns a list of antennas at a specified ground station.

SELECT
antenna_name,
ground_station_name,
region
FROM aws.groundstation.antennas
WHERE ground_station_id = '{{ ground_station_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;