This is the new Amazon CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the Amazon CloudFormation User Guide.
AWS::GroundStation::Config UplinkSpectrumConfig
Defines a uplink spectrum.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "CenterFrequency" :Frequency, "Polarization" :String}
YAML
CenterFrequency:FrequencyPolarization:String
Properties
CenterFrequency-
The center frequency of the spectrum. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
Required: No
Type: Frequency
Update requires: No interruption
Polarization-
The polarization of the spectrum. Valid values are
"RIGHT_HAND"and"LEFT_HAND".Required: No
Type: String
Allowed values:
LEFT_HAND | RIGHT_HAND | NONEUpdate requires: No interruption
Examples
Create an uplink SpectrumConfig
The following example creates a Ground Station SpectrumConfig for an uplink config
JSON
{ "SpectrumConfig": { "CenterFrequency": { "Value": 2100, "Units": "MHz" }, "Polarization": "RIGHT_HAND" } }
YAML
SpectrumConfig: CenterFrequency: Value: 2100 Units: MHz Polarization: RIGHT_HAND