public class DescribeConfigurationOptionsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Describes the settings for a specified configuration set.
Modifier and Type | Field and Description |
---|---|
private SdkInternalList<ConfigurationOptionDescription> |
options
A list of ConfigurationOptionDescription.
|
private java.lang.String |
solutionStackName
The name of the solution stack these configuration options belong to.
|
Constructor and Description |
---|
DescribeConfigurationOptionsResult() |
Modifier and Type | Method and Description |
---|---|
DescribeConfigurationOptionsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<ConfigurationOptionDescription> |
getOptions()
A list of ConfigurationOptionDescription.
|
java.lang.String |
getSolutionStackName()
The name of the solution stack these configuration options belong to.
|
int |
hashCode() |
void |
setOptions(java.util.Collection<ConfigurationOptionDescription> options)
A list of ConfigurationOptionDescription.
|
void |
setSolutionStackName(java.lang.String solutionStackName)
The name of the solution stack these configuration options belong to.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DescribeConfigurationOptionsResult |
withOptions(java.util.Collection<ConfigurationOptionDescription> options)
A list of ConfigurationOptionDescription.
|
DescribeConfigurationOptionsResult |
withOptions(ConfigurationOptionDescription... options)
A list of ConfigurationOptionDescription.
|
DescribeConfigurationOptionsResult |
withSolutionStackName(java.lang.String solutionStackName)
The name of the solution stack these configuration options belong to.
|
private java.lang.String solutionStackName
The name of the solution stack these configuration options belong to.
private SdkInternalList<ConfigurationOptionDescription> options
A list of ConfigurationOptionDescription.
public void setSolutionStackName(java.lang.String solutionStackName)
The name of the solution stack these configuration options belong to.
solutionStackName
- The name of the solution stack these configuration options belong
to.public java.lang.String getSolutionStackName()
The name of the solution stack these configuration options belong to.
public DescribeConfigurationOptionsResult withSolutionStackName(java.lang.String solutionStackName)
The name of the solution stack these configuration options belong to.
solutionStackName
- The name of the solution stack these configuration options belong
to.public java.util.List<ConfigurationOptionDescription> getOptions()
A list of ConfigurationOptionDescription.
public void setOptions(java.util.Collection<ConfigurationOptionDescription> options)
A list of ConfigurationOptionDescription.
options
- A list of ConfigurationOptionDescription.public DescribeConfigurationOptionsResult withOptions(ConfigurationOptionDescription... options)
A list of ConfigurationOptionDescription.
NOTE: This method appends the values to the existing list (if
any). Use setOptions(java.util.Collection)
or
withOptions(java.util.Collection)
if you want to override the
existing values.
options
- A list of ConfigurationOptionDescription.public DescribeConfigurationOptionsResult withOptions(java.util.Collection<ConfigurationOptionDescription> options)
A list of ConfigurationOptionDescription.
options
- A list of ConfigurationOptionDescription.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DescribeConfigurationOptionsResult clone()
clone
in class java.lang.Object