Class GetSendStatisticsResult
- java.lang.Object
-
- com.amazonaws.services.simpleemail.model.GetSendStatisticsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetSendStatisticsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetSendStatisticsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetSendStatisticsResultclone()booleanequals(Object obj)List<SendDataPoint>getSendDataPoints()A list of data points, each of which represents 15 minutes of activity.inthashCode()voidsetSendDataPoints(Collection<SendDataPoint> sendDataPoints)A list of data points, each of which represents 15 minutes of activity.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetSendStatisticsResultwithSendDataPoints(SendDataPoint... sendDataPoints)A list of data points, each of which represents 15 minutes of activity.GetSendStatisticsResultwithSendDataPoints(Collection<SendDataPoint> sendDataPoints)A list of data points, each of which represents 15 minutes of activity.
-
-
-
Method Detail
-
getSendDataPoints
public List<SendDataPoint> getSendDataPoints()
A list of data points, each of which represents 15 minutes of activity.
- Returns:
- A list of data points, each of which represents 15 minutes of activity.
-
setSendDataPoints
public void setSendDataPoints(Collection<SendDataPoint> sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
- Parameters:
sendDataPoints- A list of data points, each of which represents 15 minutes of activity.
-
withSendDataPoints
public GetSendStatisticsResult withSendDataPoints(SendDataPoint... sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
NOTE: This method appends the values to the existing list (if any). Use
setSendDataPoints(java.util.Collection)orwithSendDataPoints(java.util.Collection)if you want to override the existing values.- Parameters:
sendDataPoints- A list of data points, each of which represents 15 minutes of activity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSendDataPoints
public GetSendStatisticsResult withSendDataPoints(Collection<SendDataPoint> sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.
- Parameters:
sendDataPoints- A list of data points, each of which represents 15 minutes of activity.- 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 GetSendStatisticsResult clone()
-
-