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.394.6"
"${LATEST}": "3.394.8"
},
"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.7.1

### Changed
Expand Down
7 changes: 4 additions & 3 deletions src/Service/StepFunctions/src/Input/StartExecutionInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ final class StartExecutionInput extends Input
private $stateMachineArn;

/**
* Optional name of the execution. This name must be unique for your Amazon Web Services account, Region, and state
* machine for 90 days. For more information, see Limits Related to State Machine Executions [^1] in the *Step Functions
* Developer Guide*.
* Optional name of the execution. For STANDARD workflows, this name must be unique for your Amazon Web Services
* account, region, and state machine. If a previous execution with the same name exists, you can reuse the name 90 days
* after it closes. For EXPRESS workflows, execution names can be reused immediately. For more information, see Limits
* Related to State Machine Executions [^1] in the *Step Functions Developer Guide*.
*
* If you don't provide a name for the execution, Step Functions automatically generates a universally unique identifier
* (UUID) as the execution name.
Expand Down
2 changes: 1 addition & 1 deletion src/Service/StepFunctions/src/StepFunctionsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function sendTaskSuccess($input): SendTaskSuccessOutput
* > `StartExecution` is idempotent for `STANDARD` workflows. For a `STANDARD` workflow, if you call `StartExecution`
* > with the same name and input as a running execution, the call succeeds and return the same response as the original
* > request. If the execution is closed or if the input is different, it returns a `400 ExecutionAlreadyExists` error.
* > You can reuse names after 90 days.
* > You can reuse the name 90 days after it closes.
* >
* > `StartExecution` isn't idempotent for `EXPRESS` workflows.
*
Expand Down
Loading