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 GetSendStatisticsResult
clone()
boolean
equals(Object obj)
List<SendDataPoint>
getSendDataPoints()
A list of data points, each of which represents 15 minutes of activity.int
hashCode()
void
setSendDataPoints(Collection<SendDataPoint> sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetSendStatisticsResult
withSendDataPoints(SendDataPoint... sendDataPoints)
A list of data points, each of which represents 15 minutes of activity.GetSendStatisticsResult
withSendDataPoints(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetSendStatisticsResult clone()
-
-