Skip to content

Commit 0333bcf

Browse files
Update generated code (#1917)
update generated code
1 parent 7a63b4a commit 0333bcf

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
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.349.2"
3+
"${LATEST}": "3.351.0"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/StepFunctions/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.6.0
610

711
### Added

src/Service/StepFunctions/src/Input/StartExecutionInput.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ final class StartExecutionInput extends Input
5656
* - brackets `< > { } [ ]`
5757
* - wildcard characters `? *`
5858
* - special characters `" # % \ ^ | ~ ` $ & , ; : /`
59-
* - control characters (`U+0000-001F`, `U+007F-009F`)
59+
* - control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
60+
* - surrogates (`U+D800-DFFF`)
61+
* - invalid characters (` U+10FFFF`)
6062
*
6163
* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
6264
*
@@ -69,9 +71,9 @@ final class StartExecutionInput extends Input
6971
/**
7072
* The string that contains the JSON input data for the execution, for example:
7173
*
72-
* `"input": "{\"first_name\" : \"test\"}"`
74+
* `"{\"first_name\" : \"Tim\"}"`
7375
*
74-
* > If you don't include any JSON input data, you still must include the two braces, for example: `"input": "{}"`
76+
* > If you don't include any JSON input data, you still must include the two braces, for example: `"{}"`
7577
*
7678
* Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
7779
*
@@ -82,6 +84,11 @@ final class StartExecutionInput extends Input
8284
/**
8385
* Passes the X-Ray trace header. The trace header can also be passed in the request payload.
8486
*
87+
* > For X-Ray traces, all Amazon Web Services services use the `X-Amzn-Trace-Id` header from the HTTP request. Using
88+
* > the header is the preferred mechanism to identify a trace. `StartExecution` and `StartSyncExecution` API operations
89+
* > can also use `traceHeader` from the body of the request payload. If **both** sources are provided, Step Functions
90+
* > will use the **header value** (preferred) over the value in the request body.
91+
*
8592
* @var string|null
8693
*/
8794
private $traceHeader;

0 commit comments

Comments
 (0)