Interface NewDhcpConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NewDhcpConfiguration.Builder,NewDhcpConfiguration>,SdkBuilder<NewDhcpConfiguration.Builder,NewDhcpConfiguration>,SdkPojo
- Enclosing class:
- NewDhcpConfiguration
@Mutable @NotThreadSafe public static interface NewDhcpConfiguration.Builder extends SdkPojo, CopyableBuilder<NewDhcpConfiguration.Builder,NewDhcpConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NewDhcpConfiguration.Builderkey(String key)The name of a DHCP option.NewDhcpConfiguration.Buildervalues(String... values)The values for the DHCP option.NewDhcpConfiguration.Buildervalues(Collection<String> values)The values for the DHCP option.-
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
-
key
NewDhcpConfiguration.Builder key(String key)
The name of a DHCP option.
- Parameters:
key- The name of a DHCP option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
NewDhcpConfiguration.Builder values(Collection<String> values)
The values for the DHCP option.
- Parameters:
values- The values for the DHCP option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
NewDhcpConfiguration.Builder values(String... values)
The values for the DHCP option.
- Parameters:
values- The values for the DHCP option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-