Package com.amazonaws.services.ec2.model
Class CreateDhcpOptionsResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.CreateDhcpOptionsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateDhcpOptionsResult extends Object implements Serializable, Cloneable
Contains the output of CreateDhcpOptions.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateDhcpOptionsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateDhcpOptionsResult
clone()
boolean
equals(Object obj)
DhcpOptions
getDhcpOptions()
A set of DHCP options.int
hashCode()
void
setDhcpOptions(DhcpOptions dhcpOptions)
A set of DHCP options.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateDhcpOptionsResult
withDhcpOptions(DhcpOptions dhcpOptions)
A set of DHCP options.
-
-
-
Method Detail
-
setDhcpOptions
public void setDhcpOptions(DhcpOptions dhcpOptions)
A set of DHCP options.
- Parameters:
dhcpOptions
- A set of DHCP options.
-
getDhcpOptions
public DhcpOptions getDhcpOptions()
A set of DHCP options.
- Returns:
- A set of DHCP options.
-
withDhcpOptions
public CreateDhcpOptionsResult withDhcpOptions(DhcpOptions dhcpOptions)
A set of DHCP options.
- Parameters:
dhcpOptions
- A set of DHCP options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateDhcpOptionsResult clone()
-
-