Interface CfnConfigPropsMixin.SpectrumConfigProperty

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

@Stability(Stable) public static interface CfnConfigPropsMixin.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.cfnpropertymixins.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: