Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.301.7"
"${LATEST}": "3.303.0"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CloudWatch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 1.0.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudWatch/src/CloudWatchClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public function listMetrics($input = []): ListMetricsOutput
* up to fifteen minutes for the metric to appear in calls to ListMetrics [^1].
*
* You can publish either individual data points in the `Value` field, or arrays of values and the number of times each
* value occurred during the period by using the `Values` and `Counts` fields in the `MetricDatum` structure. Using the
* value occurred during the period by using the `Values` and `Counts` fields in the `MetricData` structure. Using the
* `Values` and `Counts` method enables you to publish up to 150 values per metric with one `PutMetricData` request, and
* supports retrieving percentile statistics on this data.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Service/CloudWatch/src/Input/GetMetricDataInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ final class GetMetricDataInput extends Input
* when the `MaxDatapoints` limit is reached. `TimestampAscending` returns the oldest data first and paginates when the
* `MaxDatapoints` limit is reached.
*
* If you omit this parameter, the default of `TimestampDescending` is used.
*
* @var ScanBy::*|null
*/
private $scanBy;
Expand Down