aws-cdk-lib.aws_groundstation.CfnConfig.SpectrumConfigProperty

interface SpectrumConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.GroundStation.CfnConfig.SpectrumConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnConfig_SpectrumConfigProperty
Javasoftware.amazon.awscdk.services.groundstation.CfnConfig.SpectrumConfigProperty
Pythonaws_cdk.aws_groundstation.CfnConfig.SpectrumConfigProperty
TypeScript aws-cdk-lib » aws_groundstation » CfnConfig » SpectrumConfigProperty

Defines a spectrum.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from 'aws-cdk-lib';
const spectrumConfigProperty: groundstation.CfnConfig.SpectrumConfigProperty = {
  bandwidth: {
    units: 'units',
    value: 123,
  },
  centerFrequency: {
    units: 'units',
    value: 123,
  },
  polarization: 'polarization',
};

Properties

NameTypeDescription
bandwidth?IResolvable | FrequencyBandwidthPropertyThe bandwidth of the spectrum. AWS Ground Station currently has the following bandwidth limitations:.
centerFrequency?IResolvable | FrequencyPropertyThe center frequency of the spectrum.
polarization?stringThe polarization of the spectrum.

bandwidth?

Type: IResolvable | FrequencyBandwidthProperty (optional)

The bandwidth of the spectrum. AWS Ground Station currently has the following bandwidth limitations:.

  • For AntennaDownlinkDemodDecodeconfig , valid values are between 125 kHz to 650 MHz.
  • For AntennaDownlinkconfig , valid values are between 10 kHz to 54 MHz.
  • For AntennaUplinkConfig , valid values are between 10 kHz to 54 MHz.

centerFrequency?

Type: IResolvable | FrequencyProperty (optional)

The center frequency of the spectrum.

Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.


polarization?

Type: string (optional)

The polarization of the spectrum.

Valid values are "RIGHT_HAND" and "LEFT_HAND" . Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.