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.349.2"
"${LATEST}": "3.351.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/StepFunctions/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.6.0

### Added
Expand Down
13 changes: 10 additions & 3 deletions src/Service/StepFunctions/src/Input/StartExecutionInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ final class StartExecutionInput extends Input
* - brackets `< > { } [ ]`
* - wildcard characters `? *`
* - special characters `" # % \ ^ | ~ ` $ & , ; : /`
* - control characters (`U+0000-001F`, `U+007F-009F`)
* - control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
* - surrogates (`U+D800-DFFF`)
* - invalid characters (` U+10FFFF`)
*
* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*
Expand All @@ -69,9 +71,9 @@ final class StartExecutionInput extends Input
/**
* The string that contains the JSON input data for the execution, for example:
*
* `"input": "{\"first_name\" : \"test\"}"`
* `"{\"first_name\" : \"Tim\"}"`
*
* > If you don't include any JSON input data, you still must include the two braces, for example: `"input": "{}"`
* > If you don't include any JSON input data, you still must include the two braces, for example: `"{}"`
*
* Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
*
Expand All @@ -82,6 +84,11 @@ final class StartExecutionInput extends Input
/**
* Passes the X-Ray trace header. The trace header can also be passed in the request payload.
*
* > For X-Ray traces, all Amazon Web Services services use the `X-Amzn-Trace-Id` header from the HTTP request. Using
* > the header is the preferred mechanism to identify a trace. `StartExecution` and `StartSyncExecution` API operations
* > can also use `traceHeader` from the body of the request payload. If **both** sources are provided, Step Functions
* > will use the **header value** (preferred) over the value in the request body.
*
* @var string|null
*/
private $traceHeader;
Expand Down