Amazon Step Functions · Schema
UpdateMapRunInput
UpdateMapRunInput schema from Amazon Step Functions API
OrchestrationServerlessState MachineWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| mapRunArn | object | |
| maxConcurrency | object | |
| toleratedFailurePercentage | object | |
| toleratedFailureCount | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-update-map-run-input-schema.json",
"title": "UpdateMapRunInput",
"description": "UpdateMapRunInput schema from Amazon Step Functions API",
"type": "object",
"properties": {
"mapRunArn": {
"allOf": [
{
"$ref": "#/components/schemas/LongArn"
},
{
"description": "The Amazon Resource Name (ARN) of a Map Run."
}
]
},
"maxConcurrency": {
"allOf": [
{
"$ref": "#/components/schemas/MaxConcurrency"
},
{
"description": "The maximum number of child workflow executions that can be specified to run in parallel for the Map Run at the same time."
}
]
},
"toleratedFailurePercentage": {
"allOf": [
{
"$ref": "#/components/schemas/ToleratedFailurePercentage"
},
{
"description": "The maximum percentage of failed items before the Map Run fails."
}
]
},
"toleratedFailureCount": {
"allOf": [
{
"$ref": "#/components/schemas/ToleratedFailureCount"
},
{
"description": "The maximum number of failed items before the Map Run fails."
}
]
}
},
"required": [
"mapRunArn"
]
}