Class SourceConfiguration
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.SourceConfiguration
-
- All Implemented Interfaces:
Serializable,Cloneable
public class SourceConfiguration extends Object implements Serializable, Cloneable
A specification for an environment configuration
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SourceConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SourceConfigurationclone()booleanequals(Object obj)StringgetApplicationName()The name of the application associated with the configuration.StringgetTemplateName()The name of the configuration template.inthashCode()voidsetApplicationName(String applicationName)The name of the application associated with the configuration.voidsetTemplateName(String templateName)The name of the configuration template.StringtoString()Returns a string representation of this object; useful for testing and debugging.SourceConfigurationwithApplicationName(String applicationName)The name of the application associated with the configuration.SourceConfigurationwithTemplateName(String templateName)The name of the configuration template.
-
-
-
Method Detail
-
setApplicationName
public void setApplicationName(String applicationName)
The name of the application associated with the configuration.
- Parameters:
applicationName- The name of the application associated with the configuration.
-
getApplicationName
public String getApplicationName()
The name of the application associated with the configuration.
- Returns:
- The name of the application associated with the configuration.
-
withApplicationName
public SourceConfiguration withApplicationName(String applicationName)
The name of the application associated with the configuration.
- Parameters:
applicationName- The name of the application associated with the configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTemplateName
public void setTemplateName(String templateName)
The name of the configuration template.
- Parameters:
templateName- The name of the configuration template.
-
getTemplateName
public String getTemplateName()
The name of the configuration template.
- Returns:
- The name of the configuration template.
-
withTemplateName
public SourceConfiguration withTemplateName(String templateName)
The name of the configuration template.
- Parameters:
templateName- The name of the configuration template.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public SourceConfiguration clone()
-
-