aws-sdk-v1 1.52.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +7 -0
  3. data/LICENSE.txt +12 -0
  4. data/README.md +337 -0
  5. data/bin/aws-rb +179 -0
  6. data/ca-bundle.crt +3554 -0
  7. data/endpoints.json +1671 -0
  8. data/lib/aws-sdk-v1.rb +2 -0
  9. data/lib/aws-sdk.rb +1 -0
  10. data/lib/aws.rb +14 -0
  11. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1070 -0
  12. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +372 -0
  13. data/lib/aws/api_config/CloudFront-2013-05-12.yml +2448 -0
  14. data/lib/aws/api_config/CloudFront-2013-08-26.yml +2599 -0
  15. data/lib/aws/api_config/CloudFront-2013-09-27.yml +2765 -0
  16. data/lib/aws/api_config/CloudFront-2013-11-11.yml +2886 -0
  17. data/lib/aws/api_config/CloudFront-2013-11-22.yml +2918 -0
  18. data/lib/aws/api_config/CloudFront-2014-01-31.yml +2934 -0
  19. data/lib/aws/api_config/CloudFront-2014-05-31.yml +3100 -0
  20. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  21. data/lib/aws/api_config/CloudSearch-2013-01-01.yml +1164 -0
  22. data/lib/aws/api_config/CloudTrail-2013-11-01.yml +130 -0
  23. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
  24. data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
  25. data/lib/aws/api_config/DirectConnect-2012-10-25.yml +735 -0
  26. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1168 -0
  27. data/lib/aws/api_config/DynamoDB-2012-08-10.yml +2105 -0
  28. data/lib/aws/api_config/EC2-2013-08-15.yml +4708 -0
  29. data/lib/aws/api_config/EC2-2013-10-01.yml +4726 -0
  30. data/lib/aws/api_config/EC2-2013-10-15.yml +4651 -0
  31. data/lib/aws/api_config/EC2-2014-02-01.yml +4755 -0
  32. data/lib/aws/api_config/EC2-2014-05-01.yml +4812 -0
  33. data/lib/aws/api_config/ELB-2012-06-01.yml +766 -0
  34. data/lib/aws/api_config/EMR-2009-03-31.yml +972 -0
  35. data/lib/aws/api_config/ElastiCache-2013-06-15.yml +1188 -0
  36. data/lib/aws/api_config/ElastiCache-2014-03-24.yml +1375 -0
  37. data/lib/aws/api_config/ElastiCache-2014-07-15.yml +1385 -0
  38. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +854 -0
  39. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +3082 -0
  40. data/lib/aws/api_config/Glacier-2012-06-01.yml +649 -0
  41. data/lib/aws/api_config/IAM-2010-05-08.yml +1339 -0
  42. data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
  43. data/lib/aws/api_config/Kinesis-2013-12-02.yml +201 -0
  44. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +2025 -0
  45. data/lib/aws/api_config/RDS-2013-05-15.yml +2464 -0
  46. data/lib/aws/api_config/RDS-2013-09-09.yml +2640 -0
  47. data/lib/aws/api_config/Redshift-2012-12-01.yml +2161 -0
  48. data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
  49. data/lib/aws/api_config/Route53-2013-04-01.yml +889 -0
  50. data/lib/aws/api_config/SNS-2010-03-31.yml +448 -0
  51. data/lib/aws/api_config/SQS-2012-11-05.yml +404 -0
  52. data/lib/aws/api_config/STS-2011-06-15.yml +151 -0
  53. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
  54. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
  55. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2388 -0
  56. data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
  57. data/lib/aws/api_config/StorageGateway-2013-06-30.yml +1025 -0
  58. data/lib/aws/api_config/Support-2013-04-15.yml +489 -0
  59. data/lib/aws/auto_scaling.rb +163 -0
  60. data/lib/aws/auto_scaling/activity.rb +102 -0
  61. data/lib/aws/auto_scaling/activity_collection.rb +81 -0
  62. data/lib/aws/auto_scaling/client.rb +48 -0
  63. data/lib/aws/auto_scaling/config.rb +18 -0
  64. data/lib/aws/auto_scaling/errors.rb +22 -0
  65. data/lib/aws/auto_scaling/group.rb +421 -0
  66. data/lib/aws/auto_scaling/group_collection.rb +96 -0
  67. data/lib/aws/auto_scaling/group_options.rb +155 -0
  68. data/lib/aws/auto_scaling/instance.rb +192 -0
  69. data/lib/aws/auto_scaling/instance_collection.rb +63 -0
  70. data/lib/aws/auto_scaling/launch_configuration.rb +162 -0
  71. data/lib/aws/auto_scaling/launch_configuration_collection.rb +160 -0
  72. data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
  73. data/lib/aws/auto_scaling/notification_configuration_collection.rb +183 -0
  74. data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
  75. data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
  76. data/lib/aws/auto_scaling/scaling_policy_options.rb +65 -0
  77. data/lib/aws/auto_scaling/scheduled_action.rb +141 -0
  78. data/lib/aws/auto_scaling/scheduled_action_collection.rb +202 -0
  79. data/lib/aws/auto_scaling/tag.rb +59 -0
  80. data/lib/aws/auto_scaling/tag_collection.rb +114 -0
  81. data/lib/aws/cloud_formation.rb +272 -0
  82. data/lib/aws/cloud_formation/client.rb +48 -0
  83. data/lib/aws/cloud_formation/config.rb +18 -0
  84. data/lib/aws/cloud_formation/errors.rb +22 -0
  85. data/lib/aws/cloud_formation/stack.rb +266 -0
  86. data/lib/aws/cloud_formation/stack_collection.rb +232 -0
  87. data/lib/aws/cloud_formation/stack_event.rb +73 -0
  88. data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
  89. data/lib/aws/cloud_formation/stack_options.rb +72 -0
  90. data/lib/aws/cloud_formation/stack_output.rb +53 -0
  91. data/lib/aws/cloud_formation/stack_resource.rb +117 -0
  92. data/lib/aws/cloud_formation/stack_resource_collection.rb +83 -0
  93. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
  94. data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
  95. data/lib/aws/cloud_front.rb +72 -0
  96. data/lib/aws/cloud_front/client.rb +57 -0
  97. data/lib/aws/cloud_front/config.rb +18 -0
  98. data/lib/aws/cloud_front/errors.rb +22 -0
  99. data/lib/aws/cloud_search.rb +73 -0
  100. data/lib/aws/cloud_search/client.rb +40 -0
  101. data/lib/aws/cloud_search/config.rb +18 -0
  102. data/lib/aws/cloud_search/errors.rb +22 -0
  103. data/lib/aws/cloud_trail.rb +72 -0
  104. data/lib/aws/cloud_trail/client.rb +35 -0
  105. data/lib/aws/cloud_trail/config.rb +18 -0
  106. data/lib/aws/cloud_trail/errors.rb +22 -0
  107. data/lib/aws/cloud_watch.rb +118 -0
  108. data/lib/aws/cloud_watch/alarm.rb +293 -0
  109. data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
  110. data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
  111. data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
  112. data/lib/aws/cloud_watch/client.rb +40 -0
  113. data/lib/aws/cloud_watch/config.rb +18 -0
  114. data/lib/aws/cloud_watch/errors.rb +22 -0
  115. data/lib/aws/cloud_watch/metric.rb +135 -0
  116. data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
  117. data/lib/aws/cloud_watch/metric_collection.rb +129 -0
  118. data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
  119. data/lib/aws/core.rb +716 -0
  120. data/lib/aws/core/async_handle.rb +90 -0
  121. data/lib/aws/core/cacheable.rb +77 -0
  122. data/lib/aws/core/client.rb +787 -0
  123. data/lib/aws/core/collection.rb +263 -0
  124. data/lib/aws/core/collection/simple.rb +82 -0
  125. data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
  126. data/lib/aws/core/collection/with_next_token.rb +97 -0
  127. data/lib/aws/core/configuration.rb +542 -0
  128. data/lib/aws/core/credential_providers.rb +639 -0
  129. data/lib/aws/core/data.rb +247 -0
  130. data/lib/aws/core/deprecations.rb +84 -0
  131. data/lib/aws/core/endpoints.rb +37 -0
  132. data/lib/aws/core/http/connection_pool.rb +369 -0
  133. data/lib/aws/core/http/curb_handler.rb +148 -0
  134. data/lib/aws/core/http/handler.rb +89 -0
  135. data/lib/aws/core/http/net_http_handler.rb +144 -0
  136. data/lib/aws/core/http/patch.rb +102 -0
  137. data/lib/aws/core/http/request.rb +259 -0
  138. data/lib/aws/core/http/response.rb +81 -0
  139. data/lib/aws/core/indifferent_hash.rb +88 -0
  140. data/lib/aws/core/inflection.rb +56 -0
  141. data/lib/aws/core/ini_parser.rb +42 -0
  142. data/lib/aws/core/json_client.rb +47 -0
  143. data/lib/aws/core/json_parser.rb +76 -0
  144. data/lib/aws/core/json_request_builder.rb +35 -0
  145. data/lib/aws/core/json_response_parser.rb +79 -0
  146. data/lib/aws/core/lazy_error_classes.rb +108 -0
  147. data/lib/aws/core/log_formatter.rb +428 -0
  148. data/lib/aws/core/managed_file.rb +32 -0
  149. data/lib/aws/core/meta_utils.rb +45 -0
  150. data/lib/aws/core/model.rb +62 -0
  151. data/lib/aws/core/naming.rb +30 -0
  152. data/lib/aws/core/option_grammar.rb +738 -0
  153. data/lib/aws/core/options/json_serializer.rb +82 -0
  154. data/lib/aws/core/options/validator.rb +155 -0
  155. data/lib/aws/core/options/xml_serializer.rb +118 -0
  156. data/lib/aws/core/page_result.rb +75 -0
  157. data/lib/aws/core/policy.rb +941 -0
  158. data/lib/aws/core/query_client.rb +41 -0
  159. data/lib/aws/core/query_error_parser.rb +24 -0
  160. data/lib/aws/core/query_request_builder.rb +47 -0
  161. data/lib/aws/core/query_response_parser.rb +35 -0
  162. data/lib/aws/core/region.rb +85 -0
  163. data/lib/aws/core/region_collection.rb +80 -0
  164. data/lib/aws/core/resource.rb +413 -0
  165. data/lib/aws/core/resource_cache.rb +40 -0
  166. data/lib/aws/core/response.rb +215 -0
  167. data/lib/aws/core/response_cache.rb +50 -0
  168. data/lib/aws/core/rest_error_parser.rb +24 -0
  169. data/lib/aws/core/rest_json_client.rb +40 -0
  170. data/lib/aws/core/rest_request_builder.rb +154 -0
  171. data/lib/aws/core/rest_response_parser.rb +66 -0
  172. data/lib/aws/core/rest_xml_client.rb +47 -0
  173. data/lib/aws/core/service_interface.rb +83 -0
  174. data/lib/aws/core/signers/base.rb +46 -0
  175. data/lib/aws/core/signers/cloud_front.rb +56 -0
  176. data/lib/aws/core/signers/s3.rb +159 -0
  177. data/lib/aws/core/signers/version_2.rb +72 -0
  178. data/lib/aws/core/signers/version_3.rb +86 -0
  179. data/lib/aws/core/signers/version_3_https.rb +61 -0
  180. data/lib/aws/core/signers/version_4.rb +228 -0
  181. data/lib/aws/core/signers/version_4/chunk_signed_stream.rb +191 -0
  182. data/lib/aws/core/uri_escape.rb +44 -0
  183. data/lib/aws/core/xml/frame.rb +245 -0
  184. data/lib/aws/core/xml/frame_stack.rb +85 -0
  185. data/lib/aws/core/xml/grammar.rb +307 -0
  186. data/lib/aws/core/xml/parser.rb +70 -0
  187. data/lib/aws/core/xml/root_frame.rb +65 -0
  188. data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
  189. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +56 -0
  190. data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
  191. data/lib/aws/core/xml/sax_handlers/rexml.rb +47 -0
  192. data/lib/aws/core/xml/stub.rb +123 -0
  193. data/lib/aws/data_pipeline.rb +72 -0
  194. data/lib/aws/data_pipeline/client.rb +36 -0
  195. data/lib/aws/data_pipeline/config.rb +18 -0
  196. data/lib/aws/data_pipeline/errors.rb +20 -0
  197. data/lib/aws/direct_connect.rb +73 -0
  198. data/lib/aws/direct_connect/client.rb +36 -0
  199. data/lib/aws/direct_connect/config.rb +18 -0
  200. data/lib/aws/direct_connect/errors.rb +22 -0
  201. data/lib/aws/dynamo_db.rb +230 -0
  202. data/lib/aws/dynamo_db/attribute_collection.rb +456 -0
  203. data/lib/aws/dynamo_db/batch_get.rb +213 -0
  204. data/lib/aws/dynamo_db/batch_write.rb +254 -0
  205. data/lib/aws/dynamo_db/binary.rb +35 -0
  206. data/lib/aws/dynamo_db/client.rb +129 -0
  207. data/lib/aws/dynamo_db/client/v20111205.rb +1266 -0
  208. data/lib/aws/dynamo_db/client/v20120810.rb +1409 -0
  209. data/lib/aws/dynamo_db/client_v2.rb +44 -0
  210. data/lib/aws/dynamo_db/config.rb +24 -0
  211. data/lib/aws/dynamo_db/errors.rb +20 -0
  212. data/lib/aws/dynamo_db/expectations.rb +40 -0
  213. data/lib/aws/dynamo_db/item.rb +133 -0
  214. data/lib/aws/dynamo_db/item_collection.rb +856 -0
  215. data/lib/aws/dynamo_db/item_data.rb +31 -0
  216. data/lib/aws/dynamo_db/keys.rb +41 -0
  217. data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
  218. data/lib/aws/dynamo_db/resource.rb +33 -0
  219. data/lib/aws/dynamo_db/table.rb +492 -0
  220. data/lib/aws/dynamo_db/table_collection.rb +165 -0
  221. data/lib/aws/dynamo_db/types.rb +111 -0
  222. data/lib/aws/ec2.rb +428 -0
  223. data/lib/aws/ec2/attachment.rb +135 -0
  224. data/lib/aws/ec2/attachment_collection.rb +54 -0
  225. data/lib/aws/ec2/availability_zone.rb +86 -0
  226. data/lib/aws/ec2/availability_zone_collection.rb +43 -0
  227. data/lib/aws/ec2/block_device_mappings.rb +53 -0
  228. data/lib/aws/ec2/client.rb +154 -0
  229. data/lib/aws/ec2/collection.rb +36 -0
  230. data/lib/aws/ec2/config.rb +21 -0
  231. data/lib/aws/ec2/customer_gateway.rb +90 -0
  232. data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
  233. data/lib/aws/ec2/dhcp_options.rb +106 -0
  234. data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
  235. data/lib/aws/ec2/elastic_ip.rb +209 -0
  236. data/lib/aws/ec2/elastic_ip_collection.rb +93 -0
  237. data/lib/aws/ec2/errors.rb +32 -0
  238. data/lib/aws/ec2/export_task.rb +120 -0
  239. data/lib/aws/ec2/export_task_collection.rb +67 -0
  240. data/lib/aws/ec2/filtered_collection.rb +87 -0
  241. data/lib/aws/ec2/has_permissions.rb +44 -0
  242. data/lib/aws/ec2/image.rb +270 -0
  243. data/lib/aws/ec2/image_collection.rb +219 -0
  244. data/lib/aws/ec2/instance.rb +803 -0
  245. data/lib/aws/ec2/instance_collection.rb +402 -0
  246. data/lib/aws/ec2/internet_gateway.rb +122 -0
  247. data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
  248. data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
  249. data/lib/aws/ec2/key_pair.rb +82 -0
  250. data/lib/aws/ec2/key_pair_collection.rb +99 -0
  251. data/lib/aws/ec2/network_acl.rb +256 -0
  252. data/lib/aws/ec2/network_acl/association.rb +56 -0
  253. data/lib/aws/ec2/network_acl/entry.rb +147 -0
  254. data/lib/aws/ec2/network_acl_collection.rb +64 -0
  255. data/lib/aws/ec2/network_interface.rb +237 -0
  256. data/lib/aws/ec2/network_interface/attachment.rb +100 -0
  257. data/lib/aws/ec2/network_interface_collection.rb +103 -0
  258. data/lib/aws/ec2/permission_collection.rb +174 -0
  259. data/lib/aws/ec2/region.rb +106 -0
  260. data/lib/aws/ec2/region_collection.rb +51 -0
  261. data/lib/aws/ec2/reserved_instances.rb +57 -0
  262. data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
  263. data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
  264. data/lib/aws/ec2/reserved_instances_offering_collection.rb +45 -0
  265. data/lib/aws/ec2/resource.rb +161 -0
  266. data/lib/aws/ec2/resource_tag_collection.rb +211 -0
  267. data/lib/aws/ec2/route_table.rb +205 -0
  268. data/lib/aws/ec2/route_table/association.rb +119 -0
  269. data/lib/aws/ec2/route_table/route.rb +119 -0
  270. data/lib/aws/ec2/route_table_collection.rb +72 -0
  271. data/lib/aws/ec2/security_group.rb +482 -0
  272. data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
  273. data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
  274. data/lib/aws/ec2/security_group_collection.rb +133 -0
  275. data/lib/aws/ec2/snapshot.rb +143 -0
  276. data/lib/aws/ec2/snapshot_collection.rb +131 -0
  277. data/lib/aws/ec2/subnet.rb +161 -0
  278. data/lib/aws/ec2/subnet_collection.rb +119 -0
  279. data/lib/aws/ec2/tag.rb +81 -0
  280. data/lib/aws/ec2/tag_collection.rb +107 -0
  281. data/lib/aws/ec2/tagged_collection.rb +67 -0
  282. data/lib/aws/ec2/tagged_item.rb +85 -0
  283. data/lib/aws/ec2/volume.rb +185 -0
  284. data/lib/aws/ec2/volume_collection.rb +102 -0
  285. data/lib/aws/ec2/vpc.rb +174 -0
  286. data/lib/aws/ec2/vpc_collection.rb +70 -0
  287. data/lib/aws/ec2/vpn_connection.rb +99 -0
  288. data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
  289. data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
  290. data/lib/aws/ec2/vpn_gateway.rb +123 -0
  291. data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
  292. data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
  293. data/lib/aws/elastic_beanstalk.rb +49 -0
  294. data/lib/aws/elastic_beanstalk/client.rb +36 -0
  295. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  296. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  297. data/lib/aws/elastic_transcoder.rb +29 -0
  298. data/lib/aws/elastic_transcoder/client.rb +48 -0
  299. data/lib/aws/elastic_transcoder/config.rb +18 -0
  300. data/lib/aws/elastic_transcoder/errors.rb +23 -0
  301. data/lib/aws/elasticache.rb +49 -0
  302. data/lib/aws/elasticache/client.rb +41 -0
  303. data/lib/aws/elasticache/config.rb +18 -0
  304. data/lib/aws/elasticache/errors.rb +22 -0
  305. data/lib/aws/elb.rb +66 -0
  306. data/lib/aws/elb/availability_zone_collection.rb +138 -0
  307. data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
  308. data/lib/aws/elb/client.rb +35 -0
  309. data/lib/aws/elb/config.rb +18 -0
  310. data/lib/aws/elb/errors.rb +26 -0
  311. data/lib/aws/elb/instance_collection.rb +168 -0
  312. data/lib/aws/elb/listener.rb +190 -0
  313. data/lib/aws/elb/listener_collection.rb +113 -0
  314. data/lib/aws/elb/listener_opts.rb +45 -0
  315. data/lib/aws/elb/load_balancer.rb +280 -0
  316. data/lib/aws/elb/load_balancer_collection.rb +146 -0
  317. data/lib/aws/elb/load_balancer_policy.rb +93 -0
  318. data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
  319. data/lib/aws/emr.rb +87 -0
  320. data/lib/aws/emr/client.rb +35 -0
  321. data/lib/aws/emr/config.rb +18 -0
  322. data/lib/aws/emr/errors.rb +22 -0
  323. data/lib/aws/emr/instance_group.rb +138 -0
  324. data/lib/aws/emr/instance_group_collection.rb +82 -0
  325. data/lib/aws/emr/job_flow.rb +307 -0
  326. data/lib/aws/emr/job_flow_collection.rb +183 -0
  327. data/lib/aws/errors.rb +162 -0
  328. data/lib/aws/glacier.rb +79 -0
  329. data/lib/aws/glacier/archive.rb +56 -0
  330. data/lib/aws/glacier/archive_collection.rb +146 -0
  331. data/lib/aws/glacier/client.rb +49 -0
  332. data/lib/aws/glacier/config.rb +19 -0
  333. data/lib/aws/glacier/errors.rb +22 -0
  334. data/lib/aws/glacier/resource.rb +30 -0
  335. data/lib/aws/glacier/vault.rb +145 -0
  336. data/lib/aws/glacier/vault_collection.rb +75 -0
  337. data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
  338. data/lib/aws/iam.rb +408 -0
  339. data/lib/aws/iam/access_key.rb +185 -0
  340. data/lib/aws/iam/access_key_collection.rb +128 -0
  341. data/lib/aws/iam/account_alias_collection.rb +79 -0
  342. data/lib/aws/iam/client.rb +49 -0
  343. data/lib/aws/iam/collection.rb +83 -0
  344. data/lib/aws/iam/config.rb +18 -0
  345. data/lib/aws/iam/errors.rb +22 -0
  346. data/lib/aws/iam/group.rb +111 -0
  347. data/lib/aws/iam/group_collection.rb +132 -0
  348. data/lib/aws/iam/group_policy_collection.rb +47 -0
  349. data/lib/aws/iam/group_user_collection.rb +84 -0
  350. data/lib/aws/iam/login_profile.rb +111 -0
  351. data/lib/aws/iam/mfa_device.rb +52 -0
  352. data/lib/aws/iam/mfa_device_collection.rb +127 -0
  353. data/lib/aws/iam/policy.rb +46 -0
  354. data/lib/aws/iam/policy_collection.rb +188 -0
  355. data/lib/aws/iam/resource.rb +62 -0
  356. data/lib/aws/iam/server_certificate.rb +148 -0
  357. data/lib/aws/iam/server_certificate_collection.rb +138 -0
  358. data/lib/aws/iam/signing_certificate.rb +186 -0
  359. data/lib/aws/iam/signing_certificate_collection.rb +131 -0
  360. data/lib/aws/iam/user.rb +200 -0
  361. data/lib/aws/iam/user_collection.rb +133 -0
  362. data/lib/aws/iam/user_group_collection.rb +98 -0
  363. data/lib/aws/iam/user_policy.rb +90 -0
  364. data/lib/aws/iam/user_policy_collection.rb +45 -0
  365. data/lib/aws/iam/virtual_mfa_device.rb +139 -0
  366. data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
  367. data/lib/aws/import_export.rb +73 -0
  368. data/lib/aws/import_export/client.rb +35 -0
  369. data/lib/aws/import_export/config.rb +19 -0
  370. data/lib/aws/import_export/errors.rb +22 -0
  371. data/lib/aws/kinesis.rb +53 -0
  372. data/lib/aws/kinesis/client.rb +35 -0
  373. data/lib/aws/kinesis/config.rb +18 -0
  374. data/lib/aws/kinesis/errors.rb +20 -0
  375. data/lib/aws/ops_works.rb +29 -0
  376. data/lib/aws/ops_works/client.rb +35 -0
  377. data/lib/aws/ops_works/config.rb +18 -0
  378. data/lib/aws/ops_works/errors.rb +20 -0
  379. data/lib/aws/rails.rb +195 -0
  380. data/lib/aws/rds.rb +70 -0
  381. data/lib/aws/rds/client.rb +42 -0
  382. data/lib/aws/rds/config.rb +18 -0
  383. data/lib/aws/rds/db_instance.rb +215 -0
  384. data/lib/aws/rds/db_instance_collection.rb +75 -0
  385. data/lib/aws/rds/db_snapshot.rb +163 -0
  386. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  387. data/lib/aws/rds/errors.rb +22 -0
  388. data/lib/aws/record.rb +139 -0
  389. data/lib/aws/record/abstract_base.rb +689 -0
  390. data/lib/aws/record/attributes.rb +388 -0
  391. data/lib/aws/record/conversion.rb +38 -0
  392. data/lib/aws/record/dirty_tracking.rb +287 -0
  393. data/lib/aws/record/errors.rb +143 -0
  394. data/lib/aws/record/exceptions.rb +51 -0
  395. data/lib/aws/record/hash_model.rb +204 -0
  396. data/lib/aws/record/hash_model/attributes.rb +195 -0
  397. data/lib/aws/record/hash_model/finder_methods.rb +172 -0
  398. data/lib/aws/record/hash_model/scope.rb +108 -0
  399. data/lib/aws/record/model.rb +453 -0
  400. data/lib/aws/record/model/attributes.rb +377 -0
  401. data/lib/aws/record/model/finder_methods.rb +232 -0
  402. data/lib/aws/record/model/scope.rb +212 -0
  403. data/lib/aws/record/naming.rb +31 -0
  404. data/lib/aws/record/scope.rb +203 -0
  405. data/lib/aws/record/validations.rb +694 -0
  406. data/lib/aws/record/validator.rb +246 -0
  407. data/lib/aws/record/validators/acceptance.rb +49 -0
  408. data/lib/aws/record/validators/block.rb +36 -0
  409. data/lib/aws/record/validators/confirmation.rb +41 -0
  410. data/lib/aws/record/validators/count.rb +106 -0
  411. data/lib/aws/record/validators/exclusion.rb +41 -0
  412. data/lib/aws/record/validators/format.rb +55 -0
  413. data/lib/aws/record/validators/inclusion.rb +54 -0
  414. data/lib/aws/record/validators/length.rb +105 -0
  415. data/lib/aws/record/validators/method.rb +31 -0
  416. data/lib/aws/record/validators/numericality.rb +136 -0
  417. data/lib/aws/record/validators/presence.rb +43 -0
  418. data/lib/aws/redshift.rb +51 -0
  419. data/lib/aws/redshift/client.rb +35 -0
  420. data/lib/aws/redshift/config.rb +18 -0
  421. data/lib/aws/redshift/errors.rb +22 -0
  422. data/lib/aws/route_53.rb +86 -0
  423. data/lib/aws/route_53/change_batch.rb +161 -0
  424. data/lib/aws/route_53/change_info.rb +72 -0
  425. data/lib/aws/route_53/client.rb +38 -0
  426. data/lib/aws/route_53/config.rb +18 -0
  427. data/lib/aws/route_53/errors.rb +22 -0
  428. data/lib/aws/route_53/hosted_zone.rb +134 -0
  429. data/lib/aws/route_53/hosted_zone_collection.rb +101 -0
  430. data/lib/aws/route_53/resource_record_set.rb +251 -0
  431. data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
  432. data/lib/aws/s3.rb +156 -0
  433. data/lib/aws/s3/access_control_list.rb +265 -0
  434. data/lib/aws/s3/acl_object.rb +264 -0
  435. data/lib/aws/s3/acl_options.rb +204 -0
  436. data/lib/aws/s3/bucket.rb +742 -0
  437. data/lib/aws/s3/bucket_collection.rb +162 -0
  438. data/lib/aws/s3/bucket_lifecycle_configuration.rb +473 -0
  439. data/lib/aws/s3/bucket_tag_collection.rb +111 -0
  440. data/lib/aws/s3/bucket_version_collection.rb +79 -0
  441. data/lib/aws/s3/cipher_io.rb +120 -0
  442. data/lib/aws/s3/client.rb +2067 -0
  443. data/lib/aws/s3/client/xml.rb +266 -0
  444. data/lib/aws/s3/config.rb +48 -0
  445. data/lib/aws/s3/cors_rule.rb +108 -0
  446. data/lib/aws/s3/cors_rule_collection.rb +194 -0
  447. data/lib/aws/s3/data_options.rb +191 -0
  448. data/lib/aws/s3/encryption_utils.rb +146 -0
  449. data/lib/aws/s3/errors.rb +94 -0
  450. data/lib/aws/s3/multipart_upload.rb +353 -0
  451. data/lib/aws/s3/multipart_upload_collection.rb +76 -0
  452. data/lib/aws/s3/object_collection.rb +353 -0
  453. data/lib/aws/s3/object_metadata.rb +103 -0
  454. data/lib/aws/s3/object_upload_collection.rb +77 -0
  455. data/lib/aws/s3/object_version.rb +154 -0
  456. data/lib/aws/s3/object_version_collection.rb +89 -0
  457. data/lib/aws/s3/paginated_collection.rb +75 -0
  458. data/lib/aws/s3/policy.rb +74 -0
  459. data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
  460. data/lib/aws/s3/prefixed_collection.rb +85 -0
  461. data/lib/aws/s3/presign_v4.rb +136 -0
  462. data/lib/aws/s3/presigned_post.rb +554 -0
  463. data/lib/aws/s3/request.rb +62 -0
  464. data/lib/aws/s3/s3_object.rb +1784 -0
  465. data/lib/aws/s3/tree.rb +116 -0
  466. data/lib/aws/s3/tree/branch_node.rb +68 -0
  467. data/lib/aws/s3/tree/child_collection.rb +104 -0
  468. data/lib/aws/s3/tree/leaf_node.rb +94 -0
  469. data/lib/aws/s3/tree/node.rb +22 -0
  470. data/lib/aws/s3/tree/parent.rb +87 -0
  471. data/lib/aws/s3/uploaded_part.rb +82 -0
  472. data/lib/aws/s3/uploaded_part_collection.rb +84 -0
  473. data/lib/aws/s3/website_configuration.rb +102 -0
  474. data/lib/aws/simple_db.rb +218 -0
  475. data/lib/aws/simple_db/attribute.rb +156 -0
  476. data/lib/aws/simple_db/attribute_collection.rb +240 -0
  477. data/lib/aws/simple_db/client.rb +67 -0
  478. data/lib/aws/simple_db/config.rb +20 -0
  479. data/lib/aws/simple_db/consistent_read_option.rb +42 -0
  480. data/lib/aws/simple_db/delete_attributes.rb +62 -0
  481. data/lib/aws/simple_db/domain.rb +123 -0
  482. data/lib/aws/simple_db/domain_collection.rb +86 -0
  483. data/lib/aws/simple_db/domain_metadata.rb +110 -0
  484. data/lib/aws/simple_db/errors.rb +55 -0
  485. data/lib/aws/simple_db/expect_condition_option.rb +45 -0
  486. data/lib/aws/simple_db/item.rb +93 -0
  487. data/lib/aws/simple_db/item_collection.rb +654 -0
  488. data/lib/aws/simple_db/item_data.rb +73 -0
  489. data/lib/aws/simple_db/put_attributes.rb +60 -0
  490. data/lib/aws/simple_email_service.rb +443 -0
  491. data/lib/aws/simple_email_service/client.rb +37 -0
  492. data/lib/aws/simple_email_service/config.rb +18 -0
  493. data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
  494. data/lib/aws/simple_email_service/errors.rb +22 -0
  495. data/lib/aws/simple_email_service/identity.rb +230 -0
  496. data/lib/aws/simple_email_service/identity_collection.rb +81 -0
  497. data/lib/aws/simple_email_service/quotas.rb +66 -0
  498. data/lib/aws/simple_workflow.rb +227 -0
  499. data/lib/aws/simple_workflow/activity_task.rb +178 -0
  500. data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
  501. data/lib/aws/simple_workflow/activity_type.rb +131 -0
  502. data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
  503. data/lib/aws/simple_workflow/client.rb +69 -0
  504. data/lib/aws/simple_workflow/config.rb +18 -0
  505. data/lib/aws/simple_workflow/count.rb +49 -0
  506. data/lib/aws/simple_workflow/decision_task.rb +603 -0
  507. data/lib/aws/simple_workflow/decision_task_collection.rb +223 -0
  508. data/lib/aws/simple_workflow/domain.rb +122 -0
  509. data/lib/aws/simple_workflow/domain_collection.rb +169 -0
  510. data/lib/aws/simple_workflow/errors.rb +20 -0
  511. data/lib/aws/simple_workflow/history_event.rb +276 -0
  512. data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
  513. data/lib/aws/simple_workflow/option_formatters.rb +82 -0
  514. data/lib/aws/simple_workflow/resource.rb +94 -0
  515. data/lib/aws/simple_workflow/type.rb +89 -0
  516. data/lib/aws/simple_workflow/type_collection.rb +140 -0
  517. data/lib/aws/simple_workflow/workflow_execution.rb +384 -0
  518. data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
  519. data/lib/aws/simple_workflow/workflow_type.rb +177 -0
  520. data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
  521. data/lib/aws/sns.rb +76 -0
  522. data/lib/aws/sns/client.rb +35 -0
  523. data/lib/aws/sns/config.rb +18 -0
  524. data/lib/aws/sns/errors.rb +22 -0
  525. data/lib/aws/sns/has_delivery_policy.rb +68 -0
  526. data/lib/aws/sns/message.rb +204 -0
  527. data/lib/aws/sns/originators/from_auto_scaling.rb +68 -0
  528. data/lib/aws/sns/policy.rb +47 -0
  529. data/lib/aws/sns/subscription.rb +165 -0
  530. data/lib/aws/sns/subscription_collection.rb +78 -0
  531. data/lib/aws/sns/topic.rb +403 -0
  532. data/lib/aws/sns/topic_collection.rb +62 -0
  533. data/lib/aws/sns/topic_subscription_collection.rb +54 -0
  534. data/lib/aws/sqs.rb +80 -0
  535. data/lib/aws/sqs/client.rb +53 -0
  536. data/lib/aws/sqs/config.rb +20 -0
  537. data/lib/aws/sqs/errors.rb +125 -0
  538. data/lib/aws/sqs/policy.rb +48 -0
  539. data/lib/aws/sqs/queue.rb +856 -0
  540. data/lib/aws/sqs/queue_collection.rb +186 -0
  541. data/lib/aws/sqs/received_message.rb +190 -0
  542. data/lib/aws/sqs/received_sns_message.rb +116 -0
  543. data/lib/aws/storage_gateway.rb +72 -0
  544. data/lib/aws/storage_gateway/client.rb +42 -0
  545. data/lib/aws/storage_gateway/config.rb +18 -0
  546. data/lib/aws/storage_gateway/errors.rb +22 -0
  547. data/lib/aws/sts.rb +164 -0
  548. data/lib/aws/sts/client.rb +55 -0
  549. data/lib/aws/sts/config.rb +18 -0
  550. data/lib/aws/sts/errors.rb +22 -0
  551. data/lib/aws/sts/federated_session.rb +56 -0
  552. data/lib/aws/sts/policy.rb +30 -0
  553. data/lib/aws/sts/session.rb +48 -0
  554. data/lib/aws/support.rb +29 -0
  555. data/lib/aws/support/client.rb +35 -0
  556. data/lib/aws/support/config.rb +18 -0
  557. data/lib/aws/support/errors.rb +20 -0
  558. data/lib/aws/version.rb +17 -0
  559. data/rails/init.rb +15 -0
  560. metadata +634 -0
@@ -0,0 +1,346 @@
1
+ # Copyright 2011-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2010-12-01'
16
+ :operations:
17
+ - :name: DeleteIdentity
18
+ :method: :delete_identity
19
+ :inputs:
20
+ Identity:
21
+ - :string
22
+ - :required
23
+ :outputs:
24
+ :children:
25
+ DeleteIdentityResult:
26
+ :ignore: true
27
+ - :name: DeleteVerifiedEmailAddress
28
+ :method: :delete_verified_email_address
29
+ :inputs:
30
+ EmailAddress:
31
+ - :string
32
+ - :required
33
+ :outputs:
34
+ :children:
35
+ DeleteVerifiedEmailAddressResult:
36
+ :ignore: true
37
+ - :name: GetIdentityDkimAttributes
38
+ :method: :get_identity_dkim_attributes
39
+ :inputs:
40
+ Identities:
41
+ - :membered_list:
42
+ - :string
43
+ - :required
44
+ :outputs:
45
+ :children:
46
+ GetIdentityDkimAttributesResult:
47
+ :ignore: true
48
+ :children:
49
+ DkimAttributes:
50
+ :ignore: true
51
+ :children:
52
+ entry:
53
+ :rename: :dkim_attributes
54
+ :map:
55
+ - key
56
+ - value
57
+ :children:
58
+ value:
59
+ :children:
60
+ DkimEnabled:
61
+ :type: :boolean
62
+ DkimTokens:
63
+ :ignore: true
64
+ :children:
65
+ member:
66
+ :rename: :dkim_tokens
67
+ :list: true
68
+ - :name: GetIdentityNotificationAttributes
69
+ :method: :get_identity_notification_attributes
70
+ :inputs:
71
+ Identities:
72
+ - :membered_list:
73
+ - :string
74
+ - :required
75
+ :outputs:
76
+ :children:
77
+ GetIdentityNotificationAttributesResult:
78
+ :ignore: true
79
+ :children:
80
+ NotificationAttributes:
81
+ :ignore: true
82
+ :children:
83
+ entry:
84
+ :rename: :notification_attributes
85
+ :map:
86
+ - key
87
+ - value
88
+ :children:
89
+ value:
90
+ :children:
91
+ ForwardingEnabled:
92
+ :type: :boolean
93
+ - :name: GetIdentityVerificationAttributes
94
+ :method: :get_identity_verification_attributes
95
+ :inputs:
96
+ Identities:
97
+ - :membered_list:
98
+ - :string
99
+ - :required
100
+ :outputs:
101
+ :children:
102
+ GetIdentityVerificationAttributesResult:
103
+ :ignore: true
104
+ :children:
105
+ VerificationAttributes:
106
+ :ignore: true
107
+ :children:
108
+ entry:
109
+ :rename: :verification_attributes
110
+ :map:
111
+ - key
112
+ - value
113
+ - :name: GetSendQuota
114
+ :method: :get_send_quota
115
+ :inputs: {}
116
+ :outputs:
117
+ :children:
118
+ GetSendQuotaResult:
119
+ :ignore: true
120
+ :children:
121
+ Max24HourSend:
122
+ :type: :float
123
+ MaxSendRate:
124
+ :type: :float
125
+ SentLast24Hours:
126
+ :type: :float
127
+ - :name: GetSendStatistics
128
+ :method: :get_send_statistics
129
+ :inputs: {}
130
+ :outputs:
131
+ :children:
132
+ GetSendStatisticsResult:
133
+ :ignore: true
134
+ :children:
135
+ SendDataPoints:
136
+ :ignore: true
137
+ :children:
138
+ member:
139
+ :rename: :send_data_points
140
+ :list: true
141
+ :children:
142
+ Timestamp:
143
+ :type: :time
144
+ DeliveryAttempts:
145
+ :type: :integer
146
+ Bounces:
147
+ :type: :integer
148
+ Complaints:
149
+ :type: :integer
150
+ Rejects:
151
+ :type: :integer
152
+ - :name: ListIdentities
153
+ :method: :list_identities
154
+ :inputs:
155
+ IdentityType:
156
+ - :string
157
+ NextToken:
158
+ - :string
159
+ MaxItems:
160
+ - :integer
161
+ :outputs:
162
+ :children:
163
+ ListIdentitiesResult:
164
+ :ignore: true
165
+ :children:
166
+ Identities:
167
+ :ignore: true
168
+ :children:
169
+ member:
170
+ :rename: :identities
171
+ :list: true
172
+ - :name: ListVerifiedEmailAddresses
173
+ :method: :list_verified_email_addresses
174
+ :inputs: {}
175
+ :outputs:
176
+ :children:
177
+ ListVerifiedEmailAddressesResult:
178
+ :ignore: true
179
+ :children:
180
+ VerifiedEmailAddresses:
181
+ :ignore: true
182
+ :children:
183
+ member:
184
+ :rename: :verified_email_addresses
185
+ :list: true
186
+ - :name: SendEmail
187
+ :method: :send_email
188
+ :inputs:
189
+ Source:
190
+ - :string
191
+ - :required
192
+ Destination:
193
+ - :structure:
194
+ ToAddresses:
195
+ - :membered_list:
196
+ - :string
197
+ CcAddresses:
198
+ - :membered_list:
199
+ - :string
200
+ BccAddresses:
201
+ - :membered_list:
202
+ - :string
203
+ - :required
204
+ Message:
205
+ - :structure:
206
+ Subject:
207
+ - :structure:
208
+ Data:
209
+ - :string
210
+ - :required
211
+ Charset:
212
+ - :string
213
+ - :required
214
+ Body:
215
+ - :structure:
216
+ Text:
217
+ - :structure:
218
+ Data:
219
+ - :string
220
+ - :required
221
+ Charset:
222
+ - :string
223
+ Html:
224
+ - :structure:
225
+ Data:
226
+ - :string
227
+ - :required
228
+ Charset:
229
+ - :string
230
+ - :required
231
+ - :required
232
+ ReplyToAddresses:
233
+ - :membered_list:
234
+ - :string
235
+ ReturnPath:
236
+ - :string
237
+ :outputs:
238
+ :children:
239
+ SendEmailResult:
240
+ :ignore: true
241
+ - :name: SendRawEmail
242
+ :method: :send_raw_email
243
+ :inputs:
244
+ Source:
245
+ - :string
246
+ Destinations:
247
+ - :membered_list:
248
+ - :string
249
+ RawMessage:
250
+ - :structure:
251
+ Data:
252
+ - :blob
253
+ - :required
254
+ - :required
255
+ :outputs:
256
+ :children:
257
+ SendRawEmailResult:
258
+ :ignore: true
259
+ - :name: SetIdentityDkimEnabled
260
+ :method: :set_identity_dkim_enabled
261
+ :inputs:
262
+ Identity:
263
+ - :string
264
+ - :required
265
+ DkimEnabled:
266
+ - :boolean
267
+ - :required
268
+ :outputs:
269
+ :children:
270
+ SetIdentityDkimEnabledResult:
271
+ :ignore: true
272
+ - :name: SetIdentityFeedbackForwardingEnabled
273
+ :method: :set_identity_feedback_forwarding_enabled
274
+ :inputs:
275
+ Identity:
276
+ - :string
277
+ - :required
278
+ ForwardingEnabled:
279
+ - :boolean
280
+ - :required
281
+ :outputs:
282
+ :children:
283
+ SetIdentityFeedbackForwardingEnabledResult:
284
+ :ignore: true
285
+ - :name: SetIdentityNotificationTopic
286
+ :method: :set_identity_notification_topic
287
+ :inputs:
288
+ Identity:
289
+ - :string
290
+ - :required
291
+ NotificationType:
292
+ - :string
293
+ - :required
294
+ SnsTopic:
295
+ - :string
296
+ :outputs:
297
+ :children:
298
+ SetIdentityNotificationTopicResult:
299
+ :ignore: true
300
+ - :name: VerifyDomainDkim
301
+ :method: :verify_domain_dkim
302
+ :inputs:
303
+ Domain:
304
+ - :string
305
+ - :required
306
+ :outputs:
307
+ :children:
308
+ VerifyDomainDkimResult:
309
+ :ignore: true
310
+ :children:
311
+ DkimTokens:
312
+ :ignore: true
313
+ :children:
314
+ member:
315
+ :rename: :dkim_tokens
316
+ :list: true
317
+ - :name: VerifyDomainIdentity
318
+ :method: :verify_domain_identity
319
+ :inputs:
320
+ Domain:
321
+ - :string
322
+ - :required
323
+ :outputs:
324
+ :children:
325
+ VerifyDomainIdentityResult:
326
+ :ignore: true
327
+ - :name: VerifyEmailAddress
328
+ :method: :verify_email_address
329
+ :inputs:
330
+ EmailAddress:
331
+ - :string
332
+ - :required
333
+ :outputs:
334
+ :children:
335
+ VerifyEmailAddressResult:
336
+ :ignore: true
337
+ - :name: VerifyEmailIdentity
338
+ :method: :verify_email_identity
339
+ :inputs:
340
+ EmailAddress:
341
+ - :string
342
+ - :required
343
+ :outputs:
344
+ :children:
345
+ VerifyEmailIdentityResult:
346
+ :ignore: true
@@ -0,0 +1,2388 @@
1
+ # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :target_prefix: SimpleWorkflowService.
16
+ :api_version: '2012-01-25'
17
+ :operations:
18
+ - :name: CountClosedWorkflowExecutions
19
+ :method: :count_closed_workflow_executions
20
+ :inputs:
21
+ domain:
22
+ - :string
23
+ - :required
24
+ startTimeFilter:
25
+ - :structure:
26
+ oldestDate:
27
+ - :timestamp
28
+ - :required
29
+ latestDate:
30
+ - :timestamp
31
+ closeTimeFilter:
32
+ - :structure:
33
+ oldestDate:
34
+ - :timestamp
35
+ - :required
36
+ latestDate:
37
+ - :timestamp
38
+ executionFilter:
39
+ - :structure:
40
+ workflowId:
41
+ - :string
42
+ - :required
43
+ typeFilter:
44
+ - :structure:
45
+ name:
46
+ - :string
47
+ - :required
48
+ version:
49
+ - :string
50
+ tagFilter:
51
+ - :structure:
52
+ tag:
53
+ - :string
54
+ - :required
55
+ closeStatusFilter:
56
+ - :structure:
57
+ status:
58
+ - :string
59
+ - :required
60
+ :outputs:
61
+ count:
62
+ :type: :integer
63
+ truncated:
64
+ :type: :boolean
65
+ - :name: CountOpenWorkflowExecutions
66
+ :method: :count_open_workflow_executions
67
+ :inputs:
68
+ domain:
69
+ - :string
70
+ - :required
71
+ startTimeFilter:
72
+ - :structure:
73
+ oldestDate:
74
+ - :timestamp
75
+ - :required
76
+ latestDate:
77
+ - :timestamp
78
+ - :required
79
+ typeFilter:
80
+ - :structure:
81
+ name:
82
+ - :string
83
+ - :required
84
+ version:
85
+ - :string
86
+ tagFilter:
87
+ - :structure:
88
+ tag:
89
+ - :string
90
+ - :required
91
+ executionFilter:
92
+ - :structure:
93
+ workflowId:
94
+ - :string
95
+ - :required
96
+ :outputs:
97
+ count:
98
+ :type: :integer
99
+ truncated:
100
+ :type: :boolean
101
+ - :name: CountPendingActivityTasks
102
+ :method: :count_pending_activity_tasks
103
+ :inputs:
104
+ domain:
105
+ - :string
106
+ - :required
107
+ taskList:
108
+ - :structure:
109
+ name:
110
+ - :string
111
+ - :required
112
+ - :required
113
+ :outputs:
114
+ count:
115
+ :type: :integer
116
+ truncated:
117
+ :type: :boolean
118
+ - :name: CountPendingDecisionTasks
119
+ :method: :count_pending_decision_tasks
120
+ :inputs:
121
+ domain:
122
+ - :string
123
+ - :required
124
+ taskList:
125
+ - :structure:
126
+ name:
127
+ - :string
128
+ - :required
129
+ - :required
130
+ :outputs:
131
+ count:
132
+ :type: :integer
133
+ truncated:
134
+ :type: :boolean
135
+ - :name: DeprecateActivityType
136
+ :method: :deprecate_activity_type
137
+ :inputs:
138
+ domain:
139
+ - :string
140
+ - :required
141
+ activityType:
142
+ - :structure:
143
+ name:
144
+ - :string
145
+ - :required
146
+ version:
147
+ - :string
148
+ - :required
149
+ - :required
150
+ :outputs: {}
151
+ - :name: DeprecateDomain
152
+ :method: :deprecate_domain
153
+ :inputs:
154
+ name:
155
+ - :string
156
+ - :required
157
+ :outputs: {}
158
+ - :name: DeprecateWorkflowType
159
+ :method: :deprecate_workflow_type
160
+ :inputs:
161
+ domain:
162
+ - :string
163
+ - :required
164
+ workflowType:
165
+ - :structure:
166
+ name:
167
+ - :string
168
+ - :required
169
+ version:
170
+ - :string
171
+ - :required
172
+ - :required
173
+ :outputs: {}
174
+ - :name: DescribeActivityType
175
+ :method: :describe_activity_type
176
+ :inputs:
177
+ domain:
178
+ - :string
179
+ - :required
180
+ activityType:
181
+ - :structure:
182
+ name:
183
+ - :string
184
+ - :required
185
+ version:
186
+ - :string
187
+ - :required
188
+ - :required
189
+ :outputs:
190
+ typeInfo:
191
+ :type: :hash
192
+ :members:
193
+ activityType:
194
+ :type: :hash
195
+ :members:
196
+ name:
197
+ :type: :string
198
+ version:
199
+ :type: :string
200
+ status:
201
+ :type: :string
202
+ description:
203
+ :type: :string
204
+ creationDate:
205
+ :type: :time
206
+ deprecationDate:
207
+ :type: :time
208
+ configuration:
209
+ :type: :hash
210
+ :members:
211
+ defaultTaskStartToCloseTimeout:
212
+ :type: :string
213
+ defaultTaskHeartbeatTimeout:
214
+ :type: :string
215
+ defaultTaskList:
216
+ :type: :hash
217
+ :members:
218
+ name:
219
+ :type: :string
220
+ defaultTaskScheduleToStartTimeout:
221
+ :type: :string
222
+ defaultTaskScheduleToCloseTimeout:
223
+ :type: :string
224
+ - :name: DescribeDomain
225
+ :method: :describe_domain
226
+ :inputs:
227
+ name:
228
+ - :string
229
+ - :required
230
+ :outputs:
231
+ domainInfo:
232
+ :type: :hash
233
+ :members:
234
+ name:
235
+ :type: :string
236
+ status:
237
+ :type: :string
238
+ description:
239
+ :type: :string
240
+ configuration:
241
+ :type: :hash
242
+ :members:
243
+ workflowExecutionRetentionPeriodInDays:
244
+ :type: :string
245
+ - :name: DescribeWorkflowExecution
246
+ :method: :describe_workflow_execution
247
+ :inputs:
248
+ domain:
249
+ - :string
250
+ - :required
251
+ execution:
252
+ - :structure:
253
+ workflowId:
254
+ - :string
255
+ - :required
256
+ runId:
257
+ - :string
258
+ - :required
259
+ - :required
260
+ :outputs:
261
+ executionInfo:
262
+ :type: :hash
263
+ :members:
264
+ execution:
265
+ :type: :hash
266
+ :members:
267
+ workflowId:
268
+ :type: :string
269
+ runId:
270
+ :type: :string
271
+ workflowType:
272
+ :type: :hash
273
+ :members:
274
+ name:
275
+ :type: :string
276
+ version:
277
+ :type: :string
278
+ startTimestamp:
279
+ :type: :time
280
+ closeTimestamp:
281
+ :type: :time
282
+ executionStatus:
283
+ :type: :string
284
+ closeStatus:
285
+ :type: :string
286
+ parent:
287
+ :type: :hash
288
+ :members:
289
+ workflowId:
290
+ :type: :string
291
+ runId:
292
+ :type: :string
293
+ tagList:
294
+ :type: :string
295
+ cancelRequested:
296
+ :type: :boolean
297
+ executionConfiguration:
298
+ :type: :hash
299
+ :members:
300
+ taskStartToCloseTimeout:
301
+ :type: :string
302
+ executionStartToCloseTimeout:
303
+ :type: :string
304
+ taskList:
305
+ :type: :hash
306
+ :members:
307
+ name:
308
+ :type: :string
309
+ childPolicy:
310
+ :type: :string
311
+ openCounts:
312
+ :type: :hash
313
+ :members:
314
+ openActivityTasks:
315
+ :type: :integer
316
+ openDecisionTasks:
317
+ :type: :integer
318
+ openTimers:
319
+ :type: :integer
320
+ openChildWorkflowExecutions:
321
+ :type: :integer
322
+ latestActivityTaskTimestamp:
323
+ :type: :time
324
+ latestExecutionContext:
325
+ :type: :string
326
+ - :name: DescribeWorkflowType
327
+ :method: :describe_workflow_type
328
+ :inputs:
329
+ domain:
330
+ - :string
331
+ - :required
332
+ workflowType:
333
+ - :structure:
334
+ name:
335
+ - :string
336
+ - :required
337
+ version:
338
+ - :string
339
+ - :required
340
+ - :required
341
+ :outputs:
342
+ typeInfo:
343
+ :type: :hash
344
+ :members:
345
+ workflowType:
346
+ :type: :hash
347
+ :members:
348
+ name:
349
+ :type: :string
350
+ version:
351
+ :type: :string
352
+ status:
353
+ :type: :string
354
+ description:
355
+ :type: :string
356
+ creationDate:
357
+ :type: :time
358
+ deprecationDate:
359
+ :type: :time
360
+ configuration:
361
+ :type: :hash
362
+ :members:
363
+ defaultTaskStartToCloseTimeout:
364
+ :type: :string
365
+ defaultExecutionStartToCloseTimeout:
366
+ :type: :string
367
+ defaultTaskList:
368
+ :type: :hash
369
+ :members:
370
+ name:
371
+ :type: :string
372
+ defaultChildPolicy:
373
+ :type: :string
374
+ - :name: GetWorkflowExecutionHistory
375
+ :method: :get_workflow_execution_history
376
+ :inputs:
377
+ domain:
378
+ - :string
379
+ - :required
380
+ execution:
381
+ - :structure:
382
+ workflowId:
383
+ - :string
384
+ - :required
385
+ runId:
386
+ - :string
387
+ - :required
388
+ - :required
389
+ nextPageToken:
390
+ - :string
391
+ maximumPageSize:
392
+ - :integer
393
+ reverseOrder:
394
+ - :boolean
395
+ :outputs:
396
+ events:
397
+ :type: :hash
398
+ :members:
399
+ eventTimestamp:
400
+ :type: :time
401
+ eventType:
402
+ :type: :string
403
+ eventId:
404
+ :type: :integer
405
+ workflowExecutionStartedEventAttributes:
406
+ :type: :hash
407
+ :members:
408
+ input:
409
+ :type: :string
410
+ executionStartToCloseTimeout:
411
+ :type: :string
412
+ taskStartToCloseTimeout:
413
+ :type: :string
414
+ childPolicy:
415
+ :type: :string
416
+ taskList:
417
+ :type: :hash
418
+ :members:
419
+ name:
420
+ :type: :string
421
+ workflowType:
422
+ :type: :hash
423
+ :members:
424
+ name:
425
+ :type: :string
426
+ version:
427
+ :type: :string
428
+ tagList:
429
+ :type: :string
430
+ continuedExecutionRunId:
431
+ :type: :string
432
+ parentWorkflowExecution:
433
+ :type: :hash
434
+ :members:
435
+ workflowId:
436
+ :type: :string
437
+ runId:
438
+ :type: :string
439
+ parentInitiatedEventId:
440
+ :type: :integer
441
+ workflowExecutionCompletedEventAttributes:
442
+ :type: :hash
443
+ :members:
444
+ result:
445
+ :type: :string
446
+ decisionTaskCompletedEventId:
447
+ :type: :integer
448
+ completeWorkflowExecutionFailedEventAttributes:
449
+ :type: :hash
450
+ :members:
451
+ cause:
452
+ :type: :string
453
+ decisionTaskCompletedEventId:
454
+ :type: :integer
455
+ workflowExecutionFailedEventAttributes:
456
+ :type: :hash
457
+ :members:
458
+ reason:
459
+ :type: :string
460
+ details:
461
+ :type: :string
462
+ decisionTaskCompletedEventId:
463
+ :type: :integer
464
+ failWorkflowExecutionFailedEventAttributes:
465
+ :type: :hash
466
+ :members:
467
+ cause:
468
+ :type: :string
469
+ decisionTaskCompletedEventId:
470
+ :type: :integer
471
+ workflowExecutionTimedOutEventAttributes:
472
+ :type: :hash
473
+ :members:
474
+ timeoutType:
475
+ :type: :string
476
+ childPolicy:
477
+ :type: :string
478
+ workflowExecutionCanceledEventAttributes:
479
+ :type: :hash
480
+ :members:
481
+ details:
482
+ :type: :string
483
+ decisionTaskCompletedEventId:
484
+ :type: :integer
485
+ cancelWorkflowExecutionFailedEventAttributes:
486
+ :type: :hash
487
+ :members:
488
+ cause:
489
+ :type: :string
490
+ decisionTaskCompletedEventId:
491
+ :type: :integer
492
+ workflowExecutionContinuedAsNewEventAttributes:
493
+ :type: :hash
494
+ :members:
495
+ input:
496
+ :type: :string
497
+ decisionTaskCompletedEventId:
498
+ :type: :integer
499
+ newExecutionRunId:
500
+ :type: :string
501
+ executionStartToCloseTimeout:
502
+ :type: :string
503
+ taskList:
504
+ :type: :hash
505
+ :members:
506
+ name:
507
+ :type: :string
508
+ taskStartToCloseTimeout:
509
+ :type: :string
510
+ childPolicy:
511
+ :type: :string
512
+ tagList:
513
+ :type: :string
514
+ workflowType:
515
+ :type: :hash
516
+ :members:
517
+ name:
518
+ :type: :string
519
+ version:
520
+ :type: :string
521
+ continueAsNewWorkflowExecutionFailedEventAttributes:
522
+ :type: :hash
523
+ :members:
524
+ cause:
525
+ :type: :string
526
+ decisionTaskCompletedEventId:
527
+ :type: :integer
528
+ workflowExecutionTerminatedEventAttributes:
529
+ :type: :hash
530
+ :members:
531
+ reason:
532
+ :type: :string
533
+ details:
534
+ :type: :string
535
+ childPolicy:
536
+ :type: :string
537
+ cause:
538
+ :type: :string
539
+ workflowExecutionCancelRequestedEventAttributes:
540
+ :type: :hash
541
+ :members:
542
+ externalWorkflowExecution:
543
+ :type: :hash
544
+ :members:
545
+ workflowId:
546
+ :type: :string
547
+ runId:
548
+ :type: :string
549
+ externalInitiatedEventId:
550
+ :type: :integer
551
+ cause:
552
+ :type: :string
553
+ decisionTaskScheduledEventAttributes:
554
+ :type: :hash
555
+ :members:
556
+ taskList:
557
+ :type: :hash
558
+ :members:
559
+ name:
560
+ :type: :string
561
+ startToCloseTimeout:
562
+ :type: :string
563
+ decisionTaskStartedEventAttributes:
564
+ :type: :hash
565
+ :members:
566
+ identity:
567
+ :type: :string
568
+ scheduledEventId:
569
+ :type: :integer
570
+ decisionTaskCompletedEventAttributes:
571
+ :type: :hash
572
+ :members:
573
+ executionContext:
574
+ :type: :string
575
+ scheduledEventId:
576
+ :type: :integer
577
+ startedEventId:
578
+ :type: :integer
579
+ decisionTaskTimedOutEventAttributes:
580
+ :type: :hash
581
+ :members:
582
+ timeoutType:
583
+ :type: :string
584
+ scheduledEventId:
585
+ :type: :integer
586
+ startedEventId:
587
+ :type: :integer
588
+ activityTaskScheduledEventAttributes:
589
+ :type: :hash
590
+ :members:
591
+ activityType:
592
+ :type: :hash
593
+ :members:
594
+ name:
595
+ :type: :string
596
+ version:
597
+ :type: :string
598
+ activityId:
599
+ :type: :string
600
+ input:
601
+ :type: :string
602
+ control:
603
+ :type: :string
604
+ scheduleToStartTimeout:
605
+ :type: :string
606
+ scheduleToCloseTimeout:
607
+ :type: :string
608
+ startToCloseTimeout:
609
+ :type: :string
610
+ taskList:
611
+ :type: :hash
612
+ :members:
613
+ name:
614
+ :type: :string
615
+ decisionTaskCompletedEventId:
616
+ :type: :integer
617
+ heartbeatTimeout:
618
+ :type: :string
619
+ activityTaskStartedEventAttributes:
620
+ :type: :hash
621
+ :members:
622
+ identity:
623
+ :type: :string
624
+ scheduledEventId:
625
+ :type: :integer
626
+ activityTaskCompletedEventAttributes:
627
+ :type: :hash
628
+ :members:
629
+ result:
630
+ :type: :string
631
+ scheduledEventId:
632
+ :type: :integer
633
+ startedEventId:
634
+ :type: :integer
635
+ activityTaskFailedEventAttributes:
636
+ :type: :hash
637
+ :members:
638
+ reason:
639
+ :type: :string
640
+ details:
641
+ :type: :string
642
+ scheduledEventId:
643
+ :type: :integer
644
+ startedEventId:
645
+ :type: :integer
646
+ activityTaskTimedOutEventAttributes:
647
+ :type: :hash
648
+ :members:
649
+ timeoutType:
650
+ :type: :string
651
+ scheduledEventId:
652
+ :type: :integer
653
+ startedEventId:
654
+ :type: :integer
655
+ details:
656
+ :type: :string
657
+ activityTaskCanceledEventAttributes:
658
+ :type: :hash
659
+ :members:
660
+ details:
661
+ :type: :string
662
+ scheduledEventId:
663
+ :type: :integer
664
+ startedEventId:
665
+ :type: :integer
666
+ latestCancelRequestedEventId:
667
+ :type: :integer
668
+ activityTaskCancelRequestedEventAttributes:
669
+ :type: :hash
670
+ :members:
671
+ decisionTaskCompletedEventId:
672
+ :type: :integer
673
+ activityId:
674
+ :type: :string
675
+ workflowExecutionSignaledEventAttributes:
676
+ :type: :hash
677
+ :members:
678
+ signalName:
679
+ :type: :string
680
+ input:
681
+ :type: :string
682
+ externalWorkflowExecution:
683
+ :type: :hash
684
+ :members:
685
+ workflowId:
686
+ :type: :string
687
+ runId:
688
+ :type: :string
689
+ externalInitiatedEventId:
690
+ :type: :integer
691
+ markerRecordedEventAttributes:
692
+ :type: :hash
693
+ :members:
694
+ markerName:
695
+ :type: :string
696
+ details:
697
+ :type: :string
698
+ decisionTaskCompletedEventId:
699
+ :type: :integer
700
+ recordMarkerFailedEventAttributes:
701
+ :type: :hash
702
+ :members:
703
+ markerName:
704
+ :type: :string
705
+ cause:
706
+ :type: :string
707
+ decisionTaskCompletedEventId:
708
+ :type: :integer
709
+ timerStartedEventAttributes:
710
+ :type: :hash
711
+ :members:
712
+ timerId:
713
+ :type: :string
714
+ control:
715
+ :type: :string
716
+ startToFireTimeout:
717
+ :type: :string
718
+ decisionTaskCompletedEventId:
719
+ :type: :integer
720
+ timerFiredEventAttributes:
721
+ :type: :hash
722
+ :members:
723
+ timerId:
724
+ :type: :string
725
+ startedEventId:
726
+ :type: :integer
727
+ timerCanceledEventAttributes:
728
+ :type: :hash
729
+ :members:
730
+ timerId:
731
+ :type: :string
732
+ startedEventId:
733
+ :type: :integer
734
+ decisionTaskCompletedEventId:
735
+ :type: :integer
736
+ startChildWorkflowExecutionInitiatedEventAttributes:
737
+ :type: :hash
738
+ :members:
739
+ workflowId:
740
+ :type: :string
741
+ workflowType:
742
+ :type: :hash
743
+ :members:
744
+ name:
745
+ :type: :string
746
+ version:
747
+ :type: :string
748
+ control:
749
+ :type: :string
750
+ input:
751
+ :type: :string
752
+ executionStartToCloseTimeout:
753
+ :type: :string
754
+ taskList:
755
+ :type: :hash
756
+ :members:
757
+ name:
758
+ :type: :string
759
+ decisionTaskCompletedEventId:
760
+ :type: :integer
761
+ childPolicy:
762
+ :type: :string
763
+ taskStartToCloseTimeout:
764
+ :type: :string
765
+ tagList:
766
+ :type: :string
767
+ childWorkflowExecutionStartedEventAttributes:
768
+ :type: :hash
769
+ :members:
770
+ workflowExecution:
771
+ :type: :hash
772
+ :members:
773
+ workflowId:
774
+ :type: :string
775
+ runId:
776
+ :type: :string
777
+ workflowType:
778
+ :type: :hash
779
+ :members:
780
+ name:
781
+ :type: :string
782
+ version:
783
+ :type: :string
784
+ initiatedEventId:
785
+ :type: :integer
786
+ childWorkflowExecutionCompletedEventAttributes:
787
+ :type: :hash
788
+ :members:
789
+ workflowExecution:
790
+ :type: :hash
791
+ :members:
792
+ workflowId:
793
+ :type: :string
794
+ runId:
795
+ :type: :string
796
+ workflowType:
797
+ :type: :hash
798
+ :members:
799
+ name:
800
+ :type: :string
801
+ version:
802
+ :type: :string
803
+ result:
804
+ :type: :string
805
+ initiatedEventId:
806
+ :type: :integer
807
+ startedEventId:
808
+ :type: :integer
809
+ childWorkflowExecutionFailedEventAttributes:
810
+ :type: :hash
811
+ :members:
812
+ workflowExecution:
813
+ :type: :hash
814
+ :members:
815
+ workflowId:
816
+ :type: :string
817
+ runId:
818
+ :type: :string
819
+ workflowType:
820
+ :type: :hash
821
+ :members:
822
+ name:
823
+ :type: :string
824
+ version:
825
+ :type: :string
826
+ reason:
827
+ :type: :string
828
+ details:
829
+ :type: :string
830
+ initiatedEventId:
831
+ :type: :integer
832
+ startedEventId:
833
+ :type: :integer
834
+ childWorkflowExecutionTimedOutEventAttributes:
835
+ :type: :hash
836
+ :members:
837
+ workflowExecution:
838
+ :type: :hash
839
+ :members:
840
+ workflowId:
841
+ :type: :string
842
+ runId:
843
+ :type: :string
844
+ workflowType:
845
+ :type: :hash
846
+ :members:
847
+ name:
848
+ :type: :string
849
+ version:
850
+ :type: :string
851
+ timeoutType:
852
+ :type: :string
853
+ initiatedEventId:
854
+ :type: :integer
855
+ startedEventId:
856
+ :type: :integer
857
+ childWorkflowExecutionCanceledEventAttributes:
858
+ :type: :hash
859
+ :members:
860
+ workflowExecution:
861
+ :type: :hash
862
+ :members:
863
+ workflowId:
864
+ :type: :string
865
+ runId:
866
+ :type: :string
867
+ workflowType:
868
+ :type: :hash
869
+ :members:
870
+ name:
871
+ :type: :string
872
+ version:
873
+ :type: :string
874
+ details:
875
+ :type: :string
876
+ initiatedEventId:
877
+ :type: :integer
878
+ startedEventId:
879
+ :type: :integer
880
+ childWorkflowExecutionTerminatedEventAttributes:
881
+ :type: :hash
882
+ :members:
883
+ workflowExecution:
884
+ :type: :hash
885
+ :members:
886
+ workflowId:
887
+ :type: :string
888
+ runId:
889
+ :type: :string
890
+ workflowType:
891
+ :type: :hash
892
+ :members:
893
+ name:
894
+ :type: :string
895
+ version:
896
+ :type: :string
897
+ initiatedEventId:
898
+ :type: :integer
899
+ startedEventId:
900
+ :type: :integer
901
+ signalExternalWorkflowExecutionInitiatedEventAttributes:
902
+ :type: :hash
903
+ :members:
904
+ workflowId:
905
+ :type: :string
906
+ runId:
907
+ :type: :string
908
+ signalName:
909
+ :type: :string
910
+ input:
911
+ :type: :string
912
+ decisionTaskCompletedEventId:
913
+ :type: :integer
914
+ control:
915
+ :type: :string
916
+ externalWorkflowExecutionSignaledEventAttributes:
917
+ :type: :hash
918
+ :members:
919
+ workflowExecution:
920
+ :type: :hash
921
+ :members:
922
+ workflowId:
923
+ :type: :string
924
+ runId:
925
+ :type: :string
926
+ initiatedEventId:
927
+ :type: :integer
928
+ signalExternalWorkflowExecutionFailedEventAttributes:
929
+ :type: :hash
930
+ :members:
931
+ workflowId:
932
+ :type: :string
933
+ runId:
934
+ :type: :string
935
+ cause:
936
+ :type: :string
937
+ initiatedEventId:
938
+ :type: :integer
939
+ decisionTaskCompletedEventId:
940
+ :type: :integer
941
+ control:
942
+ :type: :string
943
+ externalWorkflowExecutionCancelRequestedEventAttributes:
944
+ :type: :hash
945
+ :members:
946
+ workflowExecution:
947
+ :type: :hash
948
+ :members:
949
+ workflowId:
950
+ :type: :string
951
+ runId:
952
+ :type: :string
953
+ initiatedEventId:
954
+ :type: :integer
955
+ requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
956
+ :type: :hash
957
+ :members:
958
+ workflowId:
959
+ :type: :string
960
+ runId:
961
+ :type: :string
962
+ decisionTaskCompletedEventId:
963
+ :type: :integer
964
+ control:
965
+ :type: :string
966
+ requestCancelExternalWorkflowExecutionFailedEventAttributes:
967
+ :type: :hash
968
+ :members:
969
+ workflowId:
970
+ :type: :string
971
+ runId:
972
+ :type: :string
973
+ cause:
974
+ :type: :string
975
+ initiatedEventId:
976
+ :type: :integer
977
+ decisionTaskCompletedEventId:
978
+ :type: :integer
979
+ control:
980
+ :type: :string
981
+ scheduleActivityTaskFailedEventAttributes:
982
+ :type: :hash
983
+ :members:
984
+ activityType:
985
+ :type: :hash
986
+ :members:
987
+ name:
988
+ :type: :string
989
+ version:
990
+ :type: :string
991
+ activityId:
992
+ :type: :string
993
+ cause:
994
+ :type: :string
995
+ decisionTaskCompletedEventId:
996
+ :type: :integer
997
+ requestCancelActivityTaskFailedEventAttributes:
998
+ :type: :hash
999
+ :members:
1000
+ activityId:
1001
+ :type: :string
1002
+ cause:
1003
+ :type: :string
1004
+ decisionTaskCompletedEventId:
1005
+ :type: :integer
1006
+ startTimerFailedEventAttributes:
1007
+ :type: :hash
1008
+ :members:
1009
+ timerId:
1010
+ :type: :string
1011
+ cause:
1012
+ :type: :string
1013
+ decisionTaskCompletedEventId:
1014
+ :type: :integer
1015
+ cancelTimerFailedEventAttributes:
1016
+ :type: :hash
1017
+ :members:
1018
+ timerId:
1019
+ :type: :string
1020
+ cause:
1021
+ :type: :string
1022
+ decisionTaskCompletedEventId:
1023
+ :type: :integer
1024
+ startChildWorkflowExecutionFailedEventAttributes:
1025
+ :type: :hash
1026
+ :members:
1027
+ workflowType:
1028
+ :type: :hash
1029
+ :members:
1030
+ name:
1031
+ :type: :string
1032
+ version:
1033
+ :type: :string
1034
+ cause:
1035
+ :type: :string
1036
+ workflowId:
1037
+ :type: :string
1038
+ initiatedEventId:
1039
+ :type: :integer
1040
+ decisionTaskCompletedEventId:
1041
+ :type: :integer
1042
+ control:
1043
+ :type: :string
1044
+ nextPageToken:
1045
+ :type: :string
1046
+ - :name: ListActivityTypes
1047
+ :method: :list_activity_types
1048
+ :inputs:
1049
+ domain:
1050
+ - :string
1051
+ - :required
1052
+ name:
1053
+ - :string
1054
+ registrationStatus:
1055
+ - :string
1056
+ - :required
1057
+ nextPageToken:
1058
+ - :string
1059
+ maximumPageSize:
1060
+ - :integer
1061
+ reverseOrder:
1062
+ - :boolean
1063
+ :outputs:
1064
+ typeInfos:
1065
+ :type: :hash
1066
+ :members:
1067
+ activityType:
1068
+ :type: :hash
1069
+ :members:
1070
+ name:
1071
+ :type: :string
1072
+ version:
1073
+ :type: :string
1074
+ status:
1075
+ :type: :string
1076
+ description:
1077
+ :type: :string
1078
+ creationDate:
1079
+ :type: :time
1080
+ deprecationDate:
1081
+ :type: :time
1082
+ nextPageToken:
1083
+ :type: :string
1084
+ - :name: ListClosedWorkflowExecutions
1085
+ :method: :list_closed_workflow_executions
1086
+ :inputs:
1087
+ domain:
1088
+ - :string
1089
+ - :required
1090
+ startTimeFilter:
1091
+ - :structure:
1092
+ oldestDate:
1093
+ - :timestamp
1094
+ - :required
1095
+ latestDate:
1096
+ - :timestamp
1097
+ closeTimeFilter:
1098
+ - :structure:
1099
+ oldestDate:
1100
+ - :timestamp
1101
+ - :required
1102
+ latestDate:
1103
+ - :timestamp
1104
+ executionFilter:
1105
+ - :structure:
1106
+ workflowId:
1107
+ - :string
1108
+ - :required
1109
+ closeStatusFilter:
1110
+ - :structure:
1111
+ status:
1112
+ - :string
1113
+ - :required
1114
+ typeFilter:
1115
+ - :structure:
1116
+ name:
1117
+ - :string
1118
+ - :required
1119
+ version:
1120
+ - :string
1121
+ tagFilter:
1122
+ - :structure:
1123
+ tag:
1124
+ - :string
1125
+ - :required
1126
+ nextPageToken:
1127
+ - :string
1128
+ maximumPageSize:
1129
+ - :integer
1130
+ reverseOrder:
1131
+ - :boolean
1132
+ :outputs:
1133
+ executionInfos:
1134
+ :type: :hash
1135
+ :members:
1136
+ execution:
1137
+ :type: :hash
1138
+ :members:
1139
+ workflowId:
1140
+ :type: :string
1141
+ runId:
1142
+ :type: :string
1143
+ workflowType:
1144
+ :type: :hash
1145
+ :members:
1146
+ name:
1147
+ :type: :string
1148
+ version:
1149
+ :type: :string
1150
+ startTimestamp:
1151
+ :type: :time
1152
+ closeTimestamp:
1153
+ :type: :time
1154
+ executionStatus:
1155
+ :type: :string
1156
+ closeStatus:
1157
+ :type: :string
1158
+ parent:
1159
+ :type: :hash
1160
+ :members:
1161
+ workflowId:
1162
+ :type: :string
1163
+ runId:
1164
+ :type: :string
1165
+ tagList:
1166
+ :type: :string
1167
+ cancelRequested:
1168
+ :type: :boolean
1169
+ nextPageToken:
1170
+ :type: :string
1171
+ - :name: ListDomains
1172
+ :method: :list_domains
1173
+ :inputs:
1174
+ nextPageToken:
1175
+ - :string
1176
+ registrationStatus:
1177
+ - :string
1178
+ - :required
1179
+ maximumPageSize:
1180
+ - :integer
1181
+ reverseOrder:
1182
+ - :boolean
1183
+ :outputs:
1184
+ domainInfos:
1185
+ :type: :hash
1186
+ :members:
1187
+ name:
1188
+ :type: :string
1189
+ status:
1190
+ :type: :string
1191
+ description:
1192
+ :type: :string
1193
+ nextPageToken:
1194
+ :type: :string
1195
+ - :name: ListOpenWorkflowExecutions
1196
+ :method: :list_open_workflow_executions
1197
+ :inputs:
1198
+ domain:
1199
+ - :string
1200
+ - :required
1201
+ startTimeFilter:
1202
+ - :structure:
1203
+ oldestDate:
1204
+ - :timestamp
1205
+ - :required
1206
+ latestDate:
1207
+ - :timestamp
1208
+ - :required
1209
+ typeFilter:
1210
+ - :structure:
1211
+ name:
1212
+ - :string
1213
+ - :required
1214
+ version:
1215
+ - :string
1216
+ tagFilter:
1217
+ - :structure:
1218
+ tag:
1219
+ - :string
1220
+ - :required
1221
+ nextPageToken:
1222
+ - :string
1223
+ maximumPageSize:
1224
+ - :integer
1225
+ reverseOrder:
1226
+ - :boolean
1227
+ executionFilter:
1228
+ - :structure:
1229
+ workflowId:
1230
+ - :string
1231
+ - :required
1232
+ :outputs:
1233
+ executionInfos:
1234
+ :type: :hash
1235
+ :members:
1236
+ execution:
1237
+ :type: :hash
1238
+ :members:
1239
+ workflowId:
1240
+ :type: :string
1241
+ runId:
1242
+ :type: :string
1243
+ workflowType:
1244
+ :type: :hash
1245
+ :members:
1246
+ name:
1247
+ :type: :string
1248
+ version:
1249
+ :type: :string
1250
+ startTimestamp:
1251
+ :type: :time
1252
+ closeTimestamp:
1253
+ :type: :time
1254
+ executionStatus:
1255
+ :type: :string
1256
+ closeStatus:
1257
+ :type: :string
1258
+ parent:
1259
+ :type: :hash
1260
+ :members:
1261
+ workflowId:
1262
+ :type: :string
1263
+ runId:
1264
+ :type: :string
1265
+ tagList:
1266
+ :type: :string
1267
+ cancelRequested:
1268
+ :type: :boolean
1269
+ nextPageToken:
1270
+ :type: :string
1271
+ - :name: ListWorkflowTypes
1272
+ :method: :list_workflow_types
1273
+ :inputs:
1274
+ domain:
1275
+ - :string
1276
+ - :required
1277
+ name:
1278
+ - :string
1279
+ registrationStatus:
1280
+ - :string
1281
+ - :required
1282
+ nextPageToken:
1283
+ - :string
1284
+ maximumPageSize:
1285
+ - :integer
1286
+ reverseOrder:
1287
+ - :boolean
1288
+ :outputs:
1289
+ typeInfos:
1290
+ :type: :hash
1291
+ :members:
1292
+ workflowType:
1293
+ :type: :hash
1294
+ :members:
1295
+ name:
1296
+ :type: :string
1297
+ version:
1298
+ :type: :string
1299
+ status:
1300
+ :type: :string
1301
+ description:
1302
+ :type: :string
1303
+ creationDate:
1304
+ :type: :time
1305
+ deprecationDate:
1306
+ :type: :time
1307
+ nextPageToken:
1308
+ :type: :string
1309
+ - :name: PollForActivityTask
1310
+ :method: :poll_for_activity_task
1311
+ :inputs:
1312
+ domain:
1313
+ - :string
1314
+ - :required
1315
+ taskList:
1316
+ - :structure:
1317
+ name:
1318
+ - :string
1319
+ - :required
1320
+ - :required
1321
+ identity:
1322
+ - :string
1323
+ :outputs:
1324
+ taskToken:
1325
+ :type: :string
1326
+ activityId:
1327
+ :type: :string
1328
+ startedEventId:
1329
+ :type: :integer
1330
+ workflowExecution:
1331
+ :type: :hash
1332
+ :members:
1333
+ workflowId:
1334
+ :type: :string
1335
+ runId:
1336
+ :type: :string
1337
+ activityType:
1338
+ :type: :hash
1339
+ :members:
1340
+ name:
1341
+ :type: :string
1342
+ version:
1343
+ :type: :string
1344
+ input:
1345
+ :type: :string
1346
+ - :name: PollForDecisionTask
1347
+ :method: :poll_for_decision_task
1348
+ :inputs:
1349
+ domain:
1350
+ - :string
1351
+ - :required
1352
+ taskList:
1353
+ - :structure:
1354
+ name:
1355
+ - :string
1356
+ - :required
1357
+ - :required
1358
+ identity:
1359
+ - :string
1360
+ nextPageToken:
1361
+ - :string
1362
+ maximumPageSize:
1363
+ - :integer
1364
+ reverseOrder:
1365
+ - :boolean
1366
+ :outputs:
1367
+ taskToken:
1368
+ :type: :string
1369
+ startedEventId:
1370
+ :type: :integer
1371
+ workflowExecution:
1372
+ :type: :hash
1373
+ :members:
1374
+ workflowId:
1375
+ :type: :string
1376
+ runId:
1377
+ :type: :string
1378
+ workflowType:
1379
+ :type: :hash
1380
+ :members:
1381
+ name:
1382
+ :type: :string
1383
+ version:
1384
+ :type: :string
1385
+ events:
1386
+ :type: :hash
1387
+ :members:
1388
+ eventTimestamp:
1389
+ :type: :time
1390
+ eventType:
1391
+ :type: :string
1392
+ eventId:
1393
+ :type: :integer
1394
+ workflowExecutionStartedEventAttributes:
1395
+ :type: :hash
1396
+ :members:
1397
+ input:
1398
+ :type: :string
1399
+ executionStartToCloseTimeout:
1400
+ :type: :string
1401
+ taskStartToCloseTimeout:
1402
+ :type: :string
1403
+ childPolicy:
1404
+ :type: :string
1405
+ taskList:
1406
+ :type: :hash
1407
+ :members:
1408
+ name:
1409
+ :type: :string
1410
+ workflowType:
1411
+ :type: :hash
1412
+ :members:
1413
+ name:
1414
+ :type: :string
1415
+ version:
1416
+ :type: :string
1417
+ tagList:
1418
+ :type: :string
1419
+ continuedExecutionRunId:
1420
+ :type: :string
1421
+ parentWorkflowExecution:
1422
+ :type: :hash
1423
+ :members:
1424
+ workflowId:
1425
+ :type: :string
1426
+ runId:
1427
+ :type: :string
1428
+ parentInitiatedEventId:
1429
+ :type: :integer
1430
+ workflowExecutionCompletedEventAttributes:
1431
+ :type: :hash
1432
+ :members:
1433
+ result:
1434
+ :type: :string
1435
+ decisionTaskCompletedEventId:
1436
+ :type: :integer
1437
+ completeWorkflowExecutionFailedEventAttributes:
1438
+ :type: :hash
1439
+ :members:
1440
+ cause:
1441
+ :type: :string
1442
+ decisionTaskCompletedEventId:
1443
+ :type: :integer
1444
+ workflowExecutionFailedEventAttributes:
1445
+ :type: :hash
1446
+ :members:
1447
+ reason:
1448
+ :type: :string
1449
+ details:
1450
+ :type: :string
1451
+ decisionTaskCompletedEventId:
1452
+ :type: :integer
1453
+ failWorkflowExecutionFailedEventAttributes:
1454
+ :type: :hash
1455
+ :members:
1456
+ cause:
1457
+ :type: :string
1458
+ decisionTaskCompletedEventId:
1459
+ :type: :integer
1460
+ workflowExecutionTimedOutEventAttributes:
1461
+ :type: :hash
1462
+ :members:
1463
+ timeoutType:
1464
+ :type: :string
1465
+ childPolicy:
1466
+ :type: :string
1467
+ workflowExecutionCanceledEventAttributes:
1468
+ :type: :hash
1469
+ :members:
1470
+ details:
1471
+ :type: :string
1472
+ decisionTaskCompletedEventId:
1473
+ :type: :integer
1474
+ cancelWorkflowExecutionFailedEventAttributes:
1475
+ :type: :hash
1476
+ :members:
1477
+ cause:
1478
+ :type: :string
1479
+ decisionTaskCompletedEventId:
1480
+ :type: :integer
1481
+ workflowExecutionContinuedAsNewEventAttributes:
1482
+ :type: :hash
1483
+ :members:
1484
+ input:
1485
+ :type: :string
1486
+ decisionTaskCompletedEventId:
1487
+ :type: :integer
1488
+ newExecutionRunId:
1489
+ :type: :string
1490
+ executionStartToCloseTimeout:
1491
+ :type: :string
1492
+ taskList:
1493
+ :type: :hash
1494
+ :members:
1495
+ name:
1496
+ :type: :string
1497
+ taskStartToCloseTimeout:
1498
+ :type: :string
1499
+ childPolicy:
1500
+ :type: :string
1501
+ tagList:
1502
+ :type: :string
1503
+ workflowType:
1504
+ :type: :hash
1505
+ :members:
1506
+ name:
1507
+ :type: :string
1508
+ version:
1509
+ :type: :string
1510
+ continueAsNewWorkflowExecutionFailedEventAttributes:
1511
+ :type: :hash
1512
+ :members:
1513
+ cause:
1514
+ :type: :string
1515
+ decisionTaskCompletedEventId:
1516
+ :type: :integer
1517
+ workflowExecutionTerminatedEventAttributes:
1518
+ :type: :hash
1519
+ :members:
1520
+ reason:
1521
+ :type: :string
1522
+ details:
1523
+ :type: :string
1524
+ childPolicy:
1525
+ :type: :string
1526
+ cause:
1527
+ :type: :string
1528
+ workflowExecutionCancelRequestedEventAttributes:
1529
+ :type: :hash
1530
+ :members:
1531
+ externalWorkflowExecution:
1532
+ :type: :hash
1533
+ :members:
1534
+ workflowId:
1535
+ :type: :string
1536
+ runId:
1537
+ :type: :string
1538
+ externalInitiatedEventId:
1539
+ :type: :integer
1540
+ cause:
1541
+ :type: :string
1542
+ decisionTaskScheduledEventAttributes:
1543
+ :type: :hash
1544
+ :members:
1545
+ taskList:
1546
+ :type: :hash
1547
+ :members:
1548
+ name:
1549
+ :type: :string
1550
+ startToCloseTimeout:
1551
+ :type: :string
1552
+ decisionTaskStartedEventAttributes:
1553
+ :type: :hash
1554
+ :members:
1555
+ identity:
1556
+ :type: :string
1557
+ scheduledEventId:
1558
+ :type: :integer
1559
+ decisionTaskCompletedEventAttributes:
1560
+ :type: :hash
1561
+ :members:
1562
+ executionContext:
1563
+ :type: :string
1564
+ scheduledEventId:
1565
+ :type: :integer
1566
+ startedEventId:
1567
+ :type: :integer
1568
+ decisionTaskTimedOutEventAttributes:
1569
+ :type: :hash
1570
+ :members:
1571
+ timeoutType:
1572
+ :type: :string
1573
+ scheduledEventId:
1574
+ :type: :integer
1575
+ startedEventId:
1576
+ :type: :integer
1577
+ activityTaskScheduledEventAttributes:
1578
+ :type: :hash
1579
+ :members:
1580
+ activityType:
1581
+ :type: :hash
1582
+ :members:
1583
+ name:
1584
+ :type: :string
1585
+ version:
1586
+ :type: :string
1587
+ activityId:
1588
+ :type: :string
1589
+ input:
1590
+ :type: :string
1591
+ control:
1592
+ :type: :string
1593
+ scheduleToStartTimeout:
1594
+ :type: :string
1595
+ scheduleToCloseTimeout:
1596
+ :type: :string
1597
+ startToCloseTimeout:
1598
+ :type: :string
1599
+ taskList:
1600
+ :type: :hash
1601
+ :members:
1602
+ name:
1603
+ :type: :string
1604
+ decisionTaskCompletedEventId:
1605
+ :type: :integer
1606
+ heartbeatTimeout:
1607
+ :type: :string
1608
+ activityTaskStartedEventAttributes:
1609
+ :type: :hash
1610
+ :members:
1611
+ identity:
1612
+ :type: :string
1613
+ scheduledEventId:
1614
+ :type: :integer
1615
+ activityTaskCompletedEventAttributes:
1616
+ :type: :hash
1617
+ :members:
1618
+ result:
1619
+ :type: :string
1620
+ scheduledEventId:
1621
+ :type: :integer
1622
+ startedEventId:
1623
+ :type: :integer
1624
+ activityTaskFailedEventAttributes:
1625
+ :type: :hash
1626
+ :members:
1627
+ reason:
1628
+ :type: :string
1629
+ details:
1630
+ :type: :string
1631
+ scheduledEventId:
1632
+ :type: :integer
1633
+ startedEventId:
1634
+ :type: :integer
1635
+ activityTaskTimedOutEventAttributes:
1636
+ :type: :hash
1637
+ :members:
1638
+ timeoutType:
1639
+ :type: :string
1640
+ scheduledEventId:
1641
+ :type: :integer
1642
+ startedEventId:
1643
+ :type: :integer
1644
+ details:
1645
+ :type: :string
1646
+ activityTaskCanceledEventAttributes:
1647
+ :type: :hash
1648
+ :members:
1649
+ details:
1650
+ :type: :string
1651
+ scheduledEventId:
1652
+ :type: :integer
1653
+ startedEventId:
1654
+ :type: :integer
1655
+ latestCancelRequestedEventId:
1656
+ :type: :integer
1657
+ activityTaskCancelRequestedEventAttributes:
1658
+ :type: :hash
1659
+ :members:
1660
+ decisionTaskCompletedEventId:
1661
+ :type: :integer
1662
+ activityId:
1663
+ :type: :string
1664
+ workflowExecutionSignaledEventAttributes:
1665
+ :type: :hash
1666
+ :members:
1667
+ signalName:
1668
+ :type: :string
1669
+ input:
1670
+ :type: :string
1671
+ externalWorkflowExecution:
1672
+ :type: :hash
1673
+ :members:
1674
+ workflowId:
1675
+ :type: :string
1676
+ runId:
1677
+ :type: :string
1678
+ externalInitiatedEventId:
1679
+ :type: :integer
1680
+ markerRecordedEventAttributes:
1681
+ :type: :hash
1682
+ :members:
1683
+ markerName:
1684
+ :type: :string
1685
+ details:
1686
+ :type: :string
1687
+ decisionTaskCompletedEventId:
1688
+ :type: :integer
1689
+ recordMarkerFailedEventAttributes:
1690
+ :type: :hash
1691
+ :members:
1692
+ markerName:
1693
+ :type: :string
1694
+ cause:
1695
+ :type: :string
1696
+ decisionTaskCompletedEventId:
1697
+ :type: :integer
1698
+ timerStartedEventAttributes:
1699
+ :type: :hash
1700
+ :members:
1701
+ timerId:
1702
+ :type: :string
1703
+ control:
1704
+ :type: :string
1705
+ startToFireTimeout:
1706
+ :type: :string
1707
+ decisionTaskCompletedEventId:
1708
+ :type: :integer
1709
+ timerFiredEventAttributes:
1710
+ :type: :hash
1711
+ :members:
1712
+ timerId:
1713
+ :type: :string
1714
+ startedEventId:
1715
+ :type: :integer
1716
+ timerCanceledEventAttributes:
1717
+ :type: :hash
1718
+ :members:
1719
+ timerId:
1720
+ :type: :string
1721
+ startedEventId:
1722
+ :type: :integer
1723
+ decisionTaskCompletedEventId:
1724
+ :type: :integer
1725
+ startChildWorkflowExecutionInitiatedEventAttributes:
1726
+ :type: :hash
1727
+ :members:
1728
+ workflowId:
1729
+ :type: :string
1730
+ workflowType:
1731
+ :type: :hash
1732
+ :members:
1733
+ name:
1734
+ :type: :string
1735
+ version:
1736
+ :type: :string
1737
+ control:
1738
+ :type: :string
1739
+ input:
1740
+ :type: :string
1741
+ executionStartToCloseTimeout:
1742
+ :type: :string
1743
+ taskList:
1744
+ :type: :hash
1745
+ :members:
1746
+ name:
1747
+ :type: :string
1748
+ decisionTaskCompletedEventId:
1749
+ :type: :integer
1750
+ childPolicy:
1751
+ :type: :string
1752
+ taskStartToCloseTimeout:
1753
+ :type: :string
1754
+ tagList:
1755
+ :type: :string
1756
+ childWorkflowExecutionStartedEventAttributes:
1757
+ :type: :hash
1758
+ :members:
1759
+ workflowExecution:
1760
+ :type: :hash
1761
+ :members:
1762
+ workflowId:
1763
+ :type: :string
1764
+ runId:
1765
+ :type: :string
1766
+ workflowType:
1767
+ :type: :hash
1768
+ :members:
1769
+ name:
1770
+ :type: :string
1771
+ version:
1772
+ :type: :string
1773
+ initiatedEventId:
1774
+ :type: :integer
1775
+ childWorkflowExecutionCompletedEventAttributes:
1776
+ :type: :hash
1777
+ :members:
1778
+ workflowExecution:
1779
+ :type: :hash
1780
+ :members:
1781
+ workflowId:
1782
+ :type: :string
1783
+ runId:
1784
+ :type: :string
1785
+ workflowType:
1786
+ :type: :hash
1787
+ :members:
1788
+ name:
1789
+ :type: :string
1790
+ version:
1791
+ :type: :string
1792
+ result:
1793
+ :type: :string
1794
+ initiatedEventId:
1795
+ :type: :integer
1796
+ startedEventId:
1797
+ :type: :integer
1798
+ childWorkflowExecutionFailedEventAttributes:
1799
+ :type: :hash
1800
+ :members:
1801
+ workflowExecution:
1802
+ :type: :hash
1803
+ :members:
1804
+ workflowId:
1805
+ :type: :string
1806
+ runId:
1807
+ :type: :string
1808
+ workflowType:
1809
+ :type: :hash
1810
+ :members:
1811
+ name:
1812
+ :type: :string
1813
+ version:
1814
+ :type: :string
1815
+ reason:
1816
+ :type: :string
1817
+ details:
1818
+ :type: :string
1819
+ initiatedEventId:
1820
+ :type: :integer
1821
+ startedEventId:
1822
+ :type: :integer
1823
+ childWorkflowExecutionTimedOutEventAttributes:
1824
+ :type: :hash
1825
+ :members:
1826
+ workflowExecution:
1827
+ :type: :hash
1828
+ :members:
1829
+ workflowId:
1830
+ :type: :string
1831
+ runId:
1832
+ :type: :string
1833
+ workflowType:
1834
+ :type: :hash
1835
+ :members:
1836
+ name:
1837
+ :type: :string
1838
+ version:
1839
+ :type: :string
1840
+ timeoutType:
1841
+ :type: :string
1842
+ initiatedEventId:
1843
+ :type: :integer
1844
+ startedEventId:
1845
+ :type: :integer
1846
+ childWorkflowExecutionCanceledEventAttributes:
1847
+ :type: :hash
1848
+ :members:
1849
+ workflowExecution:
1850
+ :type: :hash
1851
+ :members:
1852
+ workflowId:
1853
+ :type: :string
1854
+ runId:
1855
+ :type: :string
1856
+ workflowType:
1857
+ :type: :hash
1858
+ :members:
1859
+ name:
1860
+ :type: :string
1861
+ version:
1862
+ :type: :string
1863
+ details:
1864
+ :type: :string
1865
+ initiatedEventId:
1866
+ :type: :integer
1867
+ startedEventId:
1868
+ :type: :integer
1869
+ childWorkflowExecutionTerminatedEventAttributes:
1870
+ :type: :hash
1871
+ :members:
1872
+ workflowExecution:
1873
+ :type: :hash
1874
+ :members:
1875
+ workflowId:
1876
+ :type: :string
1877
+ runId:
1878
+ :type: :string
1879
+ workflowType:
1880
+ :type: :hash
1881
+ :members:
1882
+ name:
1883
+ :type: :string
1884
+ version:
1885
+ :type: :string
1886
+ initiatedEventId:
1887
+ :type: :integer
1888
+ startedEventId:
1889
+ :type: :integer
1890
+ signalExternalWorkflowExecutionInitiatedEventAttributes:
1891
+ :type: :hash
1892
+ :members:
1893
+ workflowId:
1894
+ :type: :string
1895
+ runId:
1896
+ :type: :string
1897
+ signalName:
1898
+ :type: :string
1899
+ input:
1900
+ :type: :string
1901
+ decisionTaskCompletedEventId:
1902
+ :type: :integer
1903
+ control:
1904
+ :type: :string
1905
+ externalWorkflowExecutionSignaledEventAttributes:
1906
+ :type: :hash
1907
+ :members:
1908
+ workflowExecution:
1909
+ :type: :hash
1910
+ :members:
1911
+ workflowId:
1912
+ :type: :string
1913
+ runId:
1914
+ :type: :string
1915
+ initiatedEventId:
1916
+ :type: :integer
1917
+ signalExternalWorkflowExecutionFailedEventAttributes:
1918
+ :type: :hash
1919
+ :members:
1920
+ workflowId:
1921
+ :type: :string
1922
+ runId:
1923
+ :type: :string
1924
+ cause:
1925
+ :type: :string
1926
+ initiatedEventId:
1927
+ :type: :integer
1928
+ decisionTaskCompletedEventId:
1929
+ :type: :integer
1930
+ control:
1931
+ :type: :string
1932
+ externalWorkflowExecutionCancelRequestedEventAttributes:
1933
+ :type: :hash
1934
+ :members:
1935
+ workflowExecution:
1936
+ :type: :hash
1937
+ :members:
1938
+ workflowId:
1939
+ :type: :string
1940
+ runId:
1941
+ :type: :string
1942
+ initiatedEventId:
1943
+ :type: :integer
1944
+ requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
1945
+ :type: :hash
1946
+ :members:
1947
+ workflowId:
1948
+ :type: :string
1949
+ runId:
1950
+ :type: :string
1951
+ decisionTaskCompletedEventId:
1952
+ :type: :integer
1953
+ control:
1954
+ :type: :string
1955
+ requestCancelExternalWorkflowExecutionFailedEventAttributes:
1956
+ :type: :hash
1957
+ :members:
1958
+ workflowId:
1959
+ :type: :string
1960
+ runId:
1961
+ :type: :string
1962
+ cause:
1963
+ :type: :string
1964
+ initiatedEventId:
1965
+ :type: :integer
1966
+ decisionTaskCompletedEventId:
1967
+ :type: :integer
1968
+ control:
1969
+ :type: :string
1970
+ scheduleActivityTaskFailedEventAttributes:
1971
+ :type: :hash
1972
+ :members:
1973
+ activityType:
1974
+ :type: :hash
1975
+ :members:
1976
+ name:
1977
+ :type: :string
1978
+ version:
1979
+ :type: :string
1980
+ activityId:
1981
+ :type: :string
1982
+ cause:
1983
+ :type: :string
1984
+ decisionTaskCompletedEventId:
1985
+ :type: :integer
1986
+ requestCancelActivityTaskFailedEventAttributes:
1987
+ :type: :hash
1988
+ :members:
1989
+ activityId:
1990
+ :type: :string
1991
+ cause:
1992
+ :type: :string
1993
+ decisionTaskCompletedEventId:
1994
+ :type: :integer
1995
+ startTimerFailedEventAttributes:
1996
+ :type: :hash
1997
+ :members:
1998
+ timerId:
1999
+ :type: :string
2000
+ cause:
2001
+ :type: :string
2002
+ decisionTaskCompletedEventId:
2003
+ :type: :integer
2004
+ cancelTimerFailedEventAttributes:
2005
+ :type: :hash
2006
+ :members:
2007
+ timerId:
2008
+ :type: :string
2009
+ cause:
2010
+ :type: :string
2011
+ decisionTaskCompletedEventId:
2012
+ :type: :integer
2013
+ startChildWorkflowExecutionFailedEventAttributes:
2014
+ :type: :hash
2015
+ :members:
2016
+ workflowType:
2017
+ :type: :hash
2018
+ :members:
2019
+ name:
2020
+ :type: :string
2021
+ version:
2022
+ :type: :string
2023
+ cause:
2024
+ :type: :string
2025
+ workflowId:
2026
+ :type: :string
2027
+ initiatedEventId:
2028
+ :type: :integer
2029
+ decisionTaskCompletedEventId:
2030
+ :type: :integer
2031
+ control:
2032
+ :type: :string
2033
+ nextPageToken:
2034
+ :type: :string
2035
+ previousStartedEventId:
2036
+ :type: :integer
2037
+ - :name: RecordActivityTaskHeartbeat
2038
+ :method: :record_activity_task_heartbeat
2039
+ :inputs:
2040
+ taskToken:
2041
+ - :string
2042
+ - :required
2043
+ details:
2044
+ - :string
2045
+ :outputs:
2046
+ cancelRequested:
2047
+ :type: :boolean
2048
+ - :name: RegisterActivityType
2049
+ :method: :register_activity_type
2050
+ :inputs:
2051
+ domain:
2052
+ - :string
2053
+ - :required
2054
+ name:
2055
+ - :string
2056
+ - :required
2057
+ version:
2058
+ - :string
2059
+ - :required
2060
+ description:
2061
+ - :string
2062
+ defaultTaskStartToCloseTimeout:
2063
+ - :string
2064
+ defaultTaskHeartbeatTimeout:
2065
+ - :string
2066
+ defaultTaskList:
2067
+ - :structure:
2068
+ name:
2069
+ - :string
2070
+ - :required
2071
+ defaultTaskScheduleToStartTimeout:
2072
+ - :string
2073
+ defaultTaskScheduleToCloseTimeout:
2074
+ - :string
2075
+ :outputs: {}
2076
+ - :name: RegisterDomain
2077
+ :method: :register_domain
2078
+ :inputs:
2079
+ name:
2080
+ - :string
2081
+ - :required
2082
+ description:
2083
+ - :string
2084
+ workflowExecutionRetentionPeriodInDays:
2085
+ - :string
2086
+ - :required
2087
+ :outputs: {}
2088
+ - :name: RegisterWorkflowType
2089
+ :method: :register_workflow_type
2090
+ :inputs:
2091
+ domain:
2092
+ - :string
2093
+ - :required
2094
+ name:
2095
+ - :string
2096
+ - :required
2097
+ version:
2098
+ - :string
2099
+ - :required
2100
+ description:
2101
+ - :string
2102
+ defaultTaskStartToCloseTimeout:
2103
+ - :string
2104
+ defaultExecutionStartToCloseTimeout:
2105
+ - :string
2106
+ defaultTaskList:
2107
+ - :structure:
2108
+ name:
2109
+ - :string
2110
+ - :required
2111
+ defaultChildPolicy:
2112
+ - :string
2113
+ :outputs: {}
2114
+ - :name: RequestCancelWorkflowExecution
2115
+ :method: :request_cancel_workflow_execution
2116
+ :inputs:
2117
+ domain:
2118
+ - :string
2119
+ - :required
2120
+ workflowId:
2121
+ - :string
2122
+ - :required
2123
+ runId:
2124
+ - :string
2125
+ :outputs: {}
2126
+ - :name: RespondActivityTaskCanceled
2127
+ :method: :respond_activity_task_canceled
2128
+ :inputs:
2129
+ taskToken:
2130
+ - :string
2131
+ - :required
2132
+ details:
2133
+ - :string
2134
+ :outputs: {}
2135
+ - :name: RespondActivityTaskCompleted
2136
+ :method: :respond_activity_task_completed
2137
+ :inputs:
2138
+ taskToken:
2139
+ - :string
2140
+ - :required
2141
+ result:
2142
+ - :string
2143
+ :outputs: {}
2144
+ - :name: RespondActivityTaskFailed
2145
+ :method: :respond_activity_task_failed
2146
+ :inputs:
2147
+ taskToken:
2148
+ - :string
2149
+ - :required
2150
+ reason:
2151
+ - :string
2152
+ details:
2153
+ - :string
2154
+ :outputs: {}
2155
+ - :name: RespondDecisionTaskCompleted
2156
+ :method: :respond_decision_task_completed
2157
+ :inputs:
2158
+ taskToken:
2159
+ - :string
2160
+ - :required
2161
+ decisions:
2162
+ - :list:
2163
+ - :structure:
2164
+ decisionType:
2165
+ - :string
2166
+ - :required
2167
+ scheduleActivityTaskDecisionAttributes:
2168
+ - :structure:
2169
+ activityType:
2170
+ - :structure:
2171
+ name:
2172
+ - :string
2173
+ - :required
2174
+ version:
2175
+ - :string
2176
+ - :required
2177
+ - :required
2178
+ activityId:
2179
+ - :string
2180
+ - :required
2181
+ control:
2182
+ - :string
2183
+ input:
2184
+ - :string
2185
+ scheduleToCloseTimeout:
2186
+ - :string
2187
+ taskList:
2188
+ - :structure:
2189
+ name:
2190
+ - :string
2191
+ - :required
2192
+ scheduleToStartTimeout:
2193
+ - :string
2194
+ startToCloseTimeout:
2195
+ - :string
2196
+ heartbeatTimeout:
2197
+ - :string
2198
+ requestCancelActivityTaskDecisionAttributes:
2199
+ - :structure:
2200
+ activityId:
2201
+ - :string
2202
+ - :required
2203
+ completeWorkflowExecutionDecisionAttributes:
2204
+ - :structure:
2205
+ result:
2206
+ - :string
2207
+ failWorkflowExecutionDecisionAttributes:
2208
+ - :structure:
2209
+ reason:
2210
+ - :string
2211
+ details:
2212
+ - :string
2213
+ cancelWorkflowExecutionDecisionAttributes:
2214
+ - :structure:
2215
+ details:
2216
+ - :string
2217
+ continueAsNewWorkflowExecutionDecisionAttributes:
2218
+ - :structure:
2219
+ input:
2220
+ - :string
2221
+ executionStartToCloseTimeout:
2222
+ - :string
2223
+ taskList:
2224
+ - :structure:
2225
+ name:
2226
+ - :string
2227
+ - :required
2228
+ taskStartToCloseTimeout:
2229
+ - :string
2230
+ childPolicy:
2231
+ - :string
2232
+ tagList:
2233
+ - :list:
2234
+ - :string
2235
+ workflowTypeVersion:
2236
+ - :string
2237
+ recordMarkerDecisionAttributes:
2238
+ - :structure:
2239
+ markerName:
2240
+ - :string
2241
+ - :required
2242
+ details:
2243
+ - :string
2244
+ startTimerDecisionAttributes:
2245
+ - :structure:
2246
+ timerId:
2247
+ - :string
2248
+ - :required
2249
+ control:
2250
+ - :string
2251
+ startToFireTimeout:
2252
+ - :string
2253
+ - :required
2254
+ cancelTimerDecisionAttributes:
2255
+ - :structure:
2256
+ timerId:
2257
+ - :string
2258
+ - :required
2259
+ signalExternalWorkflowExecutionDecisionAttributes:
2260
+ - :structure:
2261
+ workflowId:
2262
+ - :string
2263
+ - :required
2264
+ runId:
2265
+ - :string
2266
+ signalName:
2267
+ - :string
2268
+ - :required
2269
+ input:
2270
+ - :string
2271
+ control:
2272
+ - :string
2273
+ requestCancelExternalWorkflowExecutionDecisionAttributes:
2274
+ - :structure:
2275
+ workflowId:
2276
+ - :string
2277
+ - :required
2278
+ runId:
2279
+ - :string
2280
+ control:
2281
+ - :string
2282
+ startChildWorkflowExecutionDecisionAttributes:
2283
+ - :structure:
2284
+ workflowType:
2285
+ - :structure:
2286
+ name:
2287
+ - :string
2288
+ - :required
2289
+ version:
2290
+ - :string
2291
+ - :required
2292
+ - :required
2293
+ workflowId:
2294
+ - :string
2295
+ - :required
2296
+ control:
2297
+ - :string
2298
+ input:
2299
+ - :string
2300
+ executionStartToCloseTimeout:
2301
+ - :string
2302
+ taskList:
2303
+ - :structure:
2304
+ name:
2305
+ - :string
2306
+ - :required
2307
+ taskStartToCloseTimeout:
2308
+ - :string
2309
+ childPolicy:
2310
+ - :string
2311
+ tagList:
2312
+ - :list:
2313
+ - :string
2314
+ executionContext:
2315
+ - :string
2316
+ :outputs: {}
2317
+ - :name: SignalWorkflowExecution
2318
+ :method: :signal_workflow_execution
2319
+ :inputs:
2320
+ domain:
2321
+ - :string
2322
+ - :required
2323
+ workflowId:
2324
+ - :string
2325
+ - :required
2326
+ runId:
2327
+ - :string
2328
+ signalName:
2329
+ - :string
2330
+ - :required
2331
+ input:
2332
+ - :string
2333
+ :outputs: {}
2334
+ - :name: StartWorkflowExecution
2335
+ :method: :start_workflow_execution
2336
+ :inputs:
2337
+ domain:
2338
+ - :string
2339
+ - :required
2340
+ workflowId:
2341
+ - :string
2342
+ - :required
2343
+ workflowType:
2344
+ - :structure:
2345
+ name:
2346
+ - :string
2347
+ - :required
2348
+ version:
2349
+ - :string
2350
+ - :required
2351
+ - :required
2352
+ taskList:
2353
+ - :structure:
2354
+ name:
2355
+ - :string
2356
+ - :required
2357
+ input:
2358
+ - :string
2359
+ executionStartToCloseTimeout:
2360
+ - :string
2361
+ tagList:
2362
+ - :list:
2363
+ - :string
2364
+ taskStartToCloseTimeout:
2365
+ - :string
2366
+ childPolicy:
2367
+ - :string
2368
+ :outputs:
2369
+ runId:
2370
+ :type: :string
2371
+ - :name: TerminateWorkflowExecution
2372
+ :method: :terminate_workflow_execution
2373
+ :inputs:
2374
+ domain:
2375
+ - :string
2376
+ - :required
2377
+ workflowId:
2378
+ - :string
2379
+ - :required
2380
+ runId:
2381
+ - :string
2382
+ reason:
2383
+ - :string
2384
+ details:
2385
+ - :string
2386
+ childPolicy:
2387
+ - :string
2388
+ :outputs: {}