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: