Interface BridgeNetworkSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BridgeNetworkSource.Builder,BridgeNetworkSource>,SdkBuilder<BridgeNetworkSource.Builder,BridgeNetworkSource>,SdkPojo
- Enclosing class:
- BridgeNetworkSource
public static interface BridgeNetworkSource.Builder extends SdkPojo, CopyableBuilder<BridgeNetworkSource.Builder,BridgeNetworkSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BridgeNetworkSource.BuildermulticastIp(String multicastIp)The network source multicast IP.default BridgeNetworkSource.BuildermulticastSourceSettings(Consumer<MulticastSourceSettings.Builder> multicastSourceSettings)Sets the value of the MulticastSourceSettings property for this object.BridgeNetworkSource.BuildermulticastSourceSettings(MulticastSourceSettings multicastSourceSettings)Sets the value of the MulticastSourceSettings property for this object.BridgeNetworkSource.Buildername(String name)The name of the network source.BridgeNetworkSource.BuildernetworkName(String networkName)The network source's gateway network name.BridgeNetworkSource.Builderport(Integer port)The network source port.BridgeNetworkSource.Builderprotocol(String protocol)The network source protocol.BridgeNetworkSource.Builderprotocol(Protocol protocol)The network source protocol.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
multicastIp
BridgeNetworkSource.Builder multicastIp(String multicastIp)
The network source multicast IP.- Parameters:
multicastIp- The network source multicast IP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
multicastSourceSettings
BridgeNetworkSource.Builder multicastSourceSettings(MulticastSourceSettings multicastSourceSettings)
Sets the value of the MulticastSourceSettings property for this object.- Parameters:
multicastSourceSettings- The new value for the MulticastSourceSettings property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
multicastSourceSettings
default BridgeNetworkSource.Builder multicastSourceSettings(Consumer<MulticastSourceSettings.Builder> multicastSourceSettings)
Sets the value of the MulticastSourceSettings property for this object. This is a convenience method that creates an instance of theMulticastSourceSettings.Builderavoiding the need to create one manually viaMulticastSourceSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomulticastSourceSettings(MulticastSourceSettings).- Parameters:
multicastSourceSettings- a consumer that will call methods onMulticastSourceSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
multicastSourceSettings(MulticastSourceSettings)
-
name
BridgeNetworkSource.Builder name(String name)
The name of the network source.- Parameters:
name- The name of the network source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkName
BridgeNetworkSource.Builder networkName(String networkName)
The network source's gateway network name.- Parameters:
networkName- The network source's gateway network name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
BridgeNetworkSource.Builder port(Integer port)
The network source port.- Parameters:
port- The network source port.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocol
BridgeNetworkSource.Builder protocol(String protocol)
The network source protocol.
-
protocol
BridgeNetworkSource.Builder protocol(Protocol protocol)
The network source protocol.
-
-