com.amazonaws.services.elasticbeanstalk.model
Class OptionSpecification

java.lang.Object
  extended by com.amazonaws.services.elasticbeanstalk.model.OptionSpecification

public class OptionSpecification
extends Object

A specification identifying an individual configuration option.


Constructor Summary
OptionSpecification()
          Default constructor for a new OptionSpecification object.
 
Method Summary
 String getNamespace()
          A unique namespace identifying the option's associated AWS resource.
 String getOptionName()
          The name of the configuration option.
 void setNamespace(String namespace)
          A unique namespace identifying the option's associated AWS resource.
 void setOptionName(String optionName)
          The name of the configuration option.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 OptionSpecification withNamespace(String namespace)
          A unique namespace identifying the option's associated AWS resource.
 OptionSpecification withOptionName(String optionName)
          The name of the configuration option.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OptionSpecification

public OptionSpecification()
Default constructor for a new OptionSpecification object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.

Method Detail

getNamespace

public String getNamespace()
A unique namespace identifying the option's associated AWS resource.

Constraints:
Length: 1 - 255

Returns:
A unique namespace identifying the option's associated AWS resource.

setNamespace

public void setNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.

Constraints:
Length: 1 - 255

Parameters:
namespace - A unique namespace identifying the option's associated AWS resource.

withNamespace

public OptionSpecification withNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 255

Parameters:
namespace - A unique namespace identifying the option's associated AWS resource.
Returns:
A reference to this updated object so that method calls can be chained together.

getOptionName

public String getOptionName()
The name of the configuration option.

Constraints:
Length: 1 - 100

Returns:
The name of the configuration option.

setOptionName

public void setOptionName(String optionName)
The name of the configuration option.

Constraints:
Length: 1 - 100

Parameters:
optionName - The name of the configuration option.

withOptionName

public OptionSpecification withOptionName(String optionName)
The name of the configuration option.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 100

Parameters:
optionName - The name of the configuration option.
Returns:
A reference to this updated 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 class Object
Returns:
A string representation of this object.
See Also:
Object.toString()


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.