Skip to content

Update generated code #1894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2025
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.343.12"
"${LATEST}": "3.343.16"
},
"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.3.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/Service/CloudWatch/src/Input/GetMetricDataInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ final class GetMetricDataInput extends Input
* - Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is
* rounded down to 12:00:00.
*
* If you set `Period` to 5, 10, or 30, the start time of your request is rounded down to the nearest time that
* corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
* If you set `Period` to 5, 10, 20, or 30, the start time of your request is rounded down to the nearest time that
* corresponds to even 5-, 10-, 20-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
* 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from
* 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
* seconds, you receive data timestamped between 15:02:15 and 15:07:15.
Expand Down
8 changes: 4 additions & 4 deletions src/Service/CloudWatch/src/Input/GetMetricStatisticsInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ final class GetMetricStatisticsInput extends Input
* - Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is
* rounded down to 12:00:00.
*
* If you set `Period` to 5, 10, or 30, the start time of your request is rounded down to the nearest time that
* corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
* If you set `Period` to 5, 10, 20, or 30, the start time of your request is rounded down to the nearest time that
* corresponds to even 5-, 10-, 20-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss)
* 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from
* 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
* seconds, you receive data timestamped between 15:02:15 and 15:07:15.
Expand All @@ -87,8 +87,8 @@ final class GetMetricStatisticsInput extends Input
/**
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
* are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
* metrics are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
*
* If the `StartTime` parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as
* follows or no data points in that time range is returned:
Expand Down
3 changes: 2 additions & 1 deletion src/Service/CloudWatch/src/Input/ListMetricsInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ final class ListMetricsInput extends Input
private $metricName;

/**
* The dimensions to filter against. Only the dimensions that match exactly will be returned.
* The dimensions to filter against. Only the dimension with names that match exactly will be returned. If you specify
* one dimension name and a metric has that dimension and also other dimensions, it will be returned.
*
* @var DimensionFilter[]|null
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudWatch/src/Input/PutMetricDataInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ final class PutMetricDataInput extends Input
*
* This parameter is *required* when `EntityMetricData` is included.
*
* [^1]: https://docs.aws.amazon.com/adding-your-own-related-telemetry.html
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/adding-your-own-related-telemetry.html
*
* @var bool|null
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Service/CloudWatch/src/ValueObject/MetricDataQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ final class MetricDataQuery
/**
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
* are those metrics stored by a `PutMetricData` operation that includes a `StorageResolution of 1 second`.
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
* metrics are those metrics stored by a `PutMetricData` operation that includes a `StorageResolution of 1 second`.
*
* @var int|null
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Service/CloudWatch/src/ValueObject/MetricStat.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ final class MetricStat
/**
* The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as
* short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at
* intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics
* are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
* intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution
* metrics are those metrics stored by a `PutMetricData` call that includes a `StorageResolution` of 1 second.
*
* If the `StartTime` parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as
* follows or no data points in that time range is returned:
Expand Down