Show / Hide Table of Contents

Class CfnConfigPropsMixin.SpectrumConfigProperty

Defines a spectrum.

Inheritance
object
CfnConfigPropsMixin.SpectrumConfigProperty
Implements
CfnConfigPropsMixin.ISpectrumConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-spectrumconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-spectrumconfig.html

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

object

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-spectrumconfig.html#cfn-groundstation-config-spectrumconfig-bandwidth

    Type union: either IResolvable or CfnConfigPropsMixin.IFrequencyBandwidthProperty

    CenterFrequency

    The center frequency of the spectrum.

    public object? CenterFrequency { get; set; }
    Property Value

    object

    Remarks

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

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-spectrumconfig.html#cfn-groundstation-config-spectrumconfig-centerfrequency

    Type union: either IResolvable or CfnConfigPropsMixin.IFrequencyProperty

    Polarization

    The polarization of the spectrum.

    public string? Polarization { get; set; }
    Property Value

    string

    Remarks

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

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-spectrumconfig.html#cfn-groundstation-config-spectrumconfig-polarization

    Implements

    CfnConfigPropsMixin.ISpectrumConfigProperty
    Back to top Generated by DocFX