From a03280a9529d8e6b232c6c1d637b97958fe1bdc0 Mon Sep 17 00:00:00 2001 From: AsyncAws Bot Date: Thu, 17 Jul 2025 06:37:23 +0000 Subject: [PATCH] update generated code --- manifest.json | 2 +- src/Service/StepFunctions/CHANGELOG.md | 4 ++++ .../StepFunctions/src/Input/StartExecutionInput.php | 13 ++++++++++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index d6ae59dec..02b24c25c 100644 --- a/manifest.json +++ b/manifest.json @@ -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": { diff --git a/src/Service/StepFunctions/CHANGELOG.md b/src/Service/StepFunctions/CHANGELOG.md index e236b7d5d..68be8887b 100644 --- a/src/Service/StepFunctions/CHANGELOG.md +++ b/src/Service/StepFunctions/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Changed + +- AWS enhancement: Documentation updates. + ## 1.6.0 ### Added diff --git a/src/Service/StepFunctions/src/Input/StartExecutionInput.php b/src/Service/StepFunctions/src/Input/StartExecutionInput.php index 6982224be..f6af4fa93 100644 --- a/src/Service/StepFunctions/src/Input/StartExecutionInput.php +++ b/src/Service/StepFunctions/src/Input/StartExecutionInput.php @@ -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 _. * @@ -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. * @@ -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;