Interface CfnConfigPropsMixin.UplinkSpectrumConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigPropsMixin.UplinkSpectrumConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConfigPropsMixin
@Stability(Stable)
public static interface CfnConfigPropsMixin.UplinkSpectrumConfigProperty
extends software.amazon.jsii.JsiiSerializable
Defines a uplink spectrum.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.groundstation.*;
UplinkSpectrumConfigProperty uplinkSpectrumConfigProperty = UplinkSpectrumConfigProperty.builder()
.centerFrequency(FrequencyProperty.builder()
.units("units")
.value(123)
.build())
.polarization("polarization")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigPropsMixin.UplinkSpectrumConfigPropertystatic final classAn implementation forCfnConfigPropsMixin.UplinkSpectrumConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCenterFrequency
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.
Returns union: either
IResolvableorCfnConfigPropsMixin.FrequencyProperty- See Also:
-
getPolarization
The polarization of the spectrum.Valid values are
"RIGHT_HAND"and"LEFT_HAND".- See Also:
-
builder
-