Skip to content

Commit 7a55d7c

Browse files
Update generated code (#1894)
update generated code
1 parent f92e787 commit 7a55d7c

8 files changed

+18
-13
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.343.12"
3+
"${LATEST}": "3.343.16"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/CloudWatch/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 1.3.0
610

711
### Added

src/Service/CloudWatch/src/Input/GetMetricDataInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ final class GetMetricDataInput extends Input
3838
* - Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is
3939
* rounded down to 12:00:00.
4040
*
41-
* If you set `Period` to 5, 10, or 30, the start time of your request is rounded down to the nearest time that
42-
* corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
41+
* If you set `Period` to 5, 10, 20, or 30, the start time of your request is rounded down to the nearest time that
42+
* corresponds to even 5-, 10-, 20-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
4343
* 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from
4444
* 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5
4545
* seconds, you receive data timestamped between 15:02:15 and 15:07:15.

src/Service/CloudWatch/src/Input/GetMetricStatisticsInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ final class GetMetricStatisticsInput extends Input
6060
* - Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is
6161
* rounded down to 12:00:00.
6262
*
63-
* If you set `Period` to 5, 10, or 30, the start time of your request is rounded down to the nearest time that
64-
* corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
63+
* If you set `Period` to 5, 10, 20, or 30, the start time of your request is rounded down to the nearest time that
64+
* corresponds to even 5-, 10-, 20-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
6565
* 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from
6666
* 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5
6767
* seconds, you receive data timestamped between 15:02:15 and 15:07:15.
@@ -87,8 +87,8 @@ final class GetMetricStatisticsInput extends Input
8787
/**
8888
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
8989
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
90-
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
91-
* are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
90+
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
91+
* metrics are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
9292
*
9393
* If the `StartTime` parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as
9494
* follows or no data points in that time range is returned:

src/Service/CloudWatch/src/Input/ListMetricsInput.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ final class ListMetricsInput extends Input
2626
private $metricName;
2727

2828
/**
29-
* The dimensions to filter against. Only the dimensions that match exactly will be returned.
29+
* The dimensions to filter against. Only the dimension with names that match exactly will be returned. If you specify
30+
* one dimension name and a metric has that dimension and also other dimensions, it will be returned.
3031
*
3132
* @var DimensionFilter[]|null
3233
*/

src/Service/CloudWatch/src/Input/PutMetricDataInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ final class PutMetricDataInput extends Input
7070
*
7171
* This parameter is *required* when `EntityMetricData` is included.
7272
*
73-
* [^1]: https://docs.aws.amazon.com/adding-your-own-related-telemetry.html
73+
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html
7474
*
7575
* @var bool|null
7676
*/

src/Service/CloudWatch/src/ValueObject/MetricDataQuery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ final class MetricDataQuery
9898
/**
9999
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
100100
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
101-
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
102-
* are those metrics stored by a `PutMetricData` operation that includes a `StorageResolution of 1 second`.
101+
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
102+
* metrics are those metrics stored by a `PutMetricData` operation that includes a `StorageResolution of 1 second`.
103103
*
104104
* @var int|null
105105
*/

src/Service/CloudWatch/src/ValueObject/MetricStat.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ final class MetricStat
2020
/**
2121
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
2222
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
23-
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
24-
* are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
23+
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
24+
* metrics are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
2525
*
2626
* If the `StartTime` parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as
2727
* follows or no data points in that time range is returned:

0 commit comments

Comments
 (0)