The Datapoint data type encapsulates the statistical data that Amazon CloudWatch computes from metric data.
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)
Syntax
| C# | Visual Basic | Visual C++ |
public class Datapoint
Public Class Datapoint
public ref class Datapoint
Members
| All Members | Constructors | Properties | Methods |
| Member | Description | |
|---|---|---|
| Datapoint()()()() | Initializes a new instance of the Datapoint class | |
| Average |
The average of metric values that correspond to the datapoint.
| |
| Equals(Object) | (Inherited from Object.) | |
| GetHashCode()()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType()()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
| Maximum |
The maximum of the metric value used for the datapoint.
| |
| Minimum |
The minimum metric value used for the datapoint.
| |
| SampleCount |
The number of metric values that contributed to the aggregate value of this datapoint.
| |
| Sum |
The sum of metric values used for the datapoint.
| |
| Timestamp |
The time stamp used for the datapoint.
| |
| ToString()()()() | (Inherited from Object.) | |
| Unit |
The standard unit used for the datapoint.
Constraints: | |
| WithAverage(Double) |
Sets the Average property
| |
| WithMaximum(Double) |
Sets the Maximum property
| |
| WithMinimum(Double) |
Sets the Minimum property
| |
| WithSampleCount(Double) |
Sets the SampleCount property
| |
| WithSum(Double) |
Sets the Sum property
| |
| WithTimestamp(DateTime) |
Sets the Timestamp property
| |
| WithUnit(String) |
Sets the Unit property
|