Class Trigger
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.Trigger
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class Trigger extends Object implements Serializable, Cloneable
Describes a trigger.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Trigger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Trigger
clone()
boolean
equals(Object obj)
String
getName()
The name of the trigger.int
hashCode()
void
setName(String name)
The name of the trigger.String
toString()
Returns a string representation of this object; useful for testing and debugging.Trigger
withName(String name)
The name of the trigger.
-
-
-
Method Detail
-
setName
public void setName(String name)
The name of the trigger.
- Parameters:
name
- The name of the trigger.
-
getName
public String getName()
The name of the trigger.
- Returns:
- The name of the trigger.
-
withName
public Trigger withName(String name)
The name of the trigger.
- Parameters:
name
- The name of the trigger.- 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()
-
-