Interface CfnConfig.AntennaUplinkConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfig.AntennaUplinkConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConfig
@Stability(Stable)
public static interface CfnConfig.AntennaUplinkConfigProperty
extends software.amazon.jsii.JsiiSerializable
Provides information about how AWS Ground Station should configure an antenna for uplink during a contact.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.groundstation.*;
AntennaUplinkConfigProperty antennaUplinkConfigProperty = AntennaUplinkConfigProperty.builder()
.spectrumConfig(UplinkSpectrumConfigProperty.builder()
.centerFrequency(FrequencyProperty.builder()
.units("units")
.value(123)
.build())
.polarization("polarization")
.build())
.targetEirp(EirpProperty.builder()
.units("units")
.value(123)
.build())
.transmitDisabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfig.AntennaUplinkConfigPropertystatic final classAn implementation forCfnConfig.AntennaUplinkConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSpectrumConfig
Defines the spectrum configuration.Returns union: either
IResolvableorCfnConfig.UplinkSpectrumConfigProperty- See Also:
-
getTargetEirp
The equivalent isotropically radiated power (EIRP) to use for uplink transmissions.Valid values are between 20.0 to 50.0 dBW.
Returns union: either
IResolvableorCfnConfig.EirpProperty- See Also:
-
getTransmitDisabled
Whether or not uplink transmit is disabled.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-