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 SourceConfiguration
clone()
boolean
equals(Object obj)
String
getApplicationName()
The name of the application associated with the configuration.String
getTemplateName()
The name of the configuration template.int
hashCode()
void
setApplicationName(String applicationName)
The name of the application associated with the configuration.void
setTemplateName(String templateName)
The name of the configuration template.String
toString()
Returns a string representation of this object; useful for testing and debugging.SourceConfiguration
withApplicationName(String applicationName)
The name of the application associated with the configuration.SourceConfiguration
withTemplateName(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public SourceConfiguration clone()
-
-