Interface AntennaUplinkConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AntennaUplinkConfig.Builder,AntennaUplinkConfig>,SdkBuilder<AntennaUplinkConfig.Builder,AntennaUplinkConfig>,SdkPojo
- Enclosing class:
- AntennaUplinkConfig
public static interface AntennaUplinkConfig.Builder extends SdkPojo, CopyableBuilder<AntennaUplinkConfig.Builder,AntennaUplinkConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AntennaUplinkConfig.BuilderspectrumConfig(Consumer<UplinkSpectrumConfig.Builder> spectrumConfig)Information about the uplink spectralConfig.AntennaUplinkConfig.BuilderspectrumConfig(UplinkSpectrumConfig spectrumConfig)Information about the uplink spectralConfig.default AntennaUplinkConfig.BuildertargetEirp(Consumer<Eirp.Builder> targetEirp)EIRP of the target.AntennaUplinkConfig.BuildertargetEirp(Eirp targetEirp)EIRP of the target.AntennaUplinkConfig.BuildertransmitDisabled(Boolean transmitDisabled)Whether or not uplink transmit is disabled.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
spectrumConfig
AntennaUplinkConfig.Builder spectrumConfig(UplinkSpectrumConfig spectrumConfig)
Information about the uplink spectral
Config.- Parameters:
spectrumConfig- Information about the uplink spectralConfig.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spectrumConfig
default AntennaUplinkConfig.Builder spectrumConfig(Consumer<UplinkSpectrumConfig.Builder> spectrumConfig)
Information about the uplink spectral
This is a convenience method that creates an instance of theConfig.UplinkSpectrumConfig.Builderavoiding the need to create one manually viaUplinkSpectrumConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tospectrumConfig(UplinkSpectrumConfig).- Parameters:
spectrumConfig- a consumer that will call methods onUplinkSpectrumConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
spectrumConfig(UplinkSpectrumConfig)
-
targetEirp
AntennaUplinkConfig.Builder targetEirp(Eirp targetEirp)
EIRP of the target.
- Parameters:
targetEirp- EIRP of the target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetEirp
default AntennaUplinkConfig.Builder targetEirp(Consumer<Eirp.Builder> targetEirp)
EIRP of the target.
This is a convenience method that creates an instance of theEirp.Builderavoiding the need to create one manually viaEirp.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totargetEirp(Eirp).- Parameters:
targetEirp- a consumer that will call methods onEirp.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
targetEirp(Eirp)
-
transmitDisabled
AntennaUplinkConfig.Builder transmitDisabled(Boolean transmitDisabled)
Whether or not uplink transmit is disabled.
- Parameters:
transmitDisabled- Whether or not uplink transmit is disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-