Interface EthernetPayload.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EthernetPayload.Builder,EthernetPayload>,SdkBuilder<EthernetPayload.Builder,EthernetPayload>,SdkPojo
- Enclosing class:
- EthernetPayload
public static interface EthernetPayload.Builder extends SdkPojo, CopyableBuilder<EthernetPayload.Builder,EthernetPayload>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EthernetPayload.BuilderconnectionType(String connectionType)How the device gets an IP address.EthernetPayload.BuilderconnectionType(ConnectionType connectionType)How the device gets an IP address.default EthernetPayload.BuilderstaticIpConnectionInfo(Consumer<StaticIpConnectionInfo.Builder> staticIpConnectionInfo)Network configuration for a static IP connection.EthernetPayload.BuilderstaticIpConnectionInfo(StaticIpConnectionInfo staticIpConnectionInfo)Network configuration for a static IP connection.-
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
-
connectionType
EthernetPayload.Builder connectionType(String connectionType)
How the device gets an IP address.
- Parameters:
connectionType- How the device gets an IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
connectionType
EthernetPayload.Builder connectionType(ConnectionType connectionType)
How the device gets an IP address.
- Parameters:
connectionType- How the device gets an IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
staticIpConnectionInfo
EthernetPayload.Builder staticIpConnectionInfo(StaticIpConnectionInfo staticIpConnectionInfo)
Network configuration for a static IP connection.
- Parameters:
staticIpConnectionInfo- Network configuration for a static IP connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
staticIpConnectionInfo
default EthernetPayload.Builder staticIpConnectionInfo(Consumer<StaticIpConnectionInfo.Builder> staticIpConnectionInfo)
Network configuration for a static IP connection.
This is a convenience method that creates an instance of theStaticIpConnectionInfo.Builderavoiding the need to create one manually viaStaticIpConnectionInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostaticIpConnectionInfo(StaticIpConnectionInfo).- Parameters:
staticIpConnectionInfo- a consumer that will call methods onStaticIpConnectionInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
staticIpConnectionInfo(StaticIpConnectionInfo)
-
-