public static interface CfnConfig.SpectrumConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConfig.SpectrumConfigProperty.Builder
A builder for
CfnConfig.SpectrumConfigProperty |
static class |
CfnConfig.SpectrumConfigProperty.Jsii$Proxy
An implementation for
CfnConfig.SpectrumConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConfig.SpectrumConfigProperty.Builder |
builder() |
default java.lang.Object |
getBandwidth()
The bandwidth of the spectrum.
|
default java.lang.Object |
getCenterFrequency()
The center frequency of the spectrum.
|
default java.lang.String |
getPolarization()
The polarization of the spectrum.
|
default java.lang.Object getBandwidth()
AntennaDownlinkDemodDecodeconfig
, valid values are between 125 kHz to 650 MHz.AntennaDownlinkconfig
, valid values are between 10 kHz to 54 MHz.AntennaUplinkConfig
, valid values are between 10 kHz to 54 MHz.default java.lang.Object getCenterFrequency()
Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
default java.lang.String getPolarization()
Valid values are "RIGHT_HAND"
and "LEFT_HAND"
. Capturing both "RIGHT_HAND"
and "LEFT_HAND"
polarization requires two separate configs.
static CfnConfig.SpectrumConfigProperty.Builder builder()