Interface CfnConfig.SpectrumConfigProperty

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

@Stability(Stable) public static interface CfnConfig.SpectrumConfigProperty extends software.amazon.jsii.JsiiSerializable
Defines a 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.*;
 SpectrumConfigProperty spectrumConfigProperty = SpectrumConfigProperty.builder()
         .bandwidth(FrequencyBandwidthProperty.builder()
                 .units("units")
                 .value(123)
                 .build())
         .centerFrequency(FrequencyProperty.builder()
                 .units("units")
                 .value(123)
                 .build())
         .polarization("polarization")
         .build();
 

See Also: