Skip to content

Commit 615ea9d

Browse files
Update generated code (#1384)
update generated code
1 parent d058fe2 commit 615ea9d

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
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.261.7"
3+
"${LATEST}": "3.262.1"
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+
### Added
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 0.2.0
610

711
### Added

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
final class PutMetricDataInput extends Input
1212
{
1313
/**
14-
* The namespace for the metric data.
14+
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters
15+
* which are not supported.
1516
*
1617
* @required
1718
*

src/Service/CloudWatch/src/ValueObject/Dimension.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ final class Dimension
1515
{
1616
/**
1717
* The name of the dimension. Dimension names must contain only ASCII characters, must include at least one
18-
* non-whitespace character, and cannot start with a colon (`:`).
18+
* non-whitespace character, and cannot start with a colon (`:`). ASCII control characters are not supported as part of
19+
* dimension names.
1920
*/
2021
private $name;
2122

2223
/**
2324
* The value of the dimension. Dimension values must contain only ASCII characters and must include at least one
24-
* non-whitespace character.
25+
* non-whitespace character. ASCII control characters are not supported as part of dimension values.
2526
*/
2627
private $value;
2728

src/Service/Comprehend/src/Result/DetectDominantLanguageResponse.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@
99
class DetectDominantLanguageResponse extends Result
1010
{
1111
/**
12-
* The languages that Amazon Comprehend detected in the input text. For each language, the response returns the RFC 5646
13-
* language code and the level of confidence that Amazon Comprehend has in the accuracy of its inference. For more
14-
* information about RFC 5646, see Tags for Identifying Languages on the *IETF Tools* web site.
15-
*
16-
* @see https://tools.ietf.org/html/rfc5646
12+
* Array of languages that Amazon Comprehend detected in the input text. The array is sorted in descending order of the
13+
* score (the dominant language is always the first element in the array).
1714
*/
1815
private $languages;
1916

0 commit comments

Comments
 (0)