Class CfnConfigPropsMixin.SpectrumConfigProperty
Defines a spectrum.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GroundStation
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConfigPropsMixin.SpectrumConfigProperty : CfnConfigPropsMixin.ISpectrumConfigProperty
Syntax (vb)
Public Class CfnConfigPropsMixin.SpectrumConfigProperty Implements CfnConfigPropsMixin.ISpectrumConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.GroundStation;
var spectrumConfigProperty = new SpectrumConfigProperty {
Bandwidth = new FrequencyBandwidthProperty {
Units = "units",
Value = 123
},
CenterFrequency = new FrequencyProperty {
Units = "units",
Value = 123
},
Polarization = "polarization"
};
Synopsis
Constructors
| SpectrumConfigProperty() | Defines a spectrum. |
Properties
| Bandwidth | The bandwidth of the spectrum. AWS Ground Station currently has the following bandwidth limitations:. |
| CenterFrequency | The center frequency of the spectrum. |
| Polarization | The polarization of the spectrum. |
Constructors
SpectrumConfigProperty()
Defines a spectrum.
public SpectrumConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.GroundStation;
var spectrumConfigProperty = new SpectrumConfigProperty {
Bandwidth = new FrequencyBandwidthProperty {
Units = "units",
Value = 123
},
CenterFrequency = new FrequencyProperty {
Units = "units",
Value = 123
},
Polarization = "polarization"
};
Properties
Bandwidth
The bandwidth of the spectrum. AWS Ground Station currently has the following bandwidth limitations:.
public object? Bandwidth { get; set; }
Property Value
Remarks
CenterFrequency
The center frequency of the spectrum.
public object? CenterFrequency { get; set; }
Property Value
Remarks
Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
Type union: either IResolvable or CfnConfigPropsMixin.IFrequencyProperty
Polarization
The polarization of the spectrum.
public string? Polarization { get; set; }
Property Value
Remarks
Valid values are "RIGHT_HAND" and "LEFT_HAND" . Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.