Interface CfnConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:39.661Z")
@Stability(Stable)
public interface CfnConfigProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfig.
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.*;
CfnConfigProps cfnConfigProps = CfnConfigProps.builder()
.configData(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())
.name("name")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigPropsstatic final classAn implementation forCfnConfigProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConfigProps.Builderbuilder()Object containing the parameters of a config.getName()The name of the config object.getTags()Tags assigned to a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigData
Object containing the parameters of a config.Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
Returns union: either
IResolvableorCfnConfig.ConfigDataProperty- See Also:
-
getName
The name of the config object.- See Also:
-
getTags
Tags assigned to a resource.- See Also:
-
builder
- Returns:
- a
CfnConfigProps.BuilderofCfnConfigProps
-