Interface CfnConfig.UplinkSpectrumConfigProperty

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

@Stability(Stable) public static interface CfnConfig.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.services.groundstation.*;
 UplinkSpectrumConfigProperty uplinkSpectrumConfigProperty = UplinkSpectrumConfigProperty.builder()
         .centerFrequency(FrequencyProperty.builder()
                 .units("units")
                 .value(123)
                 .build())
         .polarization("polarization")
         .build();
 

See Also: