aws-sdk-core 2.11.408 → 3.77.0

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