Interface CfnConfigPropsMixin.AntennaUplinkConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigPropsMixin.AntennaUplinkConfigProperty.Jsii$Proxy
Enclosing class:
CfnConfigPropsMixin

@Stability(Stable) public static interface CfnConfigPropsMixin.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.mixins.preview.services.groundstation.mixins.*;
 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: