aws-sdk-core 2.11.435 → 3.89.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1296) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -582
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +146 -24
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +9 -10
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  33. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +60 -26
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  60. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  61. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  62. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  63. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  64. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  65. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  66. data/lib/aws-sdk-core/query.rb +5 -0
  67. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  68. data/lib/aws-sdk-core/query/handler.rb +20 -16
  69. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  70. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  71. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  72. data/lib/aws-sdk-core/rest.rb +10 -0
  73. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  74. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  75. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  76. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  77. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  78. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  79. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  80. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  81. data/lib/aws-sdk-core/shared_config.rb +187 -15
  82. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  83. data/lib/aws-sdk-core/structure.rb +22 -13
  84. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  86. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  87. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  90. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  91. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  92. data/lib/aws-sdk-core/util.rb +66 -0
  93. data/lib/aws-sdk-core/waiters.rb +3 -0
  94. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  95. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  96. data/lib/aws-sdk-core/xml.rb +9 -0
  97. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  98. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  99. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +2156 -0
  103. data/lib/aws-sdk-sts/client_api.rb +336 -0
  104. data/lib/aws-sdk-sts/customizations.rb +2 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  107. data/lib/aws-sdk-sts/presigner.rb +67 -0
  108. data/lib/aws-sdk-sts/resource.rb +23 -0
  109. data/lib/aws-sdk-sts/types.rb +1504 -0
  110. data/lib/seahorse.rb +60 -60
  111. data/lib/seahorse/client/async_base.rb +50 -0
  112. data/lib/seahorse/client/async_response.rb +62 -0
  113. data/lib/seahorse/client/base.rb +5 -9
  114. data/lib/seahorse/client/configuration.rb +4 -2
  115. data/lib/seahorse/client/h2/connection.rb +246 -0
  116. data/lib/seahorse/client/h2/handler.rb +151 -0
  117. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  118. data/lib/seahorse/client/http/async_response.rb +42 -0
  119. data/lib/seahorse/client/http/response.rb +10 -5
  120. data/lib/seahorse/client/logging/formatter.rb +6 -2
  121. data/lib/seahorse/client/logging/handler.rb +2 -0
  122. data/lib/seahorse/client/net_http/connection_pool.rb +18 -5
  123. data/lib/seahorse/client/net_http/handler.rb +12 -1
  124. data/lib/seahorse/client/net_http/patches.rb +9 -1
  125. data/lib/seahorse/client/networking_error.rb +28 -0
  126. data/lib/seahorse/client/plugin.rb +67 -6
  127. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  128. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  129. data/lib/seahorse/client/plugins/h2.rb +64 -0
  130. data/lib/seahorse/client/plugins/logging.rb +17 -19
  131. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  132. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  133. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  134. data/lib/seahorse/client/request_context.rb +5 -0
  135. data/lib/seahorse/model/api.rb +33 -0
  136. data/lib/seahorse/model/authorizer.rb +21 -0
  137. data/lib/seahorse/model/operation.rb +11 -0
  138. data/lib/seahorse/model/shapes.rb +44 -2
  139. data/lib/seahorse/util.rb +1 -22
  140. metadata +101 -1165
  141. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
  142. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  143. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  144. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
  145. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  146. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  147. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  148. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  149. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  150. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  151. data/apis/acm/2015-12-08/api-2.json +0 -872
  152. data/apis/acm/2015-12-08/examples-1.json +0 -5
  153. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  154. data/apis/acm/2015-12-08/smoke.json +0 -18
  155. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  156. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  157. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  158. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  159. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  160. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  161. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  162. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  163. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  164. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  165. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  166. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  167. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  168. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
  169. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  170. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  171. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  172. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  173. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
  174. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  175. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  176. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  177. data/apis/application-insights/2018-11-25/api-2.json +0 -1208
  178. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  179. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  180. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  181. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  182. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  183. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  184. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  185. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  186. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  187. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  188. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  189. data/apis/appstream/2016-12-01/smoke.json +0 -11
  190. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  191. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  192. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  193. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  194. data/apis/athena/2017-05-18/api-2.json +0 -989
  195. data/apis/athena/2017-05-18/examples-1.json +0 -5
  196. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  197. data/apis/athena/2017-05-18/smoke.json +0 -11
  198. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  199. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  200. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  201. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  202. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  203. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  204. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  205. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  206. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  207. data/apis/backup/2018-11-15/api-2.json +0 -2345
  208. data/apis/backup/2018-11-15/examples-1.json +0 -5
  209. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  210. data/apis/batch/2016-08-10/api-2.json +0 -1137
  211. data/apis/batch/2016-08-10/examples-1.json +0 -589
  212. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  213. data/apis/batch/2016-08-10/smoke.json +0 -11
  214. data/apis/budgets/2016-10-20/api-2.json +0 -830
  215. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  216. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  217. data/apis/ce/2017-10-25/api-2.json +0 -1633
  218. data/apis/ce/2017-10-25/examples-1.json +0 -5
  219. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  220. data/apis/chime/2018-05-01/api-2.json +0 -4653
  221. data/apis/chime/2018-05-01/examples-1.json +0 -5
  222. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  223. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  224. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  225. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  226. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  227. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  228. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  229. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  230. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  231. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  232. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  233. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  234. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  235. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  236. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  237. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  238. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  239. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  243. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  247. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  250. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  254. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  257. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  258. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  259. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  262. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  263. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  265. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  266. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  267. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  268. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  269. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  270. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  271. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  272. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  273. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  274. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  276. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  279. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  280. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  281. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  282. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  283. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  284. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  285. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  286. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  287. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  288. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  289. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  290. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  291. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  292. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  293. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  295. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  296. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  297. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  298. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  299. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  300. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  301. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  302. data/apis/codebuild/2016-10-06/api-2.json +0 -1888
  303. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  304. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  305. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  306. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  307. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  308. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  309. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  311. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  312. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  313. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  314. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  315. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  316. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  317. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  318. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  319. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  320. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  321. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  322. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  323. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  324. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  325. data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
  326. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  327. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  328. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  329. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  330. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  331. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  332. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  333. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  334. data/apis/codestar/2017-04-19/smoke.json +0 -11
  335. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  336. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  337. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  338. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  339. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  340. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  341. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  342. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  343. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  344. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  345. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  346. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -924
  347. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  348. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  349. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  350. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  351. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  352. data/apis/config/2014-11-12/api-2.json +0 -4340
  353. data/apis/config/2014-11-12/examples-1.json +0 -5
  354. data/apis/config/2014-11-12/paginators-1.json +0 -21
  355. data/apis/config/2014-11-12/smoke.json +0 -19
  356. data/apis/connect/2017-08-08/api-2.json +0 -2139
  357. data/apis/connect/2017-08-08/examples-1.json +0 -5
  358. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  359. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  360. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  361. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  362. data/apis/cur/2017-01-06/api-2.json +0 -277
  363. data/apis/cur/2017-01-06/examples-1.json +0 -102
  364. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  365. data/apis/cur/2017-01-06/smoke.json +0 -11
  366. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  367. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  368. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  369. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  370. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  371. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  372. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  373. data/apis/dax/2017-04-19/api-2.json +0 -1140
  374. data/apis/dax/2017-04-19/examples-1.json +0 -5
  375. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  376. data/apis/detective/2018-10-26/api-2.json +0 -447
  377. data/apis/detective/2018-10-26/examples-1.json +0 -5
  378. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  379. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  380. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  381. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  382. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  383. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  384. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  385. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  386. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  387. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  388. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  389. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  390. data/apis/discovery/2015-11-01/smoke.json +0 -11
  391. data/apis/dlm/2018-01-12/api-2.json +0 -687
  392. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  393. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  394. data/apis/dms/2016-01-01/api-2.json +0 -2296
  395. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  396. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  397. data/apis/dms/2016-01-01/smoke.json +0 -18
  398. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  399. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  400. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  401. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  402. data/apis/docdb/2014-10-31/smoke.json +0 -18
  403. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  404. data/apis/ds/2015-04-16/api-2.json +0 -3018
  405. data/apis/ds/2015-04-16/examples-1.json +0 -5
  406. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  407. data/apis/ds/2015-04-16/smoke.json +0 -20
  408. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  409. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  410. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  411. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  412. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  413. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  414. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  415. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  416. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  417. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  418. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  419. data/apis/ebs/2019-11-02/api-2.json +0 -277
  420. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  421. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  422. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  423. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  424. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  425. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  426. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  427. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  428. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  429. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  430. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  431. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  432. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  433. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  434. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  436. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  437. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  438. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  439. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  440. data/apis/ec2/2016-11-15/api-2.json +0 -29112
  441. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  442. data/apis/ec2/2016-11-15/paginators-1.json +0 -474
  443. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  444. data/apis/ec2/2016-11-15/smoke.json +0 -20
  445. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  446. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  447. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  448. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  449. data/apis/ecr/2015-09-21/smoke.json +0 -18
  450. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  451. data/apis/ecs/2014-11-13/api-2.json +0 -3139
  452. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  453. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  454. data/apis/ecs/2014-11-13/smoke.json +0 -18
  455. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  456. data/apis/eks/2017-11-01/api-2.json +0 -1432
  457. data/apis/eks/2017-11-01/examples-1.json +0 -135
  458. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  459. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  460. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  461. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  462. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  463. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  464. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  465. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  466. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  467. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  468. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  469. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  470. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  471. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  472. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
  473. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  474. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  475. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  476. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  477. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  478. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  479. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  480. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  481. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  482. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  483. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  484. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  486. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  487. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  488. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  489. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  490. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  491. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  492. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  493. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  494. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  495. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  496. data/apis/email/2010-12-01/api-2.json +0 -3182
  497. data/apis/email/2010-12-01/examples-1.json +0 -1021
  498. data/apis/email/2010-12-01/paginators-1.json +0 -18
  499. data/apis/email/2010-12-01/smoke.json +0 -18
  500. data/apis/email/2010-12-01/waiters-2.json +0 -18
  501. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  502. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  503. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  504. data/apis/es/2015-01-01/api-2.json +0 -1584
  505. data/apis/es/2015-01-01/examples-1.json +0 -5
  506. data/apis/es/2015-01-01/paginators-1.json +0 -29
  507. data/apis/es/2015-01-01/smoke.json +0 -18
  508. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  509. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  510. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  511. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  512. data/apis/events/2015-10-07/api-2.json +0 -1462
  513. data/apis/events/2015-10-07/examples-1.json +0 -5
  514. data/apis/events/2015-10-07/paginators-1.json +0 -4
  515. data/apis/events/2015-10-07/smoke.json +0 -18
  516. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  517. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  518. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  519. data/apis/firehose/2015-08-04/smoke.json +0 -18
  520. data/apis/fms/2018-01-01/api-2.json +0 -829
  521. data/apis/fms/2018-01-01/examples-1.json +0 -5
  522. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  523. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  524. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  525. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  526. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  527. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  528. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  529. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  530. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  531. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  532. data/apis/fsx/2018-03-01/api-2.json +0 -1340
  533. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  534. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  535. data/apis/gamelift/2015-10-01/api-2.json +0 -3695
  536. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  537. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  538. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  539. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  540. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  541. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  542. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  543. data/apis/glacier/2012-06-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  545. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  546. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  547. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  548. data/apis/glue/2017-03-31/api-2.json +0 -6302
  549. data/apis/glue/2017-03-31/examples-1.json +0 -5
  550. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  551. data/apis/glue/2017-03-31/smoke.json +0 -11
  552. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  553. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  554. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  555. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  556. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  557. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  558. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  559. data/apis/health/2016-08-04/api-2.json +0 -836
  560. data/apis/health/2016-08-04/examples-1.json +0 -5
  561. data/apis/health/2016-08-04/paginators-1.json +0 -52
  562. data/apis/health/2016-08-04/smoke.json +0 -11
  563. data/apis/iam/2010-05-08/api-2.json +0 -5797
  564. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  565. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  566. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  567. data/apis/iam/2010-05-08/smoke.json +0 -18
  568. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  569. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  570. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  571. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  572. data/apis/importexport/2010-06-01/api-2.json +0 -667
  573. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  574. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  575. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  576. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  577. data/apis/inspector/2016-02-16/smoke.json +0 -18
  578. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  579. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  580. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  581. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  582. data/apis/iot/2015-05-28/api-2.json +0 -11061
  583. data/apis/iot/2015-05-28/examples-1.json +0 -5
  584. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  585. data/apis/iot/2015-05-28/smoke.json +0 -18
  586. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  587. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  588. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  589. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  590. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  591. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  592. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  593. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  594. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  595. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  596. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  597. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  598. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  599. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  600. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  601. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  602. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  603. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  604. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  605. data/apis/kafka/2018-11-14/api-2.json +0 -2113
  606. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  607. data/apis/kendra/2019-02-03/api-2.json +0 -1738
  608. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  609. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  610. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  611. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  612. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  613. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  614. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  616. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  617. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  618. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  619. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  620. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  621. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  622. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  623. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  624. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  625. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  626. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  627. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  628. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  629. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  630. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -954
  631. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  632. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  633. data/apis/kms/2014-11-01/api-2.json +0 -2154
  634. data/apis/kms/2014-11-01/examples-1.json +0 -906
  635. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  636. data/apis/kms/2014-11-01/smoke.json +0 -19
  637. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  638. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  639. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  640. data/apis/lambda/2014-11-11/api-2.json +0 -668
  641. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  642. data/apis/lambda/2015-03-31/api-2.json +0 -2944
  643. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  644. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  645. data/apis/lambda/2015-03-31/smoke.json +0 -18
  646. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  647. data/apis/lex-models/2017-04-19/api-2.json +0 -2363
  648. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  649. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  650. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  651. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  652. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  653. data/apis/lightsail/2016-11-28/api-2.json +0 -5017
  654. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  655. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  656. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  657. data/apis/logs/2014-03-28/api-2.json +0 -1701
  658. data/apis/logs/2014-03-28/examples-1.json +0 -5
  659. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  660. data/apis/logs/2014-03-28/smoke.json +0 -19
  661. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  662. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  663. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  664. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  665. data/apis/macie/2017-12-19/api-2.json +0 -365
  666. data/apis/macie/2017-12-19/examples-1.json +0 -5
  667. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  668. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  669. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  670. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  671. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  672. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  673. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  674. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  675. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  676. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  677. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  678. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  679. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  680. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8684
  681. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  682. data/apis/medialive/2017-10-14/api-2.json +0 -10694
  683. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  684. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  685. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  686. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  689. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  690. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  692. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  693. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  701. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  702. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  703. data/apis/mobile/2017-07-01/api-2.json +0 -551
  704. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  705. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  706. data/apis/monitoring/2010-08-01/api-2.json +0 -1876
  707. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  708. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  709. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  710. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  711. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  712. data/apis/mq/2017-11-27/api-2.json +0 -2577
  713. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  714. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  715. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  716. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  717. data/apis/neptune/2014-10-31/api-2.json +0 -3523
  718. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  719. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  720. data/apis/neptune/2014-10-31/smoke.json +0 -18
  721. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  722. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  723. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  724. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  725. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  726. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  727. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  728. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  729. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  730. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  731. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  732. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  733. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  734. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  735. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  736. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  737. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  738. data/apis/outposts/2019-12-03/api-2.json +0 -367
  739. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  740. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  741. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  742. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  743. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  744. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
  745. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  746. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  747. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  748. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  749. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  750. data/apis/pi/2018-02-27/api-2.json +0 -253
  751. data/apis/pi/2018-02-27/examples-1.json +0 -5
  752. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  753. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  754. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  755. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  756. data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
  757. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  758. data/apis/polly/2016-06-10/api-2.json +0 -832
  759. data/apis/polly/2016-06-10/examples-1.json +0 -171
  760. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  761. data/apis/polly/2016-06-10/smoke.json +0 -11
  762. data/apis/pricing/2017-10-15/api-2.json +0 -227
  763. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  764. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  765. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  766. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  767. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  768. data/apis/qldb/2019-01-02/api-2.json +0 -776
  769. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  770. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  771. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  772. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  773. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  774. data/apis/ram/2018-01-04/api-2.json +0 -1272
  775. data/apis/ram/2018-01-04/examples-1.json +0 -5
  776. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  777. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  778. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  779. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  780. data/apis/rds/2013-01-10/api-2.json +0 -2903
  781. data/apis/rds/2013-01-10/examples-1.json +0 -5
  782. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  783. data/apis/rds/2013-01-10/smoke.json +0 -18
  784. data/apis/rds/2013-02-12/api-2.json +0 -3059
  785. data/apis/rds/2013-02-12/examples-1.json +0 -5
  786. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  787. data/apis/rds/2013-02-12/smoke.json +0 -18
  788. data/apis/rds/2013-09-09/api-2.json +0 -3160
  789. data/apis/rds/2013-09-09/examples-1.json +0 -5
  790. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  791. data/apis/rds/2013-09-09/smoke.json +0 -18
  792. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  793. data/apis/rds/2014-09-01/api-2.json +0 -3273
  794. data/apis/rds/2014-09-01/examples-1.json +0 -5
  795. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  796. data/apis/rds/2014-09-01/smoke.json +0 -18
  797. data/apis/rds/2014-10-31/api-2.json +0 -7646
  798. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  799. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  800. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  801. data/apis/rds/2014-10-31/smoke.json +0 -18
  802. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  803. data/apis/rds/2015-11-12/api-2.json +0 -5509
  804. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  805. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  806. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  807. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  808. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  809. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  810. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  811. data/apis/redshift/2012-12-01/smoke.json +0 -18
  812. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  813. data/apis/rekognition/2016-06-27/api-2.json +0 -2659
  814. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  815. data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
  816. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  817. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  818. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  819. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  820. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  821. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  822. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  823. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  824. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  825. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  826. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  827. data/apis/route53/2013-04-01/api-2.json +0 -3780
  828. data/apis/route53/2013-04-01/examples-1.json +0 -762
  829. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  830. data/apis/route53/2013-04-01/smoke.json +0 -18
  831. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  832. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  833. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  834. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  835. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  836. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  837. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  838. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  839. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  840. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  841. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  842. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  843. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  844. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  845. data/apis/s3/2006-03-01/api-2.json +0 -6653
  846. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  847. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  848. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  849. data/apis/s3/2006-03-01/smoke.json +0 -11
  850. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  851. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  852. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  853. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  854. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  855. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  856. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  857. data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
  858. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  859. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  860. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  861. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  862. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  863. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  864. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  865. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  866. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  867. data/apis/sdb/2009-04-15/api-2.json +0 -955
  868. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  869. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  870. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  871. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  872. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  873. data/apis/securityhub/2018-10-26/api-2.json +0 -2443
  874. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  875. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  876. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  877. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  878. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  879. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  880. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  881. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  882. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  883. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  884. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  885. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  886. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  887. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  888. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  889. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  890. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  891. data/apis/shield/2016-06-02/api-2.json +0 -893
  892. data/apis/shield/2016-06-02/examples-1.json +0 -5
  893. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  894. data/apis/shield/2016-06-02/smoke.json +0 -11
  895. data/apis/signer/2017-08-25/api-2.json +0 -817
  896. data/apis/signer/2017-08-25/examples-1.json +0 -5
  897. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  898. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  899. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  900. data/apis/sms/2016-10-24/api-2.json +0 -1366
  901. data/apis/sms/2016-10-24/examples-1.json +0 -5
  902. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  903. data/apis/sms/2016-10-24/smoke.json +0 -18
  904. data/apis/snowball/2016-06-30/api-2.json +0 -955
  905. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  906. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  907. data/apis/snowball/2016-06-30/smoke.json +0 -11
  908. data/apis/sns/2010-03-31/api-2.json +0 -1468
  909. data/apis/sns/2010-03-31/examples-1.json +0 -5
  910. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  911. data/apis/sns/2010-03-31/resources-1.json +0 -327
  912. data/apis/sns/2010-03-31/smoke.json +0 -19
  913. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  914. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  915. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  916. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  917. data/apis/sqs/2012-11-05/smoke.json +0 -18
  918. data/apis/ssm/2014-11-06/api-2.json +0 -9210
  919. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  920. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  921. data/apis/ssm/2014-11-06/smoke.json +0 -18
  922. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  923. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  924. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  925. data/apis/sso/2019-06-10/api-2.json +0 -281
  926. data/apis/sso/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  928. data/apis/states/2016-11-23/api-2.json +0 -1476
  929. data/apis/states/2016-11-23/examples-1.json +0 -5
  930. data/apis/states/2016-11-23/paginators-1.json +0 -28
  931. data/apis/states/2016-11-23/smoke.json +0 -11
  932. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  933. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  934. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  935. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  936. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  937. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  938. data/apis/sts/2011-06-15/api-2.json +0 -598
  939. data/apis/sts/2011-06-15/examples-1.json +0 -271
  940. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/smoke.json +0 -19
  942. data/apis/support/2013-04-15/api-2.json +0 -773
  943. data/apis/support/2013-04-15/examples-1.json +0 -5
  944. data/apis/support/2013-04-15/paginators-1.json +0 -25
  945. data/apis/support/2013-04-15/smoke.json +0 -22
  946. data/apis/swf/2012-01-25/api-2.json +0 -2792
  947. data/apis/swf/2012-01-25/examples-1.json +0 -5
  948. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  949. data/apis/textract/2018-06-27/api-2.json +0 -653
  950. data/apis/textract/2018-06-27/examples-1.json +0 -5
  951. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  952. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  953. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  954. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  955. data/apis/transcribe/2017-10-26/api-2.json +0 -740
  956. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  957. data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
  958. data/apis/transfer/2018-11-05/api-2.json +0 -964
  959. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  960. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  961. data/apis/translate/2017-07-01/api-2.json +0 -658
  962. data/apis/translate/2017-07-01/examples-1.json +0 -5
  963. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  964. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  965. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  966. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  967. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  968. data/apis/waf/2015-08-24/api-2.json +0 -3857
  969. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  970. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  971. data/apis/waf/2015-08-24/smoke.json +0 -21
  972. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  973. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  974. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  975. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  976. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  977. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  978. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  979. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  980. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  981. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  982. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  983. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  984. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  985. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  986. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  987. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  988. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  989. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  990. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  991. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  992. data/apis/xray/2016-04-12/api-2.json +0 -1352
  993. data/apis/xray/2016-04-12/examples-1.json +0 -5
  994. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  995. data/bin/aws.rb +0 -180
  996. data/endpoints.json +0 -5885
  997. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  998. data/lib/aws-sdk-core/acm.rb +0 -7
  999. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1000. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1001. data/lib/aws-sdk-core/amplify.rb +0 -6
  1002. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1003. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1004. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1005. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1006. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1007. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1008. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1009. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1010. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1011. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1012. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1013. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1014. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1015. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1016. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1017. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1018. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1019. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1020. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1021. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1022. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1023. data/lib/aws-sdk-core/appstream.rb +0 -7
  1024. data/lib/aws-sdk-core/appsync.rb +0 -6
  1025. data/lib/aws-sdk-core/athena.rb +0 -6
  1026. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1027. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1028. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1029. data/lib/aws-sdk-core/backup.rb +0 -6
  1030. data/lib/aws-sdk-core/batch.rb +0 -6
  1031. data/lib/aws-sdk-core/budgets.rb +0 -6
  1032. data/lib/aws-sdk-core/checksums.rb +0 -51
  1033. data/lib/aws-sdk-core/chime.rb +0 -6
  1034. data/lib/aws-sdk-core/client.rb +0 -62
  1035. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1036. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1037. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1038. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1039. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1040. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1041. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1042. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1043. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1044. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1045. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1047. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1048. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1049. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1050. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1051. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1052. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1053. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1054. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1055. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1056. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1057. data/lib/aws-sdk-core/codestar.rb +0 -6
  1058. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1059. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1060. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1061. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1062. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1063. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1064. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1065. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1066. data/lib/aws-sdk-core/configservice.rb +0 -6
  1067. data/lib/aws-sdk-core/connect.rb +0 -6
  1068. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1069. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1070. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1071. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1072. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1073. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1074. data/lib/aws-sdk-core/datasync.rb +0 -6
  1075. data/lib/aws-sdk-core/dax.rb +0 -6
  1076. data/lib/aws-sdk-core/detective.rb +0 -6
  1077. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1078. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1079. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1080. data/lib/aws-sdk-core/dlm.rb +0 -6
  1081. data/lib/aws-sdk-core/docdb.rb +0 -7
  1082. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1083. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1084. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1085. data/lib/aws-sdk-core/ebs.rb +0 -6
  1086. data/lib/aws-sdk-core/ec2.rb +0 -8
  1087. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1088. data/lib/aws-sdk-core/ecr.rb +0 -7
  1089. data/lib/aws-sdk-core/ecs.rb +0 -7
  1090. data/lib/aws-sdk-core/efs.rb +0 -6
  1091. data/lib/aws-sdk-core/eks.rb +0 -7
  1092. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1093. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1094. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1095. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1096. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1097. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1098. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1099. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1100. data/lib/aws-sdk-core/emr.rb +0 -7
  1101. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1102. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1103. data/lib/aws-sdk-core/firehose.rb +0 -6
  1104. data/lib/aws-sdk-core/fms.rb +0 -6
  1105. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1106. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1107. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1108. data/lib/aws-sdk-core/fsx.rb +0 -6
  1109. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1110. data/lib/aws-sdk-core/glacier.rb +0 -8
  1111. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1112. data/lib/aws-sdk-core/glue.rb +0 -6
  1113. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1114. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1115. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1116. data/lib/aws-sdk-core/health.rb +0 -6
  1117. data/lib/aws-sdk-core/iam.rb +0 -8
  1118. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1119. data/lib/aws-sdk-core/importexport.rb +0 -5
  1120. data/lib/aws-sdk-core/inspector.rb +0 -6
  1121. data/lib/aws-sdk-core/iot.rb +0 -6
  1122. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1123. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1124. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1125. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1126. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1127. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1128. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1129. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1130. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1131. data/lib/aws-sdk-core/kafka.rb +0 -5
  1132. data/lib/aws-sdk-core/kendra.rb +0 -6
  1133. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1134. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1135. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1136. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1137. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1138. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1139. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1140. data/lib/aws-sdk-core/kms.rb +0 -6
  1141. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1142. data/lib/aws-sdk-core/lambda.rb +0 -7
  1143. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1144. data/lib/aws-sdk-core/lex.rb +0 -6
  1145. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1146. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1147. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1148. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1149. data/lib/aws-sdk-core/macie.rb +0 -6
  1150. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1151. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1152. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1153. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1154. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1155. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1156. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1157. data/lib/aws-sdk-core/medialive.rb +0 -6
  1158. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1159. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1160. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1161. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1162. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1163. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1164. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1165. data/lib/aws-sdk-core/mobile.rb +0 -6
  1166. data/lib/aws-sdk-core/mq.rb +0 -5
  1167. data/lib/aws-sdk-core/mturk.rb +0 -6
  1168. data/lib/aws-sdk-core/neptune.rb +0 -7
  1169. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1170. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1171. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1172. data/lib/aws-sdk-core/organizations.rb +0 -6
  1173. data/lib/aws-sdk-core/outposts.rb +0 -6
  1174. data/lib/aws-sdk-core/partitions.rb +0 -174
  1175. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1176. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1177. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1178. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1179. data/lib/aws-sdk-core/personalize.rb +0 -6
  1180. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1181. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1182. data/lib/aws-sdk-core/pi.rb +0 -6
  1183. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1184. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1185. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1186. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1187. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1188. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1189. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1190. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1191. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1192. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1193. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1194. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1195. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1197. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1198. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1199. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1200. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1201. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1202. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1203. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1204. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1205. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1206. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1207. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1208. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1209. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1210. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1211. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1212. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1213. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1214. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1215. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1216. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1217. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1218. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1219. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1220. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1221. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1222. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1223. data/lib/aws-sdk-core/polly.rb +0 -14
  1224. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1225. data/lib/aws-sdk-core/pricing.rb +0 -6
  1226. data/lib/aws-sdk-core/qldb.rb +0 -6
  1227. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1228. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1229. data/lib/aws-sdk-core/ram.rb +0 -6
  1230. data/lib/aws-sdk-core/rds.rb +0 -16
  1231. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1232. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1233. data/lib/aws-sdk-core/redshift.rb +0 -7
  1234. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1235. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1236. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1237. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1238. data/lib/aws-sdk-core/route53.rb +0 -7
  1239. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1240. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1241. data/lib/aws-sdk-core/s3.rb +0 -26
  1242. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1243. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1244. data/lib/aws-sdk-core/s3control.rb +0 -6
  1245. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1246. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1247. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1248. data/lib/aws-sdk-core/schemas.rb +0 -6
  1249. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1250. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1251. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1252. data/lib/aws-sdk-core/service.rb +0 -4
  1253. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1254. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1255. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1256. data/lib/aws-sdk-core/ses.rb +0 -7
  1257. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1258. data/lib/aws-sdk-core/shield.rb +0 -6
  1259. data/lib/aws-sdk-core/signer.rb +0 -7
  1260. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1261. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1262. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1263. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1264. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1265. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1266. data/lib/aws-sdk-core/sms.rb +0 -6
  1267. data/lib/aws-sdk-core/snowball.rb +0 -6
  1268. data/lib/aws-sdk-core/sns.rb +0 -7
  1269. data/lib/aws-sdk-core/sqs.rb +0 -7
  1270. data/lib/aws-sdk-core/ssm.rb +0 -6
  1271. data/lib/aws-sdk-core/sso.rb +0 -6
  1272. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1273. data/lib/aws-sdk-core/states.rb +0 -6
  1274. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1275. data/lib/aws-sdk-core/sts.rb +0 -6
  1276. data/lib/aws-sdk-core/support.rb +0 -6
  1277. data/lib/aws-sdk-core/swf.rb +0 -6
  1278. data/lib/aws-sdk-core/textract.rb +0 -6
  1279. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1280. data/lib/aws-sdk-core/transfer.rb +0 -6
  1281. data/lib/aws-sdk-core/translate.rb +0 -6
  1282. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1283. data/lib/aws-sdk-core/version.rb +0 -3
  1284. data/lib/aws-sdk-core/waf.rb +0 -6
  1285. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1286. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1287. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1288. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1289. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1290. data/lib/aws-sdk-core/worklink.rb +0 -6
  1291. data/lib/aws-sdk-core/workmail.rb +0 -6
  1292. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1293. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1294. data/lib/aws-sdk-core/xray.rb +0 -6
  1295. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1296. data/service-models.json +0 -881
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,14 +0,0 @@
1
- {
2
- "pagination": {
3
- "GetSavingsPlansCoverage": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "GetSavingsPlansUtilizationDetails": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- }
13
- }
14
- }
@@ -1,4653 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2018-05-01",
5
- "endpointPrefix":"chime",
6
- "protocol":"rest-json",
7
- "serviceFullName":"Amazon Chime",
8
- "serviceId":"Chime",
9
- "signatureVersion":"v4",
10
- "uid":"chime-2018-05-01"
11
- },
12
- "operations":{
13
- "AssociatePhoneNumberWithUser":{
14
- "name":"AssociatePhoneNumberWithUser",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=associate-phone-number",
18
- "responseCode":200
19
- },
20
- "input":{"shape":"AssociatePhoneNumberWithUserRequest"},
21
- "output":{"shape":"AssociatePhoneNumberWithUserResponse"},
22
- "errors":[
23
- {"shape":"UnauthorizedClientException"},
24
- {"shape":"NotFoundException"},
25
- {"shape":"ForbiddenException"},
26
- {"shape":"BadRequestException"},
27
- {"shape":"AccessDeniedException"},
28
- {"shape":"ThrottledClientException"},
29
- {"shape":"ServiceUnavailableException"},
30
- {"shape":"ServiceFailureException"}
31
- ]
32
- },
33
- "AssociatePhoneNumbersWithVoiceConnector":{
34
- "name":"AssociatePhoneNumbersWithVoiceConnector",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=associate-phone-numbers",
38
- "responseCode":200
39
- },
40
- "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorRequest"},
41
- "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorResponse"},
42
- "errors":[
43
- {"shape":"UnauthorizedClientException"},
44
- {"shape":"NotFoundException"},
45
- {"shape":"ForbiddenException"},
46
- {"shape":"BadRequestException"},
47
- {"shape":"AccessDeniedException"},
48
- {"shape":"ThrottledClientException"},
49
- {"shape":"ServiceUnavailableException"},
50
- {"shape":"ServiceFailureException"}
51
- ]
52
- },
53
- "AssociatePhoneNumbersWithVoiceConnectorGroup":{
54
- "name":"AssociatePhoneNumbersWithVoiceConnectorGroup",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=associate-phone-numbers",
58
- "responseCode":200
59
- },
60
- "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupRequest"},
61
- "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupResponse"},
62
- "errors":[
63
- {"shape":"UnauthorizedClientException"},
64
- {"shape":"NotFoundException"},
65
- {"shape":"ForbiddenException"},
66
- {"shape":"BadRequestException"},
67
- {"shape":"AccessDeniedException"},
68
- {"shape":"ThrottledClientException"},
69
- {"shape":"ServiceUnavailableException"},
70
- {"shape":"ServiceFailureException"}
71
- ]
72
- },
73
- "AssociateSigninDelegateGroupsWithAccount":{
74
- "name":"AssociateSigninDelegateGroupsWithAccount",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/accounts/{accountId}?operation=associate-signin-delegate-groups",
78
- "responseCode":200
79
- },
80
- "input":{"shape":"AssociateSigninDelegateGroupsWithAccountRequest"},
81
- "output":{"shape":"AssociateSigninDelegateGroupsWithAccountResponse"},
82
- "errors":[
83
- {"shape":"UnauthorizedClientException"},
84
- {"shape":"NotFoundException"},
85
- {"shape":"ForbiddenException"},
86
- {"shape":"BadRequestException"},
87
- {"shape":"ThrottledClientException"},
88
- {"shape":"ServiceUnavailableException"},
89
- {"shape":"ServiceFailureException"}
90
- ]
91
- },
92
- "BatchCreateAttendee":{
93
- "name":"BatchCreateAttendee",
94
- "http":{
95
- "method":"POST",
96
- "requestUri":"/meetings/{meetingId}/attendees?operation=batch-create",
97
- "responseCode":201
98
- },
99
- "input":{"shape":"BatchCreateAttendeeRequest"},
100
- "output":{"shape":"BatchCreateAttendeeResponse"},
101
- "errors":[
102
- {"shape":"BadRequestException"},
103
- {"shape":"ForbiddenException"},
104
- {"shape":"NotFoundException"},
105
- {"shape":"ResourceLimitExceededException"},
106
- {"shape":"ThrottledClientException"},
107
- {"shape":"UnauthorizedClientException"},
108
- {"shape":"ServiceUnavailableException"},
109
- {"shape":"ServiceFailureException"}
110
- ]
111
- },
112
- "BatchCreateRoomMembership":{
113
- "name":"BatchCreateRoomMembership",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships?operation=batch-create",
117
- "responseCode":201
118
- },
119
- "input":{"shape":"BatchCreateRoomMembershipRequest"},
120
- "output":{"shape":"BatchCreateRoomMembershipResponse"},
121
- "errors":[
122
- {"shape":"UnauthorizedClientException"},
123
- {"shape":"NotFoundException"},
124
- {"shape":"BadRequestException"},
125
- {"shape":"ForbiddenException"},
126
- {"shape":"ThrottledClientException"},
127
- {"shape":"ServiceUnavailableException"},
128
- {"shape":"ServiceFailureException"}
129
- ]
130
- },
131
- "BatchDeletePhoneNumber":{
132
- "name":"BatchDeletePhoneNumber",
133
- "http":{
134
- "method":"POST",
135
- "requestUri":"/phone-numbers?operation=batch-delete",
136
- "responseCode":200
137
- },
138
- "input":{"shape":"BatchDeletePhoneNumberRequest"},
139
- "output":{"shape":"BatchDeletePhoneNumberResponse"},
140
- "errors":[
141
- {"shape":"UnauthorizedClientException"},
142
- {"shape":"NotFoundException"},
143
- {"shape":"ForbiddenException"},
144
- {"shape":"BadRequestException"},
145
- {"shape":"ThrottledClientException"},
146
- {"shape":"ServiceUnavailableException"},
147
- {"shape":"ServiceFailureException"}
148
- ]
149
- },
150
- "BatchSuspendUser":{
151
- "name":"BatchSuspendUser",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/accounts/{accountId}/users?operation=suspend",
155
- "responseCode":200
156
- },
157
- "input":{"shape":"BatchSuspendUserRequest"},
158
- "output":{"shape":"BatchSuspendUserResponse"},
159
- "errors":[
160
- {"shape":"UnauthorizedClientException"},
161
- {"shape":"NotFoundException"},
162
- {"shape":"ForbiddenException"},
163
- {"shape":"BadRequestException"},
164
- {"shape":"ThrottledClientException"},
165
- {"shape":"ServiceUnavailableException"},
166
- {"shape":"ServiceFailureException"}
167
- ]
168
- },
169
- "BatchUnsuspendUser":{
170
- "name":"BatchUnsuspendUser",
171
- "http":{
172
- "method":"POST",
173
- "requestUri":"/accounts/{accountId}/users?operation=unsuspend",
174
- "responseCode":200
175
- },
176
- "input":{"shape":"BatchUnsuspendUserRequest"},
177
- "output":{"shape":"BatchUnsuspendUserResponse"},
178
- "errors":[
179
- {"shape":"UnauthorizedClientException"},
180
- {"shape":"NotFoundException"},
181
- {"shape":"ForbiddenException"},
182
- {"shape":"BadRequestException"},
183
- {"shape":"ThrottledClientException"},
184
- {"shape":"ServiceUnavailableException"},
185
- {"shape":"ServiceFailureException"}
186
- ]
187
- },
188
- "BatchUpdatePhoneNumber":{
189
- "name":"BatchUpdatePhoneNumber",
190
- "http":{
191
- "method":"POST",
192
- "requestUri":"/phone-numbers?operation=batch-update",
193
- "responseCode":200
194
- },
195
- "input":{"shape":"BatchUpdatePhoneNumberRequest"},
196
- "output":{"shape":"BatchUpdatePhoneNumberResponse"},
197
- "errors":[
198
- {"shape":"UnauthorizedClientException"},
199
- {"shape":"NotFoundException"},
200
- {"shape":"ForbiddenException"},
201
- {"shape":"BadRequestException"},
202
- {"shape":"ThrottledClientException"},
203
- {"shape":"ServiceUnavailableException"},
204
- {"shape":"ServiceFailureException"}
205
- ]
206
- },
207
- "BatchUpdateUser":{
208
- "name":"BatchUpdateUser",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/accounts/{accountId}/users",
212
- "responseCode":200
213
- },
214
- "input":{"shape":"BatchUpdateUserRequest"},
215
- "output":{"shape":"BatchUpdateUserResponse"},
216
- "errors":[
217
- {"shape":"UnauthorizedClientException"},
218
- {"shape":"NotFoundException"},
219
- {"shape":"ForbiddenException"},
220
- {"shape":"BadRequestException"},
221
- {"shape":"ThrottledClientException"},
222
- {"shape":"ServiceUnavailableException"},
223
- {"shape":"ServiceFailureException"}
224
- ]
225
- },
226
- "CreateAccount":{
227
- "name":"CreateAccount",
228
- "http":{
229
- "method":"POST",
230
- "requestUri":"/accounts",
231
- "responseCode":201
232
- },
233
- "input":{"shape":"CreateAccountRequest"},
234
- "output":{"shape":"CreateAccountResponse"},
235
- "errors":[
236
- {"shape":"UnauthorizedClientException"},
237
- {"shape":"NotFoundException"},
238
- {"shape":"ForbiddenException"},
239
- {"shape":"BadRequestException"},
240
- {"shape":"ThrottledClientException"},
241
- {"shape":"ServiceUnavailableException"},
242
- {"shape":"ServiceFailureException"}
243
- ]
244
- },
245
- "CreateAttendee":{
246
- "name":"CreateAttendee",
247
- "http":{
248
- "method":"POST",
249
- "requestUri":"/meetings/{meetingId}/attendees",
250
- "responseCode":201
251
- },
252
- "input":{"shape":"CreateAttendeeRequest"},
253
- "output":{"shape":"CreateAttendeeResponse"},
254
- "errors":[
255
- {"shape":"BadRequestException"},
256
- {"shape":"ForbiddenException"},
257
- {"shape":"NotFoundException"},
258
- {"shape":"ResourceLimitExceededException"},
259
- {"shape":"ThrottledClientException"},
260
- {"shape":"UnauthorizedClientException"},
261
- {"shape":"ServiceUnavailableException"},
262
- {"shape":"ServiceFailureException"}
263
- ]
264
- },
265
- "CreateBot":{
266
- "name":"CreateBot",
267
- "http":{
268
- "method":"POST",
269
- "requestUri":"/accounts/{accountId}/bots",
270
- "responseCode":201
271
- },
272
- "input":{"shape":"CreateBotRequest"},
273
- "output":{"shape":"CreateBotResponse"},
274
- "errors":[
275
- {"shape":"ServiceUnavailableException"},
276
- {"shape":"ServiceFailureException"},
277
- {"shape":"ForbiddenException"},
278
- {"shape":"BadRequestException"},
279
- {"shape":"UnauthorizedClientException"},
280
- {"shape":"ResourceLimitExceededException"},
281
- {"shape":"NotFoundException"},
282
- {"shape":"ThrottledClientException"}
283
- ]
284
- },
285
- "CreateMeeting":{
286
- "name":"CreateMeeting",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/meetings",
290
- "responseCode":201
291
- },
292
- "input":{"shape":"CreateMeetingRequest"},
293
- "output":{"shape":"CreateMeetingResponse"},
294
- "errors":[
295
- {"shape":"BadRequestException"},
296
- {"shape":"ForbiddenException"},
297
- {"shape":"ResourceLimitExceededException"},
298
- {"shape":"ThrottledClientException"},
299
- {"shape":"UnauthorizedClientException"},
300
- {"shape":"ServiceUnavailableException"},
301
- {"shape":"ServiceFailureException"}
302
- ]
303
- },
304
- "CreatePhoneNumberOrder":{
305
- "name":"CreatePhoneNumberOrder",
306
- "http":{
307
- "method":"POST",
308
- "requestUri":"/phone-number-orders",
309
- "responseCode":201
310
- },
311
- "input":{"shape":"CreatePhoneNumberOrderRequest"},
312
- "output":{"shape":"CreatePhoneNumberOrderResponse"},
313
- "errors":[
314
- {"shape":"BadRequestException"},
315
- {"shape":"ForbiddenException"},
316
- {"shape":"AccessDeniedException"},
317
- {"shape":"UnauthorizedClientException"},
318
- {"shape":"ThrottledClientException"},
319
- {"shape":"ResourceLimitExceededException"},
320
- {"shape":"ServiceUnavailableException"},
321
- {"shape":"ServiceFailureException"}
322
- ]
323
- },
324
- "CreateRoom":{
325
- "name":"CreateRoom",
326
- "http":{
327
- "method":"POST",
328
- "requestUri":"/accounts/{accountId}/rooms",
329
- "responseCode":201
330
- },
331
- "input":{"shape":"CreateRoomRequest"},
332
- "output":{"shape":"CreateRoomResponse"},
333
- "errors":[
334
- {"shape":"NotFoundException"},
335
- {"shape":"BadRequestException"},
336
- {"shape":"ForbiddenException"},
337
- {"shape":"UnauthorizedClientException"},
338
- {"shape":"ResourceLimitExceededException"},
339
- {"shape":"ThrottledClientException"},
340
- {"shape":"ServiceUnavailableException"},
341
- {"shape":"ServiceFailureException"}
342
- ]
343
- },
344
- "CreateRoomMembership":{
345
- "name":"CreateRoomMembership",
346
- "http":{
347
- "method":"POST",
348
- "requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships",
349
- "responseCode":201
350
- },
351
- "input":{"shape":"CreateRoomMembershipRequest"},
352
- "output":{"shape":"CreateRoomMembershipResponse"},
353
- "errors":[
354
- {"shape":"ConflictException"},
355
- {"shape":"UnauthorizedClientException"},
356
- {"shape":"NotFoundException"},
357
- {"shape":"BadRequestException"},
358
- {"shape":"ForbiddenException"},
359
- {"shape":"ResourceLimitExceededException"},
360
- {"shape":"ThrottledClientException"},
361
- {"shape":"ServiceUnavailableException"},
362
- {"shape":"ServiceFailureException"}
363
- ]
364
- },
365
- "CreateUser":{
366
- "name":"CreateUser",
367
- "http":{
368
- "method":"POST",
369
- "requestUri":"/accounts/{accountId}/users?operation=create",
370
- "responseCode":201
371
- },
372
- "input":{"shape":"CreateUserRequest"},
373
- "output":{"shape":"CreateUserResponse"},
374
- "errors":[
375
- {"shape":"UnauthorizedClientException"},
376
- {"shape":"NotFoundException"},
377
- {"shape":"ConflictException"},
378
- {"shape":"ForbiddenException"},
379
- {"shape":"BadRequestException"},
380
- {"shape":"ThrottledClientException"},
381
- {"shape":"ServiceUnavailableException"},
382
- {"shape":"ServiceFailureException"}
383
- ]
384
- },
385
- "CreateVoiceConnector":{
386
- "name":"CreateVoiceConnector",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/voice-connectors",
390
- "responseCode":201
391
- },
392
- "input":{"shape":"CreateVoiceConnectorRequest"},
393
- "output":{"shape":"CreateVoiceConnectorResponse"},
394
- "errors":[
395
- {"shape":"BadRequestException"},
396
- {"shape":"ForbiddenException"},
397
- {"shape":"AccessDeniedException"},
398
- {"shape":"UnauthorizedClientException"},
399
- {"shape":"ThrottledClientException"},
400
- {"shape":"ResourceLimitExceededException"},
401
- {"shape":"ServiceUnavailableException"},
402
- {"shape":"ServiceFailureException"}
403
- ]
404
- },
405
- "CreateVoiceConnectorGroup":{
406
- "name":"CreateVoiceConnectorGroup",
407
- "http":{
408
- "method":"POST",
409
- "requestUri":"/voice-connector-groups",
410
- "responseCode":201
411
- },
412
- "input":{"shape":"CreateVoiceConnectorGroupRequest"},
413
- "output":{"shape":"CreateVoiceConnectorGroupResponse"},
414
- "errors":[
415
- {"shape":"BadRequestException"},
416
- {"shape":"ForbiddenException"},
417
- {"shape":"AccessDeniedException"},
418
- {"shape":"UnauthorizedClientException"},
419
- {"shape":"ThrottledClientException"},
420
- {"shape":"ResourceLimitExceededException"},
421
- {"shape":"ServiceUnavailableException"},
422
- {"shape":"ServiceFailureException"}
423
- ]
424
- },
425
- "DeleteAccount":{
426
- "name":"DeleteAccount",
427
- "http":{
428
- "method":"DELETE",
429
- "requestUri":"/accounts/{accountId}",
430
- "responseCode":204
431
- },
432
- "input":{"shape":"DeleteAccountRequest"},
433
- "output":{"shape":"DeleteAccountResponse"},
434
- "errors":[
435
- {"shape":"UnauthorizedClientException"},
436
- {"shape":"NotFoundException"},
437
- {"shape":"ForbiddenException"},
438
- {"shape":"BadRequestException"},
439
- {"shape":"ThrottledClientException"},
440
- {"shape":"UnprocessableEntityException"},
441
- {"shape":"ServiceUnavailableException"},
442
- {"shape":"ServiceFailureException"}
443
- ]
444
- },
445
- "DeleteAttendee":{
446
- "name":"DeleteAttendee",
447
- "http":{
448
- "method":"DELETE",
449
- "requestUri":"/meetings/{meetingId}/attendees/{attendeeId}",
450
- "responseCode":204
451
- },
452
- "input":{"shape":"DeleteAttendeeRequest"},
453
- "errors":[
454
- {"shape":"BadRequestException"},
455
- {"shape":"ForbiddenException"},
456
- {"shape":"ThrottledClientException"},
457
- {"shape":"NotFoundException"},
458
- {"shape":"UnauthorizedClientException"},
459
- {"shape":"ServiceUnavailableException"},
460
- {"shape":"ServiceFailureException"}
461
- ]
462
- },
463
- "DeleteEventsConfiguration":{
464
- "name":"DeleteEventsConfiguration",
465
- "http":{
466
- "method":"DELETE",
467
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
468
- "responseCode":204
469
- },
470
- "input":{"shape":"DeleteEventsConfigurationRequest"},
471
- "errors":[
472
- {"shape":"ServiceUnavailableException"},
473
- {"shape":"ServiceFailureException"},
474
- {"shape":"ForbiddenException"},
475
- {"shape":"BadRequestException"},
476
- {"shape":"UnauthorizedClientException"},
477
- {"shape":"ResourceLimitExceededException"}
478
- ]
479
- },
480
- "DeleteMeeting":{
481
- "name":"DeleteMeeting",
482
- "http":{
483
- "method":"DELETE",
484
- "requestUri":"/meetings/{meetingId}",
485
- "responseCode":204
486
- },
487
- "input":{"shape":"DeleteMeetingRequest"},
488
- "errors":[
489
- {"shape":"BadRequestException"},
490
- {"shape":"ForbiddenException"},
491
- {"shape":"ThrottledClientException"},
492
- {"shape":"NotFoundException"},
493
- {"shape":"UnauthorizedClientException"},
494
- {"shape":"ServiceUnavailableException"},
495
- {"shape":"ServiceFailureException"}
496
- ]
497
- },
498
- "DeletePhoneNumber":{
499
- "name":"DeletePhoneNumber",
500
- "http":{
501
- "method":"DELETE",
502
- "requestUri":"/phone-numbers/{phoneNumberId}",
503
- "responseCode":204
504
- },
505
- "input":{"shape":"DeletePhoneNumberRequest"},
506
- "errors":[
507
- {"shape":"UnauthorizedClientException"},
508
- {"shape":"NotFoundException"},
509
- {"shape":"ForbiddenException"},
510
- {"shape":"BadRequestException"},
511
- {"shape":"ThrottledClientException"},
512
- {"shape":"ServiceUnavailableException"},
513
- {"shape":"ServiceFailureException"}
514
- ]
515
- },
516
- "DeleteRoom":{
517
- "name":"DeleteRoom",
518
- "http":{
519
- "method":"DELETE",
520
- "requestUri":"/accounts/{accountId}/rooms/{roomId}",
521
- "responseCode":204
522
- },
523
- "input":{"shape":"DeleteRoomRequest"},
524
- "errors":[
525
- {"shape":"BadRequestException"},
526
- {"shape":"ForbiddenException"},
527
- {"shape":"NotFoundException"},
528
- {"shape":"UnauthorizedClientException"},
529
- {"shape":"ThrottledClientException"},
530
- {"shape":"ServiceUnavailableException"},
531
- {"shape":"ServiceFailureException"}
532
- ]
533
- },
534
- "DeleteRoomMembership":{
535
- "name":"DeleteRoomMembership",
536
- "http":{
537
- "method":"DELETE",
538
- "requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}",
539
- "responseCode":204
540
- },
541
- "input":{"shape":"DeleteRoomMembershipRequest"},
542
- "errors":[
543
- {"shape":"UnauthorizedClientException"},
544
- {"shape":"NotFoundException"},
545
- {"shape":"BadRequestException"},
546
- {"shape":"ForbiddenException"},
547
- {"shape":"ThrottledClientException"},
548
- {"shape":"ServiceUnavailableException"},
549
- {"shape":"ServiceFailureException"}
550
- ]
551
- },
552
- "DeleteVoiceConnector":{
553
- "name":"DeleteVoiceConnector",
554
- "http":{
555
- "method":"DELETE",
556
- "requestUri":"/voice-connectors/{voiceConnectorId}",
557
- "responseCode":204
558
- },
559
- "input":{"shape":"DeleteVoiceConnectorRequest"},
560
- "errors":[
561
- {"shape":"UnauthorizedClientException"},
562
- {"shape":"NotFoundException"},
563
- {"shape":"ForbiddenException"},
564
- {"shape":"BadRequestException"},
565
- {"shape":"ConflictException"},
566
- {"shape":"ThrottledClientException"},
567
- {"shape":"ServiceUnavailableException"},
568
- {"shape":"ServiceFailureException"}
569
- ]
570
- },
571
- "DeleteVoiceConnectorGroup":{
572
- "name":"DeleteVoiceConnectorGroup",
573
- "http":{
574
- "method":"DELETE",
575
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
576
- "responseCode":204
577
- },
578
- "input":{"shape":"DeleteVoiceConnectorGroupRequest"},
579
- "errors":[
580
- {"shape":"UnauthorizedClientException"},
581
- {"shape":"NotFoundException"},
582
- {"shape":"ForbiddenException"},
583
- {"shape":"BadRequestException"},
584
- {"shape":"ConflictException"},
585
- {"shape":"ThrottledClientException"},
586
- {"shape":"ServiceUnavailableException"},
587
- {"shape":"ServiceFailureException"}
588
- ]
589
- },
590
- "DeleteVoiceConnectorOrigination":{
591
- "name":"DeleteVoiceConnectorOrigination",
592
- "http":{
593
- "method":"DELETE",
594
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
595
- "responseCode":204
596
- },
597
- "input":{"shape":"DeleteVoiceConnectorOriginationRequest"},
598
- "errors":[
599
- {"shape":"UnauthorizedClientException"},
600
- {"shape":"NotFoundException"},
601
- {"shape":"ForbiddenException"},
602
- {"shape":"BadRequestException"},
603
- {"shape":"ThrottledClientException"},
604
- {"shape":"ServiceUnavailableException"},
605
- {"shape":"ServiceFailureException"}
606
- ]
607
- },
608
- "DeleteVoiceConnectorStreamingConfiguration":{
609
- "name":"DeleteVoiceConnectorStreamingConfiguration",
610
- "http":{
611
- "method":"DELETE",
612
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
613
- "responseCode":204
614
- },
615
- "input":{"shape":"DeleteVoiceConnectorStreamingConfigurationRequest"},
616
- "errors":[
617
- {"shape":"UnauthorizedClientException"},
618
- {"shape":"NotFoundException"},
619
- {"shape":"ForbiddenException"},
620
- {"shape":"BadRequestException"},
621
- {"shape":"ThrottledClientException"},
622
- {"shape":"ServiceUnavailableException"},
623
- {"shape":"ServiceFailureException"}
624
- ]
625
- },
626
- "DeleteVoiceConnectorTermination":{
627
- "name":"DeleteVoiceConnectorTermination",
628
- "http":{
629
- "method":"DELETE",
630
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
631
- "responseCode":204
632
- },
633
- "input":{"shape":"DeleteVoiceConnectorTerminationRequest"},
634
- "errors":[
635
- {"shape":"UnauthorizedClientException"},
636
- {"shape":"NotFoundException"},
637
- {"shape":"ForbiddenException"},
638
- {"shape":"BadRequestException"},
639
- {"shape":"ThrottledClientException"},
640
- {"shape":"ServiceUnavailableException"},
641
- {"shape":"ServiceFailureException"}
642
- ]
643
- },
644
- "DeleteVoiceConnectorTerminationCredentials":{
645
- "name":"DeleteVoiceConnectorTerminationCredentials",
646
- "http":{
647
- "method":"POST",
648
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=delete",
649
- "responseCode":204
650
- },
651
- "input":{"shape":"DeleteVoiceConnectorTerminationCredentialsRequest"},
652
- "errors":[
653
- {"shape":"UnauthorizedClientException"},
654
- {"shape":"NotFoundException"},
655
- {"shape":"ForbiddenException"},
656
- {"shape":"BadRequestException"},
657
- {"shape":"ThrottledClientException"},
658
- {"shape":"ServiceUnavailableException"},
659
- {"shape":"ServiceFailureException"}
660
- ]
661
- },
662
- "DisassociatePhoneNumberFromUser":{
663
- "name":"DisassociatePhoneNumberFromUser",
664
- "http":{
665
- "method":"POST",
666
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number",
667
- "responseCode":200
668
- },
669
- "input":{"shape":"DisassociatePhoneNumberFromUserRequest"},
670
- "output":{"shape":"DisassociatePhoneNumberFromUserResponse"},
671
- "errors":[
672
- {"shape":"UnauthorizedClientException"},
673
- {"shape":"NotFoundException"},
674
- {"shape":"ForbiddenException"},
675
- {"shape":"BadRequestException"},
676
- {"shape":"ThrottledClientException"},
677
- {"shape":"ServiceUnavailableException"},
678
- {"shape":"ServiceFailureException"}
679
- ]
680
- },
681
- "DisassociatePhoneNumbersFromVoiceConnector":{
682
- "name":"DisassociatePhoneNumbersFromVoiceConnector",
683
- "http":{
684
- "method":"POST",
685
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers",
686
- "responseCode":200
687
- },
688
- "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorRequest"},
689
- "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorResponse"},
690
- "errors":[
691
- {"shape":"UnauthorizedClientException"},
692
- {"shape":"NotFoundException"},
693
- {"shape":"ForbiddenException"},
694
- {"shape":"BadRequestException"},
695
- {"shape":"ThrottledClientException"},
696
- {"shape":"ServiceUnavailableException"},
697
- {"shape":"ServiceFailureException"}
698
- ]
699
- },
700
- "DisassociatePhoneNumbersFromVoiceConnectorGroup":{
701
- "name":"DisassociatePhoneNumbersFromVoiceConnectorGroup",
702
- "http":{
703
- "method":"POST",
704
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers",
705
- "responseCode":200
706
- },
707
- "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupRequest"},
708
- "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupResponse"},
709
- "errors":[
710
- {"shape":"UnauthorizedClientException"},
711
- {"shape":"NotFoundException"},
712
- {"shape":"ForbiddenException"},
713
- {"shape":"BadRequestException"},
714
- {"shape":"ThrottledClientException"},
715
- {"shape":"ServiceUnavailableException"},
716
- {"shape":"ServiceFailureException"}
717
- ]
718
- },
719
- "DisassociateSigninDelegateGroupsFromAccount":{
720
- "name":"DisassociateSigninDelegateGroupsFromAccount",
721
- "http":{
722
- "method":"POST",
723
- "requestUri":"/accounts/{accountId}?operation=disassociate-signin-delegate-groups",
724
- "responseCode":200
725
- },
726
- "input":{"shape":"DisassociateSigninDelegateGroupsFromAccountRequest"},
727
- "output":{"shape":"DisassociateSigninDelegateGroupsFromAccountResponse"},
728
- "errors":[
729
- {"shape":"UnauthorizedClientException"},
730
- {"shape":"NotFoundException"},
731
- {"shape":"ForbiddenException"},
732
- {"shape":"BadRequestException"},
733
- {"shape":"ThrottledClientException"},
734
- {"shape":"ServiceUnavailableException"},
735
- {"shape":"ServiceFailureException"}
736
- ]
737
- },
738
- "GetAccount":{
739
- "name":"GetAccount",
740
- "http":{
741
- "method":"GET",
742
- "requestUri":"/accounts/{accountId}"
743
- },
744
- "input":{"shape":"GetAccountRequest"},
745
- "output":{"shape":"GetAccountResponse"},
746
- "errors":[
747
- {"shape":"UnauthorizedClientException"},
748
- {"shape":"NotFoundException"},
749
- {"shape":"ForbiddenException"},
750
- {"shape":"BadRequestException"},
751
- {"shape":"ThrottledClientException"},
752
- {"shape":"ServiceUnavailableException"},
753
- {"shape":"ServiceFailureException"}
754
- ]
755
- },
756
- "GetAccountSettings":{
757
- "name":"GetAccountSettings",
758
- "http":{
759
- "method":"GET",
760
- "requestUri":"/accounts/{accountId}/settings"
761
- },
762
- "input":{"shape":"GetAccountSettingsRequest"},
763
- "output":{"shape":"GetAccountSettingsResponse"},
764
- "errors":[
765
- {"shape":"UnauthorizedClientException"},
766
- {"shape":"NotFoundException"},
767
- {"shape":"BadRequestException"},
768
- {"shape":"ForbiddenException"},
769
- {"shape":"ThrottledClientException"},
770
- {"shape":"ServiceUnavailableException"},
771
- {"shape":"ServiceFailureException"}
772
- ]
773
- },
774
- "GetAttendee":{
775
- "name":"GetAttendee",
776
- "http":{
777
- "method":"GET",
778
- "requestUri":"/meetings/{meetingId}/attendees/{attendeeId}",
779
- "responseCode":200
780
- },
781
- "input":{"shape":"GetAttendeeRequest"},
782
- "output":{"shape":"GetAttendeeResponse"},
783
- "errors":[
784
- {"shape":"BadRequestException"},
785
- {"shape":"ForbiddenException"},
786
- {"shape":"NotFoundException"},
787
- {"shape":"ThrottledClientException"},
788
- {"shape":"UnauthorizedClientException"},
789
- {"shape":"ServiceUnavailableException"},
790
- {"shape":"ServiceFailureException"}
791
- ]
792
- },
793
- "GetBot":{
794
- "name":"GetBot",
795
- "http":{
796
- "method":"GET",
797
- "requestUri":"/accounts/{accountId}/bots/{botId}",
798
- "responseCode":200
799
- },
800
- "input":{"shape":"GetBotRequest"},
801
- "output":{"shape":"GetBotResponse"},
802
- "errors":[
803
- {"shape":"ServiceUnavailableException"},
804
- {"shape":"ServiceFailureException"},
805
- {"shape":"ForbiddenException"},
806
- {"shape":"UnauthorizedClientException"},
807
- {"shape":"NotFoundException"},
808
- {"shape":"BadRequestException"},
809
- {"shape":"ThrottledClientException"}
810
- ]
811
- },
812
- "GetEventsConfiguration":{
813
- "name":"GetEventsConfiguration",
814
- "http":{
815
- "method":"GET",
816
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
817
- "responseCode":200
818
- },
819
- "input":{"shape":"GetEventsConfigurationRequest"},
820
- "output":{"shape":"GetEventsConfigurationResponse"},
821
- "errors":[
822
- {"shape":"ServiceUnavailableException"},
823
- {"shape":"ServiceFailureException"},
824
- {"shape":"ForbiddenException"},
825
- {"shape":"BadRequestException"},
826
- {"shape":"UnauthorizedClientException"},
827
- {"shape":"ResourceLimitExceededException"},
828
- {"shape":"NotFoundException"}
829
- ]
830
- },
831
- "GetGlobalSettings":{
832
- "name":"GetGlobalSettings",
833
- "http":{
834
- "method":"GET",
835
- "requestUri":"/settings",
836
- "responseCode":200
837
- },
838
- "output":{"shape":"GetGlobalSettingsResponse"},
839
- "errors":[
840
- {"shape":"UnauthorizedClientException"},
841
- {"shape":"ForbiddenException"},
842
- {"shape":"BadRequestException"},
843
- {"shape":"ThrottledClientException"},
844
- {"shape":"ServiceUnavailableException"},
845
- {"shape":"ServiceFailureException"}
846
- ]
847
- },
848
- "GetMeeting":{
849
- "name":"GetMeeting",
850
- "http":{
851
- "method":"GET",
852
- "requestUri":"/meetings/{meetingId}",
853
- "responseCode":200
854
- },
855
- "input":{"shape":"GetMeetingRequest"},
856
- "output":{"shape":"GetMeetingResponse"},
857
- "errors":[
858
- {"shape":"BadRequestException"},
859
- {"shape":"ForbiddenException"},
860
- {"shape":"NotFoundException"},
861
- {"shape":"ThrottledClientException"},
862
- {"shape":"UnauthorizedClientException"},
863
- {"shape":"ServiceUnavailableException"},
864
- {"shape":"ServiceFailureException"}
865
- ]
866
- },
867
- "GetPhoneNumber":{
868
- "name":"GetPhoneNumber",
869
- "http":{
870
- "method":"GET",
871
- "requestUri":"/phone-numbers/{phoneNumberId}"
872
- },
873
- "input":{"shape":"GetPhoneNumberRequest"},
874
- "output":{"shape":"GetPhoneNumberResponse"},
875
- "errors":[
876
- {"shape":"UnauthorizedClientException"},
877
- {"shape":"NotFoundException"},
878
- {"shape":"ForbiddenException"},
879
- {"shape":"BadRequestException"},
880
- {"shape":"ThrottledClientException"},
881
- {"shape":"ServiceUnavailableException"},
882
- {"shape":"ServiceFailureException"}
883
- ]
884
- },
885
- "GetPhoneNumberOrder":{
886
- "name":"GetPhoneNumberOrder",
887
- "http":{
888
- "method":"GET",
889
- "requestUri":"/phone-number-orders/{phoneNumberOrderId}",
890
- "responseCode":200
891
- },
892
- "input":{"shape":"GetPhoneNumberOrderRequest"},
893
- "output":{"shape":"GetPhoneNumberOrderResponse"},
894
- "errors":[
895
- {"shape":"UnauthorizedClientException"},
896
- {"shape":"NotFoundException"},
897
- {"shape":"ForbiddenException"},
898
- {"shape":"BadRequestException"},
899
- {"shape":"ThrottledClientException"},
900
- {"shape":"ServiceUnavailableException"},
901
- {"shape":"ServiceFailureException"}
902
- ]
903
- },
904
- "GetPhoneNumberSettings":{
905
- "name":"GetPhoneNumberSettings",
906
- "http":{
907
- "method":"GET",
908
- "requestUri":"/settings/phone-number",
909
- "responseCode":200
910
- },
911
- "output":{"shape":"GetPhoneNumberSettingsResponse"},
912
- "errors":[
913
- {"shape":"UnauthorizedClientException"},
914
- {"shape":"ForbiddenException"},
915
- {"shape":"BadRequestException"},
916
- {"shape":"ThrottledClientException"},
917
- {"shape":"ServiceUnavailableException"},
918
- {"shape":"ServiceFailureException"}
919
- ]
920
- },
921
- "GetRoom":{
922
- "name":"GetRoom",
923
- "http":{
924
- "method":"GET",
925
- "requestUri":"/accounts/{accountId}/rooms/{roomId}",
926
- "responseCode":200
927
- },
928
- "input":{"shape":"GetRoomRequest"},
929
- "output":{"shape":"GetRoomResponse"},
930
- "errors":[
931
- {"shape":"BadRequestException"},
932
- {"shape":"ForbiddenException"},
933
- {"shape":"NotFoundException"},
934
- {"shape":"UnauthorizedClientException"},
935
- {"shape":"ThrottledClientException"},
936
- {"shape":"ServiceUnavailableException"},
937
- {"shape":"ServiceFailureException"}
938
- ]
939
- },
940
- "GetUser":{
941
- "name":"GetUser",
942
- "http":{
943
- "method":"GET",
944
- "requestUri":"/accounts/{accountId}/users/{userId}",
945
- "responseCode":200
946
- },
947
- "input":{"shape":"GetUserRequest"},
948
- "output":{"shape":"GetUserResponse"},
949
- "errors":[
950
- {"shape":"UnauthorizedClientException"},
951
- {"shape":"NotFoundException"},
952
- {"shape":"ForbiddenException"},
953
- {"shape":"BadRequestException"},
954
- {"shape":"ThrottledClientException"},
955
- {"shape":"ServiceUnavailableException"},
956
- {"shape":"ServiceFailureException"}
957
- ]
958
- },
959
- "GetUserSettings":{
960
- "name":"GetUserSettings",
961
- "http":{
962
- "method":"GET",
963
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
964
- "responseCode":200
965
- },
966
- "input":{"shape":"GetUserSettingsRequest"},
967
- "output":{"shape":"GetUserSettingsResponse"},
968
- "errors":[
969
- {"shape":"UnauthorizedClientException"},
970
- {"shape":"NotFoundException"},
971
- {"shape":"ForbiddenException"},
972
- {"shape":"BadRequestException"},
973
- {"shape":"ThrottledClientException"},
974
- {"shape":"ServiceUnavailableException"},
975
- {"shape":"ServiceFailureException"}
976
- ]
977
- },
978
- "GetVoiceConnector":{
979
- "name":"GetVoiceConnector",
980
- "http":{
981
- "method":"GET",
982
- "requestUri":"/voice-connectors/{voiceConnectorId}",
983
- "responseCode":200
984
- },
985
- "input":{"shape":"GetVoiceConnectorRequest"},
986
- "output":{"shape":"GetVoiceConnectorResponse"},
987
- "errors":[
988
- {"shape":"UnauthorizedClientException"},
989
- {"shape":"NotFoundException"},
990
- {"shape":"ForbiddenException"},
991
- {"shape":"BadRequestException"},
992
- {"shape":"ThrottledClientException"},
993
- {"shape":"ServiceUnavailableException"},
994
- {"shape":"ServiceFailureException"}
995
- ]
996
- },
997
- "GetVoiceConnectorGroup":{
998
- "name":"GetVoiceConnectorGroup",
999
- "http":{
1000
- "method":"GET",
1001
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
1002
- "responseCode":200
1003
- },
1004
- "input":{"shape":"GetVoiceConnectorGroupRequest"},
1005
- "output":{"shape":"GetVoiceConnectorGroupResponse"},
1006
- "errors":[
1007
- {"shape":"UnauthorizedClientException"},
1008
- {"shape":"NotFoundException"},
1009
- {"shape":"ForbiddenException"},
1010
- {"shape":"BadRequestException"},
1011
- {"shape":"ThrottledClientException"},
1012
- {"shape":"ServiceUnavailableException"},
1013
- {"shape":"ServiceFailureException"}
1014
- ]
1015
- },
1016
- "GetVoiceConnectorLoggingConfiguration":{
1017
- "name":"GetVoiceConnectorLoggingConfiguration",
1018
- "http":{
1019
- "method":"GET",
1020
- "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
1021
- "responseCode":200
1022
- },
1023
- "input":{"shape":"GetVoiceConnectorLoggingConfigurationRequest"},
1024
- "output":{"shape":"GetVoiceConnectorLoggingConfigurationResponse"},
1025
- "errors":[
1026
- {"shape":"UnauthorizedClientException"},
1027
- {"shape":"NotFoundException"},
1028
- {"shape":"ForbiddenException"},
1029
- {"shape":"BadRequestException"},
1030
- {"shape":"ThrottledClientException"},
1031
- {"shape":"ServiceUnavailableException"},
1032
- {"shape":"ServiceFailureException"}
1033
- ]
1034
- },
1035
- "GetVoiceConnectorOrigination":{
1036
- "name":"GetVoiceConnectorOrigination",
1037
- "http":{
1038
- "method":"GET",
1039
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
1040
- "responseCode":200
1041
- },
1042
- "input":{"shape":"GetVoiceConnectorOriginationRequest"},
1043
- "output":{"shape":"GetVoiceConnectorOriginationResponse"},
1044
- "errors":[
1045
- {"shape":"UnauthorizedClientException"},
1046
- {"shape":"NotFoundException"},
1047
- {"shape":"ForbiddenException"},
1048
- {"shape":"BadRequestException"},
1049
- {"shape":"ThrottledClientException"},
1050
- {"shape":"ServiceUnavailableException"},
1051
- {"shape":"ServiceFailureException"}
1052
- ]
1053
- },
1054
- "GetVoiceConnectorStreamingConfiguration":{
1055
- "name":"GetVoiceConnectorStreamingConfiguration",
1056
- "http":{
1057
- "method":"GET",
1058
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
1059
- "responseCode":200
1060
- },
1061
- "input":{"shape":"GetVoiceConnectorStreamingConfigurationRequest"},
1062
- "output":{"shape":"GetVoiceConnectorStreamingConfigurationResponse"},
1063
- "errors":[
1064
- {"shape":"UnauthorizedClientException"},
1065
- {"shape":"NotFoundException"},
1066
- {"shape":"ForbiddenException"},
1067
- {"shape":"BadRequestException"},
1068
- {"shape":"ThrottledClientException"},
1069
- {"shape":"ServiceUnavailableException"},
1070
- {"shape":"ServiceFailureException"}
1071
- ]
1072
- },
1073
- "GetVoiceConnectorTermination":{
1074
- "name":"GetVoiceConnectorTermination",
1075
- "http":{
1076
- "method":"GET",
1077
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
1078
- "responseCode":200
1079
- },
1080
- "input":{"shape":"GetVoiceConnectorTerminationRequest"},
1081
- "output":{"shape":"GetVoiceConnectorTerminationResponse"},
1082
- "errors":[
1083
- {"shape":"UnauthorizedClientException"},
1084
- {"shape":"NotFoundException"},
1085
- {"shape":"ForbiddenException"},
1086
- {"shape":"BadRequestException"},
1087
- {"shape":"ThrottledClientException"},
1088
- {"shape":"ServiceUnavailableException"},
1089
- {"shape":"ServiceFailureException"}
1090
- ]
1091
- },
1092
- "GetVoiceConnectorTerminationHealth":{
1093
- "name":"GetVoiceConnectorTerminationHealth",
1094
- "http":{
1095
- "method":"GET",
1096
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/health",
1097
- "responseCode":200
1098
- },
1099
- "input":{"shape":"GetVoiceConnectorTerminationHealthRequest"},
1100
- "output":{"shape":"GetVoiceConnectorTerminationHealthResponse"},
1101
- "errors":[
1102
- {"shape":"UnauthorizedClientException"},
1103
- {"shape":"NotFoundException"},
1104
- {"shape":"ForbiddenException"},
1105
- {"shape":"BadRequestException"},
1106
- {"shape":"ThrottledClientException"},
1107
- {"shape":"ServiceUnavailableException"},
1108
- {"shape":"ServiceFailureException"}
1109
- ]
1110
- },
1111
- "InviteUsers":{
1112
- "name":"InviteUsers",
1113
- "http":{
1114
- "method":"POST",
1115
- "requestUri":"/accounts/{accountId}/users?operation=add",
1116
- "responseCode":201
1117
- },
1118
- "input":{"shape":"InviteUsersRequest"},
1119
- "output":{"shape":"InviteUsersResponse"},
1120
- "errors":[
1121
- {"shape":"UnauthorizedClientException"},
1122
- {"shape":"NotFoundException"},
1123
- {"shape":"ForbiddenException"},
1124
- {"shape":"BadRequestException"},
1125
- {"shape":"ThrottledClientException"},
1126
- {"shape":"ServiceUnavailableException"},
1127
- {"shape":"ServiceFailureException"}
1128
- ]
1129
- },
1130
- "ListAccounts":{
1131
- "name":"ListAccounts",
1132
- "http":{
1133
- "method":"GET",
1134
- "requestUri":"/accounts"
1135
- },
1136
- "input":{"shape":"ListAccountsRequest"},
1137
- "output":{"shape":"ListAccountsResponse"},
1138
- "errors":[
1139
- {"shape":"UnauthorizedClientException"},
1140
- {"shape":"NotFoundException"},
1141
- {"shape":"ForbiddenException"},
1142
- {"shape":"BadRequestException"},
1143
- {"shape":"ThrottledClientException"},
1144
- {"shape":"ServiceUnavailableException"},
1145
- {"shape":"ServiceFailureException"}
1146
- ]
1147
- },
1148
- "ListAttendees":{
1149
- "name":"ListAttendees",
1150
- "http":{
1151
- "method":"GET",
1152
- "requestUri":"/meetings/{meetingId}/attendees",
1153
- "responseCode":200
1154
- },
1155
- "input":{"shape":"ListAttendeesRequest"},
1156
- "output":{"shape":"ListAttendeesResponse"},
1157
- "errors":[
1158
- {"shape":"BadRequestException"},
1159
- {"shape":"ForbiddenException"},
1160
- {"shape":"NotFoundException"},
1161
- {"shape":"ThrottledClientException"},
1162
- {"shape":"UnauthorizedClientException"},
1163
- {"shape":"ServiceUnavailableException"},
1164
- {"shape":"ServiceFailureException"}
1165
- ]
1166
- },
1167
- "ListBots":{
1168
- "name":"ListBots",
1169
- "http":{
1170
- "method":"GET",
1171
- "requestUri":"/accounts/{accountId}/bots",
1172
- "responseCode":200
1173
- },
1174
- "input":{"shape":"ListBotsRequest"},
1175
- "output":{"shape":"ListBotsResponse"},
1176
- "errors":[
1177
- {"shape":"ServiceUnavailableException"},
1178
- {"shape":"ServiceFailureException"},
1179
- {"shape":"ForbiddenException"},
1180
- {"shape":"UnauthorizedClientException"},
1181
- {"shape":"BadRequestException"},
1182
- {"shape":"NotFoundException"},
1183
- {"shape":"ThrottledClientException"}
1184
- ]
1185
- },
1186
- "ListMeetings":{
1187
- "name":"ListMeetings",
1188
- "http":{
1189
- "method":"GET",
1190
- "requestUri":"/meetings",
1191
- "responseCode":200
1192
- },
1193
- "input":{"shape":"ListMeetingsRequest"},
1194
- "output":{"shape":"ListMeetingsResponse"},
1195
- "errors":[
1196
- {"shape":"BadRequestException"},
1197
- {"shape":"ForbiddenException"},
1198
- {"shape":"ThrottledClientException"},
1199
- {"shape":"UnauthorizedClientException"},
1200
- {"shape":"ServiceUnavailableException"},
1201
- {"shape":"ServiceFailureException"}
1202
- ]
1203
- },
1204
- "ListPhoneNumberOrders":{
1205
- "name":"ListPhoneNumberOrders",
1206
- "http":{
1207
- "method":"GET",
1208
- "requestUri":"/phone-number-orders",
1209
- "responseCode":200
1210
- },
1211
- "input":{"shape":"ListPhoneNumberOrdersRequest"},
1212
- "output":{"shape":"ListPhoneNumberOrdersResponse"},
1213
- "errors":[
1214
- {"shape":"UnauthorizedClientException"},
1215
- {"shape":"ForbiddenException"},
1216
- {"shape":"BadRequestException"},
1217
- {"shape":"ThrottledClientException"},
1218
- {"shape":"ServiceUnavailableException"},
1219
- {"shape":"ServiceFailureException"}
1220
- ]
1221
- },
1222
- "ListPhoneNumbers":{
1223
- "name":"ListPhoneNumbers",
1224
- "http":{
1225
- "method":"GET",
1226
- "requestUri":"/phone-numbers"
1227
- },
1228
- "input":{"shape":"ListPhoneNumbersRequest"},
1229
- "output":{"shape":"ListPhoneNumbersResponse"},
1230
- "errors":[
1231
- {"shape":"UnauthorizedClientException"},
1232
- {"shape":"ForbiddenException"},
1233
- {"shape":"BadRequestException"},
1234
- {"shape":"ThrottledClientException"},
1235
- {"shape":"ServiceUnavailableException"},
1236
- {"shape":"ServiceFailureException"}
1237
- ]
1238
- },
1239
- "ListRoomMemberships":{
1240
- "name":"ListRoomMemberships",
1241
- "http":{
1242
- "method":"GET",
1243
- "requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships",
1244
- "responseCode":200
1245
- },
1246
- "input":{"shape":"ListRoomMembershipsRequest"},
1247
- "output":{"shape":"ListRoomMembershipsResponse"},
1248
- "errors":[
1249
- {"shape":"NotFoundException"},
1250
- {"shape":"BadRequestException"},
1251
- {"shape":"ForbiddenException"},
1252
- {"shape":"UnauthorizedClientException"},
1253
- {"shape":"ThrottledClientException"},
1254
- {"shape":"ServiceUnavailableException"},
1255
- {"shape":"ServiceFailureException"}
1256
- ]
1257
- },
1258
- "ListRooms":{
1259
- "name":"ListRooms",
1260
- "http":{
1261
- "method":"GET",
1262
- "requestUri":"/accounts/{accountId}/rooms",
1263
- "responseCode":200
1264
- },
1265
- "input":{"shape":"ListRoomsRequest"},
1266
- "output":{"shape":"ListRoomsResponse"},
1267
- "errors":[
1268
- {"shape":"NotFoundException"},
1269
- {"shape":"BadRequestException"},
1270
- {"shape":"ForbiddenException"},
1271
- {"shape":"UnauthorizedClientException"},
1272
- {"shape":"ThrottledClientException"},
1273
- {"shape":"ServiceUnavailableException"},
1274
- {"shape":"ServiceFailureException"}
1275
- ]
1276
- },
1277
- "ListUsers":{
1278
- "name":"ListUsers",
1279
- "http":{
1280
- "method":"GET",
1281
- "requestUri":"/accounts/{accountId}/users",
1282
- "responseCode":200
1283
- },
1284
- "input":{"shape":"ListUsersRequest"},
1285
- "output":{"shape":"ListUsersResponse"},
1286
- "errors":[
1287
- {"shape":"UnauthorizedClientException"},
1288
- {"shape":"NotFoundException"},
1289
- {"shape":"ForbiddenException"},
1290
- {"shape":"BadRequestException"},
1291
- {"shape":"ThrottledClientException"},
1292
- {"shape":"ServiceUnavailableException"},
1293
- {"shape":"ServiceFailureException"}
1294
- ]
1295
- },
1296
- "ListVoiceConnectorGroups":{
1297
- "name":"ListVoiceConnectorGroups",
1298
- "http":{
1299
- "method":"GET",
1300
- "requestUri":"/voice-connector-groups",
1301
- "responseCode":200
1302
- },
1303
- "input":{"shape":"ListVoiceConnectorGroupsRequest"},
1304
- "output":{"shape":"ListVoiceConnectorGroupsResponse"},
1305
- "errors":[
1306
- {"shape":"UnauthorizedClientException"},
1307
- {"shape":"ForbiddenException"},
1308
- {"shape":"BadRequestException"},
1309
- {"shape":"ThrottledClientException"},
1310
- {"shape":"ServiceUnavailableException"},
1311
- {"shape":"ServiceFailureException"}
1312
- ]
1313
- },
1314
- "ListVoiceConnectorTerminationCredentials":{
1315
- "name":"ListVoiceConnectorTerminationCredentials",
1316
- "http":{
1317
- "method":"GET",
1318
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials",
1319
- "responseCode":200
1320
- },
1321
- "input":{"shape":"ListVoiceConnectorTerminationCredentialsRequest"},
1322
- "output":{"shape":"ListVoiceConnectorTerminationCredentialsResponse"},
1323
- "errors":[
1324
- {"shape":"UnauthorizedClientException"},
1325
- {"shape":"NotFoundException"},
1326
- {"shape":"ForbiddenException"},
1327
- {"shape":"BadRequestException"},
1328
- {"shape":"ThrottledClientException"},
1329
- {"shape":"ServiceUnavailableException"},
1330
- {"shape":"ServiceFailureException"}
1331
- ]
1332
- },
1333
- "ListVoiceConnectors":{
1334
- "name":"ListVoiceConnectors",
1335
- "http":{
1336
- "method":"GET",
1337
- "requestUri":"/voice-connectors",
1338
- "responseCode":200
1339
- },
1340
- "input":{"shape":"ListVoiceConnectorsRequest"},
1341
- "output":{"shape":"ListVoiceConnectorsResponse"},
1342
- "errors":[
1343
- {"shape":"UnauthorizedClientException"},
1344
- {"shape":"ForbiddenException"},
1345
- {"shape":"BadRequestException"},
1346
- {"shape":"ThrottledClientException"},
1347
- {"shape":"ServiceUnavailableException"},
1348
- {"shape":"ServiceFailureException"}
1349
- ]
1350
- },
1351
- "LogoutUser":{
1352
- "name":"LogoutUser",
1353
- "http":{
1354
- "method":"POST",
1355
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=logout",
1356
- "responseCode":204
1357
- },
1358
- "input":{"shape":"LogoutUserRequest"},
1359
- "output":{"shape":"LogoutUserResponse"},
1360
- "errors":[
1361
- {"shape":"UnauthorizedClientException"},
1362
- {"shape":"NotFoundException"},
1363
- {"shape":"ForbiddenException"},
1364
- {"shape":"BadRequestException"},
1365
- {"shape":"ThrottledClientException"},
1366
- {"shape":"ServiceUnavailableException"},
1367
- {"shape":"ServiceFailureException"}
1368
- ]
1369
- },
1370
- "PutEventsConfiguration":{
1371
- "name":"PutEventsConfiguration",
1372
- "http":{
1373
- "method":"PUT",
1374
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
1375
- "responseCode":201
1376
- },
1377
- "input":{"shape":"PutEventsConfigurationRequest"},
1378
- "output":{"shape":"PutEventsConfigurationResponse"},
1379
- "errors":[
1380
- {"shape":"ServiceUnavailableException"},
1381
- {"shape":"ServiceFailureException"},
1382
- {"shape":"ForbiddenException"},
1383
- {"shape":"BadRequestException"},
1384
- {"shape":"UnauthorizedClientException"},
1385
- {"shape":"ResourceLimitExceededException"},
1386
- {"shape":"NotFoundException"}
1387
- ]
1388
- },
1389
- "PutVoiceConnectorLoggingConfiguration":{
1390
- "name":"PutVoiceConnectorLoggingConfiguration",
1391
- "http":{
1392
- "method":"PUT",
1393
- "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
1394
- "responseCode":200
1395
- },
1396
- "input":{"shape":"PutVoiceConnectorLoggingConfigurationRequest"},
1397
- "output":{"shape":"PutVoiceConnectorLoggingConfigurationResponse"},
1398
- "errors":[
1399
- {"shape":"UnauthorizedClientException"},
1400
- {"shape":"NotFoundException"},
1401
- {"shape":"ForbiddenException"},
1402
- {"shape":"BadRequestException"},
1403
- {"shape":"ThrottledClientException"},
1404
- {"shape":"ServiceUnavailableException"},
1405
- {"shape":"ServiceFailureException"}
1406
- ]
1407
- },
1408
- "PutVoiceConnectorOrigination":{
1409
- "name":"PutVoiceConnectorOrigination",
1410
- "http":{
1411
- "method":"PUT",
1412
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
1413
- "responseCode":200
1414
- },
1415
- "input":{"shape":"PutVoiceConnectorOriginationRequest"},
1416
- "output":{"shape":"PutVoiceConnectorOriginationResponse"},
1417
- "errors":[
1418
- {"shape":"UnauthorizedClientException"},
1419
- {"shape":"NotFoundException"},
1420
- {"shape":"ForbiddenException"},
1421
- {"shape":"BadRequestException"},
1422
- {"shape":"ThrottledClientException"},
1423
- {"shape":"ServiceUnavailableException"},
1424
- {"shape":"ServiceFailureException"}
1425
- ]
1426
- },
1427
- "PutVoiceConnectorStreamingConfiguration":{
1428
- "name":"PutVoiceConnectorStreamingConfiguration",
1429
- "http":{
1430
- "method":"PUT",
1431
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
1432
- "responseCode":200
1433
- },
1434
- "input":{"shape":"PutVoiceConnectorStreamingConfigurationRequest"},
1435
- "output":{"shape":"PutVoiceConnectorStreamingConfigurationResponse"},
1436
- "errors":[
1437
- {"shape":"UnauthorizedClientException"},
1438
- {"shape":"NotFoundException"},
1439
- {"shape":"ForbiddenException"},
1440
- {"shape":"BadRequestException"},
1441
- {"shape":"ThrottledClientException"},
1442
- {"shape":"ServiceUnavailableException"},
1443
- {"shape":"ServiceFailureException"}
1444
- ]
1445
- },
1446
- "PutVoiceConnectorTermination":{
1447
- "name":"PutVoiceConnectorTermination",
1448
- "http":{
1449
- "method":"PUT",
1450
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
1451
- "responseCode":200
1452
- },
1453
- "input":{"shape":"PutVoiceConnectorTerminationRequest"},
1454
- "output":{"shape":"PutVoiceConnectorTerminationResponse"},
1455
- "errors":[
1456
- {"shape":"UnauthorizedClientException"},
1457
- {"shape":"NotFoundException"},
1458
- {"shape":"ForbiddenException"},
1459
- {"shape":"BadRequestException"},
1460
- {"shape":"AccessDeniedException"},
1461
- {"shape":"ThrottledClientException"},
1462
- {"shape":"ServiceUnavailableException"},
1463
- {"shape":"ServiceFailureException"}
1464
- ]
1465
- },
1466
- "PutVoiceConnectorTerminationCredentials":{
1467
- "name":"PutVoiceConnectorTerminationCredentials",
1468
- "http":{
1469
- "method":"POST",
1470
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=put",
1471
- "responseCode":204
1472
- },
1473
- "input":{"shape":"PutVoiceConnectorTerminationCredentialsRequest"},
1474
- "errors":[
1475
- {"shape":"UnauthorizedClientException"},
1476
- {"shape":"NotFoundException"},
1477
- {"shape":"ForbiddenException"},
1478
- {"shape":"BadRequestException"},
1479
- {"shape":"ThrottledClientException"},
1480
- {"shape":"ServiceUnavailableException"},
1481
- {"shape":"ServiceFailureException"}
1482
- ]
1483
- },
1484
- "RegenerateSecurityToken":{
1485
- "name":"RegenerateSecurityToken",
1486
- "http":{
1487
- "method":"POST",
1488
- "requestUri":"/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token",
1489
- "responseCode":200
1490
- },
1491
- "input":{"shape":"RegenerateSecurityTokenRequest"},
1492
- "output":{"shape":"RegenerateSecurityTokenResponse"},
1493
- "errors":[
1494
- {"shape":"ServiceUnavailableException"},
1495
- {"shape":"ServiceFailureException"},
1496
- {"shape":"ForbiddenException"},
1497
- {"shape":"BadRequestException"},
1498
- {"shape":"UnauthorizedClientException"},
1499
- {"shape":"NotFoundException"},
1500
- {"shape":"ThrottledClientException"}
1501
- ]
1502
- },
1503
- "ResetPersonalPIN":{
1504
- "name":"ResetPersonalPIN",
1505
- "http":{
1506
- "method":"POST",
1507
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=reset-personal-pin",
1508
- "responseCode":200
1509
- },
1510
- "input":{"shape":"ResetPersonalPINRequest"},
1511
- "output":{"shape":"ResetPersonalPINResponse"},
1512
- "errors":[
1513
- {"shape":"UnauthorizedClientException"},
1514
- {"shape":"NotFoundException"},
1515
- {"shape":"ForbiddenException"},
1516
- {"shape":"BadRequestException"},
1517
- {"shape":"ThrottledClientException"},
1518
- {"shape":"ServiceUnavailableException"},
1519
- {"shape":"ServiceFailureException"}
1520
- ]
1521
- },
1522
- "RestorePhoneNumber":{
1523
- "name":"RestorePhoneNumber",
1524
- "http":{
1525
- "method":"POST",
1526
- "requestUri":"/phone-numbers/{phoneNumberId}?operation=restore",
1527
- "responseCode":200
1528
- },
1529
- "input":{"shape":"RestorePhoneNumberRequest"},
1530
- "output":{"shape":"RestorePhoneNumberResponse"},
1531
- "errors":[
1532
- {"shape":"UnauthorizedClientException"},
1533
- {"shape":"NotFoundException"},
1534
- {"shape":"ForbiddenException"},
1535
- {"shape":"BadRequestException"},
1536
- {"shape":"ThrottledClientException"},
1537
- {"shape":"ResourceLimitExceededException"},
1538
- {"shape":"ServiceUnavailableException"},
1539
- {"shape":"ServiceFailureException"}
1540
- ]
1541
- },
1542
- "SearchAvailablePhoneNumbers":{
1543
- "name":"SearchAvailablePhoneNumbers",
1544
- "http":{
1545
- "method":"GET",
1546
- "requestUri":"/search?type=phone-numbers"
1547
- },
1548
- "input":{"shape":"SearchAvailablePhoneNumbersRequest"},
1549
- "output":{"shape":"SearchAvailablePhoneNumbersResponse"},
1550
- "errors":[
1551
- {"shape":"BadRequestException"},
1552
- {"shape":"ForbiddenException"},
1553
- {"shape":"AccessDeniedException"},
1554
- {"shape":"UnauthorizedClientException"},
1555
- {"shape":"ThrottledClientException"},
1556
- {"shape":"ServiceUnavailableException"},
1557
- {"shape":"ServiceFailureException"}
1558
- ]
1559
- },
1560
- "UpdateAccount":{
1561
- "name":"UpdateAccount",
1562
- "http":{
1563
- "method":"POST",
1564
- "requestUri":"/accounts/{accountId}",
1565
- "responseCode":200
1566
- },
1567
- "input":{"shape":"UpdateAccountRequest"},
1568
- "output":{"shape":"UpdateAccountResponse"},
1569
- "errors":[
1570
- {"shape":"UnauthorizedClientException"},
1571
- {"shape":"NotFoundException"},
1572
- {"shape":"ForbiddenException"},
1573
- {"shape":"BadRequestException"},
1574
- {"shape":"ThrottledClientException"},
1575
- {"shape":"ServiceUnavailableException"},
1576
- {"shape":"ServiceFailureException"}
1577
- ]
1578
- },
1579
- "UpdateAccountSettings":{
1580
- "name":"UpdateAccountSettings",
1581
- "http":{
1582
- "method":"PUT",
1583
- "requestUri":"/accounts/{accountId}/settings",
1584
- "responseCode":204
1585
- },
1586
- "input":{"shape":"UpdateAccountSettingsRequest"},
1587
- "output":{"shape":"UpdateAccountSettingsResponse"},
1588
- "errors":[
1589
- {"shape":"UnauthorizedClientException"},
1590
- {"shape":"NotFoundException"},
1591
- {"shape":"BadRequestException"},
1592
- {"shape":"ForbiddenException"},
1593
- {"shape":"ConflictException"},
1594
- {"shape":"ThrottledClientException"},
1595
- {"shape":"ServiceUnavailableException"},
1596
- {"shape":"ServiceFailureException"}
1597
- ]
1598
- },
1599
- "UpdateBot":{
1600
- "name":"UpdateBot",
1601
- "http":{
1602
- "method":"POST",
1603
- "requestUri":"/accounts/{accountId}/bots/{botId}",
1604
- "responseCode":200
1605
- },
1606
- "input":{"shape":"UpdateBotRequest"},
1607
- "output":{"shape":"UpdateBotResponse"},
1608
- "errors":[
1609
- {"shape":"ServiceUnavailableException"},
1610
- {"shape":"ServiceFailureException"},
1611
- {"shape":"ForbiddenException"},
1612
- {"shape":"BadRequestException"},
1613
- {"shape":"UnauthorizedClientException"},
1614
- {"shape":"NotFoundException"},
1615
- {"shape":"ThrottledClientException"}
1616
- ]
1617
- },
1618
- "UpdateGlobalSettings":{
1619
- "name":"UpdateGlobalSettings",
1620
- "http":{
1621
- "method":"PUT",
1622
- "requestUri":"/settings",
1623
- "responseCode":204
1624
- },
1625
- "input":{"shape":"UpdateGlobalSettingsRequest"},
1626
- "errors":[
1627
- {"shape":"UnauthorizedClientException"},
1628
- {"shape":"ForbiddenException"},
1629
- {"shape":"BadRequestException"},
1630
- {"shape":"ThrottledClientException"},
1631
- {"shape":"ServiceUnavailableException"},
1632
- {"shape":"ServiceFailureException"}
1633
- ]
1634
- },
1635
- "UpdatePhoneNumber":{
1636
- "name":"UpdatePhoneNumber",
1637
- "http":{
1638
- "method":"POST",
1639
- "requestUri":"/phone-numbers/{phoneNumberId}",
1640
- "responseCode":200
1641
- },
1642
- "input":{"shape":"UpdatePhoneNumberRequest"},
1643
- "output":{"shape":"UpdatePhoneNumberResponse"},
1644
- "errors":[
1645
- {"shape":"UnauthorizedClientException"},
1646
- {"shape":"NotFoundException"},
1647
- {"shape":"ForbiddenException"},
1648
- {"shape":"BadRequestException"},
1649
- {"shape":"ThrottledClientException"},
1650
- {"shape":"ServiceUnavailableException"},
1651
- {"shape":"ServiceFailureException"}
1652
- ]
1653
- },
1654
- "UpdatePhoneNumberSettings":{
1655
- "name":"UpdatePhoneNumberSettings",
1656
- "http":{
1657
- "method":"PUT",
1658
- "requestUri":"/settings/phone-number",
1659
- "responseCode":204
1660
- },
1661
- "input":{"shape":"UpdatePhoneNumberSettingsRequest"},
1662
- "errors":[
1663
- {"shape":"UnauthorizedClientException"},
1664
- {"shape":"ForbiddenException"},
1665
- {"shape":"BadRequestException"},
1666
- {"shape":"ThrottledClientException"},
1667
- {"shape":"ServiceUnavailableException"},
1668
- {"shape":"ServiceFailureException"}
1669
- ]
1670
- },
1671
- "UpdateRoom":{
1672
- "name":"UpdateRoom",
1673
- "http":{
1674
- "method":"POST",
1675
- "requestUri":"/accounts/{accountId}/rooms/{roomId}",
1676
- "responseCode":200
1677
- },
1678
- "input":{"shape":"UpdateRoomRequest"},
1679
- "output":{"shape":"UpdateRoomResponse"},
1680
- "errors":[
1681
- {"shape":"BadRequestException"},
1682
- {"shape":"ForbiddenException"},
1683
- {"shape":"NotFoundException"},
1684
- {"shape":"UnauthorizedClientException"},
1685
- {"shape":"ThrottledClientException"},
1686
- {"shape":"ServiceUnavailableException"},
1687
- {"shape":"ServiceFailureException"}
1688
- ]
1689
- },
1690
- "UpdateRoomMembership":{
1691
- "name":"UpdateRoomMembership",
1692
- "http":{
1693
- "method":"POST",
1694
- "requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}",
1695
- "responseCode":200
1696
- },
1697
- "input":{"shape":"UpdateRoomMembershipRequest"},
1698
- "output":{"shape":"UpdateRoomMembershipResponse"},
1699
- "errors":[
1700
- {"shape":"UnauthorizedClientException"},
1701
- {"shape":"NotFoundException"},
1702
- {"shape":"BadRequestException"},
1703
- {"shape":"ForbiddenException"},
1704
- {"shape":"ThrottledClientException"},
1705
- {"shape":"ServiceUnavailableException"},
1706
- {"shape":"ServiceFailureException"}
1707
- ]
1708
- },
1709
- "UpdateUser":{
1710
- "name":"UpdateUser",
1711
- "http":{
1712
- "method":"POST",
1713
- "requestUri":"/accounts/{accountId}/users/{userId}",
1714
- "responseCode":200
1715
- },
1716
- "input":{"shape":"UpdateUserRequest"},
1717
- "output":{"shape":"UpdateUserResponse"},
1718
- "errors":[
1719
- {"shape":"UnauthorizedClientException"},
1720
- {"shape":"NotFoundException"},
1721
- {"shape":"ForbiddenException"},
1722
- {"shape":"BadRequestException"},
1723
- {"shape":"ThrottledClientException"},
1724
- {"shape":"ServiceUnavailableException"},
1725
- {"shape":"ServiceFailureException"}
1726
- ]
1727
- },
1728
- "UpdateUserSettings":{
1729
- "name":"UpdateUserSettings",
1730
- "http":{
1731
- "method":"PUT",
1732
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
1733
- "responseCode":204
1734
- },
1735
- "input":{"shape":"UpdateUserSettingsRequest"},
1736
- "errors":[
1737
- {"shape":"UnauthorizedClientException"},
1738
- {"shape":"NotFoundException"},
1739
- {"shape":"ForbiddenException"},
1740
- {"shape":"BadRequestException"},
1741
- {"shape":"ThrottledClientException"},
1742
- {"shape":"ServiceUnavailableException"},
1743
- {"shape":"ServiceFailureException"}
1744
- ]
1745
- },
1746
- "UpdateVoiceConnector":{
1747
- "name":"UpdateVoiceConnector",
1748
- "http":{
1749
- "method":"PUT",
1750
- "requestUri":"/voice-connectors/{voiceConnectorId}",
1751
- "responseCode":200
1752
- },
1753
- "input":{"shape":"UpdateVoiceConnectorRequest"},
1754
- "output":{"shape":"UpdateVoiceConnectorResponse"},
1755
- "errors":[
1756
- {"shape":"UnauthorizedClientException"},
1757
- {"shape":"NotFoundException"},
1758
- {"shape":"ForbiddenException"},
1759
- {"shape":"BadRequestException"},
1760
- {"shape":"ThrottledClientException"},
1761
- {"shape":"ServiceUnavailableException"},
1762
- {"shape":"ServiceFailureException"}
1763
- ]
1764
- },
1765
- "UpdateVoiceConnectorGroup":{
1766
- "name":"UpdateVoiceConnectorGroup",
1767
- "http":{
1768
- "method":"PUT",
1769
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
1770
- "responseCode":202
1771
- },
1772
- "input":{"shape":"UpdateVoiceConnectorGroupRequest"},
1773
- "output":{"shape":"UpdateVoiceConnectorGroupResponse"},
1774
- "errors":[
1775
- {"shape":"UnauthorizedClientException"},
1776
- {"shape":"NotFoundException"},
1777
- {"shape":"ForbiddenException"},
1778
- {"shape":"BadRequestException"},
1779
- {"shape":"ConflictException"},
1780
- {"shape":"ThrottledClientException"},
1781
- {"shape":"ServiceUnavailableException"},
1782
- {"shape":"ServiceFailureException"}
1783
- ]
1784
- }
1785
- },
1786
- "shapes":{
1787
- "AccessDeniedException":{
1788
- "type":"structure",
1789
- "members":{
1790
- "Code":{"shape":"ErrorCode"},
1791
- "Message":{"shape":"String"}
1792
- },
1793
- "error":{"httpStatusCode":403},
1794
- "exception":true
1795
- },
1796
- "Account":{
1797
- "type":"structure",
1798
- "required":[
1799
- "AwsAccountId",
1800
- "AccountId",
1801
- "Name"
1802
- ],
1803
- "members":{
1804
- "AwsAccountId":{"shape":"String"},
1805
- "AccountId":{"shape":"String"},
1806
- "Name":{"shape":"String"},
1807
- "AccountType":{"shape":"AccountType"},
1808
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
1809
- "DefaultLicense":{"shape":"License"},
1810
- "SupportedLicenses":{"shape":"LicenseList"},
1811
- "SigninDelegateGroups":{"shape":"SigninDelegateGroupList"}
1812
- }
1813
- },
1814
- "AccountList":{
1815
- "type":"list",
1816
- "member":{"shape":"Account"}
1817
- },
1818
- "AccountName":{
1819
- "type":"string",
1820
- "max":100,
1821
- "min":1,
1822
- "pattern":".*\\S.*"
1823
- },
1824
- "AccountSettings":{
1825
- "type":"structure",
1826
- "members":{
1827
- "DisableRemoteControl":{"shape":"Boolean"},
1828
- "EnableDialOut":{"shape":"Boolean"}
1829
- }
1830
- },
1831
- "AccountType":{
1832
- "type":"string",
1833
- "enum":[
1834
- "Team",
1835
- "EnterpriseDirectory",
1836
- "EnterpriseLWA",
1837
- "EnterpriseOIDC"
1838
- ]
1839
- },
1840
- "AlexaForBusinessMetadata":{
1841
- "type":"structure",
1842
- "members":{
1843
- "IsAlexaForBusinessEnabled":{"shape":"Boolean"},
1844
- "AlexaForBusinessRoomArn":{"shape":"SensitiveString"}
1845
- }
1846
- },
1847
- "Arn":{
1848
- "type":"string",
1849
- "max":1024,
1850
- "min":1,
1851
- "pattern":"^arn[\\/\\:\\-\\_\\.a-zA-Z0-9]+$",
1852
- "sensitive":true
1853
- },
1854
- "AssociatePhoneNumberWithUserRequest":{
1855
- "type":"structure",
1856
- "required":[
1857
- "AccountId",
1858
- "UserId",
1859
- "E164PhoneNumber"
1860
- ],
1861
- "members":{
1862
- "AccountId":{
1863
- "shape":"String",
1864
- "location":"uri",
1865
- "locationName":"accountId"
1866
- },
1867
- "UserId":{
1868
- "shape":"String",
1869
- "location":"uri",
1870
- "locationName":"userId"
1871
- },
1872
- "E164PhoneNumber":{"shape":"E164PhoneNumber"}
1873
- }
1874
- },
1875
- "AssociatePhoneNumberWithUserResponse":{
1876
- "type":"structure",
1877
- "members":{
1878
- }
1879
- },
1880
- "AssociatePhoneNumbersWithVoiceConnectorGroupRequest":{
1881
- "type":"structure",
1882
- "required":["VoiceConnectorGroupId"],
1883
- "members":{
1884
- "VoiceConnectorGroupId":{
1885
- "shape":"NonEmptyString",
1886
- "location":"uri",
1887
- "locationName":"voiceConnectorGroupId"
1888
- },
1889
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1890
- "ForceAssociate":{"shape":"NullableBoolean"}
1891
- }
1892
- },
1893
- "AssociatePhoneNumbersWithVoiceConnectorGroupResponse":{
1894
- "type":"structure",
1895
- "members":{
1896
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1897
- }
1898
- },
1899
- "AssociatePhoneNumbersWithVoiceConnectorRequest":{
1900
- "type":"structure",
1901
- "required":["VoiceConnectorId"],
1902
- "members":{
1903
- "VoiceConnectorId":{
1904
- "shape":"NonEmptyString",
1905
- "location":"uri",
1906
- "locationName":"voiceConnectorId"
1907
- },
1908
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1909
- "ForceAssociate":{"shape":"NullableBoolean"}
1910
- }
1911
- },
1912
- "AssociatePhoneNumbersWithVoiceConnectorResponse":{
1913
- "type":"structure",
1914
- "members":{
1915
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1916
- }
1917
- },
1918
- "AssociateSigninDelegateGroupsWithAccountRequest":{
1919
- "type":"structure",
1920
- "required":[
1921
- "AccountId",
1922
- "SigninDelegateGroups"
1923
- ],
1924
- "members":{
1925
- "AccountId":{
1926
- "shape":"NonEmptyString",
1927
- "location":"uri",
1928
- "locationName":"accountId"
1929
- },
1930
- "SigninDelegateGroups":{"shape":"SigninDelegateGroupList"}
1931
- }
1932
- },
1933
- "AssociateSigninDelegateGroupsWithAccountResponse":{
1934
- "type":"structure",
1935
- "members":{
1936
- }
1937
- },
1938
- "Attendee":{
1939
- "type":"structure",
1940
- "members":{
1941
- "ExternalUserId":{"shape":"ExternalUserIdType"},
1942
- "AttendeeId":{"shape":"GuidString"},
1943
- "JoinToken":{"shape":"JoinTokenString"}
1944
- }
1945
- },
1946
- "AttendeeList":{
1947
- "type":"list",
1948
- "member":{"shape":"Attendee"}
1949
- },
1950
- "BadRequestException":{
1951
- "type":"structure",
1952
- "members":{
1953
- "Code":{"shape":"ErrorCode"},
1954
- "Message":{"shape":"String"}
1955
- },
1956
- "error":{"httpStatusCode":400},
1957
- "exception":true
1958
- },
1959
- "BatchCreateAttendeeErrorList":{
1960
- "type":"list",
1961
- "member":{"shape":"CreateAttendeeError"}
1962
- },
1963
- "BatchCreateAttendeeRequest":{
1964
- "type":"structure",
1965
- "required":[
1966
- "MeetingId",
1967
- "Attendees"
1968
- ],
1969
- "members":{
1970
- "MeetingId":{
1971
- "shape":"GuidString",
1972
- "location":"uri",
1973
- "locationName":"meetingId"
1974
- },
1975
- "Attendees":{"shape":"CreateAttendeeRequestItemList"}
1976
- }
1977
- },
1978
- "BatchCreateAttendeeResponse":{
1979
- "type":"structure",
1980
- "members":{
1981
- "Attendees":{"shape":"AttendeeList"},
1982
- "Errors":{"shape":"BatchCreateAttendeeErrorList"}
1983
- }
1984
- },
1985
- "BatchCreateRoomMembershipRequest":{
1986
- "type":"structure",
1987
- "required":[
1988
- "AccountId",
1989
- "RoomId",
1990
- "MembershipItemList"
1991
- ],
1992
- "members":{
1993
- "AccountId":{
1994
- "shape":"NonEmptyString",
1995
- "location":"uri",
1996
- "locationName":"accountId"
1997
- },
1998
- "RoomId":{
1999
- "shape":"NonEmptyString",
2000
- "location":"uri",
2001
- "locationName":"roomId"
2002
- },
2003
- "MembershipItemList":{"shape":"MembershipItemList"}
2004
- }
2005
- },
2006
- "BatchCreateRoomMembershipResponse":{
2007
- "type":"structure",
2008
- "members":{
2009
- "Errors":{"shape":"MemberErrorList"}
2010
- }
2011
- },
2012
- "BatchDeletePhoneNumberRequest":{
2013
- "type":"structure",
2014
- "required":["PhoneNumberIds"],
2015
- "members":{
2016
- "PhoneNumberIds":{"shape":"NonEmptyStringList"}
2017
- }
2018
- },
2019
- "BatchDeletePhoneNumberResponse":{
2020
- "type":"structure",
2021
- "members":{
2022
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
2023
- }
2024
- },
2025
- "BatchSuspendUserRequest":{
2026
- "type":"structure",
2027
- "required":[
2028
- "AccountId",
2029
- "UserIdList"
2030
- ],
2031
- "members":{
2032
- "AccountId":{
2033
- "shape":"NonEmptyString",
2034
- "location":"uri",
2035
- "locationName":"accountId"
2036
- },
2037
- "UserIdList":{"shape":"UserIdList"}
2038
- }
2039
- },
2040
- "BatchSuspendUserResponse":{
2041
- "type":"structure",
2042
- "members":{
2043
- "UserErrors":{"shape":"UserErrorList"}
2044
- }
2045
- },
2046
- "BatchUnsuspendUserRequest":{
2047
- "type":"structure",
2048
- "required":[
2049
- "AccountId",
2050
- "UserIdList"
2051
- ],
2052
- "members":{
2053
- "AccountId":{
2054
- "shape":"NonEmptyString",
2055
- "location":"uri",
2056
- "locationName":"accountId"
2057
- },
2058
- "UserIdList":{"shape":"UserIdList"}
2059
- }
2060
- },
2061
- "BatchUnsuspendUserResponse":{
2062
- "type":"structure",
2063
- "members":{
2064
- "UserErrors":{"shape":"UserErrorList"}
2065
- }
2066
- },
2067
- "BatchUpdatePhoneNumberRequest":{
2068
- "type":"structure",
2069
- "required":["UpdatePhoneNumberRequestItems"],
2070
- "members":{
2071
- "UpdatePhoneNumberRequestItems":{"shape":"UpdatePhoneNumberRequestItemList"}
2072
- }
2073
- },
2074
- "BatchUpdatePhoneNumberResponse":{
2075
- "type":"structure",
2076
- "members":{
2077
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
2078
- }
2079
- },
2080
- "BatchUpdateUserRequest":{
2081
- "type":"structure",
2082
- "required":[
2083
- "AccountId",
2084
- "UpdateUserRequestItems"
2085
- ],
2086
- "members":{
2087
- "AccountId":{
2088
- "shape":"NonEmptyString",
2089
- "location":"uri",
2090
- "locationName":"accountId"
2091
- },
2092
- "UpdateUserRequestItems":{"shape":"UpdateUserRequestItemList"}
2093
- }
2094
- },
2095
- "BatchUpdateUserResponse":{
2096
- "type":"structure",
2097
- "members":{
2098
- "UserErrors":{"shape":"UserErrorList"}
2099
- }
2100
- },
2101
- "Boolean":{"type":"boolean"},
2102
- "Bot":{
2103
- "type":"structure",
2104
- "members":{
2105
- "BotId":{"shape":"String"},
2106
- "UserId":{"shape":"String"},
2107
- "DisplayName":{"shape":"SensitiveString"},
2108
- "BotType":{"shape":"BotType"},
2109
- "Disabled":{"shape":"NullableBoolean"},
2110
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2111
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
2112
- "BotEmail":{"shape":"SensitiveString"},
2113
- "SecurityToken":{"shape":"SensitiveString"}
2114
- }
2115
- },
2116
- "BotList":{
2117
- "type":"list",
2118
- "member":{"shape":"Bot"}
2119
- },
2120
- "BotType":{
2121
- "type":"string",
2122
- "enum":["ChatBot"]
2123
- },
2124
- "BusinessCallingSettings":{
2125
- "type":"structure",
2126
- "members":{
2127
- "CdrBucket":{
2128
- "shape":"String",
2129
- "box":true
2130
- }
2131
- }
2132
- },
2133
- "CallingName":{
2134
- "type":"string",
2135
- "pattern":"^$|^[a-zA-Z0-9 ]{2,15}$",
2136
- "sensitive":true
2137
- },
2138
- "CallingNameStatus":{
2139
- "type":"string",
2140
- "enum":[
2141
- "Unassigned",
2142
- "UpdateInProgress",
2143
- "UpdateSucceeded",
2144
- "UpdateFailed"
2145
- ]
2146
- },
2147
- "CallingRegion":{"type":"string"},
2148
- "CallingRegionList":{
2149
- "type":"list",
2150
- "member":{"shape":"CallingRegion"}
2151
- },
2152
- "ClientRequestToken":{
2153
- "type":"string",
2154
- "max":64,
2155
- "min":2,
2156
- "pattern":"[-_a-zA-Z0-9]*",
2157
- "sensitive":true
2158
- },
2159
- "ConflictException":{
2160
- "type":"structure",
2161
- "members":{
2162
- "Code":{"shape":"ErrorCode"},
2163
- "Message":{"shape":"String"}
2164
- },
2165
- "error":{"httpStatusCode":409},
2166
- "exception":true
2167
- },
2168
- "CpsLimit":{
2169
- "type":"integer",
2170
- "min":1
2171
- },
2172
- "CreateAccountRequest":{
2173
- "type":"structure",
2174
- "required":["Name"],
2175
- "members":{
2176
- "Name":{"shape":"AccountName"}
2177
- }
2178
- },
2179
- "CreateAccountResponse":{
2180
- "type":"structure",
2181
- "members":{
2182
- "Account":{"shape":"Account"}
2183
- }
2184
- },
2185
- "CreateAttendeeError":{
2186
- "type":"structure",
2187
- "members":{
2188
- "ExternalUserId":{"shape":"ExternalUserIdType"},
2189
- "ErrorCode":{"shape":"String"},
2190
- "ErrorMessage":{"shape":"String"}
2191
- }
2192
- },
2193
- "CreateAttendeeRequest":{
2194
- "type":"structure",
2195
- "required":[
2196
- "MeetingId",
2197
- "ExternalUserId"
2198
- ],
2199
- "members":{
2200
- "MeetingId":{
2201
- "shape":"GuidString",
2202
- "location":"uri",
2203
- "locationName":"meetingId"
2204
- },
2205
- "ExternalUserId":{"shape":"ExternalUserIdType"}
2206
- }
2207
- },
2208
- "CreateAttendeeRequestItem":{
2209
- "type":"structure",
2210
- "required":["ExternalUserId"],
2211
- "members":{
2212
- "ExternalUserId":{"shape":"ExternalUserIdType"}
2213
- }
2214
- },
2215
- "CreateAttendeeRequestItemList":{
2216
- "type":"list",
2217
- "member":{"shape":"CreateAttendeeRequestItem"}
2218
- },
2219
- "CreateAttendeeResponse":{
2220
- "type":"structure",
2221
- "members":{
2222
- "Attendee":{"shape":"Attendee"}
2223
- }
2224
- },
2225
- "CreateBotRequest":{
2226
- "type":"structure",
2227
- "required":[
2228
- "DisplayName",
2229
- "AccountId"
2230
- ],
2231
- "members":{
2232
- "AccountId":{
2233
- "shape":"NonEmptyString",
2234
- "location":"uri",
2235
- "locationName":"accountId"
2236
- },
2237
- "DisplayName":{"shape":"SensitiveString"},
2238
- "Domain":{"shape":"NonEmptyString"}
2239
- }
2240
- },
2241
- "CreateBotResponse":{
2242
- "type":"structure",
2243
- "members":{
2244
- "Bot":{"shape":"Bot"}
2245
- }
2246
- },
2247
- "CreateMeetingRequest":{
2248
- "type":"structure",
2249
- "required":["ClientRequestToken"],
2250
- "members":{
2251
- "ClientRequestToken":{
2252
- "shape":"ClientRequestToken",
2253
- "idempotencyToken":true
2254
- },
2255
- "MeetingHostId":{"shape":"ExternalUserIdType"},
2256
- "MediaRegion":{"shape":"String"},
2257
- "NotificationsConfiguration":{"shape":"MeetingNotificationConfiguration"}
2258
- }
2259
- },
2260
- "CreateMeetingResponse":{
2261
- "type":"structure",
2262
- "members":{
2263
- "Meeting":{"shape":"Meeting"}
2264
- }
2265
- },
2266
- "CreatePhoneNumberOrderRequest":{
2267
- "type":"structure",
2268
- "required":[
2269
- "ProductType",
2270
- "E164PhoneNumbers"
2271
- ],
2272
- "members":{
2273
- "ProductType":{"shape":"PhoneNumberProductType"},
2274
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
2275
- }
2276
- },
2277
- "CreatePhoneNumberOrderResponse":{
2278
- "type":"structure",
2279
- "members":{
2280
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
2281
- }
2282
- },
2283
- "CreateRoomMembershipRequest":{
2284
- "type":"structure",
2285
- "required":[
2286
- "AccountId",
2287
- "RoomId",
2288
- "MemberId"
2289
- ],
2290
- "members":{
2291
- "AccountId":{
2292
- "shape":"NonEmptyString",
2293
- "location":"uri",
2294
- "locationName":"accountId"
2295
- },
2296
- "RoomId":{
2297
- "shape":"NonEmptyString",
2298
- "location":"uri",
2299
- "locationName":"roomId"
2300
- },
2301
- "MemberId":{"shape":"NonEmptyString"},
2302
- "Role":{"shape":"RoomMembershipRole"}
2303
- }
2304
- },
2305
- "CreateRoomMembershipResponse":{
2306
- "type":"structure",
2307
- "members":{
2308
- "RoomMembership":{"shape":"RoomMembership"}
2309
- }
2310
- },
2311
- "CreateRoomRequest":{
2312
- "type":"structure",
2313
- "required":[
2314
- "AccountId",
2315
- "Name"
2316
- ],
2317
- "members":{
2318
- "AccountId":{
2319
- "shape":"NonEmptyString",
2320
- "location":"uri",
2321
- "locationName":"accountId"
2322
- },
2323
- "Name":{"shape":"SensitiveString"},
2324
- "ClientRequestToken":{
2325
- "shape":"ClientRequestToken",
2326
- "idempotencyToken":true
2327
- }
2328
- }
2329
- },
2330
- "CreateRoomResponse":{
2331
- "type":"structure",
2332
- "members":{
2333
- "Room":{"shape":"Room"}
2334
- }
2335
- },
2336
- "CreateUserRequest":{
2337
- "type":"structure",
2338
- "required":["AccountId"],
2339
- "members":{
2340
- "AccountId":{
2341
- "shape":"NonEmptyString",
2342
- "location":"uri",
2343
- "locationName":"accountId"
2344
- },
2345
- "Username":{"shape":"String"},
2346
- "Email":{"shape":"EmailAddress"},
2347
- "UserType":{"shape":"UserType"}
2348
- }
2349
- },
2350
- "CreateUserResponse":{
2351
- "type":"structure",
2352
- "members":{
2353
- "User":{"shape":"User"}
2354
- }
2355
- },
2356
- "CreateVoiceConnectorGroupRequest":{
2357
- "type":"structure",
2358
- "required":["Name"],
2359
- "members":{
2360
- "Name":{"shape":"VoiceConnectorGroupName"},
2361
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
2362
- }
2363
- },
2364
- "CreateVoiceConnectorGroupResponse":{
2365
- "type":"structure",
2366
- "members":{
2367
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
2368
- }
2369
- },
2370
- "CreateVoiceConnectorRequest":{
2371
- "type":"structure",
2372
- "required":[
2373
- "Name",
2374
- "RequireEncryption"
2375
- ],
2376
- "members":{
2377
- "Name":{"shape":"VoiceConnectorName"},
2378
- "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
2379
- "RequireEncryption":{"shape":"Boolean"}
2380
- }
2381
- },
2382
- "CreateVoiceConnectorResponse":{
2383
- "type":"structure",
2384
- "members":{
2385
- "VoiceConnector":{"shape":"VoiceConnector"}
2386
- }
2387
- },
2388
- "Credential":{
2389
- "type":"structure",
2390
- "members":{
2391
- "Username":{"shape":"SensitiveString"},
2392
- "Password":{"shape":"SensitiveString"}
2393
- }
2394
- },
2395
- "CredentialList":{
2396
- "type":"list",
2397
- "member":{"shape":"Credential"}
2398
- },
2399
- "DataRetentionInHours":{
2400
- "type":"integer",
2401
- "min":0
2402
- },
2403
- "DeleteAccountRequest":{
2404
- "type":"structure",
2405
- "required":["AccountId"],
2406
- "members":{
2407
- "AccountId":{
2408
- "shape":"NonEmptyString",
2409
- "location":"uri",
2410
- "locationName":"accountId"
2411
- }
2412
- }
2413
- },
2414
- "DeleteAccountResponse":{
2415
- "type":"structure",
2416
- "members":{
2417
- }
2418
- },
2419
- "DeleteAttendeeRequest":{
2420
- "type":"structure",
2421
- "required":[
2422
- "MeetingId",
2423
- "AttendeeId"
2424
- ],
2425
- "members":{
2426
- "MeetingId":{
2427
- "shape":"GuidString",
2428
- "location":"uri",
2429
- "locationName":"meetingId"
2430
- },
2431
- "AttendeeId":{
2432
- "shape":"GuidString",
2433
- "location":"uri",
2434
- "locationName":"attendeeId"
2435
- }
2436
- }
2437
- },
2438
- "DeleteEventsConfigurationRequest":{
2439
- "type":"structure",
2440
- "required":[
2441
- "AccountId",
2442
- "BotId"
2443
- ],
2444
- "members":{
2445
- "AccountId":{
2446
- "shape":"NonEmptyString",
2447
- "location":"uri",
2448
- "locationName":"accountId"
2449
- },
2450
- "BotId":{
2451
- "shape":"NonEmptyString",
2452
- "location":"uri",
2453
- "locationName":"botId"
2454
- }
2455
- }
2456
- },
2457
- "DeleteMeetingRequest":{
2458
- "type":"structure",
2459
- "required":["MeetingId"],
2460
- "members":{
2461
- "MeetingId":{
2462
- "shape":"GuidString",
2463
- "location":"uri",
2464
- "locationName":"meetingId"
2465
- }
2466
- }
2467
- },
2468
- "DeletePhoneNumberRequest":{
2469
- "type":"structure",
2470
- "required":["PhoneNumberId"],
2471
- "members":{
2472
- "PhoneNumberId":{
2473
- "shape":"String",
2474
- "location":"uri",
2475
- "locationName":"phoneNumberId"
2476
- }
2477
- }
2478
- },
2479
- "DeleteRoomMembershipRequest":{
2480
- "type":"structure",
2481
- "required":[
2482
- "AccountId",
2483
- "RoomId",
2484
- "MemberId"
2485
- ],
2486
- "members":{
2487
- "AccountId":{
2488
- "shape":"NonEmptyString",
2489
- "location":"uri",
2490
- "locationName":"accountId"
2491
- },
2492
- "RoomId":{
2493
- "shape":"NonEmptyString",
2494
- "location":"uri",
2495
- "locationName":"roomId"
2496
- },
2497
- "MemberId":{
2498
- "shape":"NonEmptyString",
2499
- "location":"uri",
2500
- "locationName":"memberId"
2501
- }
2502
- }
2503
- },
2504
- "DeleteRoomRequest":{
2505
- "type":"structure",
2506
- "required":[
2507
- "AccountId",
2508
- "RoomId"
2509
- ],
2510
- "members":{
2511
- "AccountId":{
2512
- "shape":"NonEmptyString",
2513
- "location":"uri",
2514
- "locationName":"accountId"
2515
- },
2516
- "RoomId":{
2517
- "shape":"NonEmptyString",
2518
- "location":"uri",
2519
- "locationName":"roomId"
2520
- }
2521
- }
2522
- },
2523
- "DeleteVoiceConnectorGroupRequest":{
2524
- "type":"structure",
2525
- "required":["VoiceConnectorGroupId"],
2526
- "members":{
2527
- "VoiceConnectorGroupId":{
2528
- "shape":"NonEmptyString",
2529
- "location":"uri",
2530
- "locationName":"voiceConnectorGroupId"
2531
- }
2532
- }
2533
- },
2534
- "DeleteVoiceConnectorOriginationRequest":{
2535
- "type":"structure",
2536
- "required":["VoiceConnectorId"],
2537
- "members":{
2538
- "VoiceConnectorId":{
2539
- "shape":"NonEmptyString",
2540
- "location":"uri",
2541
- "locationName":"voiceConnectorId"
2542
- }
2543
- }
2544
- },
2545
- "DeleteVoiceConnectorRequest":{
2546
- "type":"structure",
2547
- "required":["VoiceConnectorId"],
2548
- "members":{
2549
- "VoiceConnectorId":{
2550
- "shape":"NonEmptyString",
2551
- "location":"uri",
2552
- "locationName":"voiceConnectorId"
2553
- }
2554
- }
2555
- },
2556
- "DeleteVoiceConnectorStreamingConfigurationRequest":{
2557
- "type":"structure",
2558
- "required":["VoiceConnectorId"],
2559
- "members":{
2560
- "VoiceConnectorId":{
2561
- "shape":"NonEmptyString",
2562
- "location":"uri",
2563
- "locationName":"voiceConnectorId"
2564
- }
2565
- }
2566
- },
2567
- "DeleteVoiceConnectorTerminationCredentialsRequest":{
2568
- "type":"structure",
2569
- "required":["VoiceConnectorId"],
2570
- "members":{
2571
- "VoiceConnectorId":{
2572
- "shape":"NonEmptyString",
2573
- "location":"uri",
2574
- "locationName":"voiceConnectorId"
2575
- },
2576
- "Usernames":{"shape":"SensitiveStringList"}
2577
- }
2578
- },
2579
- "DeleteVoiceConnectorTerminationRequest":{
2580
- "type":"structure",
2581
- "required":["VoiceConnectorId"],
2582
- "members":{
2583
- "VoiceConnectorId":{
2584
- "shape":"NonEmptyString",
2585
- "location":"uri",
2586
- "locationName":"voiceConnectorId"
2587
- }
2588
- }
2589
- },
2590
- "DisassociatePhoneNumberFromUserRequest":{
2591
- "type":"structure",
2592
- "required":[
2593
- "AccountId",
2594
- "UserId"
2595
- ],
2596
- "members":{
2597
- "AccountId":{
2598
- "shape":"String",
2599
- "location":"uri",
2600
- "locationName":"accountId"
2601
- },
2602
- "UserId":{
2603
- "shape":"String",
2604
- "location":"uri",
2605
- "locationName":"userId"
2606
- }
2607
- }
2608
- },
2609
- "DisassociatePhoneNumberFromUserResponse":{
2610
- "type":"structure",
2611
- "members":{
2612
- }
2613
- },
2614
- "DisassociatePhoneNumbersFromVoiceConnectorGroupRequest":{
2615
- "type":"structure",
2616
- "required":["VoiceConnectorGroupId"],
2617
- "members":{
2618
- "VoiceConnectorGroupId":{
2619
- "shape":"NonEmptyString",
2620
- "location":"uri",
2621
- "locationName":"voiceConnectorGroupId"
2622
- },
2623
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
2624
- }
2625
- },
2626
- "DisassociatePhoneNumbersFromVoiceConnectorGroupResponse":{
2627
- "type":"structure",
2628
- "members":{
2629
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
2630
- }
2631
- },
2632
- "DisassociatePhoneNumbersFromVoiceConnectorRequest":{
2633
- "type":"structure",
2634
- "required":["VoiceConnectorId"],
2635
- "members":{
2636
- "VoiceConnectorId":{
2637
- "shape":"NonEmptyString",
2638
- "location":"uri",
2639
- "locationName":"voiceConnectorId"
2640
- },
2641
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
2642
- }
2643
- },
2644
- "DisassociatePhoneNumbersFromVoiceConnectorResponse":{
2645
- "type":"structure",
2646
- "members":{
2647
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
2648
- }
2649
- },
2650
- "DisassociateSigninDelegateGroupsFromAccountRequest":{
2651
- "type":"structure",
2652
- "required":[
2653
- "AccountId",
2654
- "GroupNames"
2655
- ],
2656
- "members":{
2657
- "AccountId":{
2658
- "shape":"NonEmptyString",
2659
- "location":"uri",
2660
- "locationName":"accountId"
2661
- },
2662
- "GroupNames":{"shape":"NonEmptyStringList"}
2663
- }
2664
- },
2665
- "DisassociateSigninDelegateGroupsFromAccountResponse":{
2666
- "type":"structure",
2667
- "members":{
2668
- }
2669
- },
2670
- "E164PhoneNumber":{
2671
- "type":"string",
2672
- "pattern":"^\\+?[1-9]\\d{1,14}$",
2673
- "sensitive":true
2674
- },
2675
- "E164PhoneNumberList":{
2676
- "type":"list",
2677
- "member":{"shape":"E164PhoneNumber"}
2678
- },
2679
- "EmailAddress":{
2680
- "type":"string",
2681
- "pattern":".+@.+\\..+",
2682
- "sensitive":true
2683
- },
2684
- "EmailStatus":{
2685
- "type":"string",
2686
- "enum":[
2687
- "NotSent",
2688
- "Sent",
2689
- "Failed"
2690
- ]
2691
- },
2692
- "ErrorCode":{
2693
- "type":"string",
2694
- "enum":[
2695
- "BadRequest",
2696
- "Conflict",
2697
- "Forbidden",
2698
- "NotFound",
2699
- "PreconditionFailed",
2700
- "ResourceLimitExceeded",
2701
- "ServiceFailure",
2702
- "AccessDenied",
2703
- "ServiceUnavailable",
2704
- "Throttled",
2705
- "Unauthorized",
2706
- "Unprocessable",
2707
- "VoiceConnectorGroupAssociationsExist",
2708
- "PhoneNumberAssociationsExist"
2709
- ]
2710
- },
2711
- "EventsConfiguration":{
2712
- "type":"structure",
2713
- "members":{
2714
- "BotId":{"shape":"String"},
2715
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
2716
- "LambdaFunctionArn":{"shape":"SensitiveString"}
2717
- }
2718
- },
2719
- "ExternalUserIdType":{
2720
- "type":"string",
2721
- "max":64,
2722
- "min":2,
2723
- "sensitive":true
2724
- },
2725
- "ForbiddenException":{
2726
- "type":"structure",
2727
- "members":{
2728
- "Code":{"shape":"ErrorCode"},
2729
- "Message":{"shape":"String"}
2730
- },
2731
- "error":{"httpStatusCode":403},
2732
- "exception":true
2733
- },
2734
- "GetAccountRequest":{
2735
- "type":"structure",
2736
- "required":["AccountId"],
2737
- "members":{
2738
- "AccountId":{
2739
- "shape":"NonEmptyString",
2740
- "location":"uri",
2741
- "locationName":"accountId"
2742
- }
2743
- }
2744
- },
2745
- "GetAccountResponse":{
2746
- "type":"structure",
2747
- "members":{
2748
- "Account":{"shape":"Account"}
2749
- }
2750
- },
2751
- "GetAccountSettingsRequest":{
2752
- "type":"structure",
2753
- "required":["AccountId"],
2754
- "members":{
2755
- "AccountId":{
2756
- "shape":"NonEmptyString",
2757
- "location":"uri",
2758
- "locationName":"accountId"
2759
- }
2760
- }
2761
- },
2762
- "GetAccountSettingsResponse":{
2763
- "type":"structure",
2764
- "members":{
2765
- "AccountSettings":{"shape":"AccountSettings"}
2766
- }
2767
- },
2768
- "GetAttendeeRequest":{
2769
- "type":"structure",
2770
- "required":[
2771
- "MeetingId",
2772
- "AttendeeId"
2773
- ],
2774
- "members":{
2775
- "MeetingId":{
2776
- "shape":"GuidString",
2777
- "location":"uri",
2778
- "locationName":"meetingId"
2779
- },
2780
- "AttendeeId":{
2781
- "shape":"GuidString",
2782
- "location":"uri",
2783
- "locationName":"attendeeId"
2784
- }
2785
- }
2786
- },
2787
- "GetAttendeeResponse":{
2788
- "type":"structure",
2789
- "members":{
2790
- "Attendee":{"shape":"Attendee"}
2791
- }
2792
- },
2793
- "GetBotRequest":{
2794
- "type":"structure",
2795
- "required":[
2796
- "AccountId",
2797
- "BotId"
2798
- ],
2799
- "members":{
2800
- "AccountId":{
2801
- "shape":"NonEmptyString",
2802
- "location":"uri",
2803
- "locationName":"accountId"
2804
- },
2805
- "BotId":{
2806
- "shape":"NonEmptyString",
2807
- "location":"uri",
2808
- "locationName":"botId"
2809
- }
2810
- }
2811
- },
2812
- "GetBotResponse":{
2813
- "type":"structure",
2814
- "members":{
2815
- "Bot":{"shape":"Bot"}
2816
- }
2817
- },
2818
- "GetEventsConfigurationRequest":{
2819
- "type":"structure",
2820
- "required":[
2821
- "AccountId",
2822
- "BotId"
2823
- ],
2824
- "members":{
2825
- "AccountId":{
2826
- "shape":"NonEmptyString",
2827
- "location":"uri",
2828
- "locationName":"accountId"
2829
- },
2830
- "BotId":{
2831
- "shape":"NonEmptyString",
2832
- "location":"uri",
2833
- "locationName":"botId"
2834
- }
2835
- }
2836
- },
2837
- "GetEventsConfigurationResponse":{
2838
- "type":"structure",
2839
- "members":{
2840
- "EventsConfiguration":{"shape":"EventsConfiguration"}
2841
- }
2842
- },
2843
- "GetGlobalSettingsResponse":{
2844
- "type":"structure",
2845
- "members":{
2846
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
2847
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
2848
- }
2849
- },
2850
- "GetMeetingRequest":{
2851
- "type":"structure",
2852
- "required":["MeetingId"],
2853
- "members":{
2854
- "MeetingId":{
2855
- "shape":"GuidString",
2856
- "location":"uri",
2857
- "locationName":"meetingId"
2858
- }
2859
- }
2860
- },
2861
- "GetMeetingResponse":{
2862
- "type":"structure",
2863
- "members":{
2864
- "Meeting":{"shape":"Meeting"}
2865
- }
2866
- },
2867
- "GetPhoneNumberOrderRequest":{
2868
- "type":"structure",
2869
- "required":["PhoneNumberOrderId"],
2870
- "members":{
2871
- "PhoneNumberOrderId":{
2872
- "shape":"GuidString",
2873
- "location":"uri",
2874
- "locationName":"phoneNumberOrderId"
2875
- }
2876
- }
2877
- },
2878
- "GetPhoneNumberOrderResponse":{
2879
- "type":"structure",
2880
- "members":{
2881
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
2882
- }
2883
- },
2884
- "GetPhoneNumberRequest":{
2885
- "type":"structure",
2886
- "required":["PhoneNumberId"],
2887
- "members":{
2888
- "PhoneNumberId":{
2889
- "shape":"String",
2890
- "location":"uri",
2891
- "locationName":"phoneNumberId"
2892
- }
2893
- }
2894
- },
2895
- "GetPhoneNumberResponse":{
2896
- "type":"structure",
2897
- "members":{
2898
- "PhoneNumber":{"shape":"PhoneNumber"}
2899
- }
2900
- },
2901
- "GetPhoneNumberSettingsResponse":{
2902
- "type":"structure",
2903
- "members":{
2904
- "CallingName":{"shape":"CallingName"},
2905
- "CallingNameUpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2906
- }
2907
- },
2908
- "GetRoomRequest":{
2909
- "type":"structure",
2910
- "required":[
2911
- "AccountId",
2912
- "RoomId"
2913
- ],
2914
- "members":{
2915
- "AccountId":{
2916
- "shape":"NonEmptyString",
2917
- "location":"uri",
2918
- "locationName":"accountId"
2919
- },
2920
- "RoomId":{
2921
- "shape":"NonEmptyString",
2922
- "location":"uri",
2923
- "locationName":"roomId"
2924
- }
2925
- }
2926
- },
2927
- "GetRoomResponse":{
2928
- "type":"structure",
2929
- "members":{
2930
- "Room":{"shape":"Room"}
2931
- }
2932
- },
2933
- "GetUserRequest":{
2934
- "type":"structure",
2935
- "required":[
2936
- "AccountId",
2937
- "UserId"
2938
- ],
2939
- "members":{
2940
- "AccountId":{
2941
- "shape":"NonEmptyString",
2942
- "location":"uri",
2943
- "locationName":"accountId"
2944
- },
2945
- "UserId":{
2946
- "shape":"NonEmptyString",
2947
- "location":"uri",
2948
- "locationName":"userId"
2949
- }
2950
- }
2951
- },
2952
- "GetUserResponse":{
2953
- "type":"structure",
2954
- "members":{
2955
- "User":{"shape":"User"}
2956
- }
2957
- },
2958
- "GetUserSettingsRequest":{
2959
- "type":"structure",
2960
- "required":[
2961
- "AccountId",
2962
- "UserId"
2963
- ],
2964
- "members":{
2965
- "AccountId":{
2966
- "shape":"String",
2967
- "location":"uri",
2968
- "locationName":"accountId"
2969
- },
2970
- "UserId":{
2971
- "shape":"String",
2972
- "location":"uri",
2973
- "locationName":"userId"
2974
- }
2975
- }
2976
- },
2977
- "GetUserSettingsResponse":{
2978
- "type":"structure",
2979
- "members":{
2980
- "UserSettings":{"shape":"UserSettings"}
2981
- }
2982
- },
2983
- "GetVoiceConnectorGroupRequest":{
2984
- "type":"structure",
2985
- "required":["VoiceConnectorGroupId"],
2986
- "members":{
2987
- "VoiceConnectorGroupId":{
2988
- "shape":"NonEmptyString",
2989
- "location":"uri",
2990
- "locationName":"voiceConnectorGroupId"
2991
- }
2992
- }
2993
- },
2994
- "GetVoiceConnectorGroupResponse":{
2995
- "type":"structure",
2996
- "members":{
2997
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
2998
- }
2999
- },
3000
- "GetVoiceConnectorLoggingConfigurationRequest":{
3001
- "type":"structure",
3002
- "required":["VoiceConnectorId"],
3003
- "members":{
3004
- "VoiceConnectorId":{
3005
- "shape":"NonEmptyString",
3006
- "location":"uri",
3007
- "locationName":"voiceConnectorId"
3008
- }
3009
- }
3010
- },
3011
- "GetVoiceConnectorLoggingConfigurationResponse":{
3012
- "type":"structure",
3013
- "members":{
3014
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
3015
- }
3016
- },
3017
- "GetVoiceConnectorOriginationRequest":{
3018
- "type":"structure",
3019
- "required":["VoiceConnectorId"],
3020
- "members":{
3021
- "VoiceConnectorId":{
3022
- "shape":"NonEmptyString",
3023
- "location":"uri",
3024
- "locationName":"voiceConnectorId"
3025
- }
3026
- }
3027
- },
3028
- "GetVoiceConnectorOriginationResponse":{
3029
- "type":"structure",
3030
- "members":{
3031
- "Origination":{"shape":"Origination"}
3032
- }
3033
- },
3034
- "GetVoiceConnectorRequest":{
3035
- "type":"structure",
3036
- "required":["VoiceConnectorId"],
3037
- "members":{
3038
- "VoiceConnectorId":{
3039
- "shape":"NonEmptyString",
3040
- "location":"uri",
3041
- "locationName":"voiceConnectorId"
3042
- }
3043
- }
3044
- },
3045
- "GetVoiceConnectorResponse":{
3046
- "type":"structure",
3047
- "members":{
3048
- "VoiceConnector":{"shape":"VoiceConnector"}
3049
- }
3050
- },
3051
- "GetVoiceConnectorStreamingConfigurationRequest":{
3052
- "type":"structure",
3053
- "required":["VoiceConnectorId"],
3054
- "members":{
3055
- "VoiceConnectorId":{
3056
- "shape":"NonEmptyString",
3057
- "location":"uri",
3058
- "locationName":"voiceConnectorId"
3059
- }
3060
- }
3061
- },
3062
- "GetVoiceConnectorStreamingConfigurationResponse":{
3063
- "type":"structure",
3064
- "members":{
3065
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
3066
- }
3067
- },
3068
- "GetVoiceConnectorTerminationHealthRequest":{
3069
- "type":"structure",
3070
- "required":["VoiceConnectorId"],
3071
- "members":{
3072
- "VoiceConnectorId":{
3073
- "shape":"NonEmptyString",
3074
- "location":"uri",
3075
- "locationName":"voiceConnectorId"
3076
- }
3077
- }
3078
- },
3079
- "GetVoiceConnectorTerminationHealthResponse":{
3080
- "type":"structure",
3081
- "members":{
3082
- "TerminationHealth":{"shape":"TerminationHealth"}
3083
- }
3084
- },
3085
- "GetVoiceConnectorTerminationRequest":{
3086
- "type":"structure",
3087
- "required":["VoiceConnectorId"],
3088
- "members":{
3089
- "VoiceConnectorId":{
3090
- "shape":"NonEmptyString",
3091
- "location":"uri",
3092
- "locationName":"voiceConnectorId"
3093
- }
3094
- }
3095
- },
3096
- "GetVoiceConnectorTerminationResponse":{
3097
- "type":"structure",
3098
- "members":{
3099
- "Termination":{"shape":"Termination"}
3100
- }
3101
- },
3102
- "GuidString":{
3103
- "type":"string",
3104
- "pattern":"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}"
3105
- },
3106
- "Invite":{
3107
- "type":"structure",
3108
- "members":{
3109
- "InviteId":{"shape":"String"},
3110
- "Status":{"shape":"InviteStatus"},
3111
- "EmailAddress":{"shape":"EmailAddress"},
3112
- "EmailStatus":{"shape":"EmailStatus"}
3113
- }
3114
- },
3115
- "InviteList":{
3116
- "type":"list",
3117
- "member":{"shape":"Invite"}
3118
- },
3119
- "InviteStatus":{
3120
- "type":"string",
3121
- "enum":[
3122
- "Pending",
3123
- "Accepted",
3124
- "Failed"
3125
- ]
3126
- },
3127
- "InviteUsersRequest":{
3128
- "type":"structure",
3129
- "required":[
3130
- "AccountId",
3131
- "UserEmailList"
3132
- ],
3133
- "members":{
3134
- "AccountId":{
3135
- "shape":"NonEmptyString",
3136
- "location":"uri",
3137
- "locationName":"accountId"
3138
- },
3139
- "UserEmailList":{"shape":"UserEmailList"},
3140
- "UserType":{"shape":"UserType"}
3141
- }
3142
- },
3143
- "InviteUsersResponse":{
3144
- "type":"structure",
3145
- "members":{
3146
- "Invites":{"shape":"InviteList"}
3147
- }
3148
- },
3149
- "Iso8601Timestamp":{
3150
- "type":"timestamp",
3151
- "timestampFormat":"iso8601"
3152
- },
3153
- "JoinTokenString":{
3154
- "type":"string",
3155
- "max":2048,
3156
- "min":2,
3157
- "sensitive":true
3158
- },
3159
- "License":{
3160
- "type":"string",
3161
- "enum":[
3162
- "Basic",
3163
- "Plus",
3164
- "Pro",
3165
- "ProTrial"
3166
- ]
3167
- },
3168
- "LicenseList":{
3169
- "type":"list",
3170
- "member":{"shape":"License"}
3171
- },
3172
- "ListAccountsRequest":{
3173
- "type":"structure",
3174
- "members":{
3175
- "Name":{
3176
- "shape":"AccountName",
3177
- "location":"querystring",
3178
- "locationName":"name"
3179
- },
3180
- "UserEmail":{
3181
- "shape":"EmailAddress",
3182
- "location":"querystring",
3183
- "locationName":"user-email"
3184
- },
3185
- "NextToken":{
3186
- "shape":"String",
3187
- "location":"querystring",
3188
- "locationName":"next-token"
3189
- },
3190
- "MaxResults":{
3191
- "shape":"ProfileServiceMaxResults",
3192
- "location":"querystring",
3193
- "locationName":"max-results"
3194
- }
3195
- }
3196
- },
3197
- "ListAccountsResponse":{
3198
- "type":"structure",
3199
- "members":{
3200
- "Accounts":{"shape":"AccountList"},
3201
- "NextToken":{"shape":"String"}
3202
- }
3203
- },
3204
- "ListAttendeesRequest":{
3205
- "type":"structure",
3206
- "required":["MeetingId"],
3207
- "members":{
3208
- "MeetingId":{
3209
- "shape":"GuidString",
3210
- "location":"uri",
3211
- "locationName":"meetingId"
3212
- },
3213
- "NextToken":{
3214
- "shape":"String",
3215
- "location":"querystring",
3216
- "locationName":"next-token"
3217
- },
3218
- "MaxResults":{
3219
- "shape":"ResultMax",
3220
- "location":"querystring",
3221
- "locationName":"max-results"
3222
- }
3223
- }
3224
- },
3225
- "ListAttendeesResponse":{
3226
- "type":"structure",
3227
- "members":{
3228
- "Attendees":{"shape":"AttendeeList"},
3229
- "NextToken":{"shape":"String"}
3230
- }
3231
- },
3232
- "ListBotsRequest":{
3233
- "type":"structure",
3234
- "required":["AccountId"],
3235
- "members":{
3236
- "AccountId":{
3237
- "shape":"NonEmptyString",
3238
- "location":"uri",
3239
- "locationName":"accountId"
3240
- },
3241
- "MaxResults":{
3242
- "shape":"ResultMax",
3243
- "location":"querystring",
3244
- "locationName":"max-results"
3245
- },
3246
- "NextToken":{
3247
- "shape":"String",
3248
- "location":"querystring",
3249
- "locationName":"next-token"
3250
- }
3251
- }
3252
- },
3253
- "ListBotsResponse":{
3254
- "type":"structure",
3255
- "members":{
3256
- "Bots":{"shape":"BotList"},
3257
- "NextToken":{"shape":"String"}
3258
- }
3259
- },
3260
- "ListMeetingsRequest":{
3261
- "type":"structure",
3262
- "members":{
3263
- "NextToken":{
3264
- "shape":"String",
3265
- "location":"querystring",
3266
- "locationName":"next-token"
3267
- },
3268
- "MaxResults":{
3269
- "shape":"ResultMax",
3270
- "location":"querystring",
3271
- "locationName":"max-results"
3272
- }
3273
- }
3274
- },
3275
- "ListMeetingsResponse":{
3276
- "type":"structure",
3277
- "members":{
3278
- "Meetings":{"shape":"MeetingList"},
3279
- "NextToken":{"shape":"String"}
3280
- }
3281
- },
3282
- "ListPhoneNumberOrdersRequest":{
3283
- "type":"structure",
3284
- "members":{
3285
- "NextToken":{
3286
- "shape":"String",
3287
- "location":"querystring",
3288
- "locationName":"next-token"
3289
- },
3290
- "MaxResults":{
3291
- "shape":"ResultMax",
3292
- "location":"querystring",
3293
- "locationName":"max-results"
3294
- }
3295
- }
3296
- },
3297
- "ListPhoneNumberOrdersResponse":{
3298
- "type":"structure",
3299
- "members":{
3300
- "PhoneNumberOrders":{"shape":"PhoneNumberOrderList"},
3301
- "NextToken":{"shape":"String"}
3302
- }
3303
- },
3304
- "ListPhoneNumbersRequest":{
3305
- "type":"structure",
3306
- "members":{
3307
- "Status":{
3308
- "shape":"PhoneNumberStatus",
3309
- "location":"querystring",
3310
- "locationName":"status"
3311
- },
3312
- "ProductType":{
3313
- "shape":"PhoneNumberProductType",
3314
- "location":"querystring",
3315
- "locationName":"product-type"
3316
- },
3317
- "FilterName":{
3318
- "shape":"PhoneNumberAssociationName",
3319
- "location":"querystring",
3320
- "locationName":"filter-name"
3321
- },
3322
- "FilterValue":{
3323
- "shape":"String",
3324
- "location":"querystring",
3325
- "locationName":"filter-value"
3326
- },
3327
- "MaxResults":{
3328
- "shape":"ResultMax",
3329
- "location":"querystring",
3330
- "locationName":"max-results"
3331
- },
3332
- "NextToken":{
3333
- "shape":"String",
3334
- "location":"querystring",
3335
- "locationName":"next-token"
3336
- }
3337
- }
3338
- },
3339
- "ListPhoneNumbersResponse":{
3340
- "type":"structure",
3341
- "members":{
3342
- "PhoneNumbers":{"shape":"PhoneNumberList"},
3343
- "NextToken":{"shape":"String"}
3344
- }
3345
- },
3346
- "ListRoomMembershipsRequest":{
3347
- "type":"structure",
3348
- "required":[
3349
- "AccountId",
3350
- "RoomId"
3351
- ],
3352
- "members":{
3353
- "AccountId":{
3354
- "shape":"NonEmptyString",
3355
- "location":"uri",
3356
- "locationName":"accountId"
3357
- },
3358
- "RoomId":{
3359
- "shape":"NonEmptyString",
3360
- "location":"uri",
3361
- "locationName":"roomId"
3362
- },
3363
- "MaxResults":{
3364
- "shape":"ResultMax",
3365
- "location":"querystring",
3366
- "locationName":"max-results"
3367
- },
3368
- "NextToken":{
3369
- "shape":"String",
3370
- "location":"querystring",
3371
- "locationName":"next-token"
3372
- }
3373
- }
3374
- },
3375
- "ListRoomMembershipsResponse":{
3376
- "type":"structure",
3377
- "members":{
3378
- "RoomMemberships":{"shape":"RoomMembershipList"},
3379
- "NextToken":{"shape":"String"}
3380
- }
3381
- },
3382
- "ListRoomsRequest":{
3383
- "type":"structure",
3384
- "required":["AccountId"],
3385
- "members":{
3386
- "AccountId":{
3387
- "shape":"NonEmptyString",
3388
- "location":"uri",
3389
- "locationName":"accountId"
3390
- },
3391
- "MemberId":{
3392
- "shape":"String",
3393
- "location":"querystring",
3394
- "locationName":"member-id"
3395
- },
3396
- "MaxResults":{
3397
- "shape":"ResultMax",
3398
- "location":"querystring",
3399
- "locationName":"max-results"
3400
- },
3401
- "NextToken":{
3402
- "shape":"String",
3403
- "location":"querystring",
3404
- "locationName":"next-token"
3405
- }
3406
- }
3407
- },
3408
- "ListRoomsResponse":{
3409
- "type":"structure",
3410
- "members":{
3411
- "Rooms":{"shape":"RoomList"},
3412
- "NextToken":{"shape":"String"}
3413
- }
3414
- },
3415
- "ListUsersRequest":{
3416
- "type":"structure",
3417
- "required":["AccountId"],
3418
- "members":{
3419
- "AccountId":{
3420
- "shape":"NonEmptyString",
3421
- "location":"uri",
3422
- "locationName":"accountId"
3423
- },
3424
- "UserEmail":{
3425
- "shape":"EmailAddress",
3426
- "location":"querystring",
3427
- "locationName":"user-email"
3428
- },
3429
- "UserType":{
3430
- "shape":"UserType",
3431
- "location":"querystring",
3432
- "locationName":"user-type"
3433
- },
3434
- "MaxResults":{
3435
- "shape":"ProfileServiceMaxResults",
3436
- "location":"querystring",
3437
- "locationName":"max-results"
3438
- },
3439
- "NextToken":{
3440
- "shape":"String",
3441
- "location":"querystring",
3442
- "locationName":"next-token"
3443
- }
3444
- }
3445
- },
3446
- "ListUsersResponse":{
3447
- "type":"structure",
3448
- "members":{
3449
- "Users":{"shape":"UserList"},
3450
- "NextToken":{"shape":"String"}
3451
- }
3452
- },
3453
- "ListVoiceConnectorGroupsRequest":{
3454
- "type":"structure",
3455
- "members":{
3456
- "NextToken":{
3457
- "shape":"String",
3458
- "location":"querystring",
3459
- "locationName":"next-token"
3460
- },
3461
- "MaxResults":{
3462
- "shape":"ResultMax",
3463
- "location":"querystring",
3464
- "locationName":"max-results"
3465
- }
3466
- }
3467
- },
3468
- "ListVoiceConnectorGroupsResponse":{
3469
- "type":"structure",
3470
- "members":{
3471
- "VoiceConnectorGroups":{"shape":"VoiceConnectorGroupList"},
3472
- "NextToken":{"shape":"String"}
3473
- }
3474
- },
3475
- "ListVoiceConnectorTerminationCredentialsRequest":{
3476
- "type":"structure",
3477
- "required":["VoiceConnectorId"],
3478
- "members":{
3479
- "VoiceConnectorId":{
3480
- "shape":"NonEmptyString",
3481
- "location":"uri",
3482
- "locationName":"voiceConnectorId"
3483
- }
3484
- }
3485
- },
3486
- "ListVoiceConnectorTerminationCredentialsResponse":{
3487
- "type":"structure",
3488
- "members":{
3489
- "Usernames":{"shape":"SensitiveStringList"}
3490
- }
3491
- },
3492
- "ListVoiceConnectorsRequest":{
3493
- "type":"structure",
3494
- "members":{
3495
- "NextToken":{
3496
- "shape":"String",
3497
- "location":"querystring",
3498
- "locationName":"next-token"
3499
- },
3500
- "MaxResults":{
3501
- "shape":"ResultMax",
3502
- "location":"querystring",
3503
- "locationName":"max-results"
3504
- }
3505
- }
3506
- },
3507
- "ListVoiceConnectorsResponse":{
3508
- "type":"structure",
3509
- "members":{
3510
- "VoiceConnectors":{"shape":"VoiceConnectorList"},
3511
- "NextToken":{"shape":"String"}
3512
- }
3513
- },
3514
- "LoggingConfiguration":{
3515
- "type":"structure",
3516
- "members":{
3517
- "EnableSIPLogs":{"shape":"Boolean"}
3518
- }
3519
- },
3520
- "LogoutUserRequest":{
3521
- "type":"structure",
3522
- "required":[
3523
- "AccountId",
3524
- "UserId"
3525
- ],
3526
- "members":{
3527
- "AccountId":{
3528
- "shape":"NonEmptyString",
3529
- "location":"uri",
3530
- "locationName":"accountId"
3531
- },
3532
- "UserId":{
3533
- "shape":"NonEmptyString",
3534
- "location":"uri",
3535
- "locationName":"userId"
3536
- }
3537
- }
3538
- },
3539
- "LogoutUserResponse":{
3540
- "type":"structure",
3541
- "members":{
3542
- }
3543
- },
3544
- "MediaPlacement":{
3545
- "type":"structure",
3546
- "members":{
3547
- "AudioHostUrl":{"shape":"UriType"},
3548
- "ScreenDataUrl":{"shape":"UriType"},
3549
- "ScreenSharingUrl":{"shape":"UriType"},
3550
- "ScreenViewingUrl":{"shape":"UriType"},
3551
- "SignalingUrl":{"shape":"UriType"},
3552
- "TurnControlUrl":{"shape":"UriType"}
3553
- }
3554
- },
3555
- "Meeting":{
3556
- "type":"structure",
3557
- "members":{
3558
- "MeetingId":{"shape":"GuidString"},
3559
- "MediaPlacement":{"shape":"MediaPlacement"},
3560
- "MediaRegion":{"shape":"String"}
3561
- }
3562
- },
3563
- "MeetingList":{
3564
- "type":"list",
3565
- "member":{"shape":"Meeting"}
3566
- },
3567
- "MeetingNotificationConfiguration":{
3568
- "type":"structure",
3569
- "members":{
3570
- "SnsTopicArn":{"shape":"Arn"},
3571
- "SqsQueueArn":{"shape":"Arn"}
3572
- }
3573
- },
3574
- "Member":{
3575
- "type":"structure",
3576
- "members":{
3577
- "MemberId":{"shape":"NonEmptyString"},
3578
- "MemberType":{"shape":"MemberType"},
3579
- "Email":{"shape":"SensitiveString"},
3580
- "FullName":{"shape":"SensitiveString"},
3581
- "AccountId":{"shape":"NonEmptyString"}
3582
- }
3583
- },
3584
- "MemberError":{
3585
- "type":"structure",
3586
- "members":{
3587
- "MemberId":{"shape":"NonEmptyString"},
3588
- "ErrorCode":{"shape":"ErrorCode"},
3589
- "ErrorMessage":{"shape":"String"}
3590
- }
3591
- },
3592
- "MemberErrorList":{
3593
- "type":"list",
3594
- "member":{"shape":"MemberError"}
3595
- },
3596
- "MemberType":{
3597
- "type":"string",
3598
- "enum":[
3599
- "User",
3600
- "Bot",
3601
- "Webhook"
3602
- ]
3603
- },
3604
- "MembershipItem":{
3605
- "type":"structure",
3606
- "members":{
3607
- "MemberId":{"shape":"NonEmptyString"},
3608
- "Role":{"shape":"RoomMembershipRole"}
3609
- }
3610
- },
3611
- "MembershipItemList":{
3612
- "type":"list",
3613
- "member":{"shape":"MembershipItem"},
3614
- "max":50
3615
- },
3616
- "NonEmptyString":{
3617
- "type":"string",
3618
- "pattern":".*\\S.*"
3619
- },
3620
- "NonEmptyStringList":{
3621
- "type":"list",
3622
- "member":{"shape":"String"},
3623
- "min":1
3624
- },
3625
- "NotFoundException":{
3626
- "type":"structure",
3627
- "members":{
3628
- "Code":{"shape":"ErrorCode"},
3629
- "Message":{"shape":"String"}
3630
- },
3631
- "error":{"httpStatusCode":404},
3632
- "exception":true
3633
- },
3634
- "NullableBoolean":{"type":"boolean"},
3635
- "OrderedPhoneNumber":{
3636
- "type":"structure",
3637
- "members":{
3638
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
3639
- "Status":{"shape":"OrderedPhoneNumberStatus"}
3640
- }
3641
- },
3642
- "OrderedPhoneNumberList":{
3643
- "type":"list",
3644
- "member":{"shape":"OrderedPhoneNumber"}
3645
- },
3646
- "OrderedPhoneNumberStatus":{
3647
- "type":"string",
3648
- "enum":[
3649
- "Processing",
3650
- "Acquired",
3651
- "Failed"
3652
- ]
3653
- },
3654
- "Origination":{
3655
- "type":"structure",
3656
- "members":{
3657
- "Routes":{"shape":"OriginationRouteList"},
3658
- "Disabled":{"shape":"Boolean"}
3659
- }
3660
- },
3661
- "OriginationRoute":{
3662
- "type":"structure",
3663
- "members":{
3664
- "Host":{"shape":"String"},
3665
- "Port":{"shape":"Port"},
3666
- "Protocol":{"shape":"OriginationRouteProtocol"},
3667
- "Priority":{"shape":"OriginationRoutePriority"},
3668
- "Weight":{"shape":"OriginationRouteWeight"}
3669
- }
3670
- },
3671
- "OriginationRouteList":{
3672
- "type":"list",
3673
- "member":{"shape":"OriginationRoute"}
3674
- },
3675
- "OriginationRoutePriority":{
3676
- "type":"integer",
3677
- "max":100,
3678
- "min":1
3679
- },
3680
- "OriginationRouteProtocol":{
3681
- "type":"string",
3682
- "enum":[
3683
- "TCP",
3684
- "UDP"
3685
- ]
3686
- },
3687
- "OriginationRouteWeight":{
3688
- "type":"integer",
3689
- "max":100,
3690
- "min":1
3691
- },
3692
- "PhoneNumber":{
3693
- "type":"structure",
3694
- "members":{
3695
- "PhoneNumberId":{"shape":"String"},
3696
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
3697
- "Type":{"shape":"PhoneNumberType"},
3698
- "ProductType":{"shape":"PhoneNumberProductType"},
3699
- "Status":{"shape":"PhoneNumberStatus"},
3700
- "Capabilities":{"shape":"PhoneNumberCapabilities"},
3701
- "Associations":{"shape":"PhoneNumberAssociationList"},
3702
- "CallingName":{"shape":"CallingName"},
3703
- "CallingNameStatus":{"shape":"CallingNameStatus"},
3704
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
3705
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
3706
- "DeletionTimestamp":{"shape":"Iso8601Timestamp"}
3707
- }
3708
- },
3709
- "PhoneNumberAssociation":{
3710
- "type":"structure",
3711
- "members":{
3712
- "Value":{"shape":"String"},
3713
- "Name":{"shape":"PhoneNumberAssociationName"},
3714
- "AssociatedTimestamp":{"shape":"Iso8601Timestamp"}
3715
- }
3716
- },
3717
- "PhoneNumberAssociationList":{
3718
- "type":"list",
3719
- "member":{"shape":"PhoneNumberAssociation"}
3720
- },
3721
- "PhoneNumberAssociationName":{
3722
- "type":"string",
3723
- "enum":[
3724
- "AccountId",
3725
- "UserId",
3726
- "VoiceConnectorId",
3727
- "VoiceConnectorGroupId"
3728
- ]
3729
- },
3730
- "PhoneNumberCapabilities":{
3731
- "type":"structure",
3732
- "members":{
3733
- "InboundCall":{"shape":"NullableBoolean"},
3734
- "OutboundCall":{"shape":"NullableBoolean"},
3735
- "InboundSMS":{"shape":"NullableBoolean"},
3736
- "OutboundSMS":{"shape":"NullableBoolean"},
3737
- "InboundMMS":{"shape":"NullableBoolean"},
3738
- "OutboundMMS":{"shape":"NullableBoolean"}
3739
- }
3740
- },
3741
- "PhoneNumberError":{
3742
- "type":"structure",
3743
- "members":{
3744
- "PhoneNumberId":{"shape":"NonEmptyString"},
3745
- "ErrorCode":{"shape":"ErrorCode"},
3746
- "ErrorMessage":{"shape":"String"}
3747
- }
3748
- },
3749
- "PhoneNumberErrorList":{
3750
- "type":"list",
3751
- "member":{"shape":"PhoneNumberError"}
3752
- },
3753
- "PhoneNumberList":{
3754
- "type":"list",
3755
- "member":{"shape":"PhoneNumber"}
3756
- },
3757
- "PhoneNumberMaxResults":{
3758
- "type":"integer",
3759
- "max":500,
3760
- "min":1
3761
- },
3762
- "PhoneNumberOrder":{
3763
- "type":"structure",
3764
- "members":{
3765
- "PhoneNumberOrderId":{"shape":"GuidString"},
3766
- "ProductType":{"shape":"PhoneNumberProductType"},
3767
- "Status":{"shape":"PhoneNumberOrderStatus"},
3768
- "OrderedPhoneNumbers":{"shape":"OrderedPhoneNumberList"},
3769
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
3770
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
3771
- }
3772
- },
3773
- "PhoneNumberOrderList":{
3774
- "type":"list",
3775
- "member":{"shape":"PhoneNumberOrder"}
3776
- },
3777
- "PhoneNumberOrderStatus":{
3778
- "type":"string",
3779
- "enum":[
3780
- "Processing",
3781
- "Successful",
3782
- "Failed",
3783
- "Partial"
3784
- ]
3785
- },
3786
- "PhoneNumberProductType":{
3787
- "type":"string",
3788
- "enum":[
3789
- "BusinessCalling",
3790
- "VoiceConnector"
3791
- ]
3792
- },
3793
- "PhoneNumberStatus":{
3794
- "type":"string",
3795
- "enum":[
3796
- "AcquireInProgress",
3797
- "AcquireFailed",
3798
- "Unassigned",
3799
- "Assigned",
3800
- "ReleaseInProgress",
3801
- "DeleteInProgress",
3802
- "ReleaseFailed",
3803
- "DeleteFailed"
3804
- ]
3805
- },
3806
- "PhoneNumberType":{
3807
- "type":"string",
3808
- "enum":[
3809
- "Local",
3810
- "TollFree"
3811
- ]
3812
- },
3813
- "Port":{
3814
- "type":"integer",
3815
- "max":65535,
3816
- "min":0
3817
- },
3818
- "ProfileServiceMaxResults":{
3819
- "type":"integer",
3820
- "max":200,
3821
- "min":1
3822
- },
3823
- "PutEventsConfigurationRequest":{
3824
- "type":"structure",
3825
- "required":[
3826
- "AccountId",
3827
- "BotId"
3828
- ],
3829
- "members":{
3830
- "AccountId":{
3831
- "shape":"NonEmptyString",
3832
- "location":"uri",
3833
- "locationName":"accountId"
3834
- },
3835
- "BotId":{
3836
- "shape":"NonEmptyString",
3837
- "location":"uri",
3838
- "locationName":"botId"
3839
- },
3840
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
3841
- "LambdaFunctionArn":{"shape":"SensitiveString"}
3842
- }
3843
- },
3844
- "PutEventsConfigurationResponse":{
3845
- "type":"structure",
3846
- "members":{
3847
- "EventsConfiguration":{"shape":"EventsConfiguration"}
3848
- }
3849
- },
3850
- "PutVoiceConnectorLoggingConfigurationRequest":{
3851
- "type":"structure",
3852
- "required":[
3853
- "VoiceConnectorId",
3854
- "LoggingConfiguration"
3855
- ],
3856
- "members":{
3857
- "VoiceConnectorId":{
3858
- "shape":"NonEmptyString",
3859
- "location":"uri",
3860
- "locationName":"voiceConnectorId"
3861
- },
3862
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
3863
- }
3864
- },
3865
- "PutVoiceConnectorLoggingConfigurationResponse":{
3866
- "type":"structure",
3867
- "members":{
3868
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
3869
- }
3870
- },
3871
- "PutVoiceConnectorOriginationRequest":{
3872
- "type":"structure",
3873
- "required":[
3874
- "VoiceConnectorId",
3875
- "Origination"
3876
- ],
3877
- "members":{
3878
- "VoiceConnectorId":{
3879
- "shape":"NonEmptyString",
3880
- "location":"uri",
3881
- "locationName":"voiceConnectorId"
3882
- },
3883
- "Origination":{"shape":"Origination"}
3884
- }
3885
- },
3886
- "PutVoiceConnectorOriginationResponse":{
3887
- "type":"structure",
3888
- "members":{
3889
- "Origination":{"shape":"Origination"}
3890
- }
3891
- },
3892
- "PutVoiceConnectorStreamingConfigurationRequest":{
3893
- "type":"structure",
3894
- "required":[
3895
- "VoiceConnectorId",
3896
- "StreamingConfiguration"
3897
- ],
3898
- "members":{
3899
- "VoiceConnectorId":{
3900
- "shape":"NonEmptyString",
3901
- "location":"uri",
3902
- "locationName":"voiceConnectorId"
3903
- },
3904
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
3905
- }
3906
- },
3907
- "PutVoiceConnectorStreamingConfigurationResponse":{
3908
- "type":"structure",
3909
- "members":{
3910
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
3911
- }
3912
- },
3913
- "PutVoiceConnectorTerminationCredentialsRequest":{
3914
- "type":"structure",
3915
- "required":["VoiceConnectorId"],
3916
- "members":{
3917
- "VoiceConnectorId":{
3918
- "shape":"NonEmptyString",
3919
- "location":"uri",
3920
- "locationName":"voiceConnectorId"
3921
- },
3922
- "Credentials":{"shape":"CredentialList"}
3923
- }
3924
- },
3925
- "PutVoiceConnectorTerminationRequest":{
3926
- "type":"structure",
3927
- "required":[
3928
- "VoiceConnectorId",
3929
- "Termination"
3930
- ],
3931
- "members":{
3932
- "VoiceConnectorId":{
3933
- "shape":"NonEmptyString",
3934
- "location":"uri",
3935
- "locationName":"voiceConnectorId"
3936
- },
3937
- "Termination":{"shape":"Termination"}
3938
- }
3939
- },
3940
- "PutVoiceConnectorTerminationResponse":{
3941
- "type":"structure",
3942
- "members":{
3943
- "Termination":{"shape":"Termination"}
3944
- }
3945
- },
3946
- "RegenerateSecurityTokenRequest":{
3947
- "type":"structure",
3948
- "required":[
3949
- "AccountId",
3950
- "BotId"
3951
- ],
3952
- "members":{
3953
- "AccountId":{
3954
- "shape":"NonEmptyString",
3955
- "location":"uri",
3956
- "locationName":"accountId"
3957
- },
3958
- "BotId":{
3959
- "shape":"NonEmptyString",
3960
- "location":"uri",
3961
- "locationName":"botId"
3962
- }
3963
- }
3964
- },
3965
- "RegenerateSecurityTokenResponse":{
3966
- "type":"structure",
3967
- "members":{
3968
- "Bot":{"shape":"Bot"}
3969
- }
3970
- },
3971
- "RegistrationStatus":{
3972
- "type":"string",
3973
- "enum":[
3974
- "Unregistered",
3975
- "Registered",
3976
- "Suspended"
3977
- ]
3978
- },
3979
- "ResetPersonalPINRequest":{
3980
- "type":"structure",
3981
- "required":[
3982
- "AccountId",
3983
- "UserId"
3984
- ],
3985
- "members":{
3986
- "AccountId":{
3987
- "shape":"NonEmptyString",
3988
- "location":"uri",
3989
- "locationName":"accountId"
3990
- },
3991
- "UserId":{
3992
- "shape":"NonEmptyString",
3993
- "location":"uri",
3994
- "locationName":"userId"
3995
- }
3996
- }
3997
- },
3998
- "ResetPersonalPINResponse":{
3999
- "type":"structure",
4000
- "members":{
4001
- "User":{"shape":"User"}
4002
- }
4003
- },
4004
- "ResourceLimitExceededException":{
4005
- "type":"structure",
4006
- "members":{
4007
- "Code":{"shape":"ErrorCode"},
4008
- "Message":{"shape":"String"}
4009
- },
4010
- "error":{"httpStatusCode":400},
4011
- "exception":true
4012
- },
4013
- "RestorePhoneNumberRequest":{
4014
- "type":"structure",
4015
- "required":["PhoneNumberId"],
4016
- "members":{
4017
- "PhoneNumberId":{
4018
- "shape":"NonEmptyString",
4019
- "location":"uri",
4020
- "locationName":"phoneNumberId"
4021
- }
4022
- }
4023
- },
4024
- "RestorePhoneNumberResponse":{
4025
- "type":"structure",
4026
- "members":{
4027
- "PhoneNumber":{"shape":"PhoneNumber"}
4028
- }
4029
- },
4030
- "ResultMax":{
4031
- "type":"integer",
4032
- "max":99,
4033
- "min":1
4034
- },
4035
- "Room":{
4036
- "type":"structure",
4037
- "members":{
4038
- "RoomId":{"shape":"NonEmptyString"},
4039
- "Name":{"shape":"SensitiveString"},
4040
- "AccountId":{"shape":"NonEmptyString"},
4041
- "CreatedBy":{"shape":"NonEmptyString"},
4042
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
4043
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
4044
- }
4045
- },
4046
- "RoomList":{
4047
- "type":"list",
4048
- "member":{"shape":"Room"}
4049
- },
4050
- "RoomMembership":{
4051
- "type":"structure",
4052
- "members":{
4053
- "RoomId":{"shape":"NonEmptyString"},
4054
- "Member":{"shape":"Member"},
4055
- "Role":{"shape":"RoomMembershipRole"},
4056
- "InvitedBy":{"shape":"NonEmptyString"},
4057
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
4058
- }
4059
- },
4060
- "RoomMembershipList":{
4061
- "type":"list",
4062
- "member":{"shape":"RoomMembership"}
4063
- },
4064
- "RoomMembershipRole":{
4065
- "type":"string",
4066
- "enum":[
4067
- "Administrator",
4068
- "Member"
4069
- ]
4070
- },
4071
- "SearchAvailablePhoneNumbersRequest":{
4072
- "type":"structure",
4073
- "members":{
4074
- "AreaCode":{
4075
- "shape":"String",
4076
- "location":"querystring",
4077
- "locationName":"area-code"
4078
- },
4079
- "City":{
4080
- "shape":"String",
4081
- "location":"querystring",
4082
- "locationName":"city"
4083
- },
4084
- "Country":{
4085
- "shape":"String",
4086
- "location":"querystring",
4087
- "locationName":"country"
4088
- },
4089
- "State":{
4090
- "shape":"String",
4091
- "location":"querystring",
4092
- "locationName":"state"
4093
- },
4094
- "TollFreePrefix":{
4095
- "shape":"TollFreePrefix",
4096
- "location":"querystring",
4097
- "locationName":"toll-free-prefix"
4098
- },
4099
- "MaxResults":{
4100
- "shape":"PhoneNumberMaxResults",
4101
- "location":"querystring",
4102
- "locationName":"max-results"
4103
- },
4104
- "NextToken":{
4105
- "shape":"String",
4106
- "location":"querystring",
4107
- "locationName":"next-token"
4108
- }
4109
- }
4110
- },
4111
- "SearchAvailablePhoneNumbersResponse":{
4112
- "type":"structure",
4113
- "members":{
4114
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
4115
- }
4116
- },
4117
- "SensitiveString":{
4118
- "type":"string",
4119
- "sensitive":true
4120
- },
4121
- "SensitiveStringList":{
4122
- "type":"list",
4123
- "member":{"shape":"SensitiveString"}
4124
- },
4125
- "ServiceFailureException":{
4126
- "type":"structure",
4127
- "members":{
4128
- "Code":{"shape":"ErrorCode"},
4129
- "Message":{"shape":"String"}
4130
- },
4131
- "error":{"httpStatusCode":500},
4132
- "exception":true,
4133
- "fault":true
4134
- },
4135
- "ServiceUnavailableException":{
4136
- "type":"structure",
4137
- "members":{
4138
- "Code":{"shape":"ErrorCode"},
4139
- "Message":{"shape":"String"}
4140
- },
4141
- "error":{"httpStatusCode":503},
4142
- "exception":true,
4143
- "fault":true
4144
- },
4145
- "SigninDelegateGroup":{
4146
- "type":"structure",
4147
- "members":{
4148
- "GroupName":{"shape":"NonEmptyString"}
4149
- }
4150
- },
4151
- "SigninDelegateGroupList":{
4152
- "type":"list",
4153
- "member":{"shape":"SigninDelegateGroup"}
4154
- },
4155
- "StreamingConfiguration":{
4156
- "type":"structure",
4157
- "required":["DataRetentionInHours"],
4158
- "members":{
4159
- "DataRetentionInHours":{"shape":"DataRetentionInHours"},
4160
- "Disabled":{"shape":"Boolean"}
4161
- }
4162
- },
4163
- "String":{"type":"string"},
4164
- "StringList":{
4165
- "type":"list",
4166
- "member":{"shape":"String"}
4167
- },
4168
- "TelephonySettings":{
4169
- "type":"structure",
4170
- "required":[
4171
- "InboundCalling",
4172
- "OutboundCalling",
4173
- "SMS"
4174
- ],
4175
- "members":{
4176
- "InboundCalling":{"shape":"Boolean"},
4177
- "OutboundCalling":{"shape":"Boolean"},
4178
- "SMS":{"shape":"Boolean"}
4179
- }
4180
- },
4181
- "Termination":{
4182
- "type":"structure",
4183
- "members":{
4184
- "CpsLimit":{"shape":"CpsLimit"},
4185
- "DefaultPhoneNumber":{"shape":"E164PhoneNumber"},
4186
- "CallingRegions":{"shape":"CallingRegionList"},
4187
- "CidrAllowedList":{"shape":"StringList"},
4188
- "Disabled":{"shape":"Boolean"}
4189
- }
4190
- },
4191
- "TerminationHealth":{
4192
- "type":"structure",
4193
- "members":{
4194
- "Timestamp":{"shape":"Iso8601Timestamp"},
4195
- "Source":{"shape":"String"}
4196
- }
4197
- },
4198
- "ThrottledClientException":{
4199
- "type":"structure",
4200
- "members":{
4201
- "Code":{"shape":"ErrorCode"},
4202
- "Message":{"shape":"String"}
4203
- },
4204
- "error":{"httpStatusCode":429},
4205
- "exception":true
4206
- },
4207
- "TollFreePrefix":{
4208
- "type":"string",
4209
- "max":3,
4210
- "min":3,
4211
- "pattern":"^8(00|33|44|55|66|77|88)$"
4212
- },
4213
- "UnauthorizedClientException":{
4214
- "type":"structure",
4215
- "members":{
4216
- "Code":{"shape":"ErrorCode"},
4217
- "Message":{"shape":"String"}
4218
- },
4219
- "error":{"httpStatusCode":401},
4220
- "exception":true
4221
- },
4222
- "UnprocessableEntityException":{
4223
- "type":"structure",
4224
- "members":{
4225
- "Code":{"shape":"ErrorCode"},
4226
- "Message":{"shape":"String"}
4227
- },
4228
- "error":{"httpStatusCode":422},
4229
- "exception":true
4230
- },
4231
- "UpdateAccountRequest":{
4232
- "type":"structure",
4233
- "required":["AccountId"],
4234
- "members":{
4235
- "AccountId":{
4236
- "shape":"NonEmptyString",
4237
- "location":"uri",
4238
- "locationName":"accountId"
4239
- },
4240
- "Name":{"shape":"AccountName"}
4241
- }
4242
- },
4243
- "UpdateAccountResponse":{
4244
- "type":"structure",
4245
- "members":{
4246
- "Account":{"shape":"Account"}
4247
- }
4248
- },
4249
- "UpdateAccountSettingsRequest":{
4250
- "type":"structure",
4251
- "required":[
4252
- "AccountId",
4253
- "AccountSettings"
4254
- ],
4255
- "members":{
4256
- "AccountId":{
4257
- "shape":"NonEmptyString",
4258
- "location":"uri",
4259
- "locationName":"accountId"
4260
- },
4261
- "AccountSettings":{"shape":"AccountSettings"}
4262
- }
4263
- },
4264
- "UpdateAccountSettingsResponse":{
4265
- "type":"structure",
4266
- "members":{
4267
- }
4268
- },
4269
- "UpdateBotRequest":{
4270
- "type":"structure",
4271
- "required":[
4272
- "AccountId",
4273
- "BotId"
4274
- ],
4275
- "members":{
4276
- "AccountId":{
4277
- "shape":"NonEmptyString",
4278
- "location":"uri",
4279
- "locationName":"accountId"
4280
- },
4281
- "BotId":{
4282
- "shape":"NonEmptyString",
4283
- "location":"uri",
4284
- "locationName":"botId"
4285
- },
4286
- "Disabled":{"shape":"NullableBoolean"}
4287
- }
4288
- },
4289
- "UpdateBotResponse":{
4290
- "type":"structure",
4291
- "members":{
4292
- "Bot":{"shape":"Bot"}
4293
- }
4294
- },
4295
- "UpdateGlobalSettingsRequest":{
4296
- "type":"structure",
4297
- "required":[
4298
- "BusinessCalling",
4299
- "VoiceConnector"
4300
- ],
4301
- "members":{
4302
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
4303
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
4304
- }
4305
- },
4306
- "UpdatePhoneNumberRequest":{
4307
- "type":"structure",
4308
- "required":["PhoneNumberId"],
4309
- "members":{
4310
- "PhoneNumberId":{
4311
- "shape":"String",
4312
- "location":"uri",
4313
- "locationName":"phoneNumberId"
4314
- },
4315
- "ProductType":{"shape":"PhoneNumberProductType"},
4316
- "CallingName":{"shape":"CallingName"}
4317
- }
4318
- },
4319
- "UpdatePhoneNumberRequestItem":{
4320
- "type":"structure",
4321
- "required":["PhoneNumberId"],
4322
- "members":{
4323
- "PhoneNumberId":{"shape":"NonEmptyString"},
4324
- "ProductType":{"shape":"PhoneNumberProductType"},
4325
- "CallingName":{"shape":"CallingName"}
4326
- }
4327
- },
4328
- "UpdatePhoneNumberRequestItemList":{
4329
- "type":"list",
4330
- "member":{"shape":"UpdatePhoneNumberRequestItem"}
4331
- },
4332
- "UpdatePhoneNumberResponse":{
4333
- "type":"structure",
4334
- "members":{
4335
- "PhoneNumber":{"shape":"PhoneNumber"}
4336
- }
4337
- },
4338
- "UpdatePhoneNumberSettingsRequest":{
4339
- "type":"structure",
4340
- "required":["CallingName"],
4341
- "members":{
4342
- "CallingName":{"shape":"CallingName"}
4343
- }
4344
- },
4345
- "UpdateRoomMembershipRequest":{
4346
- "type":"structure",
4347
- "required":[
4348
- "AccountId",
4349
- "RoomId",
4350
- "MemberId"
4351
- ],
4352
- "members":{
4353
- "AccountId":{
4354
- "shape":"NonEmptyString",
4355
- "location":"uri",
4356
- "locationName":"accountId"
4357
- },
4358
- "RoomId":{
4359
- "shape":"NonEmptyString",
4360
- "location":"uri",
4361
- "locationName":"roomId"
4362
- },
4363
- "MemberId":{
4364
- "shape":"NonEmptyString",
4365
- "location":"uri",
4366
- "locationName":"memberId"
4367
- },
4368
- "Role":{"shape":"RoomMembershipRole"}
4369
- }
4370
- },
4371
- "UpdateRoomMembershipResponse":{
4372
- "type":"structure",
4373
- "members":{
4374
- "RoomMembership":{"shape":"RoomMembership"}
4375
- }
4376
- },
4377
- "UpdateRoomRequest":{
4378
- "type":"structure",
4379
- "required":[
4380
- "AccountId",
4381
- "RoomId"
4382
- ],
4383
- "members":{
4384
- "AccountId":{
4385
- "shape":"NonEmptyString",
4386
- "location":"uri",
4387
- "locationName":"accountId"
4388
- },
4389
- "RoomId":{
4390
- "shape":"NonEmptyString",
4391
- "location":"uri",
4392
- "locationName":"roomId"
4393
- },
4394
- "Name":{"shape":"SensitiveString"}
4395
- }
4396
- },
4397
- "UpdateRoomResponse":{
4398
- "type":"structure",
4399
- "members":{
4400
- "Room":{"shape":"Room"}
4401
- }
4402
- },
4403
- "UpdateUserRequest":{
4404
- "type":"structure",
4405
- "required":[
4406
- "AccountId",
4407
- "UserId"
4408
- ],
4409
- "members":{
4410
- "AccountId":{
4411
- "shape":"NonEmptyString",
4412
- "location":"uri",
4413
- "locationName":"accountId"
4414
- },
4415
- "UserId":{
4416
- "shape":"NonEmptyString",
4417
- "location":"uri",
4418
- "locationName":"userId"
4419
- },
4420
- "LicenseType":{"shape":"License"},
4421
- "UserType":{"shape":"UserType"},
4422
- "AlexaForBusinessMetadata":{"shape":"AlexaForBusinessMetadata"}
4423
- }
4424
- },
4425
- "UpdateUserRequestItem":{
4426
- "type":"structure",
4427
- "required":["UserId"],
4428
- "members":{
4429
- "UserId":{"shape":"NonEmptyString"},
4430
- "LicenseType":{"shape":"License"},
4431
- "UserType":{"shape":"UserType"},
4432
- "AlexaForBusinessMetadata":{"shape":"AlexaForBusinessMetadata"}
4433
- }
4434
- },
4435
- "UpdateUserRequestItemList":{
4436
- "type":"list",
4437
- "member":{"shape":"UpdateUserRequestItem"},
4438
- "max":20
4439
- },
4440
- "UpdateUserResponse":{
4441
- "type":"structure",
4442
- "members":{
4443
- "User":{"shape":"User"}
4444
- }
4445
- },
4446
- "UpdateUserSettingsRequest":{
4447
- "type":"structure",
4448
- "required":[
4449
- "AccountId",
4450
- "UserId",
4451
- "UserSettings"
4452
- ],
4453
- "members":{
4454
- "AccountId":{
4455
- "shape":"String",
4456
- "location":"uri",
4457
- "locationName":"accountId"
4458
- },
4459
- "UserId":{
4460
- "shape":"String",
4461
- "location":"uri",
4462
- "locationName":"userId"
4463
- },
4464
- "UserSettings":{"shape":"UserSettings"}
4465
- }
4466
- },
4467
- "UpdateVoiceConnectorGroupRequest":{
4468
- "type":"structure",
4469
- "required":[
4470
- "VoiceConnectorGroupId",
4471
- "Name",
4472
- "VoiceConnectorItems"
4473
- ],
4474
- "members":{
4475
- "VoiceConnectorGroupId":{
4476
- "shape":"NonEmptyString",
4477
- "location":"uri",
4478
- "locationName":"voiceConnectorGroupId"
4479
- },
4480
- "Name":{"shape":"VoiceConnectorGroupName"},
4481
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
4482
- }
4483
- },
4484
- "UpdateVoiceConnectorGroupResponse":{
4485
- "type":"structure",
4486
- "members":{
4487
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
4488
- }
4489
- },
4490
- "UpdateVoiceConnectorRequest":{
4491
- "type":"structure",
4492
- "required":[
4493
- "VoiceConnectorId",
4494
- "Name",
4495
- "RequireEncryption"
4496
- ],
4497
- "members":{
4498
- "VoiceConnectorId":{
4499
- "shape":"NonEmptyString",
4500
- "location":"uri",
4501
- "locationName":"voiceConnectorId"
4502
- },
4503
- "Name":{"shape":"VoiceConnectorName"},
4504
- "RequireEncryption":{"shape":"Boolean"}
4505
- }
4506
- },
4507
- "UpdateVoiceConnectorResponse":{
4508
- "type":"structure",
4509
- "members":{
4510
- "VoiceConnector":{"shape":"VoiceConnector"}
4511
- }
4512
- },
4513
- "UriType":{
4514
- "type":"string",
4515
- "max":4096
4516
- },
4517
- "User":{
4518
- "type":"structure",
4519
- "required":["UserId"],
4520
- "members":{
4521
- "UserId":{"shape":"String"},
4522
- "AccountId":{"shape":"String"},
4523
- "PrimaryEmail":{"shape":"EmailAddress"},
4524
- "PrimaryProvisionedNumber":{"shape":"SensitiveString"},
4525
- "DisplayName":{"shape":"SensitiveString"},
4526
- "LicenseType":{"shape":"License"},
4527
- "UserType":{"shape":"UserType"},
4528
- "UserRegistrationStatus":{"shape":"RegistrationStatus"},
4529
- "UserInvitationStatus":{"shape":"InviteStatus"},
4530
- "RegisteredOn":{"shape":"Iso8601Timestamp"},
4531
- "InvitedOn":{"shape":"Iso8601Timestamp"},
4532
- "AlexaForBusinessMetadata":{"shape":"AlexaForBusinessMetadata"},
4533
- "PersonalPIN":{"shape":"String"}
4534
- }
4535
- },
4536
- "UserEmailList":{
4537
- "type":"list",
4538
- "member":{"shape":"EmailAddress"},
4539
- "max":50
4540
- },
4541
- "UserError":{
4542
- "type":"structure",
4543
- "members":{
4544
- "UserId":{"shape":"NonEmptyString"},
4545
- "ErrorCode":{"shape":"ErrorCode"},
4546
- "ErrorMessage":{"shape":"String"}
4547
- }
4548
- },
4549
- "UserErrorList":{
4550
- "type":"list",
4551
- "member":{"shape":"UserError"}
4552
- },
4553
- "UserIdList":{
4554
- "type":"list",
4555
- "member":{"shape":"NonEmptyString"},
4556
- "max":50
4557
- },
4558
- "UserList":{
4559
- "type":"list",
4560
- "member":{"shape":"User"}
4561
- },
4562
- "UserSettings":{
4563
- "type":"structure",
4564
- "required":["Telephony"],
4565
- "members":{
4566
- "Telephony":{"shape":"TelephonySettings"}
4567
- }
4568
- },
4569
- "UserType":{
4570
- "type":"string",
4571
- "enum":[
4572
- "PrivateUser",
4573
- "SharedDevice"
4574
- ]
4575
- },
4576
- "VoiceConnector":{
4577
- "type":"structure",
4578
- "members":{
4579
- "VoiceConnectorId":{"shape":"NonEmptyString"},
4580
- "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
4581
- "Name":{"shape":"VoiceConnectorName"},
4582
- "OutboundHostName":{"shape":"String"},
4583
- "RequireEncryption":{"shape":"Boolean"},
4584
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
4585
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
4586
- }
4587
- },
4588
- "VoiceConnectorAwsRegion":{
4589
- "type":"string",
4590
- "enum":[
4591
- "us-east-1",
4592
- "us-west-2"
4593
- ]
4594
- },
4595
- "VoiceConnectorGroup":{
4596
- "type":"structure",
4597
- "members":{
4598
- "VoiceConnectorGroupId":{"shape":"NonEmptyString"},
4599
- "Name":{"shape":"VoiceConnectorGroupName"},
4600
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"},
4601
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
4602
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
4603
- }
4604
- },
4605
- "VoiceConnectorGroupList":{
4606
- "type":"list",
4607
- "member":{"shape":"VoiceConnectorGroup"}
4608
- },
4609
- "VoiceConnectorGroupName":{
4610
- "type":"string",
4611
- "max":256,
4612
- "min":1
4613
- },
4614
- "VoiceConnectorItem":{
4615
- "type":"structure",
4616
- "required":[
4617
- "VoiceConnectorId",
4618
- "Priority"
4619
- ],
4620
- "members":{
4621
- "VoiceConnectorId":{"shape":"NonEmptyString"},
4622
- "Priority":{"shape":"VoiceConnectorItemPriority"}
4623
- }
4624
- },
4625
- "VoiceConnectorItemList":{
4626
- "type":"list",
4627
- "member":{"shape":"VoiceConnectorItem"}
4628
- },
4629
- "VoiceConnectorItemPriority":{
4630
- "type":"integer",
4631
- "max":99,
4632
- "min":1
4633
- },
4634
- "VoiceConnectorList":{
4635
- "type":"list",
4636
- "member":{"shape":"VoiceConnector"}
4637
- },
4638
- "VoiceConnectorName":{
4639
- "type":"string",
4640
- "max":256,
4641
- "min":1
4642
- },
4643
- "VoiceConnectorSettings":{
4644
- "type":"structure",
4645
- "members":{
4646
- "CdrBucket":{
4647
- "shape":"String",
4648
- "box":true
4649
- }
4650
- }
4651
- }
4652
- }
4653
- }