aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,1569 +0,0 @@
1
- {
2
- "operations": {
3
- "CountClosedWorkflowExecutions": "<p>Returns the number of closed workflow executions within the given domain that meet the specified filtering criteria.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>tagFilter.tag</code>: String constraint. The key is <code>swf:tagFilter.tag</code>.</li> <li><code>typeFilter.name</code>: String constraint. The key is <code>swf:typeFilter.name</code>.</li> <li><code>typeFilter.version</code>: String constraint. The key is <code>swf:typeFilter.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
4
- "CountOpenWorkflowExecutions": "<p>Returns the number of open workflow executions within the given domain that meet the specified filtering criteria.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>tagFilter.tag</code>: String constraint. The key is <code>swf:tagFilter.tag</code>.</li> <li><code>typeFilter.name</code>: String constraint. The key is <code>swf:typeFilter.name</code>.</li> <li><code>typeFilter.version</code>: String constraint. The key is <code>swf:typeFilter.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
5
- "CountPendingActivityTasks": "<p>Returns the estimated number of activity tasks in the specified task list. The count returned is an approximation and is not guaranteed to be exact. If you specify a task list that no activity task was ever scheduled in then 0 will be returned.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the <code>taskList.name</code> parameter by using a <b>Condition</b> element with the <code>swf:taskList.name</code> key to allow the action to access only certain task lists.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
6
- "CountPendingDecisionTasks": "<p>Returns the estimated number of decision tasks in the specified task list. The count returned is an approximation and is not guaranteed to be exact. If you specify a task list that no decision task was ever scheduled in then 0 will be returned.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the <code>taskList.name</code> parameter by using a <b>Condition</b> element with the <code>swf:taskList.name</code> key to allow the action to access only certain task lists.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
7
- "DeprecateActivityType": "<p>Deprecates the specified <i>activity type</i>. After an activity type has been deprecated, you cannot create new tasks of that activity type. Tasks of this type that were scheduled before the type was deprecated will continue to run.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>activityType.name</code>: String constraint. The key is <code>swf:activityType.name</code>.</li> <li><code>activityType.version</code>: String constraint. The key is <code>swf:activityType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
8
- "DeprecateDomain": "<p>Deprecates the specified domain. After a domain has been deprecated it cannot be used to create new workflow executions or register new types. However, you can still use visibility actions on this domain. Deprecating a domain also deprecates all activity and workflow types registered in the domain. Executions that were started before the domain was deprecated will continue to run.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
9
- "DeprecateWorkflowType": "<p>Deprecates the specified <i>workflow type</i>. After a workflow type has been deprecated, you cannot create new executions of that type. Executions that were started before the type was deprecated will continue to run. A deprecated workflow type may still be used when calling visibility actions.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>workflowType.name</code>: String constraint. The key is <code>swf:workflowType.name</code>.</li> <li><code>workflowType.version</code>: String constraint. The key is <code>swf:workflowType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
10
- "DescribeActivityType": "<p>Returns information about the specified activity type. This includes configuration settings provided when the type was registered and other general information about the type.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>activityType.name</code>: String constraint. The key is <code>swf:activityType.name</code>.</li> <li><code>activityType.version</code>: String constraint. The key is <code>swf:activityType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
11
- "DescribeDomain": "<p>Returns information about the specified domain, including description and status.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
12
- "DescribeWorkflowExecution": "<p>Returns information about the specified workflow execution including its type and some statistics.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
13
- "DescribeWorkflowType": "<p>Returns information about the specified <i>workflow type</i>. This includes configuration settings specified when the type was registered and other information such as creation date, current status, etc.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>workflowType.name</code>: String constraint. The key is <code>swf:workflowType.name</code>.</li> <li><code>workflowType.version</code>: String constraint. The key is <code>swf:workflowType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
14
- "GetWorkflowExecutionHistory": "<p>Returns the history of the specified workflow execution. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the <code>nextPageToken</code> returned by the initial call.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
15
- "ListActivityTypes": "<p>Returns information about all activities registered in the specified domain that match the specified name and registration status. The result includes information like creation date, current status of the activity, etc. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the <code>nextPageToken</code> returned by the initial call.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
16
- "ListClosedWorkflowExecutions": "<p>Returns a list of closed workflow executions in the specified domain that meet the filtering criteria. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken returned by the initial call.</p> <note>This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>tagFilter.tag</code>: String constraint. The key is <code>swf:tagFilter.tag</code>.</li> <li><code>typeFilter.name</code>: String constraint. The key is <code>swf:typeFilter.name</code>.</li> <li><code>typeFilter.version</code>: String constraint. The key is <code>swf:typeFilter.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
17
- "ListDomains": "<p>Returns the list of domains registered in the account. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken returned by the initial call.</p> <note> This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains. The element must be set to <code>arn:aws:swf::AccountID:domain/*</code>, where <i>AccountID</i> is the account ID, with no dashes.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
18
- "ListOpenWorkflowExecutions": "<p>Returns a list of open workflow executions in the specified domain that meet the filtering criteria. The results may be split into multiple pages. To retrieve subsequent pages, make the call again using the nextPageToken returned by the initial call.</p> <note> This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>tagFilter.tag</code>: String constraint. The key is <code>swf:tagFilter.tag</code>.</li> <li><code>typeFilter.name</code>: String constraint. The key is <code>swf:typeFilter.name</code>.</li> <li><code>typeFilter.version</code>: String constraint. The key is <code>swf:typeFilter.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
19
- "ListWorkflowTypes": "<p>Returns information about workflow types in the specified domain. The results may be split into multiple pages that can be retrieved by making the call repeatedly.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
20
- "PollForActivityTask": "<p>Used by workers to get an <a>ActivityTask</a> from the specified activity <code>taskList</code>. This initiates a long poll, where the service holds the HTTP connection open and responds as soon as a task becomes available. The maximum time the service holds on to the request before responding is 60 seconds. If no task is available within 60 seconds, the poll will return an empty result. An empty result, in this context, means that an ActivityTask is returned, but that the value of taskToken is an empty string. If a task is returned, the worker should use its type to identify and process it correctly.</p> <important>Workers should set their client side socket timeout to at least 70 seconds (10 seconds higher than the maximum time service may hold the poll request).</important> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the <code>taskList.name</code> parameter by using a <b>Condition</b> element with the <code>swf:taskList.name</code> key to allow the action to access only certain task lists.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
21
- "PollForDecisionTask": "<p>Used by deciders to get a <a>DecisionTask</a> from the specified decision <code>taskList</code>. A decision task may be returned for any open workflow execution that is using the specified task list. The task includes a paginated view of the history of the workflow execution. The decider should use the workflow type and the history to determine how to properly handle the task.</p> <p>This action initiates a long poll, where the service holds the HTTP connection open and responds as soon a task becomes available. If no decision task is available in the specified task list before the timeout of 60 seconds expires, an empty result is returned. An empty result, in this context, means that a DecisionTask is returned, but that the value of taskToken is an empty string.</p> <important>Deciders should set their client side socket timeout to at least 70 seconds (10 seconds higher than the timeout).</important> <important>Because the number of workflow history events for a single workflow execution might be very large, the result returned might be split up across a number of pages. To retrieve subsequent pages, make additional calls to <code>PollForDecisionTask</code> using the <code>nextPageToken</code> returned by the initial call. Note that you do <b>not</b> call <code>GetWorkflowExecutionHistory</code> with this <code>nextPageToken</code>. Instead, call <code>PollForDecisionTask</code> again.</important> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the <code>taskList.name</code> parameter by using a <b>Condition</b> element with the <code>swf:taskList.name</code> key to allow the action to access only certain task lists.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
22
- "RecordActivityTaskHeartbeat": "<p>Used by activity workers to report to the service that the <a>ActivityTask</a> represented by the specified <code>taskToken</code> is still making progress. The worker can also (optionally) specify details of the progress, for example percent complete, using the <code>details</code> parameter. This action can also be used by the worker as a mechanism to check if cancellation is being requested for the activity task. If a cancellation is being attempted for the specified task, then the boolean <code>cancelRequested</code> flag returned by the service is set to <code>true</code>.</p> <p>This action resets the <code>taskHeartbeatTimeout</code> clock. The <code>taskHeartbeatTimeout</code> is specified in <a>RegisterActivityType</a>.</p> <p>This action does not in itself create an event in the workflow execution history. However, if the task times out, the workflow execution history will contain a <code>ActivityTaskTimedOut</code> event that contains the information from the last heartbeat generated by the activity worker.</p> <note>The <code>taskStartToCloseTimeout</code> of an activity type is the maximum duration of an activity task, regardless of the number of <a>RecordActivityTaskHeartbeat</a> requests received. The <code>taskStartToCloseTimeout</code> is also specified in <a>RegisterActivityType</a>.</note> <note>This operation is only useful for long-lived activities to report liveliness of the task and to determine if a cancellation is being attempted. </note> <important>If the <code>cancelRequested</code> flag returns <code>true</code>, a cancellation is being attempted. If the worker can cancel the activity, it should respond with <a>RespondActivityTaskCanceled</a>. Otherwise, it should ignore the cancellation request.</important> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
23
- "RegisterActivityType": "<p>Registers a new <i>activity type</i> along with its configuration settings in the specified domain.</p> <important>A <code>TypeAlreadyExists</code> fault is returned if the type already exists in the domain. You cannot change any configuration settings of the type after its registration, and it must be registered as a new version.</important> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li> <code>defaultTaskList.name</code>: String constraint. The key is <code>swf:defaultTaskList.name</code>.</li> <li> <code>name</code>: String constraint. The key is <code>swf:name</code>.</li> <li> <code>version</code>: String constraint. The key is <code>swf:version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
24
- "RegisterDomain": "<p>Registers a new domain.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>You cannot use an IAM policy to control domain access for this action. The name of the domain being registered is available as the resource of this action.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
25
- "RegisterWorkflowType": "<p>Registers a new <i>workflow type</i> and its configuration settings in the specified domain.</p> <p>The retention period for the workflow history is set by the <a>RegisterDomain</a> action.</p> <important>If the type already exists, then a <code>TypeAlreadyExists</code> fault is returned. You cannot change the configuration settings of a workflow type once it is registered and it must be registered as a new version.</important> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li> <code>defaultTaskList.name</code>: String constraint. The key is <code>swf:defaultTaskList.name</code>.</li> <li> <code>name</code>: String constraint. The key is <code>swf:name</code>.</li> <li> <code>version</code>: String constraint. The key is <code>swf:version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
26
- "RequestCancelWorkflowExecution": "<p>Records a <code>WorkflowExecutionCancelRequested</code> event in the currently running workflow execution identified by the given domain, workflowId, and runId. This logically requests the cancellation of the workflow execution as a whole. It is up to the decider to take appropriate actions when it receives an execution history with this event.</p> <note>If the runId is not specified, the <code>WorkflowExecutionCancelRequested</code> event is recorded in the history of the current open workflow execution with the specified workflowId in the domain.</note> <note>Because this action allows the workflow to properly clean up and gracefully close, it should be used instead of <a>TerminateWorkflowExecution</a> when possible.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
27
- "RespondActivityTaskCanceled": "<p>Used by workers to tell the service that the <a>ActivityTask</a> identified by the <code>taskToken</code> was successfully canceled. Additional <code>details</code> can be optionally provided using the <code>details</code> argument.</p> <p>These <code>details</code> (if provided) appear in the <code>ActivityTaskCanceled</code> event added to the workflow history.</p> <important>Only use this operation if the <code>canceled</code> flag of a <a>RecordActivityTaskHeartbeat</a> request returns <code>true</code> and if the activity can be safely undone or abandoned.</important> <p>A task is considered open from the time that it is scheduled until it is closed. Therefore a task is reported as open while a worker is processing it. A task is closed after it has been specified in a call to <a>RespondActivityTaskCompleted</a>, RespondActivityTaskCanceled, <a>RespondActivityTaskFailed</a>, or the task has <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dg-basic.html#swf-dev-timeout-types\">timed out</a>.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
28
- "RespondActivityTaskCompleted": "<p>Used by workers to tell the service that the <a>ActivityTask</a> identified by the <code>taskToken</code> completed successfully with a <code>result</code> (if provided). The <code>result</code> appears in the <code>ActivityTaskCompleted</code> event in the workflow history.</p> <important> If the requested task does not complete successfully, use <a>RespondActivityTaskFailed</a> instead. If the worker finds that the task is canceled through the <code>canceled</code> flag returned by <a>RecordActivityTaskHeartbeat</a>, it should cancel the task, clean up and then call <a>RespondActivityTaskCanceled</a>.</important> <p>A task is considered open from the time that it is scheduled until it is closed. Therefore a task is reported as open while a worker is processing it. A task is closed after it has been specified in a call to RespondActivityTaskCompleted, <a>RespondActivityTaskCanceled</a>, <a>RespondActivityTaskFailed</a>, or the task has <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dg-basic.html#swf-dev-timeout-types\">timed out</a>.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
29
- "RespondActivityTaskFailed": "<p>Used by workers to tell the service that the <a>ActivityTask</a> identified by the <code>taskToken</code> has failed with <code>reason</code> (if specified). The <code>reason</code> and <code>details</code> appear in the <code>ActivityTaskFailed</code> event added to the workflow history.</p> <p>A task is considered open from the time that it is scheduled until it is closed. Therefore a task is reported as open while a worker is processing it. A task is closed after it has been specified in a call to <a>RespondActivityTaskCompleted</a>, <a>RespondActivityTaskCanceled</a>, RespondActivityTaskFailed, or the task has <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dg-basic.html#swf-dev-timeout-types\">timed out</a>.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
30
- "RespondDecisionTaskCompleted": "<p>Used by deciders to tell the service that the <a>DecisionTask</a> identified by the <code>taskToken</code> has successfully completed. The <code>decisions</code> argument specifies the list of decisions made while processing the task.</p> <p>A <code>DecisionTaskCompleted</code> event is added to the workflow history. The <code>executionContext</code> specified is attached to the event in the workflow execution history.</p> <p><b>Access Control</b></p> <p>If an IAM policy grants permission to use <code>RespondDecisionTaskCompleted</code>, it can express permissions for the list of decisions in the <code>decisions</code> parameter. Each of the decisions has one or more parameters, much like a regular API call. To allow for policies to be as readable as possible, you can express permissions on decisions as if they were actual API calls, including applying conditions to some parameters. For more information, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
31
- "SignalWorkflowExecution": "<p>Records a <code>WorkflowExecutionSignaled</code> event in the workflow execution history and creates a decision task for the workflow execution identified by the given domain, workflowId and runId. The event is recorded with the specified user defined signalName and input (if provided).</p> <note> If a runId is not specified, then the <code>WorkflowExecutionSignaled</code> event is recorded in the history of the current open workflow with the matching workflowId in the domain.</note> <note> If the specified workflow execution is not open, this method fails with <code>UnknownResource</code>.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
32
- "StartWorkflowExecution": "<p>Starts an execution of the workflow type in the specified domain using the provided <code>workflowId</code> and input data.</p> <p>This action returns the newly started workflow execution.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li> <code>tagList.member.0</code>: The key is <code>swf:tagList.member.0</code>.</li> <li> <code>tagList.member.1</code>: The key is <code>swf:tagList.member.1</code>.</li> <li> <code>tagList.member.2</code>: The key is <code>swf:tagList.member.2</code>.</li> <li> <code>tagList.member.3</code>: The key is <code>swf:tagList.member.3</code>.</li> <li> <code>tagList.member.4</code>: The key is <code>swf:tagList.member.4</code>.</li> <li><code>taskList</code>: String constraint. The key is <code>swf:taskList.name</code>.</li> <li><code>workflowType.name</code>: String constraint. The key is <code>swf:workflowType.name</code>.</li> <li><code>workflowType.version</code>: String constraint. The key is <code>swf:workflowType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
33
- "TerminateWorkflowExecution": "<p>Records a <code>WorkflowExecutionTerminated</code> event and forces closure of the workflow execution identified by the given domain, runId, and workflowId. The child policy, registered with the workflow type or specified when starting this execution, is applied to any open child workflow executions of this workflow execution.</p> <important> If the identified workflow execution was in progress, it is terminated immediately.</important> <note> If a runId is not specified, then the <code>WorkflowExecutionTerminated</code> event is recorded in the history of the current open workflow with the matching workflowId in the domain.</note> <note> You should consider using <a>RequestCancelWorkflowExecution</a> action instead because it allows the workflow to gracefully close while <a>TerminateWorkflowExecution</a> does not.</note> <p><b>Access Control</b></p> <p>You can use IAM policies to control this action's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>"
34
- },
35
- "service": "<fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/\">Amazon SWF Developer Guide</a>.</p>",
36
- "shapes": {
37
- "ActivityId": {
38
- "base": null,
39
- "refs": {
40
- "ActivityTask$activityId": "<p>The unique ID of the task.</p>",
41
- "ActivityTaskCancelRequestedEventAttributes$activityId": "<p>The unique ID of the task.</p>",
42
- "ActivityTaskScheduledEventAttributes$activityId": "<p>The unique id of the activity task.</p>",
43
- "RequestCancelActivityTaskDecisionAttributes$activityId": "<p>The <code>activityId</code> of the activity task to be canceled.</p>",
44
- "RequestCancelActivityTaskFailedEventAttributes$activityId": "<p>The activityId provided in the <code>RequestCancelActivityTask</code> decision that failed.</p>",
45
- "ScheduleActivityTaskDecisionAttributes$activityId": "<p><b>Required.</b> The <code>activityId</code> of the activity task.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
46
- "ScheduleActivityTaskFailedEventAttributes$activityId": "<p>The activityId provided in the <code>ScheduleActivityTask</code> decision that failed.</p>"
47
- }
48
- },
49
- "ActivityTask": {
50
- "base": "<p>Unit of work sent to an activity worker.</p>",
51
- "refs": {
52
- }
53
- },
54
- "ActivityTaskCancelRequestedEventAttributes": {
55
- "base": "<p>Provides details of the <code>ActivityTaskCancelRequested</code> event.</p>",
56
- "refs": {
57
- "HistoryEvent$activityTaskCancelRequestedEventAttributes": "<p>If the event is of type <code>ActivityTaskcancelRequested</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
58
- }
59
- },
60
- "ActivityTaskCanceledEventAttributes": {
61
- "base": "<p>Provides details of the <code>ActivityTaskCanceled</code> event.</p>",
62
- "refs": {
63
- "HistoryEvent$activityTaskCanceledEventAttributes": "<p>If the event is of type <code>ActivityTaskCanceled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
64
- }
65
- },
66
- "ActivityTaskCompletedEventAttributes": {
67
- "base": "<p>Provides details of the <code>ActivityTaskCompleted</code> event.</p>",
68
- "refs": {
69
- "HistoryEvent$activityTaskCompletedEventAttributes": "<p>If the event is of type <code>ActivityTaskCompleted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
70
- }
71
- },
72
- "ActivityTaskFailedEventAttributes": {
73
- "base": "<p>Provides details of the <code>ActivityTaskFailed</code> event.</p>",
74
- "refs": {
75
- "HistoryEvent$activityTaskFailedEventAttributes": "<p>If the event is of type <code>ActivityTaskFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
76
- }
77
- },
78
- "ActivityTaskScheduledEventAttributes": {
79
- "base": "<p>Provides details of the <code>ActivityTaskScheduled</code> event.</p>",
80
- "refs": {
81
- "HistoryEvent$activityTaskScheduledEventAttributes": "<p>If the event is of type <code>ActivityTaskScheduled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
82
- }
83
- },
84
- "ActivityTaskStartedEventAttributes": {
85
- "base": "<p>Provides details of the <code>ActivityTaskStarted</code> event.</p>",
86
- "refs": {
87
- "HistoryEvent$activityTaskStartedEventAttributes": "<p>If the event is of type <code>ActivityTaskStarted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
88
- }
89
- },
90
- "ActivityTaskStatus": {
91
- "base": "<p>Status information about an activity task.</p>",
92
- "refs": {
93
- }
94
- },
95
- "ActivityTaskTimedOutEventAttributes": {
96
- "base": "<p>Provides details of the <code>ActivityTaskTimedOut</code> event.</p>",
97
- "refs": {
98
- "HistoryEvent$activityTaskTimedOutEventAttributes": "<p>If the event is of type <code>ActivityTaskTimedOut</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
99
- }
100
- },
101
- "ActivityTaskTimeoutType": {
102
- "base": null,
103
- "refs": {
104
- "ActivityTaskTimedOutEventAttributes$timeoutType": "<p>The type of the timeout that caused this event.</p>"
105
- }
106
- },
107
- "ActivityType": {
108
- "base": "<p>Represents an activity type.</p>",
109
- "refs": {
110
- "ActivityTask$activityType": "<p>The type of this activity task.</p>",
111
- "ActivityTaskScheduledEventAttributes$activityType": "<p>The type of the activity task.</p>",
112
- "ActivityTypeInfo$activityType": "<p>The <a>ActivityType</a> type structure representing the activity type.</p>",
113
- "DeprecateActivityTypeInput$activityType": "<p>The activity type to deprecate.</p>",
114
- "DescribeActivityTypeInput$activityType": "<p>The activity type to get information about. Activity types are identified by the <code>name</code> and <code>version</code> that were supplied when the activity was registered.</p>",
115
- "ScheduleActivityTaskDecisionAttributes$activityType": "<p><b>Required.</b> The type of the activity task to schedule.</p>",
116
- "ScheduleActivityTaskFailedEventAttributes$activityType": "<p>The activity type provided in the <code>ScheduleActivityTask</code> decision that failed.</p>"
117
- }
118
- },
119
- "ActivityTypeConfiguration": {
120
- "base": "<p>Configuration settings registered with the activity type.</p>",
121
- "refs": {
122
- "ActivityTypeDetail$configuration": "<p>The configuration settings registered with the activity type.</p>"
123
- }
124
- },
125
- "ActivityTypeDetail": {
126
- "base": "<p>Detailed information about an activity type.</p>",
127
- "refs": {
128
- }
129
- },
130
- "ActivityTypeInfo": {
131
- "base": "<p>Detailed information about an activity type.</p>",
132
- "refs": {
133
- "ActivityTypeDetail$typeInfo": "<p>General information about the activity type.</p> <p>The status of activity type (returned in the ActivityTypeInfo structure) can be one of the following.</p> <ul> <li> <b>REGISTERED</b>: The type is registered and available. Workers supporting this type should be running. </li> <li> <b>DEPRECATED</b>: The type was deprecated using <a>DeprecateActivityType</a>, but is still in use. You should keep workers supporting this type running. You cannot create new tasks of this type. </li> </ul>",
134
- "ActivityTypeInfoList$member": null
135
- }
136
- },
137
- "ActivityTypeInfoList": {
138
- "base": null,
139
- "refs": {
140
- "ActivityTypeInfos$typeInfos": "<p>List of activity type information.</p>"
141
- }
142
- },
143
- "ActivityTypeInfos": {
144
- "base": "<p>Contains a paginated list of activity type information structures.</p>",
145
- "refs": {
146
- }
147
- },
148
- "CancelTimerDecisionAttributes": {
149
- "base": "<p>Provides details of the <code>CancelTimer</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
150
- "refs": {
151
- "Decision$cancelTimerDecisionAttributes": "<p>Provides details of the <code>CancelTimer</code> decision. It is not set for other decision types.</p>"
152
- }
153
- },
154
- "CancelTimerFailedCause": {
155
- "base": null,
156
- "refs": {
157
- "CancelTimerFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
158
- }
159
- },
160
- "CancelTimerFailedEventAttributes": {
161
- "base": "<p>Provides details of the <code>CancelTimerFailed</code> event.</p>",
162
- "refs": {
163
- "HistoryEvent$cancelTimerFailedEventAttributes": "<p>If the event is of type <code>CancelTimerFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
164
- }
165
- },
166
- "CancelWorkflowExecutionDecisionAttributes": {
167
- "base": "<p>Provides details of the <code>CancelWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
168
- "refs": {
169
- "Decision$cancelWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>CancelWorkflowExecution</code> decision. It is not set for other decision types.</p>"
170
- }
171
- },
172
- "CancelWorkflowExecutionFailedCause": {
173
- "base": null,
174
- "refs": {
175
- "CancelWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
176
- }
177
- },
178
- "CancelWorkflowExecutionFailedEventAttributes": {
179
- "base": "<p>Provides details of the <code>CancelWorkflowExecutionFailed</code> event.</p>",
180
- "refs": {
181
- "HistoryEvent$cancelWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>CancelWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
182
- }
183
- },
184
- "Canceled": {
185
- "base": null,
186
- "refs": {
187
- "ActivityTaskStatus$cancelRequested": "<p>Set to <code>true</code> if cancellation of the task is requested.</p>",
188
- "WorkflowExecutionInfo$cancelRequested": "<p>Set to true if a cancellation is requested for this workflow execution.</p>"
189
- }
190
- },
191
- "ChildPolicy": {
192
- "base": null,
193
- "refs": {
194
- "ContinueAsNewWorkflowExecutionDecisionAttributes$childPolicy": "<p>If set, specifies the policy to use for the child workflow executions of the new execution if it is terminated by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout. This policy overrides the default child policy specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul> <note>A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault will be returned.</note>",
195
- "RegisterWorkflowTypeInput$defaultChildPolicy": "<p>If set, specifies the default policy to use for the child workflow executions when a workflow execution of this type is terminated, by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
196
- "StartChildWorkflowExecutionDecisionAttributes$childPolicy": "<p><i>Optional.</i> If set, specifies the policy to use for the child workflow executions if the workflow execution being started is terminated by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout. This policy overrides the default child policy specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul> <note>A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault will be returned.</note>",
197
- "StartChildWorkflowExecutionInitiatedEventAttributes$childPolicy": "<p>The policy to use for the child workflow executions if this execution gets terminated by explicitly calling the <a>TerminateWorkflowExecution</a> action or due to an expired timeout.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
198
- "StartWorkflowExecutionInput$childPolicy": "<p>If set, specifies the policy to use for the child workflow executions of this workflow execution if it is terminated, by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout. This policy overrides the default child policy specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul> <note>A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault will be returned.</note>",
199
- "TerminateWorkflowExecutionInput$childPolicy": "<p>If set, specifies the policy to use for the child workflow executions of the workflow execution being terminated. This policy overrides the child policy specified for the workflow execution at registration time or when starting the execution.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul> <note>A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault will be returned.</note>",
200
- "WorkflowExecutionConfiguration$childPolicy": "<p>The policy to use for the child workflow executions if this workflow execution is terminated, by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
201
- "WorkflowExecutionContinuedAsNewEventAttributes$childPolicy": "<p>The policy to use for the child workflow executions of the new execution if it is terminated by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
202
- "WorkflowExecutionStartedEventAttributes$childPolicy": "<p>The policy to use for the child workflow executions if this workflow execution is terminated, by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
203
- "WorkflowExecutionTerminatedEventAttributes$childPolicy": "<p>The policy used for the child workflow executions of this workflow execution.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
204
- "WorkflowExecutionTimedOutEventAttributes$childPolicy": "<p>The policy used for the child workflow executions of this workflow execution.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>",
205
- "WorkflowTypeConfiguration$defaultChildPolicy": "<p><i>Optional.</i> The default policy to use for the child workflow executions when a workflow execution of this type is terminated, by calling the <a>TerminateWorkflowExecution</a> action explicitly or due to an expired timeout. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The supported child policies are:</p> <ul> <li><b>TERMINATE:</b> the child executions will be terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will be attempted for each child execution by recording a <code>WorkflowExecutionCancelRequested</code> event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.</li> <li><b>ABANDON:</b> no action will be taken. The child executions will continue to run.</li> </ul>"
206
- }
207
- },
208
- "ChildWorkflowExecutionCanceledEventAttributes": {
209
- "base": "<p>Provide details of the <code>ChildWorkflowExecutionCanceled</code> event.</p>",
210
- "refs": {
211
- "HistoryEvent$childWorkflowExecutionCanceledEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionCanceled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
212
- }
213
- },
214
- "ChildWorkflowExecutionCompletedEventAttributes": {
215
- "base": "<p>Provides details of the <code>ChildWorkflowExecutionCompleted</code> event.</p>",
216
- "refs": {
217
- "HistoryEvent$childWorkflowExecutionCompletedEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionCompleted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
218
- }
219
- },
220
- "ChildWorkflowExecutionFailedEventAttributes": {
221
- "base": "<p>Provides details of the <code>ChildWorkflowExecutionFailed</code> event.</p>",
222
- "refs": {
223
- "HistoryEvent$childWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
224
- }
225
- },
226
- "ChildWorkflowExecutionStartedEventAttributes": {
227
- "base": "<p>Provides details of the <code>ChildWorkflowExecutionStarted</code> event.</p>",
228
- "refs": {
229
- "HistoryEvent$childWorkflowExecutionStartedEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionStarted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
230
- }
231
- },
232
- "ChildWorkflowExecutionTerminatedEventAttributes": {
233
- "base": "<p>Provides details of the <code>ChildWorkflowExecutionTerminated</code> event.</p>",
234
- "refs": {
235
- "HistoryEvent$childWorkflowExecutionTerminatedEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionTerminated</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
236
- }
237
- },
238
- "ChildWorkflowExecutionTimedOutEventAttributes": {
239
- "base": "<p>Provides details of the <code>ChildWorkflowExecutionTimedOut</code> event.</p>",
240
- "refs": {
241
- "HistoryEvent$childWorkflowExecutionTimedOutEventAttributes": "<p>If the event is of type <code>ChildWorkflowExecutionTimedOut</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
242
- }
243
- },
244
- "CloseStatus": {
245
- "base": null,
246
- "refs": {
247
- "CloseStatusFilter$status": "<p><b>Required.</b> The close status that must match the close status of an execution for it to meet the criteria of this filter.</p>",
248
- "WorkflowExecutionInfo$closeStatus": "<p>If the execution status is closed then this specifies how the execution was closed:</p> <ul> <li> <code>COMPLETED</code>: the execution was successfully completed.</li> <li> <code>CANCELED</code>: the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.</li> <li> <code>TERMINATED</code>: the execution was force terminated.</li> <li> <code>FAILED</code>: the execution failed to complete.</li> <li> <code>TIMED_OUT</code>: the execution did not complete in the alloted time and was automatically timed out.</li> <li> <code>CONTINUED_AS_NEW</code>: the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.</li> </ul>"
249
- }
250
- },
251
- "CloseStatusFilter": {
252
- "base": "<p>Used to filter the closed workflow executions in visibility APIs by their close status.</p>",
253
- "refs": {
254
- "CountClosedWorkflowExecutionsInput$closeStatusFilter": "<p>If specified, only workflow executions that match this close status are counted. This filter has an affect only if <code>executionStatus</code> is specified as <code>CLOSED</code>.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
255
- "ListClosedWorkflowExecutionsInput$closeStatusFilter": "<p>If specified, only workflow executions that match this <i>close status</i> are listed. For example, if TERMINATED is specified, then only TERMINATED workflow executions are listed.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>"
256
- }
257
- },
258
- "CompleteWorkflowExecutionDecisionAttributes": {
259
- "base": "<p>Provides details of the <code>CompleteWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
260
- "refs": {
261
- "Decision$completeWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>CompleteWorkflowExecution</code> decision. It is not set for other decision types.</p>"
262
- }
263
- },
264
- "CompleteWorkflowExecutionFailedCause": {
265
- "base": null,
266
- "refs": {
267
- "CompleteWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
268
- }
269
- },
270
- "CompleteWorkflowExecutionFailedEventAttributes": {
271
- "base": "<p>Provides details of the <code>CompleteWorkflowExecutionFailed</code> event.</p>",
272
- "refs": {
273
- "HistoryEvent$completeWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>CompleteWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
274
- }
275
- },
276
- "ContinueAsNewWorkflowExecutionDecisionAttributes": {
277
- "base": "<p>Provides details of the <code>ContinueAsNewWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li> <code>tag</code>: <i>Optional.</i>. A tag used to identify the workflow execution</li> <li><code>taskList</code>: String constraint. The key is <code>swf:taskList.name</code>.</li> <li><code>workflowType.version</code>: String constraint. The key is <code>swf:workflowType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
278
- "refs": {
279
- "Decision$continueAsNewWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>ContinueAsNewWorkflowExecution</code> decision. It is not set for other decision types.</p>"
280
- }
281
- },
282
- "ContinueAsNewWorkflowExecutionFailedCause": {
283
- "base": null,
284
- "refs": {
285
- "ContinueAsNewWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
286
- }
287
- },
288
- "ContinueAsNewWorkflowExecutionFailedEventAttributes": {
289
- "base": "<p>Provides details of the <code>ContinueAsNewWorkflowExecutionFailed</code> event.</p>",
290
- "refs": {
291
- "HistoryEvent$continueAsNewWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>ContinueAsNewWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
292
- }
293
- },
294
- "Count": {
295
- "base": null,
296
- "refs": {
297
- "PendingTaskCount$count": "<p>The number of tasks in the task list.</p>",
298
- "WorkflowExecutionCount$count": "<p>The number of workflow executions.</p>",
299
- "WorkflowExecutionOpenCounts$openActivityTasks": "<p>The count of activity tasks whose status is OPEN.</p>",
300
- "WorkflowExecutionOpenCounts$openTimers": "<p>The count of timers started by this workflow execution that have not fired yet.</p>",
301
- "WorkflowExecutionOpenCounts$openChildWorkflowExecutions": "<p>The count of child workflow executions whose status is OPEN.</p>"
302
- }
303
- },
304
- "CountClosedWorkflowExecutionsInput": {
305
- "base": null,
306
- "refs": {
307
- }
308
- },
309
- "CountOpenWorkflowExecutionsInput": {
310
- "base": null,
311
- "refs": {
312
- }
313
- },
314
- "CountPendingActivityTasksInput": {
315
- "base": null,
316
- "refs": {
317
- }
318
- },
319
- "CountPendingDecisionTasksInput": {
320
- "base": null,
321
- "refs": {
322
- }
323
- },
324
- "Data": {
325
- "base": null,
326
- "refs": {
327
- "ActivityTask$input": "<p>The inputs provided when the activity task was scheduled. The form of the input is user defined and should be meaningful to the activity implementation.</p>",
328
- "ActivityTaskCanceledEventAttributes$details": "<p>Details of the cancellation (if any).</p>",
329
- "ActivityTaskCompletedEventAttributes$result": "<p>The results of the activity task (if any).</p>",
330
- "ActivityTaskFailedEventAttributes$details": "<p>The details of the failure (if any).</p>",
331
- "ActivityTaskScheduledEventAttributes$input": "<p>The input provided to the activity task.</p>",
332
- "ActivityTaskScheduledEventAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the activity.</p>",
333
- "CancelWorkflowExecutionDecisionAttributes$details": "<p><i>Optional.</i> details of the cancellation.</p>",
334
- "ChildWorkflowExecutionCanceledEventAttributes$details": "<p>Details of the cancellation (if provided).</p>",
335
- "ChildWorkflowExecutionCompletedEventAttributes$result": "<p>The result of the child workflow execution (if any).</p>",
336
- "ChildWorkflowExecutionFailedEventAttributes$details": "<p>The details of the failure (if provided).</p>",
337
- "CompleteWorkflowExecutionDecisionAttributes$result": "<p>The result of the workflow execution. The form of the result is implementation defined.</p>",
338
- "ContinueAsNewWorkflowExecutionDecisionAttributes$input": "<p>The input provided to the new workflow execution.</p>",
339
- "DecisionTaskCompletedEventAttributes$executionContext": "<p>User defined context for the workflow execution.</p>",
340
- "FailWorkflowExecutionDecisionAttributes$details": "<p><i>Optional.</i> Details of the failure.</p>",
341
- "MarkerRecordedEventAttributes$details": "<p>Details of the marker (if any).</p>",
342
- "RecordMarkerDecisionAttributes$details": "<p><i>Optional.</i> details of the marker.</p>",
343
- "RequestCancelExternalWorkflowExecutionDecisionAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks.</p>",
344
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$control": null,
345
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks.</p>",
346
- "RespondActivityTaskCanceledInput$details": "<p><i>Optional.</i> Information about the cancellation.</p>",
347
- "RespondActivityTaskCompletedInput$result": "<p>The result of the activity task. It is a free form string that is implementation specific.</p>",
348
- "RespondActivityTaskFailedInput$details": "<p><i>Optional.</i> Detailed information about the failure.</p>",
349
- "RespondDecisionTaskCompletedInput$executionContext": "<p>User defined context to add to workflow execution.</p>",
350
- "ScheduleActivityTaskDecisionAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the activity.</p>",
351
- "ScheduleActivityTaskDecisionAttributes$input": "<p>The input provided to the activity task.</p>",
352
- "SignalExternalWorkflowExecutionDecisionAttributes$input": "<p><i>Optional.</i> Input data to be provided with the signal. The target workflow execution will use the signal name and input data to process the signal.</p>",
353
- "SignalExternalWorkflowExecutionDecisionAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent decision tasks.</p>",
354
- "SignalExternalWorkflowExecutionFailedEventAttributes$control": null,
355
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$input": "<p>Input provided to the signal (if any).</p>",
356
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$control": "<p><i>Optional.</i> data attached to the event that can be used by the decider in subsequent decision tasks.</p>",
357
- "SignalWorkflowExecutionInput$input": "<p>Data to attach to the <code>WorkflowExecutionSignaled</code> event in the target workflow execution's history.</p>",
358
- "StartChildWorkflowExecutionDecisionAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the child workflow execution.</p>",
359
- "StartChildWorkflowExecutionDecisionAttributes$input": "<p>The input to be provided to the workflow execution.</p>",
360
- "StartChildWorkflowExecutionFailedEventAttributes$control": null,
361
- "StartChildWorkflowExecutionInitiatedEventAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent decision tasks. This data is not sent to the activity.</p>",
362
- "StartChildWorkflowExecutionInitiatedEventAttributes$input": "<p>The inputs provided to the child workflow execution (if any).</p>",
363
- "StartTimerDecisionAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks.</p>",
364
- "StartWorkflowExecutionInput$input": "<p>The input for the workflow execution. This is a free form string which should be meaningful to the workflow you are starting. This <code>input</code> is made available to the new workflow execution in the <code>WorkflowExecutionStarted</code> history event.</p>",
365
- "TerminateWorkflowExecutionInput$details": "<p><i>Optional.</i> Details for terminating the workflow execution.</p>",
366
- "TimerStartedEventAttributes$control": "<p><i>Optional.</i> Data attached to the event that can be used by the decider in subsequent workflow tasks.</p>",
367
- "WorkflowExecutionCanceledEventAttributes$details": "<p>Details for the cancellation (if any).</p>",
368
- "WorkflowExecutionCompletedEventAttributes$result": "<p>The result produced by the workflow execution upon successful completion.</p>",
369
- "WorkflowExecutionContinuedAsNewEventAttributes$input": "<p>The input provided to the new workflow execution.</p>",
370
- "WorkflowExecutionDetail$latestExecutionContext": "<p>The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using <a>RespondDecisionTaskCompleted</a>.</p>",
371
- "WorkflowExecutionFailedEventAttributes$details": "<p>The details of the failure (if any).</p>",
372
- "WorkflowExecutionSignaledEventAttributes$input": "<p>Inputs provided with the signal (if any). The decider can use the signal name and inputs to determine how to process the signal.</p>",
373
- "WorkflowExecutionStartedEventAttributes$input": "<p>The input provided to the workflow execution (if any).</p>",
374
- "WorkflowExecutionTerminatedEventAttributes$details": "<p>The details provided for the termination (if any).</p>"
375
- }
376
- },
377
- "Decision": {
378
- "base": "<p>Specifies a decision made by the decider. A decision can be one of these types:</p> <ul> <li> <b>CancelTimer</b>: cancels a previously started timer and records a <code>TimerCanceled</code> event in the history.</li> <li> <b>CancelWorkflowExecution</b>: closes the workflow execution and records a <code>WorkflowExecutionCanceled</code> event in the history.</li> <li> <b>CompleteWorkflowExecution</b>: closes the workflow execution and records a <code>WorkflowExecutionCompleted</code> event in the history .</li> <li> <b>ContinueAsNewWorkflowExecution</b>: closes the workflow execution and starts a new workflow execution of the same type using the same workflow id and a unique run Id. A <code>WorkflowExecutionContinuedAsNew</code> event is recorded in the history.</li> <li> <b>FailWorkflowExecution</b>: closes the workflow execution and records a <code>WorkflowExecutionFailed</code> event in the history.</li> <li> <b>RecordMarker</b>: records a <code>MarkerRecorded</code> event in the history. Markers can be used for adding custom information in the history for instance to let deciders know that they do not need to look at the history beyond the marker event.</li> <li> <b>RequestCancelActivityTask</b>: attempts to cancel a previously scheduled activity task. If the activity task was scheduled but has not been assigned to a worker, then it will be canceled. If the activity task was already assigned to a worker, then the worker will be informed that cancellation has been requested in the response to <a>RecordActivityTaskHeartbeat</a>.</li> <li> <b>RequestCancelExternalWorkflowExecution</b>: requests that a request be made to cancel the specified external workflow execution and records a <code>RequestCancelExternalWorkflowExecutionInitiated</code> event in the history.</li> <li> <b>ScheduleActivityTask</b>: schedules an activity task.</li> <li> <b>SignalExternalWorkflowExecution</b>: requests a signal to be delivered to the specified external workflow execution and records a <code>SignalExternalWorkflowExecutionInitiated</code> event in the history.</li> <li> <b>StartChildWorkflowExecution</b>: requests that a child workflow execution be started and records a <code>StartChildWorkflowExecutionInitiated</code> event in the history. The child workflow execution is a separate workflow execution with its own history.</li> <li> <b>StartTimer</b>: starts a timer for this workflow execution and records a <code>TimerStarted</code> event in the history. This timer will fire after the specified delay and record a <code>TimerFired</code> event.</li> </ul> <p><b>Access Control</b></p> <p>If you grant permission to use <code>RespondDecisionTaskCompleted</code>, you can use IAM policies to express permissions for the list of decisions returned by this action as if they were members of the API. Treating decisions as a pseudo API maintains a uniform conceptual model and helps keep policies readable. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p> <p><b>Decision Failure</b></p> <p>Decisions can fail for several reasons</p> <ul> <li>The ordering of decisions should follow a logical flow. Some decisions might not make sense in the current context of the workflow execution and will therefore fail.</li> <li>A limit on your account was reached.</li> <li>The decision lacks sufficient permissions.</li> </ul> <p>One of the following events might be added to the history to indicate an error. The event attribute's <b>cause</b> parameter indicates the cause. If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p> <ul> <li> <b>ScheduleActivityTaskFailed</b>: a ScheduleActivityTask decision failed. This could happen if the activity type specified in the decision is not registered, is in a deprecated state, or the decision is not properly configured.</li> <li> <b>RequestCancelActivityTaskFailed</b>: a RequestCancelActivityTask decision failed. This could happen if there is no open activity task with the specified activityId.</li> <li> <b>StartTimerFailed</b>: a StartTimer decision failed. This could happen if there is another open timer with the same timerId.</li> <li> <b>CancelTimerFailed</b>: a CancelTimer decision failed. This could happen if there is no open timer with the specified timerId.</li> <li> <b>StartChildWorkflowExecutionFailed</b>: a StartChildWorkflowExecution decision failed. This could happen if the workflow type specified is not registered, is deprecated, or the decision is not properly configured.</li> <li> <b>SignalExternalWorkflowExecutionFailed</b>: a SignalExternalWorkflowExecution decision failed. This could happen if the <code>workflowID</code> specified in the decision was incorrect.</li> <li> <b>RequestCancelExternalWorkflowExecutionFailed</b>: a RequestCancelExternalWorkflowExecution decision failed. This could happen if the <code>workflowID</code> specified in the decision was incorrect.</li> <li> <b>CancelWorkflowExecutionFailed</b>: a CancelWorkflowExecution decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</li> <li> <b>CompleteWorkflowExecutionFailed</b>: a CompleteWorkflowExecution decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</li> <li> <b>ContinueAsNewWorkflowExecutionFailed</b>: a ContinueAsNewWorkflowExecution decision failed. This could happen if there is an unhandled decision task pending in the workflow execution or the ContinueAsNewWorkflowExecution decision was not configured correctly.</li> <li> <b>FailWorkflowExecutionFailed</b>: a FailWorkflowExecution decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</li> </ul> <p>The preceding error events might occur due to an error in the decider logic, which might put the workflow execution in an unstable state The cause field in the event structure for the error event indicates the cause of the error.</p> <note>A workflow execution may be closed by the decider by returning one of the following decisions when completing a decision task: <code>CompleteWorkflowExecution</code>, <code>FailWorkflowExecution</code>, <code>CancelWorkflowExecution</code> and <code>ContinueAsNewWorkflowExecution</code>. An UnhandledDecision fault will be returned if a workflow closing decision is specified and a signal or activity event had been added to the history while the decision task was being performed by the decider. Unlike the above situations which are logic issues, this fault is always possible because of race conditions in a distributed system. The right action here is to call <a>RespondDecisionTaskCompleted</a> without any decisions. This would result in another decision task with these new events included in the history. The decider should handle the new events and may decide to close the workflow execution.</note> <p><b>How to Code a Decision</b></p> <p>You code a decision by first setting the decision type field to one of the above decision values, and then set the corresponding attributes field shown below:</p> <ul> <li> <a>ScheduleActivityTaskDecisionAttributes</a> </li> <li> <a>RequestCancelActivityTaskDecisionAttributes</a> </li> <li> <a>CompleteWorkflowExecutionDecisionAttributes</a> </li> <li> <a>FailWorkflowExecutionDecisionAttributes</a> </li> <li> <a>CancelWorkflowExecutionDecisionAttributes</a> </li> <li> <a>ContinueAsNewWorkflowExecutionDecisionAttributes</a> </li> <li> <a>RecordMarkerDecisionAttributes</a> </li> <li> <a>StartTimerDecisionAttributes</a> </li> <li> <a>CancelTimerDecisionAttributes</a> </li> <li> <a>SignalExternalWorkflowExecutionDecisionAttributes</a> </li> <li> <a>RequestCancelExternalWorkflowExecutionDecisionAttributes</a> </li> <li> <a>StartChildWorkflowExecutionDecisionAttributes</a> </li> </ul>",
379
- "refs": {
380
- "DecisionList$member": null
381
- }
382
- },
383
- "DecisionList": {
384
- "base": null,
385
- "refs": {
386
- "RespondDecisionTaskCompletedInput$decisions": "<p>The list of decisions (possibly empty) made by the decider while processing this decision task. See the docs for the <a>Decision</a> structure for details.</p>"
387
- }
388
- },
389
- "DecisionTask": {
390
- "base": "<p>A structure that represents a decision task. Decision tasks are sent to deciders in order for them to make decisions.</p>",
391
- "refs": {
392
- }
393
- },
394
- "DecisionTaskCompletedEventAttributes": {
395
- "base": "<p>Provides details of the <code>DecisionTaskCompleted</code> event.</p>",
396
- "refs": {
397
- "HistoryEvent$decisionTaskCompletedEventAttributes": "<p>If the event is of type <code>DecisionTaskCompleted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
398
- }
399
- },
400
- "DecisionTaskScheduledEventAttributes": {
401
- "base": "<p>Provides details about the <code>DecisionTaskScheduled</code> event.</p>",
402
- "refs": {
403
- "HistoryEvent$decisionTaskScheduledEventAttributes": "<p>If the event is of type <code>DecisionTaskScheduled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
404
- }
405
- },
406
- "DecisionTaskStartedEventAttributes": {
407
- "base": "<p>Provides details of the <code>DecisionTaskStarted</code> event.</p>",
408
- "refs": {
409
- "HistoryEvent$decisionTaskStartedEventAttributes": "<p>If the event is of type <code>DecisionTaskStarted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
410
- }
411
- },
412
- "DecisionTaskTimedOutEventAttributes": {
413
- "base": "<p>Provides details of the <code>DecisionTaskTimedOut</code> event.</p>",
414
- "refs": {
415
- "HistoryEvent$decisionTaskTimedOutEventAttributes": "<p>If the event is of type <code>DecisionTaskTimedOut</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
416
- }
417
- },
418
- "DecisionTaskTimeoutType": {
419
- "base": null,
420
- "refs": {
421
- "DecisionTaskTimedOutEventAttributes$timeoutType": "<p>The type of timeout that expired before the decision task could be completed.</p>"
422
- }
423
- },
424
- "DecisionType": {
425
- "base": null,
426
- "refs": {
427
- "Decision$decisionType": "<p>Specifies the type of the decision.</p>"
428
- }
429
- },
430
- "DefaultUndefinedFault": {
431
- "base": null,
432
- "refs": {
433
- }
434
- },
435
- "DeprecateActivityTypeInput": {
436
- "base": null,
437
- "refs": {
438
- }
439
- },
440
- "DeprecateDomainInput": {
441
- "base": null,
442
- "refs": {
443
- }
444
- },
445
- "DeprecateWorkflowTypeInput": {
446
- "base": null,
447
- "refs": {
448
- }
449
- },
450
- "DescribeActivityTypeInput": {
451
- "base": null,
452
- "refs": {
453
- }
454
- },
455
- "DescribeDomainInput": {
456
- "base": null,
457
- "refs": {
458
- }
459
- },
460
- "DescribeWorkflowExecutionInput": {
461
- "base": null,
462
- "refs": {
463
- }
464
- },
465
- "DescribeWorkflowTypeInput": {
466
- "base": null,
467
- "refs": {
468
- }
469
- },
470
- "Description": {
471
- "base": null,
472
- "refs": {
473
- "ActivityTypeInfo$description": "<p>The description of the activity type provided in <a>RegisterActivityType</a>.</p>",
474
- "DomainInfo$description": "<p>The description of the domain provided through <a>RegisterDomain</a>.</p>",
475
- "RegisterActivityTypeInput$description": "<p>A textual description of the activity type.</p>",
476
- "RegisterDomainInput$description": "<p>A text description of the domain.</p>",
477
- "RegisterWorkflowTypeInput$description": "<p>Textual description of the workflow type.</p>",
478
- "WorkflowTypeInfo$description": "<p>The description of the type registered through <a>RegisterWorkflowType</a>.</p>"
479
- }
480
- },
481
- "DomainAlreadyExistsFault": {
482
- "base": "<p>Returned if the specified domain already exists. You will get this fault even if the existing domain is in deprecated status.</p>",
483
- "refs": {
484
- }
485
- },
486
- "DomainConfiguration": {
487
- "base": "<p>Contains the configuration settings of a domain.</p>",
488
- "refs": {
489
- "DomainDetail$configuration": null
490
- }
491
- },
492
- "DomainDeprecatedFault": {
493
- "base": "<p>Returned when the specified domain has been deprecated.</p>",
494
- "refs": {
495
- }
496
- },
497
- "DomainDetail": {
498
- "base": "<p>Contains details of a domain.</p>",
499
- "refs": {
500
- }
501
- },
502
- "DomainInfo": {
503
- "base": "<p>Contains general information about a domain.</p>",
504
- "refs": {
505
- "DomainDetail$domainInfo": null,
506
- "DomainInfoList$member": null
507
- }
508
- },
509
- "DomainInfoList": {
510
- "base": null,
511
- "refs": {
512
- "DomainInfos$domainInfos": "<p>A list of DomainInfo structures.</p>"
513
- }
514
- },
515
- "DomainInfos": {
516
- "base": "<p>Contains a paginated collection of DomainInfo structures.</p>",
517
- "refs": {
518
- }
519
- },
520
- "DomainName": {
521
- "base": null,
522
- "refs": {
523
- "CountClosedWorkflowExecutionsInput$domain": "<p>The name of the domain containing the workflow executions to count.</p>",
524
- "CountOpenWorkflowExecutionsInput$domain": "<p>The name of the domain containing the workflow executions to count.</p>",
525
- "CountPendingActivityTasksInput$domain": "<p>The name of the domain that contains the task list.</p>",
526
- "CountPendingDecisionTasksInput$domain": "<p>The name of the domain that contains the task list.</p>",
527
- "DeprecateActivityTypeInput$domain": "<p>The name of the domain in which the activity type is registered.</p>",
528
- "DeprecateDomainInput$name": "<p>The name of the domain to deprecate.</p>",
529
- "DeprecateWorkflowTypeInput$domain": "<p>The name of the domain in which the workflow type is registered.</p>",
530
- "DescribeActivityTypeInput$domain": "<p>The name of the domain in which the activity type is registered.</p>",
531
- "DescribeDomainInput$name": "<p>The name of the domain to describe.</p>",
532
- "DescribeWorkflowExecutionInput$domain": "<p>The name of the domain containing the workflow execution.</p>",
533
- "DescribeWorkflowTypeInput$domain": "<p>The name of the domain in which this workflow type is registered.</p>",
534
- "DomainInfo$name": "<p>The name of the domain. This name is unique within the account.</p>",
535
- "GetWorkflowExecutionHistoryInput$domain": "<p>The name of the domain containing the workflow execution.</p>",
536
- "ListActivityTypesInput$domain": "<p>The name of the domain in which the activity types have been registered.</p>",
537
- "ListClosedWorkflowExecutionsInput$domain": "<p>The name of the domain that contains the workflow executions to list.</p>",
538
- "ListOpenWorkflowExecutionsInput$domain": "<p>The name of the domain that contains the workflow executions to list.</p>",
539
- "ListWorkflowTypesInput$domain": "<p>The name of the domain in which the workflow types have been registered.</p>",
540
- "PollForActivityTaskInput$domain": "<p>The name of the domain that contains the task lists being polled.</p>",
541
- "PollForDecisionTaskInput$domain": "<p>The name of the domain containing the task lists to poll.</p>",
542
- "RegisterActivityTypeInput$domain": "<p>The name of the domain in which this activity is to be registered.</p>",
543
- "RegisterDomainInput$name": "<p>Name of the domain to register. The name must be unique in the region that the domain is registered in.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
544
- "RegisterWorkflowTypeInput$domain": "<p>The name of the domain in which to register the workflow type.</p>",
545
- "RequestCancelWorkflowExecutionInput$domain": "<p>The name of the domain containing the workflow execution to cancel.</p>",
546
- "SignalWorkflowExecutionInput$domain": "<p>The name of the domain containing the workflow execution to signal.</p>",
547
- "StartWorkflowExecutionInput$domain": "<p>The name of the domain in which the workflow execution is created.</p>",
548
- "TerminateWorkflowExecutionInput$domain": "<p>The domain of the workflow execution to terminate.</p>"
549
- }
550
- },
551
- "DurationInDays": {
552
- "base": null,
553
- "refs": {
554
- "DomainConfiguration$workflowExecutionRetentionPeriodInDays": "<p>The retention period for workflow executions in this domain.</p>",
555
- "RegisterDomainInput$workflowExecutionRetentionPeriodInDays": "<p>The duration (in days) that records and histories of workflow executions on the domain should be kept by the service. After the retention period, the workflow execution is not available in the results of visibility calls.</p> <p>If you pass the value <code>NONE</code> or <code>0</code> (zero), then the workflow execution history will not be retained. As soon as the workflow execution completes, the execution record and its history are deleted.</p> <p>The maximum workflow execution retention period is 90 days. For more information about Amazon SWF service limits, see: <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dg-limits.html\">Amazon SWF Service Limits</a> in the <i>Amazon SWF Developer Guide</i>.</p>"
556
- }
557
- },
558
- "DurationInSeconds": {
559
- "base": null,
560
- "refs": {
561
- "StartTimerDecisionAttributes$startToFireTimeout": "<p><b>Required.</b> The duration to wait before firing the timer.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0.</p>",
562
- "TimerStartedEventAttributes$startToFireTimeout": "<p>The duration of time after which the timer will fire.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0.</p>",
563
- "WorkflowExecutionConfiguration$taskStartToCloseTimeout": "<p>The maximum duration allowed for decision tasks for this workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
564
- "WorkflowExecutionConfiguration$executionStartToCloseTimeout": "<p>The total duration for this workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>"
565
- }
566
- },
567
- "DurationInSecondsOptional": {
568
- "base": null,
569
- "refs": {
570
- "ActivityTaskScheduledEventAttributes$scheduleToStartTimeout": "<p>The maximum amount of time the activity task can wait to be assigned to a worker.</p>",
571
- "ActivityTaskScheduledEventAttributes$scheduleToCloseTimeout": "<p>The maximum amount of time for this activity task.</p>",
572
- "ActivityTaskScheduledEventAttributes$startToCloseTimeout": "<p>The maximum amount of time a worker may take to process the activity task.</p>",
573
- "ActivityTaskScheduledEventAttributes$heartbeatTimeout": "<p>The maximum time before which the worker processing this task must report progress by calling <a>RecordActivityTaskHeartbeat</a>. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or return a result, it will be ignored.</p>",
574
- "ActivityTypeConfiguration$defaultTaskStartToCloseTimeout": "<p><i>Optional.</i> The default maximum duration for tasks of an activity type specified when registering the activity type. You can override this default when scheduling a task through the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
575
- "ActivityTypeConfiguration$defaultTaskHeartbeatTimeout": "<p><i>Optional.</i> The default maximum time, in seconds, before which a worker processing a task must report progress by calling <a>RecordActivityTaskHeartbeat</a>.</p> <p>You can specify this value only when <i>registering</i> an activity type. The registered default value can be overridden when you schedule a task through the <code>ScheduleActivityTask</code> <a>Decision</a>. If the activity worker subsequently attempts to record a heartbeat or returns a result, the activity worker receives an <code>UnknownResource</code> fault. In this case, Amazon SWF no longer considers the activity task to be valid; the activity worker should clean up the activity task.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
576
- "ActivityTypeConfiguration$defaultTaskScheduleToStartTimeout": "<p><i>Optional.</i> The default maximum duration, specified when registering the activity type, that a task of an activity type can wait before being assigned to a worker. You can override this default when scheduling a task through the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
577
- "ActivityTypeConfiguration$defaultTaskScheduleToCloseTimeout": "<p><i>Optional.</i> The default maximum duration, specified when registering the activity type, for tasks of this activity type. You can override this default when scheduling a task through the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
578
- "ContinueAsNewWorkflowExecutionDecisionAttributes$executionStartToCloseTimeout": "<p>If set, specifies the total duration for this workflow execution. This overrides the <code>defaultExecutionStartToCloseTimeout</code> specified when registering the workflow type.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>An execution start-to-close timeout for this workflow execution must be specified either as a default for the workflow type or through this field. If neither this field is set nor a default execution start-to-close timeout was specified at registration time then a fault will be returned.</note>",
579
- "ContinueAsNewWorkflowExecutionDecisionAttributes$taskStartToCloseTimeout": "<p>Specifies the maximum duration of decision tasks for the new workflow execution. This parameter overrides the <code>defaultTaskStartToCloseTimout</code> specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A task start-to-close timeout for the new workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task start-to-close timeout was specified at registration time then a fault will be returned.</note>",
580
- "DecisionTaskScheduledEventAttributes$startToCloseTimeout": "<p>The maximum duration for this decision task. The task is considered timed out if it does not completed within this duration.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
581
- "RegisterActivityTypeInput$defaultTaskStartToCloseTimeout": "<p>If set, specifies the default maximum duration that a worker can take to process tasks of this activity type. This default can be overridden when scheduling an activity task using the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
582
- "RegisterActivityTypeInput$defaultTaskHeartbeatTimeout": "<p>If set, specifies the default maximum time before which a worker processing a task of this type must report progress by calling <a>RecordActivityTaskHeartbeat</a>. If the timeout is exceeded, the activity task is automatically timed out. This default can be overridden when scheduling an activity task using the <code>ScheduleActivityTask</code> <a>Decision</a>. If the activity worker subsequently attempts to record a heartbeat or returns a result, the activity worker receives an <code>UnknownResource</code> fault. In this case, Amazon SWF no longer considers the activity task to be valid; the activity worker should clean up the activity task.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
583
- "RegisterActivityTypeInput$defaultTaskScheduleToStartTimeout": "<p>If set, specifies the default maximum duration that a task of this activity type can wait before being assigned to a worker. This default can be overridden when scheduling an activity task using the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
584
- "RegisterActivityTypeInput$defaultTaskScheduleToCloseTimeout": "<p>If set, specifies the default maximum duration for a task of this activity type. This default can be overridden when scheduling an activity task using the <code>ScheduleActivityTask</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
585
- "RegisterWorkflowTypeInput$defaultTaskStartToCloseTimeout": "<p>If set, specifies the default maximum duration of decision tasks for this workflow type. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
586
- "RegisterWorkflowTypeInput$defaultExecutionStartToCloseTimeout": "<p>If set, specifies the default maximum duration for executions of this workflow type. You can override this default when starting an execution through the <a>StartWorkflowExecution</a> Action or <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. Unlike some of the other timeout parameters in Amazon SWF, you cannot specify a value of \"NONE\" for <code>defaultExecutionStartToCloseTimeout</code>; there is a one-year max limit on the time that a workflow execution can run. Exceeding this limit will always cause the workflow execution to time out.</p>",
587
- "ScheduleActivityTaskDecisionAttributes$scheduleToCloseTimeout": "<p>The maximum duration for this activity task.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned.</note>",
588
- "ScheduleActivityTaskDecisionAttributes$scheduleToStartTimeout": "<p><i>Optional.</i> If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using <a>RegisterActivityType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A schedule-to-start timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-start timeout was specified at registration time then a fault will be returned.</note>",
589
- "ScheduleActivityTaskDecisionAttributes$startToCloseTimeout": "<p>If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using <a>RegisterActivityType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned.</note>",
590
- "ScheduleActivityTaskDecisionAttributes$heartbeatTimeout": "<p>If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling <a>RecordActivityTaskHeartbeat</a>. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using <a>RegisterActivityType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
591
- "StartChildWorkflowExecutionDecisionAttributes$executionStartToCloseTimeout": "<p>The total duration for this workflow execution. This overrides the defaultExecutionStartToCloseTimeout specified when registering the workflow type.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>An execution start-to-close timeout for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default execution start-to-close timeout was specified at registration time then a fault will be returned.</note>",
592
- "StartChildWorkflowExecutionDecisionAttributes$taskStartToCloseTimeout": "<p>Specifies the maximum duration of decision tasks for this workflow execution. This parameter overrides the <code>defaultTaskStartToCloseTimout</code> specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A task start-to-close timeout for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task start-to-close timeout was specified at registration time then a fault will be returned.</note>",
593
- "StartChildWorkflowExecutionInitiatedEventAttributes$executionStartToCloseTimeout": "<p>The maximum duration for the child workflow execution. If the workflow execution is not closed within this duration, it will be timed out and force terminated.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
594
- "StartChildWorkflowExecutionInitiatedEventAttributes$taskStartToCloseTimeout": "<p>The maximum duration allowed for the decision tasks for this workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
595
- "StartWorkflowExecutionInput$executionStartToCloseTimeout": "<p>The total duration for this workflow execution. This overrides the defaultExecutionStartToCloseTimeout specified when registering the workflow type.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. Exceeding this limit will cause the workflow execution to time out. Unlike some of the other timeout parameters in Amazon SWF, you cannot specify a value of \"NONE\" for this timeout; there is a one-year max limit on the time that a workflow execution can run.</p> <note> An execution start-to-close timeout must be specified either through this parameter or as a default when the workflow type is registered. If neither this parameter nor a default execution start-to-close timeout is specified, a fault is returned.</note>",
596
- "StartWorkflowExecutionInput$taskStartToCloseTimeout": "<p>Specifies the maximum duration of decision tasks for this workflow execution. This parameter overrides the <code>defaultTaskStartToCloseTimout</code> specified when registering the workflow type using <a>RegisterWorkflowType</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p> <note>A task start-to-close timeout for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task start-to-close timeout was specified at registration time then a fault will be returned.</note>",
597
- "WorkflowExecutionContinuedAsNewEventAttributes$executionStartToCloseTimeout": "<p>The total duration allowed for the new workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
598
- "WorkflowExecutionContinuedAsNewEventAttributes$taskStartToCloseTimeout": "<p>The maximum duration of decision tasks for the new workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
599
- "WorkflowExecutionStartedEventAttributes$executionStartToCloseTimeout": "<p>The maximum duration for this workflow execution.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
600
- "WorkflowExecutionStartedEventAttributes$taskStartToCloseTimeout": "<p>The maximum duration of decision tasks for this workflow type.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
601
- "WorkflowTypeConfiguration$defaultTaskStartToCloseTimeout": "<p><i>Optional.</i> The default maximum duration, specified when registering the workflow type, that a decision task for executions of this workflow type might take before returning completion or failure. If the task does not close in the specified time then the task is automatically timed out and rescheduled. If the decider eventually reports a completion or failure, it is ignored. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>",
602
- "WorkflowTypeConfiguration$defaultExecutionStartToCloseTimeout": "<p><i>Optional.</i> The default maximum duration, specified when registering the workflow type, for executions of this workflow type. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p> <p>The duration is specified in seconds; an integer greater than or equal to 0. The value \"NONE\" can be used to specify unlimited duration.</p>"
603
- }
604
- },
605
- "ErrorMessage": {
606
- "base": null,
607
- "refs": {
608
- "DefaultUndefinedFault$message": null,
609
- "DomainAlreadyExistsFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
610
- "DomainDeprecatedFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
611
- "LimitExceededFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
612
- "OperationNotPermittedFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
613
- "TypeAlreadyExistsFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
614
- "TypeDeprecatedFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
615
- "UnknownResourceFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>",
616
- "WorkflowExecutionAlreadyStartedFault$message": "<p>A description that may help with diagnosing the cause of the fault.</p>"
617
- }
618
- },
619
- "EventId": {
620
- "base": null,
621
- "refs": {
622
- "ActivityTask$startedEventId": "<p>The id of the <code>ActivityTaskStarted</code> event recorded in the history.</p>",
623
- "ActivityTaskCancelRequestedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RequestCancelActivityTask</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
624
- "ActivityTaskCanceledEventAttributes$scheduledEventId": "<p>The id of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
625
- "ActivityTaskCanceledEventAttributes$startedEventId": "<p>The Id of the <code>ActivityTaskStarted</code> event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
626
- "ActivityTaskCanceledEventAttributes$latestCancelRequestedEventId": "<p>If set, contains the Id of the last <code>ActivityTaskCancelRequested</code> event recorded for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
627
- "ActivityTaskCompletedEventAttributes$scheduledEventId": "<p>The id of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
628
- "ActivityTaskCompletedEventAttributes$startedEventId": "<p>The Id of the <code>ActivityTaskStarted</code> event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
629
- "ActivityTaskFailedEventAttributes$scheduledEventId": "<p>The id of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
630
- "ActivityTaskFailedEventAttributes$startedEventId": "<p>The Id of the <code>ActivityTaskStarted</code> event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
631
- "ActivityTaskScheduledEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision that resulted in the scheduling of this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
632
- "ActivityTaskStartedEventAttributes$scheduledEventId": "<p>The id of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
633
- "ActivityTaskTimedOutEventAttributes$scheduledEventId": "<p>The id of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
634
- "ActivityTaskTimedOutEventAttributes$startedEventId": "<p>The Id of the <code>ActivityTaskStarted</code> event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
635
- "CancelTimerFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CancelTimer</code> decision to cancel this timer. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
636
- "CancelWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CancelWorkflowExecution</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
637
- "ChildWorkflowExecutionCanceledEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
638
- "ChildWorkflowExecutionCanceledEventAttributes$startedEventId": "<p>The Id of the <code>ChildWorkflowExecutionStarted</code> event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
639
- "ChildWorkflowExecutionCompletedEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
640
- "ChildWorkflowExecutionCompletedEventAttributes$startedEventId": "<p>The Id of the <code>ChildWorkflowExecutionStarted</code> event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
641
- "ChildWorkflowExecutionFailedEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
642
- "ChildWorkflowExecutionFailedEventAttributes$startedEventId": "<p>The Id of the <code>ChildWorkflowExecutionStarted</code> event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
643
- "ChildWorkflowExecutionStartedEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
644
- "ChildWorkflowExecutionTerminatedEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
645
- "ChildWorkflowExecutionTerminatedEventAttributes$startedEventId": "<p>The Id of the <code>ChildWorkflowExecutionStarted</code> event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
646
- "ChildWorkflowExecutionTimedOutEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
647
- "ChildWorkflowExecutionTimedOutEventAttributes$startedEventId": "<p>The Id of the <code>ChildWorkflowExecutionStarted</code> event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
648
- "CompleteWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CompleteWorkflowExecution</code> decision to complete this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
649
- "ContinueAsNewWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>ContinueAsNewWorkflowExecution</code> decision that started this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
650
- "DecisionTask$startedEventId": "<p>The id of the <code>DecisionTaskStarted</code> event recorded in the history.</p>",
651
- "DecisionTask$previousStartedEventId": "<p>The id of the DecisionTaskStarted event of the previous decision task of this workflow execution that was processed by the decider. This can be used to determine the events in the history new since the last decision task received by the decider.</p>",
652
- "DecisionTaskCompletedEventAttributes$scheduledEventId": "<p>The id of the <code>DecisionTaskScheduled</code> event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
653
- "DecisionTaskCompletedEventAttributes$startedEventId": "<p>The Id of the <code>DecisionTaskStarted</code> event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
654
- "DecisionTaskStartedEventAttributes$scheduledEventId": "<p>The id of the <code>DecisionTaskScheduled</code> event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
655
- "DecisionTaskTimedOutEventAttributes$scheduledEventId": "<p>The id of the <code>DecisionTaskScheduled</code> event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
656
- "DecisionTaskTimedOutEventAttributes$startedEventId": "<p>The Id of the <code>DecisionTaskStarted</code> event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
657
- "ExternalWorkflowExecutionCancelRequestedEventAttributes$initiatedEventId": "<p>The id of the <code>RequestCancelExternalWorkflowExecutionInitiated</code> event corresponding to the <code>RequestCancelExternalWorkflowExecution</code> decision to cancel this external workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
658
- "ExternalWorkflowExecutionSignaledEventAttributes$initiatedEventId": "<p>The id of the <code>SignalExternalWorkflowExecutionInitiated</code> event corresponding to the <code>SignalExternalWorkflowExecution</code> decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
659
- "FailWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>FailWorkflowExecution</code> decision to fail this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
660
- "HistoryEvent$eventId": "<p>The system generated id of the event. This id uniquely identifies the event with in the workflow execution history.</p>",
661
- "MarkerRecordedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RecordMarker</code> decision that requested this marker. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
662
- "RecordMarkerFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RecordMarkerFailed</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
663
- "RequestCancelActivityTaskFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RequestCancelActivityTask</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
664
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$initiatedEventId": "<p>The id of the <code>RequestCancelExternalWorkflowExecutionInitiated</code> event corresponding to the <code>RequestCancelExternalWorkflowExecution</code> decision to cancel this external workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
665
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RequestCancelExternalWorkflowExecution</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
666
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RequestCancelExternalWorkflowExecution</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
667
- "ScheduleActivityTaskFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision that resulted in the scheduling of this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
668
- "SignalExternalWorkflowExecutionFailedEventAttributes$initiatedEventId": "<p>The id of the <code>SignalExternalWorkflowExecutionInitiated</code> event corresponding to the <code>SignalExternalWorkflowExecution</code> decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
669
- "SignalExternalWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>SignalExternalWorkflowExecution</code> decision for this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
670
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>SignalExternalWorkflowExecution</code> decision for this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
671
- "StartChildWorkflowExecutionFailedEventAttributes$initiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
672
- "StartChildWorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>StartChildWorkflowExecution</code> <a>Decision</a> to request this child workflow execution. This information can be useful for diagnosing problems by tracing back the cause of events.</p>",
673
- "StartChildWorkflowExecutionInitiatedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>StartChildWorkflowExecution</code> <a>Decision</a> to request this child workflow execution. This information can be useful for diagnosing problems by tracing back the cause of events.</p>",
674
- "StartTimerFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>StartTimer</code> decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
675
- "TimerCanceledEventAttributes$startedEventId": "<p>The id of the <code>TimerStarted</code> event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
676
- "TimerCanceledEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CancelTimer</code> decision to cancel this timer. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
677
- "TimerFiredEventAttributes$startedEventId": "<p>The id of the <code>TimerStarted</code> event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
678
- "TimerStartedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>StartTimer</code> decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
679
- "WorkflowExecutionCancelRequestedEventAttributes$externalInitiatedEventId": "<p>The id of the <code>RequestCancelExternalWorkflowExecutionInitiated</code> event corresponding to the <code>RequestCancelExternalWorkflowExecution</code> decision to cancel this workflow execution.The source event with this Id can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
680
- "WorkflowExecutionCanceledEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CancelWorkflowExecution</code> decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
681
- "WorkflowExecutionCompletedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>CompleteWorkflowExecution</code> decision to complete this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
682
- "WorkflowExecutionContinuedAsNewEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>ContinueAsNewWorkflowExecution</code> decision that started this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
683
- "WorkflowExecutionFailedEventAttributes$decisionTaskCompletedEventId": "<p>The id of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>FailWorkflowExecution</code> decision to fail this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>",
684
- "WorkflowExecutionSignaledEventAttributes$externalInitiatedEventId": "<p>The id of the <code>SignalExternalWorkflowExecutionInitiated</code> event corresponding to the <code>SignalExternalWorkflow</code> decision to signal this workflow execution.The source event with this Id can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event. This field is set only if the signal was initiated by another workflow execution.</p>",
685
- "WorkflowExecutionStartedEventAttributes$parentInitiatedEventId": "<p>The id of the <code>StartChildWorkflowExecutionInitiated</code> event corresponding to the <code>StartChildWorkflowExecution</code> <a>Decision</a> to start this workflow execution. The source event with this Id can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.</p>"
686
- }
687
- },
688
- "EventType": {
689
- "base": null,
690
- "refs": {
691
- "HistoryEvent$eventType": "<p>The type of the history event.</p>"
692
- }
693
- },
694
- "ExecutionStatus": {
695
- "base": null,
696
- "refs": {
697
- "WorkflowExecutionInfo$executionStatus": "<p>The current status of the execution.</p>"
698
- }
699
- },
700
- "ExecutionTimeFilter": {
701
- "base": "<p>Used to filter the workflow executions in visibility APIs by various time-based rules. Each parameter, if specified, defines a rule that must be satisfied by each returned query result. The parameter values are in the <a href=\"https://en.wikipedia.org/wiki/Unix_time\">Unix Time format</a>. For example: <code>\"oldestDate\": 1325376070.</code></p>",
702
- "refs": {
703
- "CountClosedWorkflowExecutionsInput$startTimeFilter": "<p>If specified, only workflow executions that meet the start time criteria of the filter are counted.</p> <note><code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</note>",
704
- "CountClosedWorkflowExecutionsInput$closeTimeFilter": "<p>If specified, only workflow executions that meet the close time criteria of the filter are counted.</p> <note><code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</note>",
705
- "CountOpenWorkflowExecutionsInput$startTimeFilter": "<p>Specifies the start time criteria that workflow executions must meet in order to be counted.</p>",
706
- "ListClosedWorkflowExecutionsInput$startTimeFilter": "<p>If specified, the workflow executions are included in the returned results based on whether their start times are within the range specified by this filter. Also, if this parameter is specified, the returned results are ordered by their start times.</p> <note><code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</note>",
707
- "ListClosedWorkflowExecutionsInput$closeTimeFilter": "<p>If specified, the workflow executions are included in the returned results based on whether their close times are within the range specified by this filter. Also, if this parameter is specified, the returned results are ordered by their close times.</p> <note><code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</note>",
708
- "ListOpenWorkflowExecutionsInput$startTimeFilter": "<p>Workflow executions are included in the returned results based on whether their start times are within the range specified by this filter.</p>"
709
- }
710
- },
711
- "ExternalWorkflowExecutionCancelRequestedEventAttributes": {
712
- "base": "<p>Provides details of the <code>ExternalWorkflowExecutionCancelRequested</code> event.</p>",
713
- "refs": {
714
- "HistoryEvent$externalWorkflowExecutionCancelRequestedEventAttributes": "<p>If the event is of type <code>ExternalWorkflowExecutionCancelRequested</code> then this member is set and provides detailed information about the event. It is not set for other event types. </p>"
715
- }
716
- },
717
- "ExternalWorkflowExecutionSignaledEventAttributes": {
718
- "base": "<p> Provides details of the <code>ExternalWorkflowExecutionSignaled</code> event.</p>",
719
- "refs": {
720
- "HistoryEvent$externalWorkflowExecutionSignaledEventAttributes": "<p>If the event is of type <code>ExternalWorkflowExecutionSignaled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
721
- }
722
- },
723
- "FailWorkflowExecutionDecisionAttributes": {
724
- "base": "<p>Provides details of the <code>FailWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
725
- "refs": {
726
- "Decision$failWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>FailWorkflowExecution</code> decision. It is not set for other decision types.</p>"
727
- }
728
- },
729
- "FailWorkflowExecutionFailedCause": {
730
- "base": null,
731
- "refs": {
732
- "FailWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
733
- }
734
- },
735
- "FailWorkflowExecutionFailedEventAttributes": {
736
- "base": "<p>Provides details of the <code>FailWorkflowExecutionFailed</code> event.</p>",
737
- "refs": {
738
- "HistoryEvent$failWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>FailWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
739
- }
740
- },
741
- "FailureReason": {
742
- "base": null,
743
- "refs": {
744
- "ActivityTaskFailedEventAttributes$reason": "<p>The reason provided for the failure (if any).</p>",
745
- "ChildWorkflowExecutionFailedEventAttributes$reason": "<p>The reason for the failure (if provided).</p>",
746
- "FailWorkflowExecutionDecisionAttributes$reason": "<p>A descriptive reason for the failure that may help in diagnostics.</p>",
747
- "RespondActivityTaskFailedInput$reason": "<p>Description of the error that may assist in diagnostics.</p>",
748
- "WorkflowExecutionFailedEventAttributes$reason": "<p>The descriptive reason provided for the failure (if any).</p>"
749
- }
750
- },
751
- "GetWorkflowExecutionHistoryInput": {
752
- "base": null,
753
- "refs": {
754
- }
755
- },
756
- "History": {
757
- "base": "<p>Paginated representation of a workflow history for a workflow execution. This is the up to date, complete and authoritative record of the events related to all tasks and events in the life of the workflow execution.</p>",
758
- "refs": {
759
- }
760
- },
761
- "HistoryEvent": {
762
- "base": "<p>Event within a workflow execution. A history event can be one of these types:</p> <ul> <li> <b>WorkflowExecutionStarted</b>: The workflow execution was started.</li> <li> <b>WorkflowExecutionCompleted</b>: The workflow execution was closed due to successful completion.</li> <li> <b>WorkflowExecutionFailed</b>: The workflow execution closed due to a failure.</li> <li> <b>WorkflowExecutionTimedOut</b>: The workflow execution was closed because a time out was exceeded.</li> <li> <b>WorkflowExecutionCanceled</b>: The workflow execution was successfully canceled and closed.</li> <li> <b>WorkflowExecutionTerminated</b>: The workflow execution was terminated.</li> <li> <b>WorkflowExecutionContinuedAsNew</b>: The workflow execution was closed and a new execution of the same type was created with the same workflowId.</li> <li> <b>WorkflowExecutionCancelRequested</b>: A request to cancel this workflow execution was made.</li> <li> <b>DecisionTaskScheduled</b>: A decision task was scheduled for the workflow execution.</li> <li> <b>DecisionTaskStarted</b>: The decision task was dispatched to a decider.</li> <li> <b>DecisionTaskCompleted</b>: The decider successfully completed a decision task by calling <a>RespondDecisionTaskCompleted</a>.</li> <li> <b>DecisionTaskTimedOut</b>: The decision task timed out.</li> <li> <b>ActivityTaskScheduled</b>: An activity task was scheduled for execution.</li> <li> <b>ScheduleActivityTaskFailed</b>: Failed to process ScheduleActivityTask decision. This happens when the decision is not configured properly, for example the activity type specified is not registered.</li> <li> <b>ActivityTaskStarted</b>: The scheduled activity task was dispatched to a worker.</li> <li> <b>ActivityTaskCompleted</b>: An activity worker successfully completed an activity task by calling <a>RespondActivityTaskCompleted</a>.</li> <li> <b>ActivityTaskFailed</b>: An activity worker failed an activity task by calling <a>RespondActivityTaskFailed</a>.</li> <li> <b>ActivityTaskTimedOut</b>: The activity task timed out.</li> <li> <b>ActivityTaskCanceled</b>: The activity task was successfully canceled.</li> <li> <b>ActivityTaskCancelRequested</b>: A <code>RequestCancelActivityTask</code> decision was received by the system.</li> <li> <b>RequestCancelActivityTaskFailed</b>: Failed to process RequestCancelActivityTask decision. This happens when the decision is not configured properly.</li> <li> <b>WorkflowExecutionSignaled</b>: An external signal was received for the workflow execution.</li> <li> <b>MarkerRecorded</b>: A marker was recorded in the workflow history as the result of a <code>RecordMarker</code> decision.</li> <li> <b>TimerStarted</b>: A timer was started for the workflow execution due to a <code>StartTimer</code> decision.</li> <li> <b>StartTimerFailed</b>: Failed to process StartTimer decision. This happens when the decision is not configured properly, for example a timer already exists with the specified timer Id.</li> <li> <b>TimerFired</b>: A timer, previously started for this workflow execution, fired.</li> <li> <b>TimerCanceled</b>: A timer, previously started for this workflow execution, was successfully canceled.</li> <li> <b>CancelTimerFailed</b>: Failed to process CancelTimer decision. This happens when the decision is not configured properly, for example no timer exists with the specified timer Id.</li> <li> <b>StartChildWorkflowExecutionInitiated</b>: A request was made to start a child workflow execution.</li> <li> <b>StartChildWorkflowExecutionFailed</b>: Failed to process StartChildWorkflowExecution decision. This happens when the decision is not configured properly, for example the workflow type specified is not registered.</li> <li> <b>ChildWorkflowExecutionStarted</b>: A child workflow execution was successfully started.</li> <li> <b>ChildWorkflowExecutionCompleted</b>: A child workflow execution, started by this workflow execution, completed successfully and was closed.</li> <li> <b>ChildWorkflowExecutionFailed</b>: A child workflow execution, started by this workflow execution, failed to complete successfully and was closed.</li> <li> <b>ChildWorkflowExecutionTimedOut</b>: A child workflow execution, started by this workflow execution, timed out and was closed.</li> <li> <b>ChildWorkflowExecutionCanceled</b>: A child workflow execution, started by this workflow execution, was canceled and closed.</li> <li> <b>ChildWorkflowExecutionTerminated</b>: A child workflow execution, started by this workflow execution, was terminated.</li> <li> <b>SignalExternalWorkflowExecutionInitiated</b>: A request to signal an external workflow was made.</li> <li> <b>ExternalWorkflowExecutionSignaled</b>: A signal, requested by this workflow execution, was successfully delivered to the target external workflow execution.</li> <li> <b>SignalExternalWorkflowExecutionFailed</b>: The request to signal an external workflow execution failed.</li> <li> <b>RequestCancelExternalWorkflowExecutionInitiated</b>: A request was made to request the cancellation of an external workflow execution.</li> <li> <b>ExternalWorkflowExecutionCancelRequested</b>: Request to cancel an external workflow execution was successfully delivered to the target execution.</li> <li> <b>RequestCancelExternalWorkflowExecutionFailed</b>: Request to cancel an external workflow execution failed.</li> </ul>",
763
- "refs": {
764
- "HistoryEventList$member": null
765
- }
766
- },
767
- "HistoryEventList": {
768
- "base": null,
769
- "refs": {
770
- "DecisionTask$events": "<p>A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.</p>",
771
- "History$events": "<p>The list of history events.</p>"
772
- }
773
- },
774
- "Identity": {
775
- "base": null,
776
- "refs": {
777
- "ActivityTaskStartedEventAttributes$identity": "<p>Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.</p>",
778
- "DecisionTaskStartedEventAttributes$identity": "<p>Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.</p>",
779
- "PollForActivityTaskInput$identity": "<p>Identity of the worker making the request, recorded in the <code>ActivityTaskStarted</code> event in the workflow history. This enables diagnostic tracing when problems arise. The form of this identity is user defined.</p>",
780
- "PollForDecisionTaskInput$identity": "<p>Identity of the decider making the request, which is recorded in the DecisionTaskStarted event in the workflow history. This enables diagnostic tracing when problems arise. The form of this identity is user defined.</p>"
781
- }
782
- },
783
- "LimitExceededFault": {
784
- "base": "<p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>",
785
- "refs": {
786
- }
787
- },
788
- "LimitedData": {
789
- "base": null,
790
- "refs": {
791
- "ActivityTaskTimedOutEventAttributes$details": "<p>Contains the content of the <code>details</code> parameter for the last call made by the activity to <code>RecordActivityTaskHeartbeat</code>.</p>",
792
- "RecordActivityTaskHeartbeatInput$details": "<p>If specified, contains details about the progress of the task.</p>"
793
- }
794
- },
795
- "ListActivityTypesInput": {
796
- "base": null,
797
- "refs": {
798
- }
799
- },
800
- "ListClosedWorkflowExecutionsInput": {
801
- "base": null,
802
- "refs": {
803
- }
804
- },
805
- "ListDomainsInput": {
806
- "base": null,
807
- "refs": {
808
- }
809
- },
810
- "ListOpenWorkflowExecutionsInput": {
811
- "base": null,
812
- "refs": {
813
- }
814
- },
815
- "ListWorkflowTypesInput": {
816
- "base": null,
817
- "refs": {
818
- }
819
- },
820
- "MarkerName": {
821
- "base": null,
822
- "refs": {
823
- "MarkerRecordedEventAttributes$markerName": "<p>The name of the marker.</p>",
824
- "RecordMarkerDecisionAttributes$markerName": "<p><b>Required.</b> The name of the marker.</p>",
825
- "RecordMarkerFailedEventAttributes$markerName": "<p>The marker's name.</p>"
826
- }
827
- },
828
- "MarkerRecordedEventAttributes": {
829
- "base": "<p>Provides details of the <code>MarkerRecorded</code> event.</p>",
830
- "refs": {
831
- "HistoryEvent$markerRecordedEventAttributes": "<p>If the event is of type <code>MarkerRecorded</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
832
- }
833
- },
834
- "Name": {
835
- "base": null,
836
- "refs": {
837
- "ActivityType$name": "<p>The name of this activity.</p> <note>The combination of activity type name and version must be unique within a domain.</note>",
838
- "ListActivityTypesInput$name": "<p>If specified, only lists the activity types that have this name.</p>",
839
- "ListWorkflowTypesInput$name": "<p>If specified, lists the workflow type with this name.</p>",
840
- "RegisterActivityTypeInput$name": "<p>The name of the activity type within the domain.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
841
- "RegisterWorkflowTypeInput$name": "<p>The name of the workflow type.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
842
- "TaskList$name": "<p>The name of the task list.</p>",
843
- "WorkflowType$name": "<p><b>Required.</b> The name of the workflow type.</p> <note>The combination of workflow type name and version must be unique with in a domain.</note>",
844
- "WorkflowTypeFilter$name": "<p><b>Required.</b> Name of the workflow type.</p>"
845
- }
846
- },
847
- "OpenDecisionTasksCount": {
848
- "base": null,
849
- "refs": {
850
- "WorkflowExecutionOpenCounts$openDecisionTasks": "<p>The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.</p>"
851
- }
852
- },
853
- "OperationNotPermittedFault": {
854
- "base": "<p>Returned when the caller does not have sufficient permissions to invoke the action.</p>",
855
- "refs": {
856
- }
857
- },
858
- "PageSize": {
859
- "base": null,
860
- "refs": {
861
- "GetWorkflowExecutionHistoryInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
862
- "ListActivityTypesInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
863
- "ListClosedWorkflowExecutionsInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
864
- "ListDomainsInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
865
- "ListOpenWorkflowExecutionsInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
866
- "ListWorkflowTypesInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>",
867
- "PollForDecisionTaskInput$maximumPageSize": "<p>The maximum number of results that will be returned per call. <code>nextPageToken</code> can be used to obtain futher pages of results. The default is 100, which is the maximum allowed page size. You can, however, specify a page size <i>smaller</i> than 100.</p> <p>This is an upper limit only; the actual number of results returned per call may be fewer than the specified maximum.</p>"
868
- }
869
- },
870
- "PageToken": {
871
- "base": null,
872
- "refs": {
873
- "ActivityTypeInfos$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
874
- "DecisionTask$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
875
- "DomainInfos$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
876
- "GetWorkflowExecutionHistoryInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
877
- "History$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
878
- "ListActivityTypesInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
879
- "ListClosedWorkflowExecutionsInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
880
- "ListDomainsInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
881
- "ListOpenWorkflowExecutionsInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
882
- "ListWorkflowTypesInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
883
- "PollForDecisionTaskInput$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p> <note>The <code>nextPageToken</code> returned by this action cannot be used with <a>GetWorkflowExecutionHistory</a> to get the next page. You must call <a>PollForDecisionTask</a> again (with the <code>nextPageToken</code>) to retrieve the next page of history records. Calling <a>PollForDecisionTask</a> with a <code>nextPageToken</code> will not return a new decision task.</note>.",
884
- "WorkflowExecutionInfos$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>",
885
- "WorkflowTypeInfos$nextPageToken": "<p>If a <code>NextPageToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>nextPageToken</code>. Keep all other arguments unchanged.</p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call.</p>"
886
- }
887
- },
888
- "PendingTaskCount": {
889
- "base": "<p>Contains the count of tasks in a task list.</p>",
890
- "refs": {
891
- }
892
- },
893
- "PollForActivityTaskInput": {
894
- "base": null,
895
- "refs": {
896
- }
897
- },
898
- "PollForDecisionTaskInput": {
899
- "base": null,
900
- "refs": {
901
- }
902
- },
903
- "RecordActivityTaskHeartbeatInput": {
904
- "base": null,
905
- "refs": {
906
- }
907
- },
908
- "RecordMarkerDecisionAttributes": {
909
- "base": "<p>Provides details of the <code>RecordMarker</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
910
- "refs": {
911
- "Decision$recordMarkerDecisionAttributes": "<p>Provides details of the <code>RecordMarker</code> decision. It is not set for other decision types.</p>"
912
- }
913
- },
914
- "RecordMarkerFailedCause": {
915
- "base": null,
916
- "refs": {
917
- "RecordMarkerFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
918
- }
919
- },
920
- "RecordMarkerFailedEventAttributes": {
921
- "base": "<p>Provides details of the <code>RecordMarkerFailed</code> event.</p>",
922
- "refs": {
923
- "HistoryEvent$recordMarkerFailedEventAttributes": "<p>If the event is of type <code>DecisionTaskFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
924
- }
925
- },
926
- "RegisterActivityTypeInput": {
927
- "base": null,
928
- "refs": {
929
- }
930
- },
931
- "RegisterDomainInput": {
932
- "base": null,
933
- "refs": {
934
- }
935
- },
936
- "RegisterWorkflowTypeInput": {
937
- "base": null,
938
- "refs": {
939
- }
940
- },
941
- "RegistrationStatus": {
942
- "base": null,
943
- "refs": {
944
- "ActivityTypeInfo$status": "<p>The current status of the activity type.</p>",
945
- "DomainInfo$status": "<p>The status of the domain:</p> <ul> <li> <b>REGISTERED</b>: The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions. </li> <li> <b>DEPRECATED</b>: The domain was deprecated using <a>DeprecateDomain</a>, but is still in use. You should not create new workflow executions in this domain. </li> </ul>",
946
- "ListActivityTypesInput$registrationStatus": "<p>Specifies the registration status of the activity types to list.</p>",
947
- "ListDomainsInput$registrationStatus": "<p>Specifies the registration status of the domains to list.</p>",
948
- "ListWorkflowTypesInput$registrationStatus": "<p>Specifies the registration status of the workflow types to list.</p>",
949
- "WorkflowTypeInfo$status": "<p>The current status of the workflow type.</p>"
950
- }
951
- },
952
- "RequestCancelActivityTaskDecisionAttributes": {
953
- "base": "<p>Provides details of the <code>RequestCancelActivityTask</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
954
- "refs": {
955
- "Decision$requestCancelActivityTaskDecisionAttributes": "<p>Provides details of the <code>RequestCancelActivityTask</code> decision. It is not set for other decision types.</p>"
956
- }
957
- },
958
- "RequestCancelActivityTaskFailedCause": {
959
- "base": null,
960
- "refs": {
961
- "RequestCancelActivityTaskFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
962
- }
963
- },
964
- "RequestCancelActivityTaskFailedEventAttributes": {
965
- "base": "<p>Provides details of the <code>RequestCancelActivityTaskFailed</code> event.</p>",
966
- "refs": {
967
- "HistoryEvent$requestCancelActivityTaskFailedEventAttributes": "<p>If the event is of type <code>RequestCancelActivityTaskFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
968
- }
969
- },
970
- "RequestCancelExternalWorkflowExecutionDecisionAttributes": {
971
- "base": "<p>Provides details of the <code>RequestCancelExternalWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
972
- "refs": {
973
- "Decision$requestCancelExternalWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>RequestCancelExternalWorkflowExecution</code> decision. It is not set for other decision types.</p>"
974
- }
975
- },
976
- "RequestCancelExternalWorkflowExecutionFailedCause": {
977
- "base": null,
978
- "refs": {
979
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
980
- }
981
- },
982
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes": {
983
- "base": "<p>Provides details of the <code>RequestCancelExternalWorkflowExecutionFailed</code> event.</p>",
984
- "refs": {
985
- "HistoryEvent$requestCancelExternalWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>RequestCancelExternalWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
986
- }
987
- },
988
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes": {
989
- "base": "<p>Provides details of the <code>RequestCancelExternalWorkflowExecutionInitiated</code> event.</p>",
990
- "refs": {
991
- "HistoryEvent$requestCancelExternalWorkflowExecutionInitiatedEventAttributes": "<p>If the event is of type <code>RequestCancelExternalWorkflowExecutionInitiated</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
992
- }
993
- },
994
- "RequestCancelWorkflowExecutionInput": {
995
- "base": null,
996
- "refs": {
997
- }
998
- },
999
- "RespondActivityTaskCanceledInput": {
1000
- "base": null,
1001
- "refs": {
1002
- }
1003
- },
1004
- "RespondActivityTaskCompletedInput": {
1005
- "base": null,
1006
- "refs": {
1007
- }
1008
- },
1009
- "RespondActivityTaskFailedInput": {
1010
- "base": null,
1011
- "refs": {
1012
- }
1013
- },
1014
- "RespondDecisionTaskCompletedInput": {
1015
- "base": null,
1016
- "refs": {
1017
- }
1018
- },
1019
- "ReverseOrder": {
1020
- "base": null,
1021
- "refs": {
1022
- "GetWorkflowExecutionHistoryInput$reverseOrder": "<p>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.</p>",
1023
- "ListActivityTypesInput$reverseOrder": "<p>When set to <code>true</code>, returns the results in reverse order. By default, the results are returned in ascending alphabetical order by <code>name</code> of the activity types.</p>",
1024
- "ListClosedWorkflowExecutionsInput$reverseOrder": "<p>When set to <code>true</code>, returns the results in reverse order. By default the results are returned in descending order of the start or the close time of the executions.</p>",
1025
- "ListDomainsInput$reverseOrder": "<p>When set to <code>true</code>, returns the results in reverse order. By default, the results are returned in ascending alphabetical order by <code>name</code> of the domains.</p>",
1026
- "ListOpenWorkflowExecutionsInput$reverseOrder": "<p>When set to <code>true</code>, returns the results in reverse order. By default the results are returned in descending order of the start time of the executions.</p>",
1027
- "ListWorkflowTypesInput$reverseOrder": "<p>When set to <code>true</code>, returns the results in reverse order. By default the results are returned in ascending alphabetical order of the <code>name</code> of the workflow types.</p>",
1028
- "PollForDecisionTaskInput$reverseOrder": "<p>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.</p>"
1029
- }
1030
- },
1031
- "Run": {
1032
- "base": "<p>Specifies the <code>runId</code> of a workflow execution.</p>",
1033
- "refs": {
1034
- }
1035
- },
1036
- "RunId": {
1037
- "base": null,
1038
- "refs": {
1039
- "Run$runId": "<p>The <code>runId</code> of a workflow execution. This Id is generated by the service and can be used to uniquely identify the workflow execution within a domain.</p>",
1040
- "WorkflowExecution$runId": "<p>A system-generated unique identifier for the workflow execution.</p>",
1041
- "WorkflowExecutionContinuedAsNewEventAttributes$newExecutionRunId": "<p>The <code>runId</code> of the new workflow execution.</p>"
1042
- }
1043
- },
1044
- "RunIdOptional": {
1045
- "base": null,
1046
- "refs": {
1047
- "RequestCancelExternalWorkflowExecutionDecisionAttributes$runId": "<p>The <code>runId</code> of the external workflow execution to cancel.</p>",
1048
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$runId": "<p>The <code>runId</code> of the external workflow execution.</p>",
1049
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$runId": "<p>The <code>runId</code> of the external workflow execution to be canceled.</p>",
1050
- "RequestCancelWorkflowExecutionInput$runId": "<p>The runId of the workflow execution to cancel.</p>",
1051
- "SignalExternalWorkflowExecutionDecisionAttributes$runId": "<p>The <code>runId</code> of the workflow execution to be signaled.</p>",
1052
- "SignalExternalWorkflowExecutionFailedEventAttributes$runId": "<p>The <code>runId</code> of the external workflow execution that the signal was being delivered to.</p>",
1053
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$runId": "<p>The <code>runId</code> of the external workflow execution to send the signal to.</p>",
1054
- "SignalWorkflowExecutionInput$runId": "<p>The runId of the workflow execution to signal.</p>",
1055
- "TerminateWorkflowExecutionInput$runId": "<p>The runId of the workflow execution to terminate.</p>",
1056
- "WorkflowExecutionStartedEventAttributes$continuedExecutionRunId": "<p>If this workflow execution was started due to a <code>ContinueAsNewWorkflowExecution</code> decision, then it contains the <code>runId</code> of the previous workflow execution that was closed and continued as this execution.</p>"
1057
- }
1058
- },
1059
- "ScheduleActivityTaskDecisionAttributes": {
1060
- "base": "<p>Provides details of the <code>ScheduleActivityTask</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li><code>activityType.name</code>: String constraint. The key is <code>swf:activityType.name</code>.</li> <li><code>activityType.version</code>: String constraint. The key is <code>swf:activityType.version</code>.</li> <li><code>taskList</code>: String constraint. The key is <code>swf:taskList.name</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
1061
- "refs": {
1062
- "Decision$scheduleActivityTaskDecisionAttributes": "<p>Provides details of the <code>ScheduleActivityTask</code> decision. It is not set for other decision types.</p>"
1063
- }
1064
- },
1065
- "ScheduleActivityTaskFailedCause": {
1066
- "base": null,
1067
- "refs": {
1068
- "ScheduleActivityTaskFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
1069
- }
1070
- },
1071
- "ScheduleActivityTaskFailedEventAttributes": {
1072
- "base": "<p>Provides details of the <code>ScheduleActivityTaskFailed</code> event.</p>",
1073
- "refs": {
1074
- "HistoryEvent$scheduleActivityTaskFailedEventAttributes": "<p>If the event is of type <code>ScheduleActivityTaskFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1075
- }
1076
- },
1077
- "SignalExternalWorkflowExecutionDecisionAttributes": {
1078
- "base": "<p>Provides details of the <code>SignalExternalWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
1079
- "refs": {
1080
- "Decision$signalExternalWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>SignalExternalWorkflowExecution</code> decision. It is not set for other decision types.</p>"
1081
- }
1082
- },
1083
- "SignalExternalWorkflowExecutionFailedCause": {
1084
- "base": null,
1085
- "refs": {
1086
- "SignalExternalWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
1087
- }
1088
- },
1089
- "SignalExternalWorkflowExecutionFailedEventAttributes": {
1090
- "base": "<p>Provides details of the <code>SignalExternalWorkflowExecutionFailed</code> event.</p>",
1091
- "refs": {
1092
- "HistoryEvent$signalExternalWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>SignalExternalWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1093
- }
1094
- },
1095
- "SignalExternalWorkflowExecutionInitiatedEventAttributes": {
1096
- "base": "<p>Provides details of the <code>SignalExternalWorkflowExecutionInitiated</code> event.</p>",
1097
- "refs": {
1098
- "HistoryEvent$signalExternalWorkflowExecutionInitiatedEventAttributes": "<p>If the event is of type <code>SignalExternalWorkflowExecutionInitiated</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1099
- }
1100
- },
1101
- "SignalName": {
1102
- "base": null,
1103
- "refs": {
1104
- "SignalExternalWorkflowExecutionDecisionAttributes$signalName": "<p><b>Required.</b> The name of the signal.The target workflow execution will use the signal name and input to process the signal.</p>",
1105
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$signalName": "<p>The name of the signal.</p>",
1106
- "SignalWorkflowExecutionInput$signalName": "<p>The name of the signal. This name must be meaningful to the target workflow.</p>",
1107
- "WorkflowExecutionSignaledEventAttributes$signalName": "<p>The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.</p>"
1108
- }
1109
- },
1110
- "SignalWorkflowExecutionInput": {
1111
- "base": null,
1112
- "refs": {
1113
- }
1114
- },
1115
- "StartChildWorkflowExecutionDecisionAttributes": {
1116
- "base": "<p>Provides details of the <code>StartChildWorkflowExecution</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>Constrain the following parameters by using a <code>Condition</code> element with the appropriate keys. <ul> <li> <code>tagList.member.N</code>: The key is \"swf:tagList.N\" where N is the tag number from 0 to 4, inclusive.</li> <li><code>taskList</code>: String constraint. The key is <code>swf:taskList.name</code>.</li> <li><code>workflowType.name</code>: String constraint. The key is <code>swf:workflowType.name</code>.</li> <li><code>workflowType.version</code>: String constraint. The key is <code>swf:workflowType.version</code>.</li> </ul> </li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
1117
- "refs": {
1118
- "Decision$startChildWorkflowExecutionDecisionAttributes": "<p>Provides details of the <code>StartChildWorkflowExecution</code> decision. It is not set for other decision types.</p>"
1119
- }
1120
- },
1121
- "StartChildWorkflowExecutionFailedCause": {
1122
- "base": null,
1123
- "refs": {
1124
- "StartChildWorkflowExecutionFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
1125
- }
1126
- },
1127
- "StartChildWorkflowExecutionFailedEventAttributes": {
1128
- "base": "<p>Provides details of the <code>StartChildWorkflowExecutionFailed</code> event.</p>",
1129
- "refs": {
1130
- "HistoryEvent$startChildWorkflowExecutionFailedEventAttributes": "<p>If the event is of type <code>StartChildWorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1131
- }
1132
- },
1133
- "StartChildWorkflowExecutionInitiatedEventAttributes": {
1134
- "base": "<p>Provides details of the <code>StartChildWorkflowExecutionInitiated</code> event.</p>",
1135
- "refs": {
1136
- "HistoryEvent$startChildWorkflowExecutionInitiatedEventAttributes": "<p>If the event is of type <code>StartChildWorkflowExecutionInitiated</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1137
- }
1138
- },
1139
- "StartTimerDecisionAttributes": {
1140
- "base": "<p>Provides details of the <code>StartTimer</code> decision.</p> <p><b>Access Control</b></p> <p>You can use IAM policies to control this decision's access to Amazon SWF resources as follows:</p> <ul> <li>Use a <code>Resource</code> element with the domain name to limit the action to only specified domains.</li> <li>Use an <code>Action</code> element to allow or deny permission to call this action.</li> <li>You cannot use an IAM policy to constrain this action's parameters.</li> </ul> <p>If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</p>",
1141
- "refs": {
1142
- "Decision$startTimerDecisionAttributes": "<p>Provides details of the <code>StartTimer</code> decision. It is not set for other decision types.</p>"
1143
- }
1144
- },
1145
- "StartTimerFailedCause": {
1146
- "base": null,
1147
- "refs": {
1148
- "StartTimerFailedEventAttributes$cause": "<p>The cause of the failure. This information is generated by the system and can be useful for diagnostic purposes.</p> <note>If <b>cause</b> is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html\">Using IAM to Manage Access to Amazon SWF Workflows</a>.</note>"
1149
- }
1150
- },
1151
- "StartTimerFailedEventAttributes": {
1152
- "base": "<p>Provides details of the <code>StartTimerFailed</code> event.</p>",
1153
- "refs": {
1154
- "HistoryEvent$startTimerFailedEventAttributes": "<p>If the event is of type <code>StartTimerFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1155
- }
1156
- },
1157
- "StartWorkflowExecutionInput": {
1158
- "base": null,
1159
- "refs": {
1160
- }
1161
- },
1162
- "Tag": {
1163
- "base": null,
1164
- "refs": {
1165
- "TagFilter$tag": "<p><b>Required.</b> Specifies the tag that must be associated with the execution for it to meet the filter criteria.</p>",
1166
- "TagList$member": null
1167
- }
1168
- },
1169
- "TagFilter": {
1170
- "base": "<p>Used to filter the workflow executions in visibility APIs based on a tag.</p>",
1171
- "refs": {
1172
- "CountClosedWorkflowExecutionsInput$tagFilter": "<p>If specified, only executions that have a tag that matches the filter are counted.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1173
- "CountOpenWorkflowExecutionsInput$tagFilter": "<p>If specified, only executions that have a tag that matches the filter are counted.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1174
- "ListClosedWorkflowExecutionsInput$tagFilter": "<p>If specified, only executions that have the matching tag are listed.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1175
- "ListOpenWorkflowExecutionsInput$tagFilter": "<p>If specified, only executions that have the matching tag are listed.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>"
1176
- }
1177
- },
1178
- "TagList": {
1179
- "base": null,
1180
- "refs": {
1181
- "ContinueAsNewWorkflowExecutionDecisionAttributes$tagList": "<p>The list of tags to associate with the new workflow execution. A maximum of 5 tags can be specified. You can list workflow executions with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>.</p>",
1182
- "StartChildWorkflowExecutionDecisionAttributes$tagList": "<p>The list of tags to associate with the child workflow execution. A maximum of 5 tags can be specified. You can list workflow executions with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>.</p>",
1183
- "StartChildWorkflowExecutionInitiatedEventAttributes$tagList": "<p>The list of tags to associated with the child workflow execution.</p>",
1184
- "StartWorkflowExecutionInput$tagList": "<p>The list of tags to associate with the workflow execution. You can specify a maximum of 5 tags. You can list workflow executions with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>.</p>",
1185
- "WorkflowExecutionContinuedAsNewEventAttributes$tagList": "<p>The list of tags associated with the new workflow execution.</p>",
1186
- "WorkflowExecutionInfo$tagList": "<p>The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags.</p>",
1187
- "WorkflowExecutionStartedEventAttributes$tagList": "<p>The list of tags associated with this workflow execution. An execution can have up to 5 tags.</p>"
1188
- }
1189
- },
1190
- "TaskList": {
1191
- "base": "<p>Represents a task list.</p>",
1192
- "refs": {
1193
- "ActivityTaskScheduledEventAttributes$taskList": "<p>The task list in which the activity task has been scheduled.</p>",
1194
- "ActivityTypeConfiguration$defaultTaskList": "<p><i>Optional.</i> The default task list specified for this activity type at registration. This default is used if a task list is not provided when a task is scheduled through the <code>ScheduleActivityTask</code> <a>Decision</a>. You can override the default registered task list when scheduling a task through the <code>ScheduleActivityTask</code> <a>Decision</a>.</p>",
1195
- "ContinueAsNewWorkflowExecutionDecisionAttributes$taskList": null,
1196
- "CountPendingActivityTasksInput$taskList": "<p>The name of the task list.</p>",
1197
- "CountPendingDecisionTasksInput$taskList": "<p>The name of the task list.</p>",
1198
- "DecisionTaskScheduledEventAttributes$taskList": "<p>The name of the task list in which the decision task was scheduled.</p>",
1199
- "PollForActivityTaskInput$taskList": "<p>Specifies the task list to poll for activity tasks.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1200
- "PollForDecisionTaskInput$taskList": "<p>Specifies the task list to poll for decision tasks.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1201
- "RegisterActivityTypeInput$defaultTaskList": "<p>If set, specifies the default task list to use for scheduling tasks of this activity type. This default task list is used if a task list is not provided when a task is scheduled through the <code>ScheduleActivityTask</code> <a>Decision</a>.</p>",
1202
- "RegisterWorkflowTypeInput$defaultTaskList": "<p>If set, specifies the default task list to use for scheduling decision tasks for executions of this workflow type. This default is used only if a task list is not provided when starting the execution through the <a>StartWorkflowExecution</a> Action or <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p>",
1203
- "ScheduleActivityTaskDecisionAttributes$taskList": "<p>If set, specifies the name of the task list in which to schedule the activity task. If not specified, the <code>defaultTaskList</code> registered with the activity type will be used.</p> <note>A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned.</note> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1204
- "StartChildWorkflowExecutionDecisionAttributes$taskList": "<p>The name of the task list to be used for decision tasks of the child workflow execution.</p> <note>A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault will be returned.</note> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1205
- "StartChildWorkflowExecutionInitiatedEventAttributes$taskList": "<p>The name of the task list used for the decision tasks of the child workflow execution.</p>",
1206
- "StartWorkflowExecutionInput$taskList": "<p>The task list to use for the decision tasks generated for this workflow execution. This overrides the <code>defaultTaskList</code> specified when registering the workflow type.</p> <note>A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault will be returned.</note> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1207
- "WorkflowExecutionConfiguration$taskList": "<p>The task list used for the decision tasks generated for this workflow execution.</p>",
1208
- "WorkflowExecutionContinuedAsNewEventAttributes$taskList": null,
1209
- "WorkflowExecutionStartedEventAttributes$taskList": "<p>The name of the task list for scheduling the decision tasks for this workflow execution.</p>",
1210
- "WorkflowTypeConfiguration$defaultTaskList": "<p><i>Optional.</i> The default task list, specified when registering the workflow type, for decisions tasks scheduled for workflow executions of this type. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> <a>Decision</a>.</p>"
1211
- }
1212
- },
1213
- "TaskPriority": {
1214
- "base": null,
1215
- "refs": {
1216
- "ActivityTaskScheduledEventAttributes$taskPriority": "<p><i>Optional.</i> The priority to assign to the scheduled activity task. This will override any default priority that was assigned when the activity type was registered. If not set, then the priority set on the activity type is used as the task priority.</p> <p>Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1217
- "ActivityTypeConfiguration$defaultTaskPriority": "<p><i>Optional.</i> The default task priority for tasks of this activity type, specified at registration. If not set, then \"0\" will be used as the default priority. This default can be overridden when scheduling an activity task.</p> <p>Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1218
- "ContinueAsNewWorkflowExecutionDecisionAttributes$taskPriority": "<p><i>Optional.</i> The task priority that, if set, specifies the priority for the decision tasks for this workflow execution. This overrides the defaultTaskPriority specified when registering the workflow type. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1219
- "DecisionTaskScheduledEventAttributes$taskPriority": "<p><i>Optional.</i> A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1220
- "RegisterActivityTypeInput$defaultTaskPriority": "<p>The default task priority to assign to the activity type. If not assigned, then \"0\" will be used. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1221
- "RegisterWorkflowTypeInput$defaultTaskPriority": "<p>The default task priority to assign to the workflow type. If not assigned, then \"0\" will be used. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1222
- "ScheduleActivityTaskDecisionAttributes$taskPriority": "<p><i>Optional.</i> If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using <a>RegisterActivityType</a>. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1223
- "StartChildWorkflowExecutionDecisionAttributes$taskPriority": "<p><i>Optional.</i> A task priority that, if set, specifies the priority for a decision task of this workflow execution. This overrides the defaultTaskPriority specified when registering the workflow type. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1224
- "StartChildWorkflowExecutionInitiatedEventAttributes$taskPriority": "<p><i>Optional.</i> The priority assigned for the decision tasks for this workflow execution. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1225
- "StartWorkflowExecutionInput$taskPriority": "<p>The task priority to use for this workflow execution. This will override any default priority that was assigned when the workflow type was registered. If not set, then the default task priority for the workflow type will be used. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1226
- "WorkflowExecutionConfiguration$taskPriority": "<p>The priority assigned to decision tasks for this workflow execution. Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>",
1227
- "WorkflowExecutionContinuedAsNewEventAttributes$taskPriority": null,
1228
- "WorkflowExecutionStartedEventAttributes$taskPriority": null,
1229
- "WorkflowTypeConfiguration$defaultTaskPriority": "<p><i>Optional.</i> The default task priority, specified when registering the workflow type, for all decision tasks of this workflow type. This default can be overridden when starting a workflow execution using the <a>StartWorkflowExecution</a> action or the <code>StartChildWorkflowExecution</code> decision.</p> <p>Valid values are integers that range from Java's <code>Integer.MIN_VALUE</code> (-2147483648) to <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate higher priority.</p> <p>For more information about setting task priority, see <a href=\"http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html\">Setting Task Priority</a> in the <i>Amazon Simple Workflow Developer Guide</i>.</p>"
1230
- }
1231
- },
1232
- "TaskToken": {
1233
- "base": null,
1234
- "refs": {
1235
- "ActivityTask$taskToken": "<p>The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.</p>",
1236
- "DecisionTask$taskToken": "<p>The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.</p>",
1237
- "RecordActivityTaskHeartbeatInput$taskToken": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important> <code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results. </important>",
1238
- "RespondActivityTaskCanceledInput$taskToken": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important><code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results.</important>",
1239
- "RespondActivityTaskCompletedInput$taskToken": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important> <code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results.</important>",
1240
- "RespondActivityTaskFailedInput$taskToken": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important> <code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results.</important>",
1241
- "RespondDecisionTaskCompletedInput$taskToken": "<p>The <code>taskToken</code> from the <a>DecisionTask</a>.</p> <important><code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results.</important>"
1242
- }
1243
- },
1244
- "TerminateReason": {
1245
- "base": null,
1246
- "refs": {
1247
- "TerminateWorkflowExecutionInput$reason": "<p><i>Optional.</i> A descriptive reason for terminating the workflow execution.</p>",
1248
- "WorkflowExecutionTerminatedEventAttributes$reason": "<p>The reason provided for the termination (if any).</p>"
1249
- }
1250
- },
1251
- "TerminateWorkflowExecutionInput": {
1252
- "base": null,
1253
- "refs": {
1254
- }
1255
- },
1256
- "TimerCanceledEventAttributes": {
1257
- "base": "<p> Provides details of the <code>TimerCanceled</code> event. </p>",
1258
- "refs": {
1259
- "HistoryEvent$timerCanceledEventAttributes": "<p>If the event is of type <code>TimerCanceled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1260
- }
1261
- },
1262
- "TimerFiredEventAttributes": {
1263
- "base": "<p>Provides details of the <code>TimerFired</code> event.</p>",
1264
- "refs": {
1265
- "HistoryEvent$timerFiredEventAttributes": "<p>If the event is of type <code>TimerFired</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1266
- }
1267
- },
1268
- "TimerId": {
1269
- "base": null,
1270
- "refs": {
1271
- "CancelTimerDecisionAttributes$timerId": "<p><b>Required.</b> The unique Id of the timer to cancel.</p>",
1272
- "CancelTimerFailedEventAttributes$timerId": "<p>The timerId provided in the <code>CancelTimer</code> decision that failed.</p>",
1273
- "StartTimerDecisionAttributes$timerId": "<p><b>Required.</b> The unique Id of the timer.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1274
- "StartTimerFailedEventAttributes$timerId": "<p>The timerId provided in the <code>StartTimer</code> decision that failed.</p>",
1275
- "TimerCanceledEventAttributes$timerId": "<p> The unique Id of the timer that was canceled. </p>",
1276
- "TimerFiredEventAttributes$timerId": "<p>The unique Id of the timer that fired.</p>",
1277
- "TimerStartedEventAttributes$timerId": "<p>The unique Id of the timer that was started.</p>"
1278
- }
1279
- },
1280
- "TimerStartedEventAttributes": {
1281
- "base": "<p>Provides details of the <code>TimerStarted</code> event.</p>",
1282
- "refs": {
1283
- "HistoryEvent$timerStartedEventAttributes": "<p>If the event is of type <code>TimerStarted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1284
- }
1285
- },
1286
- "Timestamp": {
1287
- "base": null,
1288
- "refs": {
1289
- "ActivityTypeInfo$creationDate": "<p>The date and time this activity type was created through <a>RegisterActivityType</a>.</p>",
1290
- "ActivityTypeInfo$deprecationDate": "<p>If DEPRECATED, the date and time <a>DeprecateActivityType</a> was called.</p>",
1291
- "ExecutionTimeFilter$oldestDate": "<p>Specifies the oldest start or close date and time to return.</p>",
1292
- "ExecutionTimeFilter$latestDate": "<p>Specifies the latest start or close date and time to return.</p>",
1293
- "HistoryEvent$eventTimestamp": "<p>The date and time when the event occurred.</p>",
1294
- "WorkflowExecutionDetail$latestActivityTaskTimestamp": "<p>The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.</p>",
1295
- "WorkflowExecutionInfo$startTimestamp": "<p>The time when the execution was started.</p>",
1296
- "WorkflowExecutionInfo$closeTimestamp": "<p>The time when the workflow execution was closed. Set only if the execution status is CLOSED.</p>",
1297
- "WorkflowTypeInfo$creationDate": "<p>The date when this type was registered.</p>",
1298
- "WorkflowTypeInfo$deprecationDate": "<p>If the type is in deprecated state, then it is set to the date when the type was deprecated.</p>"
1299
- }
1300
- },
1301
- "Truncated": {
1302
- "base": null,
1303
- "refs": {
1304
- "PendingTaskCount$truncated": "<p>If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.</p>",
1305
- "WorkflowExecutionCount$truncated": "<p>If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.</p>"
1306
- }
1307
- },
1308
- "TypeAlreadyExistsFault": {
1309
- "base": "<p>Returned if the type already exists in the specified domain. You will get this fault even if the existing type is in deprecated status. You can specify another version if the intent is to create a new distinct version of the type.</p>",
1310
- "refs": {
1311
- }
1312
- },
1313
- "TypeDeprecatedFault": {
1314
- "base": "<p>Returned when the specified activity or workflow type was already deprecated.</p>",
1315
- "refs": {
1316
- }
1317
- },
1318
- "UnknownResourceFault": {
1319
- "base": "<p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>",
1320
- "refs": {
1321
- }
1322
- },
1323
- "Version": {
1324
- "base": null,
1325
- "refs": {
1326
- "ActivityType$version": "<p>The version of this activity.</p> <note>The combination of activity type name and version must be unique with in a domain.</note>",
1327
- "ContinueAsNewWorkflowExecutionDecisionAttributes$workflowTypeVersion": null,
1328
- "RegisterActivityTypeInput$version": "<p>The version of the activity type.</p> <note>The activity type consists of the name and version, the combination of which must be unique within the domain.</note> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1329
- "RegisterWorkflowTypeInput$version": "<p>The version of the workflow type.</p> <note>The workflow type consists of the name and version, the combination of which must be unique within the domain. To get a list of all currently registered workflow types, use the <a>ListWorkflowTypes</a> action.</note> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1330
- "WorkflowType$version": "<p><b>Required.</b> The version of the workflow type.</p> <note>The combination of workflow type name and version must be unique with in a domain.</note>"
1331
- }
1332
- },
1333
- "VersionOptional": {
1334
- "base": null,
1335
- "refs": {
1336
- "WorkflowTypeFilter$version": "<p>Version of the workflow type.</p>"
1337
- }
1338
- },
1339
- "WorkflowExecution": {
1340
- "base": "<p>Represents a workflow execution.</p>",
1341
- "refs": {
1342
- "ActivityTask$workflowExecution": "<p>The workflow execution that started this activity task.</p>",
1343
- "ChildWorkflowExecutionCanceledEventAttributes$workflowExecution": "<p>The child workflow execution that was canceled.</p>",
1344
- "ChildWorkflowExecutionCompletedEventAttributes$workflowExecution": "<p>The child workflow execution that was completed.</p>",
1345
- "ChildWorkflowExecutionFailedEventAttributes$workflowExecution": "<p>The child workflow execution that failed.</p>",
1346
- "ChildWorkflowExecutionStartedEventAttributes$workflowExecution": "<p>The child workflow execution that was started.</p>",
1347
- "ChildWorkflowExecutionTerminatedEventAttributes$workflowExecution": "<p>The child workflow execution that was terminated.</p>",
1348
- "ChildWorkflowExecutionTimedOutEventAttributes$workflowExecution": "<p>The child workflow execution that timed out.</p>",
1349
- "DecisionTask$workflowExecution": "<p>The workflow execution for which this decision task was created.</p>",
1350
- "DescribeWorkflowExecutionInput$execution": "<p>The workflow execution to describe.</p>",
1351
- "ExternalWorkflowExecutionCancelRequestedEventAttributes$workflowExecution": "<p>The external workflow execution to which the cancellation request was delivered.</p>",
1352
- "ExternalWorkflowExecutionSignaledEventAttributes$workflowExecution": "<p> The external workflow execution that the signal was delivered to.</p>",
1353
- "GetWorkflowExecutionHistoryInput$execution": "<p>Specifies the workflow execution for which to return the history.</p>",
1354
- "WorkflowExecutionCancelRequestedEventAttributes$externalWorkflowExecution": "<p>The external workflow execution for which the cancellation was requested.</p>",
1355
- "WorkflowExecutionInfo$execution": "<p>The workflow execution this information is about.</p>",
1356
- "WorkflowExecutionInfo$parent": "<p>If this workflow execution is a child of another execution then contains the workflow execution that started this execution.</p>",
1357
- "WorkflowExecutionSignaledEventAttributes$externalWorkflowExecution": "<p>The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.</p>",
1358
- "WorkflowExecutionStartedEventAttributes$parentWorkflowExecution": "<p>The source workflow execution that started this workflow execution. The member is not set if the workflow execution was not started by a workflow.</p>"
1359
- }
1360
- },
1361
- "WorkflowExecutionAlreadyStartedFault": {
1362
- "base": "<p>Returned by <a>StartWorkflowExecution</a> when an open execution with the same workflowId is already running in the specified domain.</p>",
1363
- "refs": {
1364
- }
1365
- },
1366
- "WorkflowExecutionCancelRequestedCause": {
1367
- "base": null,
1368
- "refs": {
1369
- "WorkflowExecutionCancelRequestedEventAttributes$cause": "<p>If set, indicates that the request to cancel the workflow execution was automatically generated, and specifies the cause. This happens if the parent workflow execution times out or is terminated, and the child policy is set to cancel child executions.</p>"
1370
- }
1371
- },
1372
- "WorkflowExecutionCancelRequestedEventAttributes": {
1373
- "base": "<p>Provides details of the <code>WorkflowExecutionCancelRequested</code> event.</p>",
1374
- "refs": {
1375
- "HistoryEvent$workflowExecutionCancelRequestedEventAttributes": "<p>If the event is of type <code>WorkflowExecutionCancelRequested</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1376
- }
1377
- },
1378
- "WorkflowExecutionCanceledEventAttributes": {
1379
- "base": "<p>Provides details of the <code>WorkflowExecutionCanceled</code> event.</p>",
1380
- "refs": {
1381
- "HistoryEvent$workflowExecutionCanceledEventAttributes": "<p>If the event is of type <code>WorkflowExecutionCanceled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1382
- }
1383
- },
1384
- "WorkflowExecutionCompletedEventAttributes": {
1385
- "base": "<p>Provides details of the <code>WorkflowExecutionCompleted</code> event.</p>",
1386
- "refs": {
1387
- "HistoryEvent$workflowExecutionCompletedEventAttributes": "<p>If the event is of type <code>WorkflowExecutionCompleted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1388
- }
1389
- },
1390
- "WorkflowExecutionConfiguration": {
1391
- "base": "<p>The configuration settings for a workflow execution including timeout values, tasklist etc. These configuration settings are determined from the defaults specified when registering the workflow type and those specified when starting the workflow execution.</p>",
1392
- "refs": {
1393
- "WorkflowExecutionDetail$executionConfiguration": "<p>The configuration settings for this workflow execution including timeout values, tasklist etc.</p>"
1394
- }
1395
- },
1396
- "WorkflowExecutionContinuedAsNewEventAttributes": {
1397
- "base": "<p>Provides details of the <code>WorkflowExecutionContinuedAsNew</code> event.</p>",
1398
- "refs": {
1399
- "HistoryEvent$workflowExecutionContinuedAsNewEventAttributes": "<p>If the event is of type <code>WorkflowExecutionContinuedAsNew</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1400
- }
1401
- },
1402
- "WorkflowExecutionCount": {
1403
- "base": "<p>Contains the count of workflow executions returned from <a>CountOpenWorkflowExecutions</a> or <a>CountClosedWorkflowExecutions</a></p>",
1404
- "refs": {
1405
- }
1406
- },
1407
- "WorkflowExecutionDetail": {
1408
- "base": "<p>Contains details about a workflow execution.</p>",
1409
- "refs": {
1410
- }
1411
- },
1412
- "WorkflowExecutionFailedEventAttributes": {
1413
- "base": "<p>Provides details of the <code>WorkflowExecutionFailed</code> event.</p>",
1414
- "refs": {
1415
- "HistoryEvent$workflowExecutionFailedEventAttributes": "<p>If the event is of type <code>WorkflowExecutionFailed</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1416
- }
1417
- },
1418
- "WorkflowExecutionFilter": {
1419
- "base": "<p>Used to filter the workflow executions in visibility APIs by their <code>workflowId</code>.</p>",
1420
- "refs": {
1421
- "CountClosedWorkflowExecutionsInput$executionFilter": "<p>If specified, only workflow executions matching the <code>WorkflowId</code> in the filter are counted.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1422
- "CountOpenWorkflowExecutionsInput$executionFilter": "<p>If specified, only workflow executions matching the <code>WorkflowId</code> in the filter are counted.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1423
- "ListClosedWorkflowExecutionsInput$executionFilter": "<p>If specified, only workflow executions matching the workflow id specified in the filter are returned.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1424
- "ListOpenWorkflowExecutionsInput$executionFilter": "<p>If specified, only workflow executions matching the workflow id specified in the filter are returned.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>"
1425
- }
1426
- },
1427
- "WorkflowExecutionInfo": {
1428
- "base": "<p>Contains information about a workflow execution. </p>",
1429
- "refs": {
1430
- "WorkflowExecutionDetail$executionInfo": "<p>Information about the workflow execution.</p>",
1431
- "WorkflowExecutionInfoList$member": null
1432
- }
1433
- },
1434
- "WorkflowExecutionInfoList": {
1435
- "base": null,
1436
- "refs": {
1437
- "WorkflowExecutionInfos$executionInfos": "<p>The list of workflow information structures.</p>"
1438
- }
1439
- },
1440
- "WorkflowExecutionInfos": {
1441
- "base": "<p>Contains a paginated list of information about workflow executions.</p>",
1442
- "refs": {
1443
- }
1444
- },
1445
- "WorkflowExecutionOpenCounts": {
1446
- "base": "<p>Contains the counts of open tasks, child workflow executions and timers for a workflow execution.</p>",
1447
- "refs": {
1448
- "WorkflowExecutionDetail$openCounts": "<p>The number of tasks for this workflow execution. This includes open and closed tasks of all types.</p>"
1449
- }
1450
- },
1451
- "WorkflowExecutionSignaledEventAttributes": {
1452
- "base": "<p>Provides details of the <code>WorkflowExecutionSignaled</code> event.</p>",
1453
- "refs": {
1454
- "HistoryEvent$workflowExecutionSignaledEventAttributes": "<p>If the event is of type <code>WorkflowExecutionSignaled</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1455
- }
1456
- },
1457
- "WorkflowExecutionStartedEventAttributes": {
1458
- "base": "<p>Provides details of <code>WorkflowExecutionStarted</code> event.</p>",
1459
- "refs": {
1460
- "HistoryEvent$workflowExecutionStartedEventAttributes": "<p>If the event is of type <code>WorkflowExecutionStarted</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1461
- }
1462
- },
1463
- "WorkflowExecutionTerminatedCause": {
1464
- "base": null,
1465
- "refs": {
1466
- "WorkflowExecutionTerminatedEventAttributes$cause": "<p>If set, indicates that the workflow execution was automatically terminated, and specifies the cause. This happens if the parent workflow execution times out or is terminated and the child policy is set to terminate child executions.</p>"
1467
- }
1468
- },
1469
- "WorkflowExecutionTerminatedEventAttributes": {
1470
- "base": "<p>Provides details of the <code>WorkflowExecutionTerminated</code> event.</p>",
1471
- "refs": {
1472
- "HistoryEvent$workflowExecutionTerminatedEventAttributes": "<p>If the event is of type <code>WorkflowExecutionTerminated</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1473
- }
1474
- },
1475
- "WorkflowExecutionTimedOutEventAttributes": {
1476
- "base": "<p>Provides details of the <code>WorkflowExecutionTimedOut</code> event.</p>",
1477
- "refs": {
1478
- "HistoryEvent$workflowExecutionTimedOutEventAttributes": "<p>If the event is of type <code>WorkflowExecutionTimedOut</code> then this member is set and provides detailed information about the event. It is not set for other event types.</p>"
1479
- }
1480
- },
1481
- "WorkflowExecutionTimeoutType": {
1482
- "base": null,
1483
- "refs": {
1484
- "ChildWorkflowExecutionTimedOutEventAttributes$timeoutType": "<p>The type of the timeout that caused the child workflow execution to time out.</p>",
1485
- "WorkflowExecutionTimedOutEventAttributes$timeoutType": "<p>The type of timeout that caused this event.</p>"
1486
- }
1487
- },
1488
- "WorkflowId": {
1489
- "base": null,
1490
- "refs": {
1491
- "RequestCancelExternalWorkflowExecutionDecisionAttributes$workflowId": "<p><b>Required.</b> The <code>workflowId</code> of the external workflow execution to cancel.</p>",
1492
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the external workflow to which the cancel request was to be delivered.</p>",
1493
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the external workflow execution to be canceled.</p>",
1494
- "RequestCancelWorkflowExecutionInput$workflowId": "<p>The workflowId of the workflow execution to cancel.</p>",
1495
- "SignalExternalWorkflowExecutionDecisionAttributes$workflowId": "<p><b>Required.</b> The <code>workflowId</code> of the workflow execution to be signaled.</p>",
1496
- "SignalExternalWorkflowExecutionFailedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the external workflow execution that the signal was being delivered to.</p>",
1497
- "SignalExternalWorkflowExecutionInitiatedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the external workflow execution.</p>",
1498
- "SignalWorkflowExecutionInput$workflowId": "<p>The workflowId of the workflow execution to signal.</p>",
1499
- "StartChildWorkflowExecutionDecisionAttributes$workflowId": "<p><b>Required.</b> The <code>workflowId</code> of the workflow execution.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1500
- "StartChildWorkflowExecutionFailedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the child workflow execution.</p>",
1501
- "StartChildWorkflowExecutionInitiatedEventAttributes$workflowId": "<p>The <code>workflowId</code> of the child workflow execution.</p>",
1502
- "StartWorkflowExecutionInput$workflowId": "<p>The user defined identifier associated with the workflow execution. You can use this to associate a custom identifier with the workflow execution. You may specify the same identifier if a workflow execution is logically a <i>restart</i> of a previous execution. You cannot have two open workflow executions with the same <code>workflowId</code> at the same time.</p> <p>The specified string must not start or end with whitespace. It must not contain a <code>:</code> (colon), <code>/</code> (slash), <code>|</code> (vertical bar), or any control characters (\\u0000-\\u001f | \\u007f - \\u009f). Also, it must not contain the literal string quotarnquot.</p>",
1503
- "TerminateWorkflowExecutionInput$workflowId": "<p>The workflowId of the workflow execution to terminate.</p>",
1504
- "WorkflowExecution$workflowId": "<p>The user defined identifier associated with the workflow execution.</p>",
1505
- "WorkflowExecutionFilter$workflowId": "<p>The workflowId to pass of match the criteria of this filter.</p>"
1506
- }
1507
- },
1508
- "WorkflowType": {
1509
- "base": "<p>Represents a workflow type.</p>",
1510
- "refs": {
1511
- "ChildWorkflowExecutionCanceledEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1512
- "ChildWorkflowExecutionCompletedEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1513
- "ChildWorkflowExecutionFailedEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1514
- "ChildWorkflowExecutionStartedEventAttributes$workflowType": "<p>The type of the child workflow execution. </p>",
1515
- "ChildWorkflowExecutionTerminatedEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1516
- "ChildWorkflowExecutionTimedOutEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1517
- "DecisionTask$workflowType": "<p>The type of the workflow execution for which this decision task was created.</p>",
1518
- "DeprecateWorkflowTypeInput$workflowType": "<p>The workflow type to deprecate.</p>",
1519
- "DescribeWorkflowTypeInput$workflowType": "<p>The workflow type to describe.</p>",
1520
- "StartChildWorkflowExecutionDecisionAttributes$workflowType": "<p><b>Required.</b> The type of the workflow execution to be started.</p>",
1521
- "StartChildWorkflowExecutionFailedEventAttributes$workflowType": "<p>The workflow type provided in the <code>StartChildWorkflowExecution</code> <a>Decision</a> that failed.</p>",
1522
- "StartChildWorkflowExecutionInitiatedEventAttributes$workflowType": "<p>The type of the child workflow execution.</p>",
1523
- "StartWorkflowExecutionInput$workflowType": "<p>The type of the workflow to start.</p>",
1524
- "WorkflowExecutionContinuedAsNewEventAttributes$workflowType": null,
1525
- "WorkflowExecutionInfo$workflowType": "<p>The type of the workflow execution.</p>",
1526
- "WorkflowExecutionStartedEventAttributes$workflowType": "<p>The workflow type of this execution.</p>",
1527
- "WorkflowTypeInfo$workflowType": "<p>The workflow type this information is about.</p>"
1528
- }
1529
- },
1530
- "WorkflowTypeConfiguration": {
1531
- "base": "<p>The configuration settings of a workflow type.</p>",
1532
- "refs": {
1533
- "WorkflowTypeDetail$configuration": "<p>Configuration settings of the workflow type registered through <a>RegisterWorkflowType</a></p>"
1534
- }
1535
- },
1536
- "WorkflowTypeDetail": {
1537
- "base": "<p>Contains details about a workflow type.</p>",
1538
- "refs": {
1539
- }
1540
- },
1541
- "WorkflowTypeFilter": {
1542
- "base": "<p>Used to filter workflow execution query results by type. Each parameter, if specified, defines a rule that must be satisfied by each returned result.</p>",
1543
- "refs": {
1544
- "CountClosedWorkflowExecutionsInput$typeFilter": "<p>If specified, indicates the type of the workflow executions to be counted.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1545
- "CountOpenWorkflowExecutionsInput$typeFilter": "<p>Specifies the type of the workflow executions to be counted.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1546
- "ListClosedWorkflowExecutionsInput$typeFilter": "<p>If specified, only executions of the type specified in the filter are returned.</p> <note><code>closeStatusFilter</code>, <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>",
1547
- "ListOpenWorkflowExecutionsInput$typeFilter": "<p>If specified, only executions of the type specified in the filter are returned.</p> <note><code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</note>"
1548
- }
1549
- },
1550
- "WorkflowTypeInfo": {
1551
- "base": "<p>Contains information about a workflow type.</p>",
1552
- "refs": {
1553
- "WorkflowTypeDetail$typeInfo": "<p>General information about the workflow type.</p> <p>The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.</p> <ul> <li> <b>REGISTERED</b>: The type is registered and available. Workers supporting this type should be running.</li> <li> <b>DEPRECATED</b>: The type was deprecated using <a>DeprecateWorkflowType</a>, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.</li> </ul>",
1554
- "WorkflowTypeInfoList$member": null
1555
- }
1556
- },
1557
- "WorkflowTypeInfoList": {
1558
- "base": null,
1559
- "refs": {
1560
- "WorkflowTypeInfos$typeInfos": "<p>The list of workflow type information.</p>"
1561
- }
1562
- },
1563
- "WorkflowTypeInfos": {
1564
- "base": "<p>Contains a paginated list of information structures about workflow types.</p>",
1565
- "refs": {
1566
- }
1567
- }
1568
- }
1569
- }