@Stability(value=Stable)
public static interface CfnConfig.ConfigDataProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ConfigDataProperty configDataProperty = ConfigDataProperty.builder()
.antennaDownlinkConfig(AntennaDownlinkConfigProperty.builder()
.spectrumConfig(SpectrumConfigProperty.builder()
.bandwidth(FrequencyBandwidthProperty.builder()
.units("units")
.value(123)
.build())
.centerFrequency(FrequencyProperty.builder()
.units("units")
.value(123)
.build())
.polarization("polarization")
.build())
.build())
.antennaDownlinkDemodDecodeConfig(AntennaDownlinkDemodDecodeConfigProperty.builder()
.decodeConfig(DecodeConfigProperty.builder()
.unvalidatedJson("unvalidatedJson")
.build())
.demodulationConfig(DemodulationConfigProperty.builder()
.unvalidatedJson("unvalidatedJson")
.build())
.spectrumConfig(SpectrumConfigProperty.builder()
.bandwidth(FrequencyBandwidthProperty.builder()
.units("units")
.value(123)
.build())
.centerFrequency(FrequencyProperty.builder()
.units("units")
.value(123)
.build())
.polarization("polarization")
.build())
.build())
.antennaUplinkConfig(AntennaUplinkConfigProperty.builder()
.spectrumConfig(UplinkSpectrumConfigProperty.builder()
.centerFrequency(FrequencyProperty.builder()
.units("units")
.value(123)
.build())
.polarization("polarization")
.build())
.targetEirp(EirpProperty.builder()
.units("units")
.value(123)
.build())
.transmitDisabled(false)
.build())
.dataflowEndpointConfig(DataflowEndpointConfigProperty.builder()
.dataflowEndpointName("dataflowEndpointName")
.dataflowEndpointRegion("dataflowEndpointRegion")
.build())
.s3RecordingConfig(S3RecordingConfigProperty.builder()
.bucketArn("bucketArn")
.prefix("prefix")
.roleArn("roleArn")
.build())
.trackingConfig(TrackingConfigProperty.builder()
.autotrack("autotrack")
.build())
.uplinkEchoConfig(UplinkEchoConfigProperty.builder()
.antennaUplinkConfigArn("antennaUplinkConfigArn")
.enabled(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfig.ConfigDataProperty.Builder
A builder for
CfnConfig.ConfigDataProperty |
static class |
CfnConfig.ConfigDataProperty.Jsii$Proxy
An implementation for
CfnConfig.ConfigDataProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfig.ConfigDataProperty.Builder |
builder() |
default Object |
getAntennaDownlinkConfig()
Provides information for an antenna downlink config object.
|
default Object |
getAntennaDownlinkDemodDecodeConfig()
Provides information for a downlink demod decode config object.
|
default Object |
getAntennaUplinkConfig()
Provides information for an uplink config object.
|
default Object |
getDataflowEndpointConfig()
Provides information for a dataflow endpoint config object.
|
default Object |
getS3RecordingConfig()
Provides information for an S3 recording config object.
|
default Object |
getTrackingConfig()
Provides information for a tracking config object.
|
default Object |
getUplinkEchoConfig()
Provides information for an uplink echo config object.
|
@Stability(value=Stable) @Nullable default Object getAntennaDownlinkConfig()
Antenna downlink config objects are used to provide parameters for downlinks where no demodulation or decoding is performed by Ground Station (RF over IP downlinks).
@Stability(value=Stable) @Nullable default Object getAntennaDownlinkDemodDecodeConfig()
Downlink demod decode config objects are used to provide parameters for downlinks where the Ground Station service will demodulate and decode the downlinked data.
@Stability(value=Stable) @Nullable default Object getAntennaUplinkConfig()
Uplink config objects are used to provide parameters for uplink contacts.
@Stability(value=Stable) @Nullable default Object getDataflowEndpointConfig()
Dataflow endpoint config objects are used to provide parameters about which IP endpoint(s) to use during a contact. Dataflow endpoints are where Ground Station sends data during a downlink contact and where Ground Station receives data to send to the satellite during an uplink contact.
@Stability(value=Stable) @Nullable default Object getS3RecordingConfig()
S3 recording config objects are used to provide parameters for S3 recording during downlink contacts.
@Stability(value=Stable) @Nullable default Object getTrackingConfig()
Tracking config objects are used to provide parameters about how to track the satellite through the sky during a contact.
@Stability(value=Stable) @Nullable default Object getUplinkEchoConfig()
Uplink echo config objects are used to provide parameters for uplink echo during uplink contacts.
@Stability(value=Stable) static CfnConfig.ConfigDataProperty.Builder builder()
Copyright © 2022. All rights reserved.