Amazon Simple Workflow Service · Schema
GetWorkflowExecutionHistoryInput
AutomationTask CoordinationWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| domain | object | |
| execution | object | |
| nextPageToken | object | |
| maximumPageSize | object | |
| reverseOrder | object |
JSON Schema
{
"type": "object",
"required": [
"domain",
"execution"
],
"title": "GetWorkflowExecutionHistoryInput",
"properties": {
"domain": {
"allOf": [
{
"$ref": "#/components/schemas/DomainName"
},
{
"description": "The name of the domain containing the workflow execution."
}
]
},
"execution": {
"allOf": [
{
"$ref": "#/components/schemas/WorkflowExecution"
},
{
"description": "Specifies the workflow execution for which to return the history."
}
]
},
"nextPageToken": {
"allOf": [
{
"$ref": "#/components/schemas/PageToken"
},
{
"description": "<p>If <code>NextPageToken</code> is returned there are more results available. The value of <code>NextPageToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a <code>400</code> error: \"<code>Specified token has exceeded its maximum lifetime</code>\". </p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call. </p>"
}
]
},
"maximumPageSize": {
"allOf": [
{
"$ref": "#/components/schemas/PageSize"
},
{
"description": "The maximum number of results that are returned per call. Use <code>nextPageToken</code> to obtain further pages of results. "
}
]
},
"reverseOrder": {
"allOf": [
{
"$ref": "#/components/schemas/ReverseOrder"
},
{
"description": "When set to <code>true</code>, returns the events in reverse order. By default the results are returned in ascending order of the <code>eventTimeStamp</code> of the events."
}
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}