aws-sdk-core 2.11.401 → 3.77.0

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