aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  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 -1369
  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 -696
  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 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  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 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  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 -3179
  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 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  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/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,26 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeRemediationExceptions": {
4
- "input_token": "NextToken",
5
- "limit_key": "Limit",
6
- "output_token": "NextToken"
7
- },
8
- "DescribeRemediationExecutionStatus": {
9
- "input_token": "NextToken",
10
- "limit_key": "Limit",
11
- "output_token": "NextToken",
12
- "result_key": "RemediationExecutionStatuses"
13
- },
14
- "GetResourceConfigHistory": {
15
- "input_token": "nextToken",
16
- "limit_key": "limit",
17
- "output_token": "nextToken",
18
- "result_key": "configurationItems"
19
- },
20
- "SelectAggregateResourceConfig": {
21
- "input_token": "NextToken",
22
- "limit_key": "MaxResults",
23
- "output_token": "NextToken"
24
- }
25
- }
26
- }
@@ -1,19 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "DescribeConfigurationRecorders",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "GetResourceConfigHistory",
12
- "input": {
13
- "resourceType": "fake-type",
14
- "resourceId": "fake-id"
15
- },
16
- "errorExpectedFromService": true
17
- }
18
- ]
19
- }
@@ -1,4452 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2017-08-08",
5
- "endpointPrefix":"connect",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceAbbreviation":"Amazon Connect",
9
- "serviceFullName":"Amazon Connect Service",
10
- "serviceId":"Connect",
11
- "signatureVersion":"v4",
12
- "signingName":"connect",
13
- "uid":"connect-2017-08-08"
14
- },
15
- "operations":{
16
- "AssociateApprovedOrigin":{
17
- "name":"AssociateApprovedOrigin",
18
- "http":{
19
- "method":"PUT",
20
- "requestUri":"/instance/{InstanceId}/approved-origin"
21
- },
22
- "input":{"shape":"AssociateApprovedOriginRequest"},
23
- "errors":[
24
- {"shape":"ResourceNotFoundException"},
25
- {"shape":"ResourceConflictException"},
26
- {"shape":"InternalServiceException"},
27
- {"shape":"InvalidRequestException"},
28
- {"shape":"InvalidParameterException"},
29
- {"shape":"ServiceQuotaExceededException"},
30
- {"shape":"ThrottlingException"}
31
- ]
32
- },
33
- "AssociateInstanceStorageConfig":{
34
- "name":"AssociateInstanceStorageConfig",
35
- "http":{
36
- "method":"PUT",
37
- "requestUri":"/instance/{InstanceId}/storage-config"
38
- },
39
- "input":{"shape":"AssociateInstanceStorageConfigRequest"},
40
- "output":{"shape":"AssociateInstanceStorageConfigResponse"},
41
- "errors":[
42
- {"shape":"ResourceNotFoundException"},
43
- {"shape":"ResourceConflictException"},
44
- {"shape":"InternalServiceException"},
45
- {"shape":"InvalidRequestException"},
46
- {"shape":"InvalidParameterException"},
47
- {"shape":"ThrottlingException"}
48
- ]
49
- },
50
- "AssociateLambdaFunction":{
51
- "name":"AssociateLambdaFunction",
52
- "http":{
53
- "method":"PUT",
54
- "requestUri":"/instance/{InstanceId}/lambda-function"
55
- },
56
- "input":{"shape":"AssociateLambdaFunctionRequest"},
57
- "errors":[
58
- {"shape":"ResourceNotFoundException"},
59
- {"shape":"ResourceConflictException"},
60
- {"shape":"InternalServiceException"},
61
- {"shape":"InvalidRequestException"},
62
- {"shape":"InvalidParameterException"},
63
- {"shape":"ServiceQuotaExceededException"},
64
- {"shape":"ThrottlingException"}
65
- ]
66
- },
67
- "AssociateLexBot":{
68
- "name":"AssociateLexBot",
69
- "http":{
70
- "method":"PUT",
71
- "requestUri":"/instance/{InstanceId}/lex-bot"
72
- },
73
- "input":{"shape":"AssociateLexBotRequest"},
74
- "errors":[
75
- {"shape":"ResourceNotFoundException"},
76
- {"shape":"ResourceConflictException"},
77
- {"shape":"InternalServiceException"},
78
- {"shape":"InvalidRequestException"},
79
- {"shape":"InvalidParameterException"},
80
- {"shape":"ServiceQuotaExceededException"},
81
- {"shape":"ThrottlingException"}
82
- ]
83
- },
84
- "AssociateRoutingProfileQueues":{
85
- "name":"AssociateRoutingProfileQueues",
86
- "http":{
87
- "method":"POST",
88
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/associate-queues"
89
- },
90
- "input":{"shape":"AssociateRoutingProfileQueuesRequest"},
91
- "errors":[
92
- {"shape":"InvalidRequestException"},
93
- {"shape":"InvalidParameterException"},
94
- {"shape":"ResourceNotFoundException"},
95
- {"shape":"ThrottlingException"},
96
- {"shape":"InternalServiceException"}
97
- ]
98
- },
99
- "AssociateSecurityKey":{
100
- "name":"AssociateSecurityKey",
101
- "http":{
102
- "method":"PUT",
103
- "requestUri":"/instance/{InstanceId}/security-key"
104
- },
105
- "input":{"shape":"AssociateSecurityKeyRequest"},
106
- "output":{"shape":"AssociateSecurityKeyResponse"},
107
- "errors":[
108
- {"shape":"ResourceNotFoundException"},
109
- {"shape":"ResourceConflictException"},
110
- {"shape":"InternalServiceException"},
111
- {"shape":"InvalidRequestException"},
112
- {"shape":"InvalidParameterException"},
113
- {"shape":"ServiceQuotaExceededException"},
114
- {"shape":"ThrottlingException"}
115
- ]
116
- },
117
- "CreateContactFlow":{
118
- "name":"CreateContactFlow",
119
- "http":{
120
- "method":"PUT",
121
- "requestUri":"/contact-flows/{InstanceId}"
122
- },
123
- "input":{"shape":"CreateContactFlowRequest"},
124
- "output":{"shape":"CreateContactFlowResponse"},
125
- "errors":[
126
- {"shape":"InvalidRequestException"},
127
- {"shape":"InvalidContactFlowException"},
128
- {"shape":"InvalidParameterException"},
129
- {"shape":"DuplicateResourceException"},
130
- {"shape":"LimitExceededException"},
131
- {"shape":"ResourceNotFoundException"},
132
- {"shape":"ThrottlingException"},
133
- {"shape":"InternalServiceException"}
134
- ]
135
- },
136
- "CreateInstance":{
137
- "name":"CreateInstance",
138
- "http":{
139
- "method":"PUT",
140
- "requestUri":"/instance"
141
- },
142
- "input":{"shape":"CreateInstanceRequest"},
143
- "output":{"shape":"CreateInstanceResponse"},
144
- "errors":[
145
- {"shape":"InvalidRequestException"},
146
- {"shape":"ServiceQuotaExceededException"},
147
- {"shape":"ThrottlingException"},
148
- {"shape":"ResourceNotFoundException"},
149
- {"shape":"InternalServiceException"}
150
- ]
151
- },
152
- "CreateRoutingProfile":{
153
- "name":"CreateRoutingProfile",
154
- "http":{
155
- "method":"PUT",
156
- "requestUri":"/routing-profiles/{InstanceId}"
157
- },
158
- "input":{"shape":"CreateRoutingProfileRequest"},
159
- "output":{"shape":"CreateRoutingProfileResponse"},
160
- "errors":[
161
- {"shape":"InvalidRequestException"},
162
- {"shape":"InvalidParameterException"},
163
- {"shape":"DuplicateResourceException"},
164
- {"shape":"ResourceNotFoundException"},
165
- {"shape":"LimitExceededException"},
166
- {"shape":"ThrottlingException"},
167
- {"shape":"InternalServiceException"}
168
- ]
169
- },
170
- "CreateUser":{
171
- "name":"CreateUser",
172
- "http":{
173
- "method":"PUT",
174
- "requestUri":"/users/{InstanceId}"
175
- },
176
- "input":{"shape":"CreateUserRequest"},
177
- "output":{"shape":"CreateUserResponse"},
178
- "errors":[
179
- {"shape":"InvalidRequestException"},
180
- {"shape":"InvalidParameterException"},
181
- {"shape":"LimitExceededException"},
182
- {"shape":"DuplicateResourceException"},
183
- {"shape":"ResourceNotFoundException"},
184
- {"shape":"ThrottlingException"},
185
- {"shape":"InternalServiceException"}
186
- ]
187
- },
188
- "CreateUserHierarchyGroup":{
189
- "name":"CreateUserHierarchyGroup",
190
- "http":{
191
- "method":"PUT",
192
- "requestUri":"/user-hierarchy-groups/{InstanceId}"
193
- },
194
- "input":{"shape":"CreateUserHierarchyGroupRequest"},
195
- "output":{"shape":"CreateUserHierarchyGroupResponse"},
196
- "errors":[
197
- {"shape":"InvalidRequestException"},
198
- {"shape":"InvalidParameterException"},
199
- {"shape":"DuplicateResourceException"},
200
- {"shape":"LimitExceededException"},
201
- {"shape":"ResourceNotFoundException"},
202
- {"shape":"ThrottlingException"},
203
- {"shape":"InternalServiceException"}
204
- ]
205
- },
206
- "DeleteInstance":{
207
- "name":"DeleteInstance",
208
- "http":{
209
- "method":"DELETE",
210
- "requestUri":"/instance/{InstanceId}"
211
- },
212
- "input":{"shape":"DeleteInstanceRequest"},
213
- "errors":[
214
- {"shape":"ResourceNotFoundException"},
215
- {"shape":"InternalServiceException"},
216
- {"shape":"InvalidRequestException"}
217
- ]
218
- },
219
- "DeleteUser":{
220
- "name":"DeleteUser",
221
- "http":{
222
- "method":"DELETE",
223
- "requestUri":"/users/{InstanceId}/{UserId}"
224
- },
225
- "input":{"shape":"DeleteUserRequest"},
226
- "errors":[
227
- {"shape":"InvalidRequestException"},
228
- {"shape":"InvalidParameterException"},
229
- {"shape":"ResourceNotFoundException"},
230
- {"shape":"ThrottlingException"},
231
- {"shape":"InternalServiceException"}
232
- ]
233
- },
234
- "DeleteUserHierarchyGroup":{
235
- "name":"DeleteUserHierarchyGroup",
236
- "http":{
237
- "method":"DELETE",
238
- "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}"
239
- },
240
- "input":{"shape":"DeleteUserHierarchyGroupRequest"},
241
- "errors":[
242
- {"shape":"InvalidRequestException"},
243
- {"shape":"InvalidParameterException"},
244
- {"shape":"ResourceNotFoundException"},
245
- {"shape":"ResourceInUseException"},
246
- {"shape":"ThrottlingException"},
247
- {"shape":"InternalServiceException"}
248
- ]
249
- },
250
- "DescribeContactFlow":{
251
- "name":"DescribeContactFlow",
252
- "http":{
253
- "method":"GET",
254
- "requestUri":"/contact-flows/{InstanceId}/{ContactFlowId}"
255
- },
256
- "input":{"shape":"DescribeContactFlowRequest"},
257
- "output":{"shape":"DescribeContactFlowResponse"},
258
- "errors":[
259
- {"shape":"InvalidRequestException"},
260
- {"shape":"InvalidParameterException"},
261
- {"shape":"ResourceNotFoundException"},
262
- {"shape":"ContactFlowNotPublishedException"},
263
- {"shape":"ThrottlingException"},
264
- {"shape":"InternalServiceException"}
265
- ]
266
- },
267
- "DescribeInstance":{
268
- "name":"DescribeInstance",
269
- "http":{
270
- "method":"GET",
271
- "requestUri":"/instance/{InstanceId}"
272
- },
273
- "input":{"shape":"DescribeInstanceRequest"},
274
- "output":{"shape":"DescribeInstanceResponse"},
275
- "errors":[
276
- {"shape":"InvalidRequestException"},
277
- {"shape":"ResourceNotFoundException"},
278
- {"shape":"InternalServiceException"}
279
- ]
280
- },
281
- "DescribeInstanceAttribute":{
282
- "name":"DescribeInstanceAttribute",
283
- "http":{
284
- "method":"GET",
285
- "requestUri":"/instance/{InstanceId}/attribute/{AttributeType}"
286
- },
287
- "input":{"shape":"DescribeInstanceAttributeRequest"},
288
- "output":{"shape":"DescribeInstanceAttributeResponse"},
289
- "errors":[
290
- {"shape":"ResourceNotFoundException"},
291
- {"shape":"InternalServiceException"},
292
- {"shape":"InvalidRequestException"},
293
- {"shape":"InvalidParameterException"},
294
- {"shape":"ThrottlingException"}
295
- ]
296
- },
297
- "DescribeInstanceStorageConfig":{
298
- "name":"DescribeInstanceStorageConfig",
299
- "http":{
300
- "method":"GET",
301
- "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}"
302
- },
303
- "input":{"shape":"DescribeInstanceStorageConfigRequest"},
304
- "output":{"shape":"DescribeInstanceStorageConfigResponse"},
305
- "errors":[
306
- {"shape":"ResourceNotFoundException"},
307
- {"shape":"InternalServiceException"},
308
- {"shape":"InvalidRequestException"},
309
- {"shape":"InvalidParameterException"},
310
- {"shape":"ThrottlingException"}
311
- ]
312
- },
313
- "DescribeRoutingProfile":{
314
- "name":"DescribeRoutingProfile",
315
- "http":{
316
- "method":"GET",
317
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}"
318
- },
319
- "input":{"shape":"DescribeRoutingProfileRequest"},
320
- "output":{"shape":"DescribeRoutingProfileResponse"},
321
- "errors":[
322
- {"shape":"InvalidRequestException"},
323
- {"shape":"InvalidParameterException"},
324
- {"shape":"ResourceNotFoundException"},
325
- {"shape":"ThrottlingException"},
326
- {"shape":"InternalServiceException"}
327
- ]
328
- },
329
- "DescribeUser":{
330
- "name":"DescribeUser",
331
- "http":{
332
- "method":"GET",
333
- "requestUri":"/users/{InstanceId}/{UserId}"
334
- },
335
- "input":{"shape":"DescribeUserRequest"},
336
- "output":{"shape":"DescribeUserResponse"},
337
- "errors":[
338
- {"shape":"InvalidRequestException"},
339
- {"shape":"InvalidParameterException"},
340
- {"shape":"ResourceNotFoundException"},
341
- {"shape":"ThrottlingException"},
342
- {"shape":"InternalServiceException"}
343
- ]
344
- },
345
- "DescribeUserHierarchyGroup":{
346
- "name":"DescribeUserHierarchyGroup",
347
- "http":{
348
- "method":"GET",
349
- "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}"
350
- },
351
- "input":{"shape":"DescribeUserHierarchyGroupRequest"},
352
- "output":{"shape":"DescribeUserHierarchyGroupResponse"},
353
- "errors":[
354
- {"shape":"InvalidRequestException"},
355
- {"shape":"InvalidParameterException"},
356
- {"shape":"ResourceNotFoundException"},
357
- {"shape":"ThrottlingException"},
358
- {"shape":"InternalServiceException"}
359
- ]
360
- },
361
- "DescribeUserHierarchyStructure":{
362
- "name":"DescribeUserHierarchyStructure",
363
- "http":{
364
- "method":"GET",
365
- "requestUri":"/user-hierarchy-structure/{InstanceId}"
366
- },
367
- "input":{"shape":"DescribeUserHierarchyStructureRequest"},
368
- "output":{"shape":"DescribeUserHierarchyStructureResponse"},
369
- "errors":[
370
- {"shape":"InvalidRequestException"},
371
- {"shape":"InvalidParameterException"},
372
- {"shape":"ResourceNotFoundException"},
373
- {"shape":"ThrottlingException"},
374
- {"shape":"InternalServiceException"}
375
- ]
376
- },
377
- "DisassociateApprovedOrigin":{
378
- "name":"DisassociateApprovedOrigin",
379
- "http":{
380
- "method":"DELETE",
381
- "requestUri":"/instance/{InstanceId}/approved-origin"
382
- },
383
- "input":{"shape":"DisassociateApprovedOriginRequest"},
384
- "errors":[
385
- {"shape":"ResourceNotFoundException"},
386
- {"shape":"InternalServiceException"},
387
- {"shape":"InvalidRequestException"},
388
- {"shape":"InvalidParameterException"},
389
- {"shape":"ThrottlingException"}
390
- ]
391
- },
392
- "DisassociateInstanceStorageConfig":{
393
- "name":"DisassociateInstanceStorageConfig",
394
- "http":{
395
- "method":"DELETE",
396
- "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}"
397
- },
398
- "input":{"shape":"DisassociateInstanceStorageConfigRequest"},
399
- "errors":[
400
- {"shape":"ResourceNotFoundException"},
401
- {"shape":"InternalServiceException"},
402
- {"shape":"InvalidRequestException"},
403
- {"shape":"InvalidParameterException"},
404
- {"shape":"ThrottlingException"}
405
- ]
406
- },
407
- "DisassociateLambdaFunction":{
408
- "name":"DisassociateLambdaFunction",
409
- "http":{
410
- "method":"DELETE",
411
- "requestUri":"/instance/{InstanceId}/lambda-function"
412
- },
413
- "input":{"shape":"DisassociateLambdaFunctionRequest"},
414
- "errors":[
415
- {"shape":"ResourceNotFoundException"},
416
- {"shape":"InternalServiceException"},
417
- {"shape":"InvalidRequestException"},
418
- {"shape":"InvalidParameterException"},
419
- {"shape":"ThrottlingException"}
420
- ]
421
- },
422
- "DisassociateLexBot":{
423
- "name":"DisassociateLexBot",
424
- "http":{
425
- "method":"DELETE",
426
- "requestUri":"/instance/{InstanceId}/lex-bot"
427
- },
428
- "input":{"shape":"DisassociateLexBotRequest"},
429
- "errors":[
430
- {"shape":"ResourceNotFoundException"},
431
- {"shape":"InternalServiceException"},
432
- {"shape":"InvalidRequestException"},
433
- {"shape":"InvalidParameterException"},
434
- {"shape":"ThrottlingException"}
435
- ]
436
- },
437
- "DisassociateRoutingProfileQueues":{
438
- "name":"DisassociateRoutingProfileQueues",
439
- "http":{
440
- "method":"POST",
441
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/disassociate-queues"
442
- },
443
- "input":{"shape":"DisassociateRoutingProfileQueuesRequest"},
444
- "errors":[
445
- {"shape":"InvalidRequestException"},
446
- {"shape":"InvalidParameterException"},
447
- {"shape":"ResourceNotFoundException"},
448
- {"shape":"ThrottlingException"},
449
- {"shape":"InternalServiceException"}
450
- ]
451
- },
452
- "DisassociateSecurityKey":{
453
- "name":"DisassociateSecurityKey",
454
- "http":{
455
- "method":"DELETE",
456
- "requestUri":"/instance/{InstanceId}/security-key/{AssociationId}"
457
- },
458
- "input":{"shape":"DisassociateSecurityKeyRequest"},
459
- "errors":[
460
- {"shape":"ResourceNotFoundException"},
461
- {"shape":"InternalServiceException"},
462
- {"shape":"InvalidRequestException"},
463
- {"shape":"InvalidParameterException"},
464
- {"shape":"ThrottlingException"}
465
- ]
466
- },
467
- "GetContactAttributes":{
468
- "name":"GetContactAttributes",
469
- "http":{
470
- "method":"GET",
471
- "requestUri":"/contact/attributes/{InstanceId}/{InitialContactId}"
472
- },
473
- "input":{"shape":"GetContactAttributesRequest"},
474
- "output":{"shape":"GetContactAttributesResponse"},
475
- "errors":[
476
- {"shape":"InvalidRequestException"},
477
- {"shape":"ResourceNotFoundException"},
478
- {"shape":"InternalServiceException"}
479
- ]
480
- },
481
- "GetCurrentMetricData":{
482
- "name":"GetCurrentMetricData",
483
- "http":{
484
- "method":"POST",
485
- "requestUri":"/metrics/current/{InstanceId}"
486
- },
487
- "input":{"shape":"GetCurrentMetricDataRequest"},
488
- "output":{"shape":"GetCurrentMetricDataResponse"},
489
- "errors":[
490
- {"shape":"InvalidRequestException"},
491
- {"shape":"InvalidParameterException"},
492
- {"shape":"InternalServiceException"},
493
- {"shape":"ThrottlingException"},
494
- {"shape":"ResourceNotFoundException"}
495
- ]
496
- },
497
- "GetFederationToken":{
498
- "name":"GetFederationToken",
499
- "http":{
500
- "method":"GET",
501
- "requestUri":"/user/federate/{InstanceId}"
502
- },
503
- "input":{"shape":"GetFederationTokenRequest"},
504
- "output":{"shape":"GetFederationTokenResponse"},
505
- "errors":[
506
- {"shape":"InvalidRequestException"},
507
- {"shape":"InvalidParameterException"},
508
- {"shape":"ResourceNotFoundException"},
509
- {"shape":"UserNotFoundException"},
510
- {"shape":"InternalServiceException"},
511
- {"shape":"DuplicateResourceException"}
512
- ]
513
- },
514
- "GetMetricData":{
515
- "name":"GetMetricData",
516
- "http":{
517
- "method":"POST",
518
- "requestUri":"/metrics/historical/{InstanceId}"
519
- },
520
- "input":{"shape":"GetMetricDataRequest"},
521
- "output":{"shape":"GetMetricDataResponse"},
522
- "errors":[
523
- {"shape":"InvalidRequestException"},
524
- {"shape":"InvalidParameterException"},
525
- {"shape":"InternalServiceException"},
526
- {"shape":"ThrottlingException"},
527
- {"shape":"ResourceNotFoundException"}
528
- ]
529
- },
530
- "ListApprovedOrigins":{
531
- "name":"ListApprovedOrigins",
532
- "http":{
533
- "method":"GET",
534
- "requestUri":"/instance/{InstanceId}/approved-origins"
535
- },
536
- "input":{"shape":"ListApprovedOriginsRequest"},
537
- "output":{"shape":"ListApprovedOriginsResponse"},
538
- "errors":[
539
- {"shape":"ResourceNotFoundException"},
540
- {"shape":"InternalServiceException"},
541
- {"shape":"InvalidRequestException"},
542
- {"shape":"InvalidParameterException"},
543
- {"shape":"ThrottlingException"}
544
- ]
545
- },
546
- "ListContactFlows":{
547
- "name":"ListContactFlows",
548
- "http":{
549
- "method":"GET",
550
- "requestUri":"/contact-flows-summary/{InstanceId}"
551
- },
552
- "input":{"shape":"ListContactFlowsRequest"},
553
- "output":{"shape":"ListContactFlowsResponse"},
554
- "errors":[
555
- {"shape":"InvalidRequestException"},
556
- {"shape":"InvalidParameterException"},
557
- {"shape":"ResourceNotFoundException"},
558
- {"shape":"ThrottlingException"},
559
- {"shape":"InternalServiceException"}
560
- ]
561
- },
562
- "ListHoursOfOperations":{
563
- "name":"ListHoursOfOperations",
564
- "http":{
565
- "method":"GET",
566
- "requestUri":"/hours-of-operations-summary/{InstanceId}"
567
- },
568
- "input":{"shape":"ListHoursOfOperationsRequest"},
569
- "output":{"shape":"ListHoursOfOperationsResponse"},
570
- "errors":[
571
- {"shape":"InvalidRequestException"},
572
- {"shape":"InvalidParameterException"},
573
- {"shape":"ResourceNotFoundException"},
574
- {"shape":"ThrottlingException"},
575
- {"shape":"InternalServiceException"}
576
- ]
577
- },
578
- "ListInstanceAttributes":{
579
- "name":"ListInstanceAttributes",
580
- "http":{
581
- "method":"GET",
582
- "requestUri":"/instance/{InstanceId}/attributes"
583
- },
584
- "input":{"shape":"ListInstanceAttributesRequest"},
585
- "output":{"shape":"ListInstanceAttributesResponse"},
586
- "errors":[
587
- {"shape":"ResourceNotFoundException"},
588
- {"shape":"InternalServiceException"},
589
- {"shape":"InvalidRequestException"},
590
- {"shape":"InvalidParameterException"},
591
- {"shape":"ThrottlingException"}
592
- ]
593
- },
594
- "ListInstanceStorageConfigs":{
595
- "name":"ListInstanceStorageConfigs",
596
- "http":{
597
- "method":"GET",
598
- "requestUri":"/instance/{InstanceId}/storage-configs"
599
- },
600
- "input":{"shape":"ListInstanceStorageConfigsRequest"},
601
- "output":{"shape":"ListInstanceStorageConfigsResponse"},
602
- "errors":[
603
- {"shape":"ResourceNotFoundException"},
604
- {"shape":"InternalServiceException"},
605
- {"shape":"InvalidRequestException"},
606
- {"shape":"InvalidParameterException"},
607
- {"shape":"ThrottlingException"}
608
- ]
609
- },
610
- "ListInstances":{
611
- "name":"ListInstances",
612
- "http":{
613
- "method":"GET",
614
- "requestUri":"/instance"
615
- },
616
- "input":{"shape":"ListInstancesRequest"},
617
- "output":{"shape":"ListInstancesResponse"},
618
- "errors":[
619
- {"shape":"InvalidRequestException"},
620
- {"shape":"InternalServiceException"}
621
- ]
622
- },
623
- "ListLambdaFunctions":{
624
- "name":"ListLambdaFunctions",
625
- "http":{
626
- "method":"GET",
627
- "requestUri":"/instance/{InstanceId}/lambda-functions"
628
- },
629
- "input":{"shape":"ListLambdaFunctionsRequest"},
630
- "output":{"shape":"ListLambdaFunctionsResponse"},
631
- "errors":[
632
- {"shape":"ResourceNotFoundException"},
633
- {"shape":"InternalServiceException"},
634
- {"shape":"InvalidRequestException"},
635
- {"shape":"InvalidParameterException"},
636
- {"shape":"ThrottlingException"}
637
- ]
638
- },
639
- "ListLexBots":{
640
- "name":"ListLexBots",
641
- "http":{
642
- "method":"GET",
643
- "requestUri":"/instance/{InstanceId}/lex-bots"
644
- },
645
- "input":{"shape":"ListLexBotsRequest"},
646
- "output":{"shape":"ListLexBotsResponse"},
647
- "errors":[
648
- {"shape":"ResourceNotFoundException"},
649
- {"shape":"InternalServiceException"},
650
- {"shape":"InvalidRequestException"},
651
- {"shape":"InvalidParameterException"},
652
- {"shape":"ThrottlingException"}
653
- ]
654
- },
655
- "ListPhoneNumbers":{
656
- "name":"ListPhoneNumbers",
657
- "http":{
658
- "method":"GET",
659
- "requestUri":"/phone-numbers-summary/{InstanceId}"
660
- },
661
- "input":{"shape":"ListPhoneNumbersRequest"},
662
- "output":{"shape":"ListPhoneNumbersResponse"},
663
- "errors":[
664
- {"shape":"InvalidRequestException"},
665
- {"shape":"InvalidParameterException"},
666
- {"shape":"ResourceNotFoundException"},
667
- {"shape":"ThrottlingException"},
668
- {"shape":"InternalServiceException"}
669
- ]
670
- },
671
- "ListPrompts":{
672
- "name":"ListPrompts",
673
- "http":{
674
- "method":"GET",
675
- "requestUri":"/prompts-summary/{InstanceId}"
676
- },
677
- "input":{"shape":"ListPromptsRequest"},
678
- "output":{"shape":"ListPromptsResponse"},
679
- "errors":[
680
- {"shape":"InvalidRequestException"},
681
- {"shape":"InvalidParameterException"},
682
- {"shape":"ResourceNotFoundException"},
683
- {"shape":"ThrottlingException"},
684
- {"shape":"InternalServiceException"}
685
- ]
686
- },
687
- "ListQueues":{
688
- "name":"ListQueues",
689
- "http":{
690
- "method":"GET",
691
- "requestUri":"/queues-summary/{InstanceId}"
692
- },
693
- "input":{"shape":"ListQueuesRequest"},
694
- "output":{"shape":"ListQueuesResponse"},
695
- "errors":[
696
- {"shape":"InvalidRequestException"},
697
- {"shape":"InvalidParameterException"},
698
- {"shape":"ResourceNotFoundException"},
699
- {"shape":"ThrottlingException"},
700
- {"shape":"InternalServiceException"}
701
- ]
702
- },
703
- "ListRoutingProfileQueues":{
704
- "name":"ListRoutingProfileQueues",
705
- "http":{
706
- "method":"GET",
707
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/queues"
708
- },
709
- "input":{"shape":"ListRoutingProfileQueuesRequest"},
710
- "output":{"shape":"ListRoutingProfileQueuesResponse"},
711
- "errors":[
712
- {"shape":"InvalidRequestException"},
713
- {"shape":"InvalidParameterException"},
714
- {"shape":"ResourceNotFoundException"},
715
- {"shape":"ThrottlingException"},
716
- {"shape":"InternalServiceException"}
717
- ]
718
- },
719
- "ListRoutingProfiles":{
720
- "name":"ListRoutingProfiles",
721
- "http":{
722
- "method":"GET",
723
- "requestUri":"/routing-profiles-summary/{InstanceId}"
724
- },
725
- "input":{"shape":"ListRoutingProfilesRequest"},
726
- "output":{"shape":"ListRoutingProfilesResponse"},
727
- "errors":[
728
- {"shape":"InvalidRequestException"},
729
- {"shape":"InvalidParameterException"},
730
- {"shape":"ResourceNotFoundException"},
731
- {"shape":"ThrottlingException"},
732
- {"shape":"InternalServiceException"}
733
- ]
734
- },
735
- "ListSecurityKeys":{
736
- "name":"ListSecurityKeys",
737
- "http":{
738
- "method":"GET",
739
- "requestUri":"/instance/{InstanceId}/security-keys"
740
- },
741
- "input":{"shape":"ListSecurityKeysRequest"},
742
- "output":{"shape":"ListSecurityKeysResponse"},
743
- "errors":[
744
- {"shape":"ResourceNotFoundException"},
745
- {"shape":"InternalServiceException"},
746
- {"shape":"InvalidRequestException"},
747
- {"shape":"InvalidParameterException"},
748
- {"shape":"ThrottlingException"}
749
- ]
750
- },
751
- "ListSecurityProfiles":{
752
- "name":"ListSecurityProfiles",
753
- "http":{
754
- "method":"GET",
755
- "requestUri":"/security-profiles-summary/{InstanceId}"
756
- },
757
- "input":{"shape":"ListSecurityProfilesRequest"},
758
- "output":{"shape":"ListSecurityProfilesResponse"},
759
- "errors":[
760
- {"shape":"InvalidRequestException"},
761
- {"shape":"InvalidParameterException"},
762
- {"shape":"ResourceNotFoundException"},
763
- {"shape":"ThrottlingException"},
764
- {"shape":"InternalServiceException"}
765
- ]
766
- },
767
- "ListTagsForResource":{
768
- "name":"ListTagsForResource",
769
- "http":{
770
- "method":"GET",
771
- "requestUri":"/tags/{resourceArn}"
772
- },
773
- "input":{"shape":"ListTagsForResourceRequest"},
774
- "output":{"shape":"ListTagsForResourceResponse"},
775
- "errors":[
776
- {"shape":"InvalidRequestException"},
777
- {"shape":"InvalidParameterException"},
778
- {"shape":"InternalServiceException"},
779
- {"shape":"ResourceNotFoundException"},
780
- {"shape":"ThrottlingException"}
781
- ]
782
- },
783
- "ListUserHierarchyGroups":{
784
- "name":"ListUserHierarchyGroups",
785
- "http":{
786
- "method":"GET",
787
- "requestUri":"/user-hierarchy-groups-summary/{InstanceId}"
788
- },
789
- "input":{"shape":"ListUserHierarchyGroupsRequest"},
790
- "output":{"shape":"ListUserHierarchyGroupsResponse"},
791
- "errors":[
792
- {"shape":"InvalidRequestException"},
793
- {"shape":"InvalidParameterException"},
794
- {"shape":"ResourceNotFoundException"},
795
- {"shape":"ThrottlingException"},
796
- {"shape":"InternalServiceException"}
797
- ]
798
- },
799
- "ListUsers":{
800
- "name":"ListUsers",
801
- "http":{
802
- "method":"GET",
803
- "requestUri":"/users-summary/{InstanceId}"
804
- },
805
- "input":{"shape":"ListUsersRequest"},
806
- "output":{"shape":"ListUsersResponse"},
807
- "errors":[
808
- {"shape":"InvalidRequestException"},
809
- {"shape":"InvalidParameterException"},
810
- {"shape":"ResourceNotFoundException"},
811
- {"shape":"ThrottlingException"},
812
- {"shape":"InternalServiceException"}
813
- ]
814
- },
815
- "ResumeContactRecording":{
816
- "name":"ResumeContactRecording",
817
- "http":{
818
- "method":"POST",
819
- "requestUri":"/contact/resume-recording"
820
- },
821
- "input":{"shape":"ResumeContactRecordingRequest"},
822
- "output":{"shape":"ResumeContactRecordingResponse"},
823
- "errors":[
824
- {"shape":"InvalidRequestException"},
825
- {"shape":"ResourceNotFoundException"},
826
- {"shape":"InternalServiceException"}
827
- ]
828
- },
829
- "StartChatContact":{
830
- "name":"StartChatContact",
831
- "http":{
832
- "method":"PUT",
833
- "requestUri":"/contact/chat"
834
- },
835
- "input":{"shape":"StartChatContactRequest"},
836
- "output":{"shape":"StartChatContactResponse"},
837
- "errors":[
838
- {"shape":"InvalidRequestException"},
839
- {"shape":"InvalidParameterException"},
840
- {"shape":"ResourceNotFoundException"},
841
- {"shape":"InternalServiceException"},
842
- {"shape":"LimitExceededException"}
843
- ]
844
- },
845
- "StartContactRecording":{
846
- "name":"StartContactRecording",
847
- "http":{
848
- "method":"POST",
849
- "requestUri":"/contact/start-recording"
850
- },
851
- "input":{"shape":"StartContactRecordingRequest"},
852
- "output":{"shape":"StartContactRecordingResponse"},
853
- "errors":[
854
- {"shape":"InvalidRequestException"},
855
- {"shape":"InvalidParameterException"},
856
- {"shape":"ResourceNotFoundException"},
857
- {"shape":"InternalServiceException"}
858
- ]
859
- },
860
- "StartOutboundVoiceContact":{
861
- "name":"StartOutboundVoiceContact",
862
- "http":{
863
- "method":"PUT",
864
- "requestUri":"/contact/outbound-voice"
865
- },
866
- "input":{"shape":"StartOutboundVoiceContactRequest"},
867
- "output":{"shape":"StartOutboundVoiceContactResponse"},
868
- "errors":[
869
- {"shape":"InvalidRequestException"},
870
- {"shape":"InvalidParameterException"},
871
- {"shape":"ResourceNotFoundException"},
872
- {"shape":"InternalServiceException"},
873
- {"shape":"LimitExceededException"},
874
- {"shape":"DestinationNotAllowedException"},
875
- {"shape":"OutboundContactNotPermittedException"}
876
- ]
877
- },
878
- "StopContact":{
879
- "name":"StopContact",
880
- "http":{
881
- "method":"POST",
882
- "requestUri":"/contact/stop"
883
- },
884
- "input":{"shape":"StopContactRequest"},
885
- "output":{"shape":"StopContactResponse"},
886
- "errors":[
887
- {"shape":"InvalidRequestException"},
888
- {"shape":"ContactNotFoundException"},
889
- {"shape":"InvalidParameterException"},
890
- {"shape":"ResourceNotFoundException"},
891
- {"shape":"InternalServiceException"}
892
- ]
893
- },
894
- "StopContactRecording":{
895
- "name":"StopContactRecording",
896
- "http":{
897
- "method":"POST",
898
- "requestUri":"/contact/stop-recording"
899
- },
900
- "input":{"shape":"StopContactRecordingRequest"},
901
- "output":{"shape":"StopContactRecordingResponse"},
902
- "errors":[
903
- {"shape":"InvalidRequestException"},
904
- {"shape":"ResourceNotFoundException"},
905
- {"shape":"InternalServiceException"}
906
- ]
907
- },
908
- "SuspendContactRecording":{
909
- "name":"SuspendContactRecording",
910
- "http":{
911
- "method":"POST",
912
- "requestUri":"/contact/suspend-recording"
913
- },
914
- "input":{"shape":"SuspendContactRecordingRequest"},
915
- "output":{"shape":"SuspendContactRecordingResponse"},
916
- "errors":[
917
- {"shape":"InvalidRequestException"},
918
- {"shape":"ResourceNotFoundException"},
919
- {"shape":"InternalServiceException"}
920
- ]
921
- },
922
- "TagResource":{
923
- "name":"TagResource",
924
- "http":{
925
- "method":"POST",
926
- "requestUri":"/tags/{resourceArn}"
927
- },
928
- "input":{"shape":"TagResourceRequest"},
929
- "errors":[
930
- {"shape":"InvalidRequestException"},
931
- {"shape":"InvalidParameterException"},
932
- {"shape":"InternalServiceException"},
933
- {"shape":"ResourceNotFoundException"},
934
- {"shape":"ThrottlingException"}
935
- ]
936
- },
937
- "UntagResource":{
938
- "name":"UntagResource",
939
- "http":{
940
- "method":"DELETE",
941
- "requestUri":"/tags/{resourceArn}"
942
- },
943
- "input":{"shape":"UntagResourceRequest"},
944
- "errors":[
945
- {"shape":"InvalidRequestException"},
946
- {"shape":"InvalidParameterException"},
947
- {"shape":"InternalServiceException"},
948
- {"shape":"ResourceNotFoundException"},
949
- {"shape":"ThrottlingException"}
950
- ]
951
- },
952
- "UpdateContactAttributes":{
953
- "name":"UpdateContactAttributes",
954
- "http":{
955
- "method":"POST",
956
- "requestUri":"/contact/attributes"
957
- },
958
- "input":{"shape":"UpdateContactAttributesRequest"},
959
- "output":{"shape":"UpdateContactAttributesResponse"},
960
- "errors":[
961
- {"shape":"InvalidRequestException"},
962
- {"shape":"InvalidParameterException"},
963
- {"shape":"ResourceNotFoundException"},
964
- {"shape":"InternalServiceException"}
965
- ]
966
- },
967
- "UpdateContactFlowContent":{
968
- "name":"UpdateContactFlowContent",
969
- "http":{
970
- "method":"POST",
971
- "requestUri":"/contact-flows/{InstanceId}/{ContactFlowId}/content"
972
- },
973
- "input":{"shape":"UpdateContactFlowContentRequest"},
974
- "errors":[
975
- {"shape":"InvalidRequestException"},
976
- {"shape":"InvalidContactFlowException"},
977
- {"shape":"InvalidParameterException"},
978
- {"shape":"ResourceNotFoundException"},
979
- {"shape":"ThrottlingException"},
980
- {"shape":"InternalServiceException"}
981
- ]
982
- },
983
- "UpdateContactFlowName":{
984
- "name":"UpdateContactFlowName",
985
- "http":{
986
- "method":"POST",
987
- "requestUri":"/contact-flows/{InstanceId}/{ContactFlowId}/name"
988
- },
989
- "input":{"shape":"UpdateContactFlowNameRequest"},
990
- "errors":[
991
- {"shape":"InvalidRequestException"},
992
- {"shape":"InvalidParameterException"},
993
- {"shape":"DuplicateResourceException"},
994
- {"shape":"ResourceNotFoundException"},
995
- {"shape":"ThrottlingException"},
996
- {"shape":"InternalServiceException"}
997
- ]
998
- },
999
- "UpdateInstanceAttribute":{
1000
- "name":"UpdateInstanceAttribute",
1001
- "http":{
1002
- "method":"POST",
1003
- "requestUri":"/instance/{InstanceId}/attribute/{AttributeType}"
1004
- },
1005
- "input":{"shape":"UpdateInstanceAttributeRequest"},
1006
- "errors":[
1007
- {"shape":"ResourceNotFoundException"},
1008
- {"shape":"InternalServiceException"},
1009
- {"shape":"InvalidRequestException"},
1010
- {"shape":"InvalidParameterException"},
1011
- {"shape":"ThrottlingException"}
1012
- ]
1013
- },
1014
- "UpdateInstanceStorageConfig":{
1015
- "name":"UpdateInstanceStorageConfig",
1016
- "http":{
1017
- "method":"POST",
1018
- "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}"
1019
- },
1020
- "input":{"shape":"UpdateInstanceStorageConfigRequest"},
1021
- "errors":[
1022
- {"shape":"ResourceNotFoundException"},
1023
- {"shape":"InternalServiceException"},
1024
- {"shape":"InvalidRequestException"},
1025
- {"shape":"InvalidParameterException"},
1026
- {"shape":"ThrottlingException"}
1027
- ]
1028
- },
1029
- "UpdateRoutingProfileConcurrency":{
1030
- "name":"UpdateRoutingProfileConcurrency",
1031
- "http":{
1032
- "method":"POST",
1033
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/concurrency"
1034
- },
1035
- "input":{"shape":"UpdateRoutingProfileConcurrencyRequest"},
1036
- "errors":[
1037
- {"shape":"InvalidRequestException"},
1038
- {"shape":"InvalidParameterException"},
1039
- {"shape":"ResourceNotFoundException"},
1040
- {"shape":"ThrottlingException"},
1041
- {"shape":"InternalServiceException"}
1042
- ]
1043
- },
1044
- "UpdateRoutingProfileDefaultOutboundQueue":{
1045
- "name":"UpdateRoutingProfileDefaultOutboundQueue",
1046
- "http":{
1047
- "method":"POST",
1048
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/default-outbound-queue"
1049
- },
1050
- "input":{"shape":"UpdateRoutingProfileDefaultOutboundQueueRequest"},
1051
- "errors":[
1052
- {"shape":"InvalidRequestException"},
1053
- {"shape":"InvalidParameterException"},
1054
- {"shape":"ResourceNotFoundException"},
1055
- {"shape":"ThrottlingException"},
1056
- {"shape":"InternalServiceException"}
1057
- ]
1058
- },
1059
- "UpdateRoutingProfileName":{
1060
- "name":"UpdateRoutingProfileName",
1061
- "http":{
1062
- "method":"POST",
1063
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/name"
1064
- },
1065
- "input":{"shape":"UpdateRoutingProfileNameRequest"},
1066
- "errors":[
1067
- {"shape":"DuplicateResourceException"},
1068
- {"shape":"InvalidRequestException"},
1069
- {"shape":"InvalidParameterException"},
1070
- {"shape":"ResourceNotFoundException"},
1071
- {"shape":"ThrottlingException"},
1072
- {"shape":"InternalServiceException"}
1073
- ]
1074
- },
1075
- "UpdateRoutingProfileQueues":{
1076
- "name":"UpdateRoutingProfileQueues",
1077
- "http":{
1078
- "method":"POST",
1079
- "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/queues"
1080
- },
1081
- "input":{"shape":"UpdateRoutingProfileQueuesRequest"},
1082
- "errors":[
1083
- {"shape":"InvalidRequestException"},
1084
- {"shape":"InvalidParameterException"},
1085
- {"shape":"ResourceNotFoundException"},
1086
- {"shape":"ThrottlingException"},
1087
- {"shape":"InternalServiceException"}
1088
- ]
1089
- },
1090
- "UpdateUserHierarchy":{
1091
- "name":"UpdateUserHierarchy",
1092
- "http":{
1093
- "method":"POST",
1094
- "requestUri":"/users/{InstanceId}/{UserId}/hierarchy"
1095
- },
1096
- "input":{"shape":"UpdateUserHierarchyRequest"},
1097
- "errors":[
1098
- {"shape":"InvalidRequestException"},
1099
- {"shape":"InvalidParameterException"},
1100
- {"shape":"ResourceNotFoundException"},
1101
- {"shape":"ThrottlingException"},
1102
- {"shape":"InternalServiceException"}
1103
- ]
1104
- },
1105
- "UpdateUserHierarchyGroupName":{
1106
- "name":"UpdateUserHierarchyGroupName",
1107
- "http":{
1108
- "method":"POST",
1109
- "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}/name"
1110
- },
1111
- "input":{"shape":"UpdateUserHierarchyGroupNameRequest"},
1112
- "errors":[
1113
- {"shape":"InvalidRequestException"},
1114
- {"shape":"InvalidParameterException"},
1115
- {"shape":"DuplicateResourceException"},
1116
- {"shape":"ResourceNotFoundException"},
1117
- {"shape":"ThrottlingException"},
1118
- {"shape":"InternalServiceException"}
1119
- ]
1120
- },
1121
- "UpdateUserHierarchyStructure":{
1122
- "name":"UpdateUserHierarchyStructure",
1123
- "http":{
1124
- "method":"POST",
1125
- "requestUri":"/user-hierarchy-structure/{InstanceId}"
1126
- },
1127
- "input":{"shape":"UpdateUserHierarchyStructureRequest"},
1128
- "errors":[
1129
- {"shape":"InvalidRequestException"},
1130
- {"shape":"InvalidParameterException"},
1131
- {"shape":"ResourceNotFoundException"},
1132
- {"shape":"ResourceInUseException"},
1133
- {"shape":"ThrottlingException"},
1134
- {"shape":"InternalServiceException"}
1135
- ]
1136
- },
1137
- "UpdateUserIdentityInfo":{
1138
- "name":"UpdateUserIdentityInfo",
1139
- "http":{
1140
- "method":"POST",
1141
- "requestUri":"/users/{InstanceId}/{UserId}/identity-info"
1142
- },
1143
- "input":{"shape":"UpdateUserIdentityInfoRequest"},
1144
- "errors":[
1145
- {"shape":"InvalidRequestException"},
1146
- {"shape":"InvalidParameterException"},
1147
- {"shape":"ResourceNotFoundException"},
1148
- {"shape":"ThrottlingException"},
1149
- {"shape":"InternalServiceException"}
1150
- ]
1151
- },
1152
- "UpdateUserPhoneConfig":{
1153
- "name":"UpdateUserPhoneConfig",
1154
- "http":{
1155
- "method":"POST",
1156
- "requestUri":"/users/{InstanceId}/{UserId}/phone-config"
1157
- },
1158
- "input":{"shape":"UpdateUserPhoneConfigRequest"},
1159
- "errors":[
1160
- {"shape":"InvalidRequestException"},
1161
- {"shape":"InvalidParameterException"},
1162
- {"shape":"ResourceNotFoundException"},
1163
- {"shape":"ThrottlingException"},
1164
- {"shape":"InternalServiceException"}
1165
- ]
1166
- },
1167
- "UpdateUserRoutingProfile":{
1168
- "name":"UpdateUserRoutingProfile",
1169
- "http":{
1170
- "method":"POST",
1171
- "requestUri":"/users/{InstanceId}/{UserId}/routing-profile"
1172
- },
1173
- "input":{"shape":"UpdateUserRoutingProfileRequest"},
1174
- "errors":[
1175
- {"shape":"InvalidRequestException"},
1176
- {"shape":"InvalidParameterException"},
1177
- {"shape":"ResourceNotFoundException"},
1178
- {"shape":"ThrottlingException"},
1179
- {"shape":"InternalServiceException"}
1180
- ]
1181
- },
1182
- "UpdateUserSecurityProfiles":{
1183
- "name":"UpdateUserSecurityProfiles",
1184
- "http":{
1185
- "method":"POST",
1186
- "requestUri":"/users/{InstanceId}/{UserId}/security-profiles"
1187
- },
1188
- "input":{"shape":"UpdateUserSecurityProfilesRequest"},
1189
- "errors":[
1190
- {"shape":"InvalidRequestException"},
1191
- {"shape":"InvalidParameterException"},
1192
- {"shape":"ResourceNotFoundException"},
1193
- {"shape":"ThrottlingException"},
1194
- {"shape":"InternalServiceException"}
1195
- ]
1196
- }
1197
- },
1198
- "shapes":{
1199
- "ARN":{"type":"string"},
1200
- "AfterContactWorkTimeLimit":{
1201
- "type":"integer",
1202
- "min":0
1203
- },
1204
- "AgentFirstName":{
1205
- "type":"string",
1206
- "max":100,
1207
- "min":1
1208
- },
1209
- "AgentLastName":{
1210
- "type":"string",
1211
- "max":100,
1212
- "min":1
1213
- },
1214
- "AgentUsername":{
1215
- "type":"string",
1216
- "max":100,
1217
- "min":1
1218
- },
1219
- "AssociateApprovedOriginRequest":{
1220
- "type":"structure",
1221
- "required":[
1222
- "InstanceId",
1223
- "Origin"
1224
- ],
1225
- "members":{
1226
- "InstanceId":{
1227
- "shape":"InstanceId",
1228
- "location":"uri",
1229
- "locationName":"InstanceId"
1230
- },
1231
- "Origin":{"shape":"Origin"}
1232
- }
1233
- },
1234
- "AssociateInstanceStorageConfigRequest":{
1235
- "type":"structure",
1236
- "required":[
1237
- "InstanceId",
1238
- "ResourceType",
1239
- "StorageConfig"
1240
- ],
1241
- "members":{
1242
- "InstanceId":{
1243
- "shape":"InstanceId",
1244
- "location":"uri",
1245
- "locationName":"InstanceId"
1246
- },
1247
- "ResourceType":{"shape":"InstanceStorageResourceType"},
1248
- "StorageConfig":{"shape":"InstanceStorageConfig"}
1249
- }
1250
- },
1251
- "AssociateInstanceStorageConfigResponse":{
1252
- "type":"structure",
1253
- "members":{
1254
- "AssociationId":{"shape":"AssociationId"}
1255
- }
1256
- },
1257
- "AssociateLambdaFunctionRequest":{
1258
- "type":"structure",
1259
- "required":[
1260
- "InstanceId",
1261
- "FunctionArn"
1262
- ],
1263
- "members":{
1264
- "InstanceId":{
1265
- "shape":"InstanceId",
1266
- "location":"uri",
1267
- "locationName":"InstanceId"
1268
- },
1269
- "FunctionArn":{"shape":"FunctionArn"}
1270
- }
1271
- },
1272
- "AssociateLexBotRequest":{
1273
- "type":"structure",
1274
- "required":[
1275
- "InstanceId",
1276
- "LexBot"
1277
- ],
1278
- "members":{
1279
- "InstanceId":{
1280
- "shape":"InstanceId",
1281
- "location":"uri",
1282
- "locationName":"InstanceId"
1283
- },
1284
- "LexBot":{"shape":"LexBot"}
1285
- }
1286
- },
1287
- "AssociateRoutingProfileQueuesRequest":{
1288
- "type":"structure",
1289
- "required":[
1290
- "InstanceId",
1291
- "RoutingProfileId",
1292
- "QueueConfigs"
1293
- ],
1294
- "members":{
1295
- "InstanceId":{
1296
- "shape":"InstanceId",
1297
- "location":"uri",
1298
- "locationName":"InstanceId"
1299
- },
1300
- "RoutingProfileId":{
1301
- "shape":"RoutingProfileId",
1302
- "location":"uri",
1303
- "locationName":"RoutingProfileId"
1304
- },
1305
- "QueueConfigs":{"shape":"RoutingProfileQueueConfigList"}
1306
- }
1307
- },
1308
- "AssociateSecurityKeyRequest":{
1309
- "type":"structure",
1310
- "required":[
1311
- "InstanceId",
1312
- "Key"
1313
- ],
1314
- "members":{
1315
- "InstanceId":{
1316
- "shape":"InstanceId",
1317
- "location":"uri",
1318
- "locationName":"InstanceId"
1319
- },
1320
- "Key":{"shape":"PEM"}
1321
- }
1322
- },
1323
- "AssociateSecurityKeyResponse":{
1324
- "type":"structure",
1325
- "members":{
1326
- "AssociationId":{"shape":"AssociationId"}
1327
- }
1328
- },
1329
- "AssociationId":{
1330
- "type":"string",
1331
- "max":100,
1332
- "min":1
1333
- },
1334
- "Attribute":{
1335
- "type":"structure",
1336
- "members":{
1337
- "AttributeType":{"shape":"InstanceAttributeType"},
1338
- "Value":{"shape":"InstanceAttributeValue"}
1339
- }
1340
- },
1341
- "AttributeName":{
1342
- "type":"string",
1343
- "max":32767,
1344
- "min":1
1345
- },
1346
- "AttributeValue":{
1347
- "type":"string",
1348
- "max":32767,
1349
- "min":0
1350
- },
1351
- "Attributes":{
1352
- "type":"map",
1353
- "key":{"shape":"AttributeName"},
1354
- "value":{"shape":"AttributeValue"}
1355
- },
1356
- "AttributesList":{
1357
- "type":"list",
1358
- "member":{"shape":"Attribute"}
1359
- },
1360
- "AutoAccept":{"type":"boolean"},
1361
- "BotName":{
1362
- "type":"string",
1363
- "max":50
1364
- },
1365
- "BucketName":{
1366
- "type":"string",
1367
- "max":128,
1368
- "min":1
1369
- },
1370
- "Channel":{
1371
- "type":"string",
1372
- "enum":[
1373
- "VOICE",
1374
- "CHAT"
1375
- ]
1376
- },
1377
- "Channels":{
1378
- "type":"list",
1379
- "member":{"shape":"Channel"},
1380
- "max":1
1381
- },
1382
- "ChatContent":{
1383
- "type":"string",
1384
- "max":1024,
1385
- "min":1
1386
- },
1387
- "ChatContentType":{
1388
- "type":"string",
1389
- "max":100,
1390
- "min":1
1391
- },
1392
- "ChatMessage":{
1393
- "type":"structure",
1394
- "required":[
1395
- "ContentType",
1396
- "Content"
1397
- ],
1398
- "members":{
1399
- "ContentType":{"shape":"ChatContentType"},
1400
- "Content":{"shape":"ChatContent"}
1401
- }
1402
- },
1403
- "ClientToken":{
1404
- "type":"string",
1405
- "max":500
1406
- },
1407
- "Comparison":{
1408
- "type":"string",
1409
- "enum":["LT"]
1410
- },
1411
- "Concurrency":{
1412
- "type":"integer",
1413
- "max":5,
1414
- "min":1
1415
- },
1416
- "ContactFlow":{
1417
- "type":"structure",
1418
- "members":{
1419
- "Arn":{"shape":"ARN"},
1420
- "Id":{"shape":"ContactFlowId"},
1421
- "Name":{"shape":"ContactFlowName"},
1422
- "Type":{"shape":"ContactFlowType"},
1423
- "Description":{"shape":"ContactFlowDescription"},
1424
- "Content":{"shape":"ContactFlowContent"},
1425
- "Tags":{"shape":"TagMap"}
1426
- }
1427
- },
1428
- "ContactFlowContent":{"type":"string"},
1429
- "ContactFlowDescription":{"type":"string"},
1430
- "ContactFlowId":{
1431
- "type":"string",
1432
- "max":500
1433
- },
1434
- "ContactFlowName":{
1435
- "type":"string",
1436
- "min":1
1437
- },
1438
- "ContactFlowNotPublishedException":{
1439
- "type":"structure",
1440
- "members":{
1441
- "Message":{"shape":"Message"}
1442
- },
1443
- "error":{"httpStatusCode":404},
1444
- "exception":true
1445
- },
1446
- "ContactFlowSummary":{
1447
- "type":"structure",
1448
- "members":{
1449
- "Id":{"shape":"ContactFlowId"},
1450
- "Arn":{"shape":"ARN"},
1451
- "Name":{"shape":"ContactFlowName"},
1452
- "ContactFlowType":{"shape":"ContactFlowType"}
1453
- }
1454
- },
1455
- "ContactFlowSummaryList":{
1456
- "type":"list",
1457
- "member":{"shape":"ContactFlowSummary"}
1458
- },
1459
- "ContactFlowType":{
1460
- "type":"string",
1461
- "enum":[
1462
- "CONTACT_FLOW",
1463
- "CUSTOMER_QUEUE",
1464
- "CUSTOMER_HOLD",
1465
- "CUSTOMER_WHISPER",
1466
- "AGENT_HOLD",
1467
- "AGENT_WHISPER",
1468
- "OUTBOUND_WHISPER",
1469
- "AGENT_TRANSFER",
1470
- "QUEUE_TRANSFER"
1471
- ]
1472
- },
1473
- "ContactFlowTypes":{
1474
- "type":"list",
1475
- "member":{"shape":"ContactFlowType"},
1476
- "max":10
1477
- },
1478
- "ContactId":{
1479
- "type":"string",
1480
- "max":256,
1481
- "min":1
1482
- },
1483
- "ContactNotFoundException":{
1484
- "type":"structure",
1485
- "members":{
1486
- "Message":{"shape":"Message"}
1487
- },
1488
- "error":{"httpStatusCode":410},
1489
- "exception":true
1490
- },
1491
- "CreateContactFlowRequest":{
1492
- "type":"structure",
1493
- "required":[
1494
- "InstanceId",
1495
- "Name",
1496
- "Type",
1497
- "Content"
1498
- ],
1499
- "members":{
1500
- "InstanceId":{
1501
- "shape":"InstanceId",
1502
- "location":"uri",
1503
- "locationName":"InstanceId"
1504
- },
1505
- "Name":{"shape":"ContactFlowName"},
1506
- "Type":{"shape":"ContactFlowType"},
1507
- "Description":{"shape":"ContactFlowDescription"},
1508
- "Content":{"shape":"ContactFlowContent"},
1509
- "Tags":{"shape":"TagMap"}
1510
- }
1511
- },
1512
- "CreateContactFlowResponse":{
1513
- "type":"structure",
1514
- "members":{
1515
- "ContactFlowId":{"shape":"ContactFlowId"},
1516
- "ContactFlowArn":{"shape":"ARN"}
1517
- }
1518
- },
1519
- "CreateInstanceRequest":{
1520
- "type":"structure",
1521
- "required":[
1522
- "IdentityManagementType",
1523
- "InboundCallsEnabled",
1524
- "OutboundCallsEnabled"
1525
- ],
1526
- "members":{
1527
- "ClientToken":{"shape":"ClientToken"},
1528
- "IdentityManagementType":{"shape":"DirectoryType"},
1529
- "InstanceAlias":{"shape":"DirectoryAlias"},
1530
- "DirectoryId":{"shape":"DirectoryId"},
1531
- "InboundCallsEnabled":{"shape":"InboundCallsEnabled"},
1532
- "OutboundCallsEnabled":{"shape":"OutboundCallsEnabled"}
1533
- }
1534
- },
1535
- "CreateInstanceResponse":{
1536
- "type":"structure",
1537
- "members":{
1538
- "Id":{"shape":"InstanceId"},
1539
- "Arn":{"shape":"ARN"}
1540
- }
1541
- },
1542
- "CreateRoutingProfileRequest":{
1543
- "type":"structure",
1544
- "required":[
1545
- "InstanceId",
1546
- "Name",
1547
- "Description",
1548
- "DefaultOutboundQueueId",
1549
- "MediaConcurrencies"
1550
- ],
1551
- "members":{
1552
- "InstanceId":{
1553
- "shape":"InstanceId",
1554
- "location":"uri",
1555
- "locationName":"InstanceId"
1556
- },
1557
- "Name":{"shape":"RoutingProfileName"},
1558
- "Description":{"shape":"RoutingProfileDescription"},
1559
- "DefaultOutboundQueueId":{"shape":"QueueId"},
1560
- "QueueConfigs":{"shape":"RoutingProfileQueueConfigList"},
1561
- "MediaConcurrencies":{"shape":"MediaConcurrencies"},
1562
- "Tags":{"shape":"TagMap"}
1563
- }
1564
- },
1565
- "CreateRoutingProfileResponse":{
1566
- "type":"structure",
1567
- "members":{
1568
- "RoutingProfileArn":{"shape":"ARN"},
1569
- "RoutingProfileId":{"shape":"RoutingProfileId"}
1570
- }
1571
- },
1572
- "CreateUserHierarchyGroupRequest":{
1573
- "type":"structure",
1574
- "required":[
1575
- "Name",
1576
- "InstanceId"
1577
- ],
1578
- "members":{
1579
- "Name":{"shape":"HierarchyGroupName"},
1580
- "ParentGroupId":{"shape":"HierarchyGroupId"},
1581
- "InstanceId":{
1582
- "shape":"InstanceId",
1583
- "location":"uri",
1584
- "locationName":"InstanceId"
1585
- }
1586
- }
1587
- },
1588
- "CreateUserHierarchyGroupResponse":{
1589
- "type":"structure",
1590
- "members":{
1591
- "HierarchyGroupId":{"shape":"HierarchyGroupId"},
1592
- "HierarchyGroupArn":{"shape":"ARN"}
1593
- }
1594
- },
1595
- "CreateUserRequest":{
1596
- "type":"structure",
1597
- "required":[
1598
- "Username",
1599
- "PhoneConfig",
1600
- "SecurityProfileIds",
1601
- "RoutingProfileId",
1602
- "InstanceId"
1603
- ],
1604
- "members":{
1605
- "Username":{"shape":"AgentUsername"},
1606
- "Password":{"shape":"Password"},
1607
- "IdentityInfo":{"shape":"UserIdentityInfo"},
1608
- "PhoneConfig":{"shape":"UserPhoneConfig"},
1609
- "DirectoryUserId":{"shape":"DirectoryUserId"},
1610
- "SecurityProfileIds":{"shape":"SecurityProfileIds"},
1611
- "RoutingProfileId":{"shape":"RoutingProfileId"},
1612
- "HierarchyGroupId":{"shape":"HierarchyGroupId"},
1613
- "InstanceId":{
1614
- "shape":"InstanceId",
1615
- "location":"uri",
1616
- "locationName":"InstanceId"
1617
- },
1618
- "Tags":{"shape":"TagMap"}
1619
- }
1620
- },
1621
- "CreateUserResponse":{
1622
- "type":"structure",
1623
- "members":{
1624
- "UserId":{"shape":"UserId"},
1625
- "UserArn":{"shape":"ARN"}
1626
- }
1627
- },
1628
- "Credentials":{
1629
- "type":"structure",
1630
- "members":{
1631
- "AccessToken":{"shape":"SecurityToken"},
1632
- "AccessTokenExpiration":{"shape":"timestamp"},
1633
- "RefreshToken":{"shape":"SecurityToken"},
1634
- "RefreshTokenExpiration":{"shape":"timestamp"}
1635
- }
1636
- },
1637
- "CurrentMetric":{
1638
- "type":"structure",
1639
- "members":{
1640
- "Name":{"shape":"CurrentMetricName"},
1641
- "Unit":{"shape":"Unit"}
1642
- }
1643
- },
1644
- "CurrentMetricData":{
1645
- "type":"structure",
1646
- "members":{
1647
- "Metric":{"shape":"CurrentMetric"},
1648
- "Value":{
1649
- "shape":"Value",
1650
- "box":true
1651
- }
1652
- }
1653
- },
1654
- "CurrentMetricDataCollections":{
1655
- "type":"list",
1656
- "member":{"shape":"CurrentMetricData"}
1657
- },
1658
- "CurrentMetricName":{
1659
- "type":"string",
1660
- "enum":[
1661
- "AGENTS_ONLINE",
1662
- "AGENTS_AVAILABLE",
1663
- "AGENTS_ON_CALL",
1664
- "AGENTS_NON_PRODUCTIVE",
1665
- "AGENTS_AFTER_CONTACT_WORK",
1666
- "AGENTS_ERROR",
1667
- "AGENTS_STAFFED",
1668
- "CONTACTS_IN_QUEUE",
1669
- "OLDEST_CONTACT_AGE",
1670
- "CONTACTS_SCHEDULED",
1671
- "AGENTS_ON_CONTACT",
1672
- "SLOTS_ACTIVE",
1673
- "SLOTS_AVAILABLE"
1674
- ]
1675
- },
1676
- "CurrentMetricResult":{
1677
- "type":"structure",
1678
- "members":{
1679
- "Dimensions":{"shape":"Dimensions"},
1680
- "Collections":{"shape":"CurrentMetricDataCollections"}
1681
- }
1682
- },
1683
- "CurrentMetricResults":{
1684
- "type":"list",
1685
- "member":{"shape":"CurrentMetricResult"}
1686
- },
1687
- "CurrentMetrics":{
1688
- "type":"list",
1689
- "member":{"shape":"CurrentMetric"}
1690
- },
1691
- "Delay":{
1692
- "type":"integer",
1693
- "max":9999,
1694
- "min":0
1695
- },
1696
- "DeleteInstanceRequest":{
1697
- "type":"structure",
1698
- "required":["InstanceId"],
1699
- "members":{
1700
- "InstanceId":{
1701
- "shape":"InstanceId",
1702
- "location":"uri",
1703
- "locationName":"InstanceId"
1704
- }
1705
- }
1706
- },
1707
- "DeleteUserHierarchyGroupRequest":{
1708
- "type":"structure",
1709
- "required":[
1710
- "HierarchyGroupId",
1711
- "InstanceId"
1712
- ],
1713
- "members":{
1714
- "HierarchyGroupId":{
1715
- "shape":"HierarchyGroupId",
1716
- "location":"uri",
1717
- "locationName":"HierarchyGroupId"
1718
- },
1719
- "InstanceId":{
1720
- "shape":"InstanceId",
1721
- "location":"uri",
1722
- "locationName":"InstanceId"
1723
- }
1724
- }
1725
- },
1726
- "DeleteUserRequest":{
1727
- "type":"structure",
1728
- "required":[
1729
- "InstanceId",
1730
- "UserId"
1731
- ],
1732
- "members":{
1733
- "InstanceId":{
1734
- "shape":"InstanceId",
1735
- "location":"uri",
1736
- "locationName":"InstanceId"
1737
- },
1738
- "UserId":{
1739
- "shape":"UserId",
1740
- "location":"uri",
1741
- "locationName":"UserId"
1742
- }
1743
- }
1744
- },
1745
- "DescribeContactFlowRequest":{
1746
- "type":"structure",
1747
- "required":[
1748
- "InstanceId",
1749
- "ContactFlowId"
1750
- ],
1751
- "members":{
1752
- "InstanceId":{
1753
- "shape":"InstanceId",
1754
- "location":"uri",
1755
- "locationName":"InstanceId"
1756
- },
1757
- "ContactFlowId":{
1758
- "shape":"ContactFlowId",
1759
- "location":"uri",
1760
- "locationName":"ContactFlowId"
1761
- }
1762
- }
1763
- },
1764
- "DescribeContactFlowResponse":{
1765
- "type":"structure",
1766
- "members":{
1767
- "ContactFlow":{"shape":"ContactFlow"}
1768
- }
1769
- },
1770
- "DescribeInstanceAttributeRequest":{
1771
- "type":"structure",
1772
- "required":[
1773
- "InstanceId",
1774
- "AttributeType"
1775
- ],
1776
- "members":{
1777
- "InstanceId":{
1778
- "shape":"InstanceId",
1779
- "location":"uri",
1780
- "locationName":"InstanceId"
1781
- },
1782
- "AttributeType":{
1783
- "shape":"InstanceAttributeType",
1784
- "location":"uri",
1785
- "locationName":"AttributeType"
1786
- }
1787
- }
1788
- },
1789
- "DescribeInstanceAttributeResponse":{
1790
- "type":"structure",
1791
- "members":{
1792
- "Attribute":{"shape":"Attribute"}
1793
- }
1794
- },
1795
- "DescribeInstanceRequest":{
1796
- "type":"structure",
1797
- "required":["InstanceId"],
1798
- "members":{
1799
- "InstanceId":{
1800
- "shape":"InstanceId",
1801
- "location":"uri",
1802
- "locationName":"InstanceId"
1803
- }
1804
- }
1805
- },
1806
- "DescribeInstanceResponse":{
1807
- "type":"structure",
1808
- "members":{
1809
- "Instance":{"shape":"Instance"}
1810
- }
1811
- },
1812
- "DescribeInstanceStorageConfigRequest":{
1813
- "type":"structure",
1814
- "required":[
1815
- "InstanceId",
1816
- "AssociationId",
1817
- "ResourceType"
1818
- ],
1819
- "members":{
1820
- "InstanceId":{
1821
- "shape":"InstanceId",
1822
- "location":"uri",
1823
- "locationName":"InstanceId"
1824
- },
1825
- "AssociationId":{
1826
- "shape":"AssociationId",
1827
- "location":"uri",
1828
- "locationName":"AssociationId"
1829
- },
1830
- "ResourceType":{
1831
- "shape":"InstanceStorageResourceType",
1832
- "location":"querystring",
1833
- "locationName":"resourceType"
1834
- }
1835
- }
1836
- },
1837
- "DescribeInstanceStorageConfigResponse":{
1838
- "type":"structure",
1839
- "members":{
1840
- "StorageConfig":{"shape":"InstanceStorageConfig"}
1841
- }
1842
- },
1843
- "DescribeRoutingProfileRequest":{
1844
- "type":"structure",
1845
- "required":[
1846
- "InstanceId",
1847
- "RoutingProfileId"
1848
- ],
1849
- "members":{
1850
- "InstanceId":{
1851
- "shape":"InstanceId",
1852
- "location":"uri",
1853
- "locationName":"InstanceId"
1854
- },
1855
- "RoutingProfileId":{
1856
- "shape":"RoutingProfileId",
1857
- "location":"uri",
1858
- "locationName":"RoutingProfileId"
1859
- }
1860
- }
1861
- },
1862
- "DescribeRoutingProfileResponse":{
1863
- "type":"structure",
1864
- "members":{
1865
- "RoutingProfile":{"shape":"RoutingProfile"}
1866
- }
1867
- },
1868
- "DescribeUserHierarchyGroupRequest":{
1869
- "type":"structure",
1870
- "required":[
1871
- "HierarchyGroupId",
1872
- "InstanceId"
1873
- ],
1874
- "members":{
1875
- "HierarchyGroupId":{
1876
- "shape":"HierarchyGroupId",
1877
- "location":"uri",
1878
- "locationName":"HierarchyGroupId"
1879
- },
1880
- "InstanceId":{
1881
- "shape":"InstanceId",
1882
- "location":"uri",
1883
- "locationName":"InstanceId"
1884
- }
1885
- }
1886
- },
1887
- "DescribeUserHierarchyGroupResponse":{
1888
- "type":"structure",
1889
- "members":{
1890
- "HierarchyGroup":{"shape":"HierarchyGroup"}
1891
- }
1892
- },
1893
- "DescribeUserHierarchyStructureRequest":{
1894
- "type":"structure",
1895
- "required":["InstanceId"],
1896
- "members":{
1897
- "InstanceId":{
1898
- "shape":"InstanceId",
1899
- "location":"uri",
1900
- "locationName":"InstanceId"
1901
- }
1902
- }
1903
- },
1904
- "DescribeUserHierarchyStructureResponse":{
1905
- "type":"structure",
1906
- "members":{
1907
- "HierarchyStructure":{"shape":"HierarchyStructure"}
1908
- }
1909
- },
1910
- "DescribeUserRequest":{
1911
- "type":"structure",
1912
- "required":[
1913
- "UserId",
1914
- "InstanceId"
1915
- ],
1916
- "members":{
1917
- "UserId":{
1918
- "shape":"UserId",
1919
- "location":"uri",
1920
- "locationName":"UserId"
1921
- },
1922
- "InstanceId":{
1923
- "shape":"InstanceId",
1924
- "location":"uri",
1925
- "locationName":"InstanceId"
1926
- }
1927
- }
1928
- },
1929
- "DescribeUserResponse":{
1930
- "type":"structure",
1931
- "members":{
1932
- "User":{"shape":"User"}
1933
- }
1934
- },
1935
- "DestinationNotAllowedException":{
1936
- "type":"structure",
1937
- "members":{
1938
- "Message":{"shape":"Message"}
1939
- },
1940
- "error":{"httpStatusCode":403},
1941
- "exception":true
1942
- },
1943
- "Dimensions":{
1944
- "type":"structure",
1945
- "members":{
1946
- "Queue":{"shape":"QueueReference"},
1947
- "Channel":{"shape":"Channel"}
1948
- }
1949
- },
1950
- "DirectoryAlias":{
1951
- "type":"string",
1952
- "max":62,
1953
- "min":1,
1954
- "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*$",
1955
- "sensitive":true
1956
- },
1957
- "DirectoryId":{
1958
- "type":"string",
1959
- "max":12,
1960
- "min":12,
1961
- "pattern":"^d-[0-9a-f]{10}$"
1962
- },
1963
- "DirectoryType":{
1964
- "type":"string",
1965
- "enum":[
1966
- "SAML",
1967
- "CONNECT_MANAGED",
1968
- "EXISTING_DIRECTORY"
1969
- ]
1970
- },
1971
- "DirectoryUserId":{"type":"string"},
1972
- "DisassociateApprovedOriginRequest":{
1973
- "type":"structure",
1974
- "required":[
1975
- "InstanceId",
1976
- "Origin"
1977
- ],
1978
- "members":{
1979
- "InstanceId":{
1980
- "shape":"InstanceId",
1981
- "location":"uri",
1982
- "locationName":"InstanceId"
1983
- },
1984
- "Origin":{
1985
- "shape":"Origin",
1986
- "location":"querystring",
1987
- "locationName":"origin"
1988
- }
1989
- }
1990
- },
1991
- "DisassociateInstanceStorageConfigRequest":{
1992
- "type":"structure",
1993
- "required":[
1994
- "InstanceId",
1995
- "AssociationId",
1996
- "ResourceType"
1997
- ],
1998
- "members":{
1999
- "InstanceId":{
2000
- "shape":"InstanceId",
2001
- "location":"uri",
2002
- "locationName":"InstanceId"
2003
- },
2004
- "AssociationId":{
2005
- "shape":"AssociationId",
2006
- "location":"uri",
2007
- "locationName":"AssociationId"
2008
- },
2009
- "ResourceType":{
2010
- "shape":"InstanceStorageResourceType",
2011
- "location":"querystring",
2012
- "locationName":"resourceType"
2013
- }
2014
- }
2015
- },
2016
- "DisassociateLambdaFunctionRequest":{
2017
- "type":"structure",
2018
- "required":[
2019
- "InstanceId",
2020
- "FunctionArn"
2021
- ],
2022
- "members":{
2023
- "InstanceId":{
2024
- "shape":"InstanceId",
2025
- "location":"uri",
2026
- "locationName":"InstanceId"
2027
- },
2028
- "FunctionArn":{
2029
- "shape":"FunctionArn",
2030
- "location":"querystring",
2031
- "locationName":"functionArn"
2032
- }
2033
- }
2034
- },
2035
- "DisassociateLexBotRequest":{
2036
- "type":"structure",
2037
- "required":[
2038
- "InstanceId",
2039
- "BotName",
2040
- "LexRegion"
2041
- ],
2042
- "members":{
2043
- "InstanceId":{
2044
- "shape":"InstanceId",
2045
- "location":"uri",
2046
- "locationName":"InstanceId"
2047
- },
2048
- "BotName":{
2049
- "shape":"BotName",
2050
- "location":"querystring",
2051
- "locationName":"botName"
2052
- },
2053
- "LexRegion":{
2054
- "shape":"LexRegion",
2055
- "location":"querystring",
2056
- "locationName":"lexRegion"
2057
- }
2058
- }
2059
- },
2060
- "DisassociateRoutingProfileQueuesRequest":{
2061
- "type":"structure",
2062
- "required":[
2063
- "InstanceId",
2064
- "RoutingProfileId",
2065
- "QueueReferences"
2066
- ],
2067
- "members":{
2068
- "InstanceId":{
2069
- "shape":"InstanceId",
2070
- "location":"uri",
2071
- "locationName":"InstanceId"
2072
- },
2073
- "RoutingProfileId":{
2074
- "shape":"RoutingProfileId",
2075
- "location":"uri",
2076
- "locationName":"RoutingProfileId"
2077
- },
2078
- "QueueReferences":{"shape":"RoutingProfileQueueReferenceList"}
2079
- }
2080
- },
2081
- "DisassociateSecurityKeyRequest":{
2082
- "type":"structure",
2083
- "required":[
2084
- "InstanceId",
2085
- "AssociationId"
2086
- ],
2087
- "members":{
2088
- "InstanceId":{
2089
- "shape":"InstanceId",
2090
- "location":"uri",
2091
- "locationName":"InstanceId"
2092
- },
2093
- "AssociationId":{
2094
- "shape":"AssociationId",
2095
- "location":"uri",
2096
- "locationName":"AssociationId"
2097
- }
2098
- }
2099
- },
2100
- "DisplayName":{
2101
- "type":"string",
2102
- "max":256,
2103
- "min":1
2104
- },
2105
- "DuplicateResourceException":{
2106
- "type":"structure",
2107
- "members":{
2108
- "Message":{"shape":"Message"}
2109
- },
2110
- "error":{"httpStatusCode":409},
2111
- "exception":true
2112
- },
2113
- "Email":{"type":"string"},
2114
- "EncryptionConfig":{
2115
- "type":"structure",
2116
- "required":[
2117
- "EncryptionType",
2118
- "KeyId"
2119
- ],
2120
- "members":{
2121
- "EncryptionType":{"shape":"EncryptionType"},
2122
- "KeyId":{"shape":"KeyId"}
2123
- }
2124
- },
2125
- "EncryptionType":{
2126
- "type":"string",
2127
- "enum":["KMS"]
2128
- },
2129
- "Filters":{
2130
- "type":"structure",
2131
- "members":{
2132
- "Queues":{"shape":"Queues"},
2133
- "Channels":{"shape":"Channels"}
2134
- }
2135
- },
2136
- "FunctionArn":{
2137
- "type":"string",
2138
- "max":140,
2139
- "min":1
2140
- },
2141
- "FunctionArnsList":{
2142
- "type":"list",
2143
- "member":{"shape":"FunctionArn"}
2144
- },
2145
- "GetContactAttributesRequest":{
2146
- "type":"structure",
2147
- "required":[
2148
- "InstanceId",
2149
- "InitialContactId"
2150
- ],
2151
- "members":{
2152
- "InstanceId":{
2153
- "shape":"InstanceId",
2154
- "location":"uri",
2155
- "locationName":"InstanceId"
2156
- },
2157
- "InitialContactId":{
2158
- "shape":"ContactId",
2159
- "location":"uri",
2160
- "locationName":"InitialContactId"
2161
- }
2162
- }
2163
- },
2164
- "GetContactAttributesResponse":{
2165
- "type":"structure",
2166
- "members":{
2167
- "Attributes":{"shape":"Attributes"}
2168
- }
2169
- },
2170
- "GetCurrentMetricDataRequest":{
2171
- "type":"structure",
2172
- "required":[
2173
- "InstanceId",
2174
- "Filters",
2175
- "CurrentMetrics"
2176
- ],
2177
- "members":{
2178
- "InstanceId":{
2179
- "shape":"InstanceId",
2180
- "location":"uri",
2181
- "locationName":"InstanceId"
2182
- },
2183
- "Filters":{"shape":"Filters"},
2184
- "Groupings":{"shape":"Groupings"},
2185
- "CurrentMetrics":{"shape":"CurrentMetrics"},
2186
- "NextToken":{"shape":"NextToken"},
2187
- "MaxResults":{
2188
- "shape":"MaxResult100",
2189
- "box":true
2190
- }
2191
- }
2192
- },
2193
- "GetCurrentMetricDataResponse":{
2194
- "type":"structure",
2195
- "members":{
2196
- "NextToken":{"shape":"NextToken"},
2197
- "MetricResults":{"shape":"CurrentMetricResults"},
2198
- "DataSnapshotTime":{"shape":"timestamp"}
2199
- }
2200
- },
2201
- "GetFederationTokenRequest":{
2202
- "type":"structure",
2203
- "required":["InstanceId"],
2204
- "members":{
2205
- "InstanceId":{
2206
- "shape":"InstanceId",
2207
- "location":"uri",
2208
- "locationName":"InstanceId"
2209
- }
2210
- }
2211
- },
2212
- "GetFederationTokenResponse":{
2213
- "type":"structure",
2214
- "members":{
2215
- "Credentials":{"shape":"Credentials"}
2216
- }
2217
- },
2218
- "GetMetricDataRequest":{
2219
- "type":"structure",
2220
- "required":[
2221
- "InstanceId",
2222
- "StartTime",
2223
- "EndTime",
2224
- "Filters",
2225
- "HistoricalMetrics"
2226
- ],
2227
- "members":{
2228
- "InstanceId":{
2229
- "shape":"InstanceId",
2230
- "location":"uri",
2231
- "locationName":"InstanceId"
2232
- },
2233
- "StartTime":{"shape":"timestamp"},
2234
- "EndTime":{"shape":"timestamp"},
2235
- "Filters":{"shape":"Filters"},
2236
- "Groupings":{"shape":"Groupings"},
2237
- "HistoricalMetrics":{"shape":"HistoricalMetrics"},
2238
- "NextToken":{"shape":"NextToken"},
2239
- "MaxResults":{
2240
- "shape":"MaxResult100",
2241
- "box":true
2242
- }
2243
- }
2244
- },
2245
- "GetMetricDataResponse":{
2246
- "type":"structure",
2247
- "members":{
2248
- "NextToken":{"shape":"NextToken"},
2249
- "MetricResults":{"shape":"HistoricalMetricResults"}
2250
- }
2251
- },
2252
- "Grouping":{
2253
- "type":"string",
2254
- "enum":[
2255
- "QUEUE",
2256
- "CHANNEL"
2257
- ]
2258
- },
2259
- "Groupings":{
2260
- "type":"list",
2261
- "member":{"shape":"Grouping"},
2262
- "max":2
2263
- },
2264
- "HierarchyGroup":{
2265
- "type":"structure",
2266
- "members":{
2267
- "Id":{"shape":"HierarchyGroupId"},
2268
- "Arn":{"shape":"ARN"},
2269
- "Name":{"shape":"HierarchyGroupName"},
2270
- "LevelId":{"shape":"HierarchyLevelId"},
2271
- "HierarchyPath":{"shape":"HierarchyPath"}
2272
- }
2273
- },
2274
- "HierarchyGroupId":{"type":"string"},
2275
- "HierarchyGroupName":{"type":"string"},
2276
- "HierarchyGroupSummary":{
2277
- "type":"structure",
2278
- "members":{
2279
- "Id":{"shape":"HierarchyGroupId"},
2280
- "Arn":{"shape":"ARN"},
2281
- "Name":{"shape":"HierarchyGroupName"}
2282
- }
2283
- },
2284
- "HierarchyGroupSummaryList":{
2285
- "type":"list",
2286
- "member":{"shape":"HierarchyGroupSummary"}
2287
- },
2288
- "HierarchyLevel":{
2289
- "type":"structure",
2290
- "members":{
2291
- "Id":{"shape":"HierarchyLevelId"},
2292
- "Arn":{"shape":"ARN"},
2293
- "Name":{"shape":"HierarchyLevelName"}
2294
- }
2295
- },
2296
- "HierarchyLevelId":{"type":"string"},
2297
- "HierarchyLevelName":{"type":"string"},
2298
- "HierarchyLevelUpdate":{
2299
- "type":"structure",
2300
- "required":["Name"],
2301
- "members":{
2302
- "Name":{"shape":"HierarchyLevelName"}
2303
- }
2304
- },
2305
- "HierarchyPath":{
2306
- "type":"structure",
2307
- "members":{
2308
- "LevelOne":{"shape":"HierarchyGroupSummary"},
2309
- "LevelTwo":{"shape":"HierarchyGroupSummary"},
2310
- "LevelThree":{"shape":"HierarchyGroupSummary"},
2311
- "LevelFour":{"shape":"HierarchyGroupSummary"},
2312
- "LevelFive":{"shape":"HierarchyGroupSummary"}
2313
- }
2314
- },
2315
- "HierarchyStructure":{
2316
- "type":"structure",
2317
- "members":{
2318
- "LevelOne":{"shape":"HierarchyLevel"},
2319
- "LevelTwo":{"shape":"HierarchyLevel"},
2320
- "LevelThree":{"shape":"HierarchyLevel"},
2321
- "LevelFour":{"shape":"HierarchyLevel"},
2322
- "LevelFive":{"shape":"HierarchyLevel"}
2323
- }
2324
- },
2325
- "HierarchyStructureUpdate":{
2326
- "type":"structure",
2327
- "members":{
2328
- "LevelOne":{"shape":"HierarchyLevelUpdate"},
2329
- "LevelTwo":{"shape":"HierarchyLevelUpdate"},
2330
- "LevelThree":{"shape":"HierarchyLevelUpdate"},
2331
- "LevelFour":{"shape":"HierarchyLevelUpdate"},
2332
- "LevelFive":{"shape":"HierarchyLevelUpdate"}
2333
- }
2334
- },
2335
- "HistoricalMetric":{
2336
- "type":"structure",
2337
- "members":{
2338
- "Name":{"shape":"HistoricalMetricName"},
2339
- "Threshold":{
2340
- "shape":"Threshold",
2341
- "box":true
2342
- },
2343
- "Statistic":{"shape":"Statistic"},
2344
- "Unit":{"shape":"Unit"}
2345
- }
2346
- },
2347
- "HistoricalMetricData":{
2348
- "type":"structure",
2349
- "members":{
2350
- "Metric":{"shape":"HistoricalMetric"},
2351
- "Value":{
2352
- "shape":"Value",
2353
- "box":true
2354
- }
2355
- }
2356
- },
2357
- "HistoricalMetricDataCollections":{
2358
- "type":"list",
2359
- "member":{"shape":"HistoricalMetricData"}
2360
- },
2361
- "HistoricalMetricName":{
2362
- "type":"string",
2363
- "enum":[
2364
- "CONTACTS_QUEUED",
2365
- "CONTACTS_HANDLED",
2366
- "CONTACTS_ABANDONED",
2367
- "CONTACTS_CONSULTED",
2368
- "CONTACTS_AGENT_HUNG_UP_FIRST",
2369
- "CONTACTS_HANDLED_INCOMING",
2370
- "CONTACTS_HANDLED_OUTBOUND",
2371
- "CONTACTS_HOLD_ABANDONS",
2372
- "CONTACTS_TRANSFERRED_IN",
2373
- "CONTACTS_TRANSFERRED_OUT",
2374
- "CONTACTS_TRANSFERRED_IN_FROM_QUEUE",
2375
- "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE",
2376
- "CONTACTS_MISSED",
2377
- "CALLBACK_CONTACTS_HANDLED",
2378
- "API_CONTACTS_HANDLED",
2379
- "OCCUPANCY",
2380
- "HANDLE_TIME",
2381
- "AFTER_CONTACT_WORK_TIME",
2382
- "QUEUED_TIME",
2383
- "ABANDON_TIME",
2384
- "QUEUE_ANSWER_TIME",
2385
- "HOLD_TIME",
2386
- "INTERACTION_TIME",
2387
- "INTERACTION_AND_HOLD_TIME",
2388
- "SERVICE_LEVEL"
2389
- ]
2390
- },
2391
- "HistoricalMetricResult":{
2392
- "type":"structure",
2393
- "members":{
2394
- "Dimensions":{"shape":"Dimensions"},
2395
- "Collections":{"shape":"HistoricalMetricDataCollections"}
2396
- }
2397
- },
2398
- "HistoricalMetricResults":{
2399
- "type":"list",
2400
- "member":{"shape":"HistoricalMetricResult"}
2401
- },
2402
- "HistoricalMetrics":{
2403
- "type":"list",
2404
- "member":{"shape":"HistoricalMetric"}
2405
- },
2406
- "Hours":{
2407
- "type":"integer",
2408
- "max":87600,
2409
- "min":0
2410
- },
2411
- "HoursOfOperationId":{"type":"string"},
2412
- "HoursOfOperationName":{"type":"string"},
2413
- "HoursOfOperationSummary":{
2414
- "type":"structure",
2415
- "members":{
2416
- "Id":{"shape":"HoursOfOperationId"},
2417
- "Arn":{"shape":"ARN"},
2418
- "Name":{"shape":"HoursOfOperationName"}
2419
- }
2420
- },
2421
- "HoursOfOperationSummaryList":{
2422
- "type":"list",
2423
- "member":{"shape":"HoursOfOperationSummary"}
2424
- },
2425
- "InboundCallsEnabled":{"type":"boolean"},
2426
- "Instance":{
2427
- "type":"structure",
2428
- "members":{
2429
- "Id":{"shape":"InstanceId"},
2430
- "Arn":{"shape":"ARN"},
2431
- "IdentityManagementType":{"shape":"DirectoryType"},
2432
- "InstanceAlias":{"shape":"DirectoryAlias"},
2433
- "CreatedTime":{"shape":"Timestamp"},
2434
- "ServiceRole":{"shape":"ARN"},
2435
- "InstanceStatus":{"shape":"InstanceStatus"},
2436
- "StatusReason":{"shape":"InstanceStatusReason"},
2437
- "InboundCallsEnabled":{"shape":"InboundCallsEnabled"},
2438
- "OutboundCallsEnabled":{"shape":"OutboundCallsEnabled"}
2439
- }
2440
- },
2441
- "InstanceAttributeType":{
2442
- "type":"string",
2443
- "enum":[
2444
- "INBOUND_CALLS",
2445
- "OUTBOUND_CALLS",
2446
- "CONTACTFLOW_LOGS",
2447
- "CONTACT_LENS",
2448
- "AUTO_RESOLVE_BEST_VOICES",
2449
- "USE_CUSTOM_TTS_VOICES",
2450
- "EARLY_MEDIA"
2451
- ]
2452
- },
2453
- "InstanceAttributeValue":{
2454
- "type":"string",
2455
- "max":100,
2456
- "min":1
2457
- },
2458
- "InstanceId":{
2459
- "type":"string",
2460
- "max":100,
2461
- "min":1
2462
- },
2463
- "InstanceStatus":{
2464
- "type":"string",
2465
- "enum":[
2466
- "CREATION_IN_PROGRESS",
2467
- "ACTIVE",
2468
- "CREATION_FAILED"
2469
- ]
2470
- },
2471
- "InstanceStatusReason":{
2472
- "type":"structure",
2473
- "members":{
2474
- "Message":{"shape":"String"}
2475
- }
2476
- },
2477
- "InstanceStorageConfig":{
2478
- "type":"structure",
2479
- "required":["StorageType"],
2480
- "members":{
2481
- "AssociationId":{"shape":"AssociationId"},
2482
- "StorageType":{"shape":"StorageType"},
2483
- "S3Config":{"shape":"S3Config"},
2484
- "KinesisVideoStreamConfig":{"shape":"KinesisVideoStreamConfig"},
2485
- "KinesisStreamConfig":{"shape":"KinesisStreamConfig"},
2486
- "KinesisFirehoseConfig":{"shape":"KinesisFirehoseConfig"}
2487
- }
2488
- },
2489
- "InstanceStorageConfigs":{
2490
- "type":"list",
2491
- "member":{"shape":"InstanceStorageConfig"}
2492
- },
2493
- "InstanceStorageResourceType":{
2494
- "type":"string",
2495
- "enum":[
2496
- "CHAT_TRANSCRIPTS",
2497
- "CALL_RECORDINGS",
2498
- "SCHEDULED_REPORTS",
2499
- "MEDIA_STREAMS",
2500
- "CONTACT_TRACE_RECORDS",
2501
- "AGENT_EVENTS"
2502
- ]
2503
- },
2504
- "InstanceSummary":{
2505
- "type":"structure",
2506
- "members":{
2507
- "Id":{"shape":"InstanceId"},
2508
- "Arn":{"shape":"ARN"},
2509
- "IdentityManagementType":{"shape":"DirectoryType"},
2510
- "InstanceAlias":{"shape":"DirectoryAlias"},
2511
- "CreatedTime":{"shape":"Timestamp"},
2512
- "ServiceRole":{"shape":"ARN"},
2513
- "InstanceStatus":{"shape":"InstanceStatus"},
2514
- "InboundCallsEnabled":{"shape":"InboundCallsEnabled"},
2515
- "OutboundCallsEnabled":{"shape":"OutboundCallsEnabled"}
2516
- }
2517
- },
2518
- "InstanceSummaryList":{
2519
- "type":"list",
2520
- "member":{"shape":"InstanceSummary"}
2521
- },
2522
- "InternalServiceException":{
2523
- "type":"structure",
2524
- "members":{
2525
- "Message":{"shape":"Message"}
2526
- },
2527
- "error":{"httpStatusCode":500},
2528
- "exception":true
2529
- },
2530
- "InvalidContactFlowException":{
2531
- "type":"structure",
2532
- "members":{
2533
- "problems":{"shape":"Problems"}
2534
- },
2535
- "error":{"httpStatusCode":400},
2536
- "exception":true
2537
- },
2538
- "InvalidParameterException":{
2539
- "type":"structure",
2540
- "members":{
2541
- "Message":{"shape":"Message"}
2542
- },
2543
- "error":{"httpStatusCode":400},
2544
- "exception":true
2545
- },
2546
- "InvalidRequestException":{
2547
- "type":"structure",
2548
- "members":{
2549
- "Message":{"shape":"Message"}
2550
- },
2551
- "error":{"httpStatusCode":400},
2552
- "exception":true
2553
- },
2554
- "KeyId":{
2555
- "type":"string",
2556
- "max":128,
2557
- "min":1
2558
- },
2559
- "KinesisFirehoseConfig":{
2560
- "type":"structure",
2561
- "required":["FirehoseArn"],
2562
- "members":{
2563
- "FirehoseArn":{"shape":"ARN"}
2564
- }
2565
- },
2566
- "KinesisStreamConfig":{
2567
- "type":"structure",
2568
- "required":["StreamArn"],
2569
- "members":{
2570
- "StreamArn":{"shape":"ARN"}
2571
- }
2572
- },
2573
- "KinesisVideoStreamConfig":{
2574
- "type":"structure",
2575
- "required":[
2576
- "Prefix",
2577
- "RetentionPeriodHours",
2578
- "EncryptionConfig"
2579
- ],
2580
- "members":{
2581
- "Prefix":{"shape":"Prefix"},
2582
- "RetentionPeriodHours":{"shape":"Hours"},
2583
- "EncryptionConfig":{"shape":"EncryptionConfig"}
2584
- }
2585
- },
2586
- "LexBot":{
2587
- "type":"structure",
2588
- "members":{
2589
- "Name":{"shape":"BotName"},
2590
- "LexRegion":{"shape":"LexRegion"}
2591
- }
2592
- },
2593
- "LexBotsList":{
2594
- "type":"list",
2595
- "member":{"shape":"LexBot"}
2596
- },
2597
- "LexRegion":{
2598
- "type":"string",
2599
- "max":60
2600
- },
2601
- "LimitExceededException":{
2602
- "type":"structure",
2603
- "members":{
2604
- "Message":{"shape":"Message"}
2605
- },
2606
- "error":{"httpStatusCode":429},
2607
- "exception":true
2608
- },
2609
- "ListApprovedOriginsRequest":{
2610
- "type":"structure",
2611
- "required":["InstanceId"],
2612
- "members":{
2613
- "InstanceId":{
2614
- "shape":"InstanceId",
2615
- "location":"uri",
2616
- "locationName":"InstanceId"
2617
- },
2618
- "NextToken":{
2619
- "shape":"NextToken",
2620
- "location":"querystring",
2621
- "locationName":"nextToken"
2622
- },
2623
- "MaxResults":{
2624
- "shape":"MaxResult25",
2625
- "box":true,
2626
- "location":"querystring",
2627
- "locationName":"maxResults"
2628
- }
2629
- }
2630
- },
2631
- "ListApprovedOriginsResponse":{
2632
- "type":"structure",
2633
- "members":{
2634
- "Origins":{"shape":"OriginsList"},
2635
- "NextToken":{"shape":"NextToken"}
2636
- }
2637
- },
2638
- "ListContactFlowsRequest":{
2639
- "type":"structure",
2640
- "required":["InstanceId"],
2641
- "members":{
2642
- "InstanceId":{
2643
- "shape":"InstanceId",
2644
- "location":"uri",
2645
- "locationName":"InstanceId"
2646
- },
2647
- "ContactFlowTypes":{
2648
- "shape":"ContactFlowTypes",
2649
- "location":"querystring",
2650
- "locationName":"contactFlowTypes"
2651
- },
2652
- "NextToken":{
2653
- "shape":"NextToken",
2654
- "location":"querystring",
2655
- "locationName":"nextToken"
2656
- },
2657
- "MaxResults":{
2658
- "shape":"MaxResult1000",
2659
- "location":"querystring",
2660
- "locationName":"maxResults"
2661
- }
2662
- }
2663
- },
2664
- "ListContactFlowsResponse":{
2665
- "type":"structure",
2666
- "members":{
2667
- "ContactFlowSummaryList":{"shape":"ContactFlowSummaryList"},
2668
- "NextToken":{"shape":"NextToken"}
2669
- }
2670
- },
2671
- "ListHoursOfOperationsRequest":{
2672
- "type":"structure",
2673
- "required":["InstanceId"],
2674
- "members":{
2675
- "InstanceId":{
2676
- "shape":"InstanceId",
2677
- "location":"uri",
2678
- "locationName":"InstanceId"
2679
- },
2680
- "NextToken":{
2681
- "shape":"NextToken",
2682
- "location":"querystring",
2683
- "locationName":"nextToken"
2684
- },
2685
- "MaxResults":{
2686
- "shape":"MaxResult1000",
2687
- "location":"querystring",
2688
- "locationName":"maxResults"
2689
- }
2690
- }
2691
- },
2692
- "ListHoursOfOperationsResponse":{
2693
- "type":"structure",
2694
- "members":{
2695
- "HoursOfOperationSummaryList":{"shape":"HoursOfOperationSummaryList"},
2696
- "NextToken":{"shape":"NextToken"}
2697
- }
2698
- },
2699
- "ListInstanceAttributesRequest":{
2700
- "type":"structure",
2701
- "required":["InstanceId"],
2702
- "members":{
2703
- "InstanceId":{
2704
- "shape":"InstanceId",
2705
- "location":"uri",
2706
- "locationName":"InstanceId"
2707
- },
2708
- "NextToken":{
2709
- "shape":"NextToken",
2710
- "location":"querystring",
2711
- "locationName":"nextToken"
2712
- },
2713
- "MaxResults":{
2714
- "shape":"MaxResult7",
2715
- "box":true,
2716
- "location":"querystring",
2717
- "locationName":"maxResults"
2718
- }
2719
- }
2720
- },
2721
- "ListInstanceAttributesResponse":{
2722
- "type":"structure",
2723
- "members":{
2724
- "Attributes":{"shape":"AttributesList"},
2725
- "NextToken":{"shape":"NextToken"}
2726
- }
2727
- },
2728
- "ListInstanceStorageConfigsRequest":{
2729
- "type":"structure",
2730
- "required":[
2731
- "InstanceId",
2732
- "ResourceType"
2733
- ],
2734
- "members":{
2735
- "InstanceId":{
2736
- "shape":"InstanceId",
2737
- "location":"uri",
2738
- "locationName":"InstanceId"
2739
- },
2740
- "ResourceType":{
2741
- "shape":"InstanceStorageResourceType",
2742
- "location":"querystring",
2743
- "locationName":"resourceType"
2744
- },
2745
- "NextToken":{
2746
- "shape":"NextToken",
2747
- "location":"querystring",
2748
- "locationName":"nextToken"
2749
- },
2750
- "MaxResults":{
2751
- "shape":"MaxResult10",
2752
- "box":true,
2753
- "location":"querystring",
2754
- "locationName":"maxResults"
2755
- }
2756
- }
2757
- },
2758
- "ListInstanceStorageConfigsResponse":{
2759
- "type":"structure",
2760
- "members":{
2761
- "StorageConfigs":{"shape":"InstanceStorageConfigs"},
2762
- "NextToken":{"shape":"NextToken"}
2763
- }
2764
- },
2765
- "ListInstancesRequest":{
2766
- "type":"structure",
2767
- "members":{
2768
- "NextToken":{
2769
- "shape":"NextToken",
2770
- "location":"querystring",
2771
- "locationName":"nextToken"
2772
- },
2773
- "MaxResults":{
2774
- "shape":"MaxResult10",
2775
- "box":true,
2776
- "location":"querystring",
2777
- "locationName":"maxResults"
2778
- }
2779
- }
2780
- },
2781
- "ListInstancesResponse":{
2782
- "type":"structure",
2783
- "members":{
2784
- "InstanceSummaryList":{"shape":"InstanceSummaryList"},
2785
- "NextToken":{"shape":"NextToken"}
2786
- }
2787
- },
2788
- "ListLambdaFunctionsRequest":{
2789
- "type":"structure",
2790
- "required":["InstanceId"],
2791
- "members":{
2792
- "InstanceId":{
2793
- "shape":"InstanceId",
2794
- "location":"uri",
2795
- "locationName":"InstanceId"
2796
- },
2797
- "NextToken":{
2798
- "shape":"NextToken",
2799
- "location":"querystring",
2800
- "locationName":"nextToken"
2801
- },
2802
- "MaxResults":{
2803
- "shape":"MaxResult25",
2804
- "box":true,
2805
- "location":"querystring",
2806
- "locationName":"maxResults"
2807
- }
2808
- }
2809
- },
2810
- "ListLambdaFunctionsResponse":{
2811
- "type":"structure",
2812
- "members":{
2813
- "LambdaFunctions":{"shape":"FunctionArnsList"},
2814
- "NextToken":{"shape":"NextToken"}
2815
- }
2816
- },
2817
- "ListLexBotsRequest":{
2818
- "type":"structure",
2819
- "required":["InstanceId"],
2820
- "members":{
2821
- "InstanceId":{
2822
- "shape":"InstanceId",
2823
- "location":"uri",
2824
- "locationName":"InstanceId"
2825
- },
2826
- "NextToken":{
2827
- "shape":"NextToken",
2828
- "location":"querystring",
2829
- "locationName":"nextToken"
2830
- },
2831
- "MaxResults":{
2832
- "shape":"MaxResult25",
2833
- "box":true,
2834
- "location":"querystring",
2835
- "locationName":"maxResults"
2836
- }
2837
- }
2838
- },
2839
- "ListLexBotsResponse":{
2840
- "type":"structure",
2841
- "members":{
2842
- "LexBots":{"shape":"LexBotsList"},
2843
- "NextToken":{"shape":"NextToken"}
2844
- }
2845
- },
2846
- "ListPhoneNumbersRequest":{
2847
- "type":"structure",
2848
- "required":["InstanceId"],
2849
- "members":{
2850
- "InstanceId":{
2851
- "shape":"InstanceId",
2852
- "location":"uri",
2853
- "locationName":"InstanceId"
2854
- },
2855
- "PhoneNumberTypes":{
2856
- "shape":"PhoneNumberTypes",
2857
- "location":"querystring",
2858
- "locationName":"phoneNumberTypes"
2859
- },
2860
- "PhoneNumberCountryCodes":{
2861
- "shape":"PhoneNumberCountryCodes",
2862
- "location":"querystring",
2863
- "locationName":"phoneNumberCountryCodes"
2864
- },
2865
- "NextToken":{
2866
- "shape":"NextToken",
2867
- "location":"querystring",
2868
- "locationName":"nextToken"
2869
- },
2870
- "MaxResults":{
2871
- "shape":"MaxResult1000",
2872
- "location":"querystring",
2873
- "locationName":"maxResults"
2874
- }
2875
- }
2876
- },
2877
- "ListPhoneNumbersResponse":{
2878
- "type":"structure",
2879
- "members":{
2880
- "PhoneNumberSummaryList":{"shape":"PhoneNumberSummaryList"},
2881
- "NextToken":{"shape":"NextToken"}
2882
- }
2883
- },
2884
- "ListPromptsRequest":{
2885
- "type":"structure",
2886
- "required":["InstanceId"],
2887
- "members":{
2888
- "InstanceId":{
2889
- "shape":"InstanceId",
2890
- "location":"uri",
2891
- "locationName":"InstanceId"
2892
- },
2893
- "NextToken":{
2894
- "shape":"NextToken",
2895
- "location":"querystring",
2896
- "locationName":"nextToken"
2897
- },
2898
- "MaxResults":{
2899
- "shape":"MaxResult1000",
2900
- "box":true,
2901
- "location":"querystring",
2902
- "locationName":"maxResults"
2903
- }
2904
- }
2905
- },
2906
- "ListPromptsResponse":{
2907
- "type":"structure",
2908
- "members":{
2909
- "PromptSummaryList":{"shape":"PromptSummaryList"},
2910
- "NextToken":{"shape":"NextToken"}
2911
- }
2912
- },
2913
- "ListQueuesRequest":{
2914
- "type":"structure",
2915
- "required":["InstanceId"],
2916
- "members":{
2917
- "InstanceId":{
2918
- "shape":"InstanceId",
2919
- "location":"uri",
2920
- "locationName":"InstanceId"
2921
- },
2922
- "QueueTypes":{
2923
- "shape":"QueueTypes",
2924
- "location":"querystring",
2925
- "locationName":"queueTypes"
2926
- },
2927
- "NextToken":{
2928
- "shape":"NextToken",
2929
- "location":"querystring",
2930
- "locationName":"nextToken"
2931
- },
2932
- "MaxResults":{
2933
- "shape":"MaxResult1000",
2934
- "location":"querystring",
2935
- "locationName":"maxResults"
2936
- }
2937
- }
2938
- },
2939
- "ListQueuesResponse":{
2940
- "type":"structure",
2941
- "members":{
2942
- "QueueSummaryList":{"shape":"QueueSummaryList"},
2943
- "NextToken":{"shape":"NextToken"}
2944
- }
2945
- },
2946
- "ListRoutingProfileQueuesRequest":{
2947
- "type":"structure",
2948
- "required":[
2949
- "InstanceId",
2950
- "RoutingProfileId"
2951
- ],
2952
- "members":{
2953
- "InstanceId":{
2954
- "shape":"InstanceId",
2955
- "location":"uri",
2956
- "locationName":"InstanceId"
2957
- },
2958
- "RoutingProfileId":{
2959
- "shape":"RoutingProfileId",
2960
- "location":"uri",
2961
- "locationName":"RoutingProfileId"
2962
- },
2963
- "NextToken":{
2964
- "shape":"NextToken",
2965
- "location":"querystring",
2966
- "locationName":"nextToken"
2967
- },
2968
- "MaxResults":{
2969
- "shape":"MaxResult100",
2970
- "box":true,
2971
- "location":"querystring",
2972
- "locationName":"maxResults"
2973
- }
2974
- }
2975
- },
2976
- "ListRoutingProfileQueuesResponse":{
2977
- "type":"structure",
2978
- "members":{
2979
- "NextToken":{"shape":"NextToken"},
2980
- "RoutingProfileQueueConfigSummaryList":{"shape":"RoutingProfileQueueConfigSummaryList"}
2981
- }
2982
- },
2983
- "ListRoutingProfilesRequest":{
2984
- "type":"structure",
2985
- "required":["InstanceId"],
2986
- "members":{
2987
- "InstanceId":{
2988
- "shape":"InstanceId",
2989
- "location":"uri",
2990
- "locationName":"InstanceId"
2991
- },
2992
- "NextToken":{
2993
- "shape":"NextToken",
2994
- "location":"querystring",
2995
- "locationName":"nextToken"
2996
- },
2997
- "MaxResults":{
2998
- "shape":"MaxResult1000",
2999
- "box":true,
3000
- "location":"querystring",
3001
- "locationName":"maxResults"
3002
- }
3003
- }
3004
- },
3005
- "ListRoutingProfilesResponse":{
3006
- "type":"structure",
3007
- "members":{
3008
- "RoutingProfileSummaryList":{"shape":"RoutingProfileSummaryList"},
3009
- "NextToken":{"shape":"NextToken"}
3010
- }
3011
- },
3012
- "ListSecurityKeysRequest":{
3013
- "type":"structure",
3014
- "required":["InstanceId"],
3015
- "members":{
3016
- "InstanceId":{
3017
- "shape":"InstanceId",
3018
- "location":"uri",
3019
- "locationName":"InstanceId"
3020
- },
3021
- "NextToken":{
3022
- "shape":"NextToken",
3023
- "location":"querystring",
3024
- "locationName":"nextToken"
3025
- },
3026
- "MaxResults":{
3027
- "shape":"MaxResult2",
3028
- "box":true,
3029
- "location":"querystring",
3030
- "locationName":"maxResults"
3031
- }
3032
- }
3033
- },
3034
- "ListSecurityKeysResponse":{
3035
- "type":"structure",
3036
- "members":{
3037
- "SecurityKeys":{"shape":"SecurityKeysList"},
3038
- "NextToken":{"shape":"NextToken"}
3039
- }
3040
- },
3041
- "ListSecurityProfilesRequest":{
3042
- "type":"structure",
3043
- "required":["InstanceId"],
3044
- "members":{
3045
- "InstanceId":{
3046
- "shape":"InstanceId",
3047
- "location":"uri",
3048
- "locationName":"InstanceId"
3049
- },
3050
- "NextToken":{
3051
- "shape":"NextToken",
3052
- "location":"querystring",
3053
- "locationName":"nextToken"
3054
- },
3055
- "MaxResults":{
3056
- "shape":"MaxResult1000",
3057
- "box":true,
3058
- "location":"querystring",
3059
- "locationName":"maxResults"
3060
- }
3061
- }
3062
- },
3063
- "ListSecurityProfilesResponse":{
3064
- "type":"structure",
3065
- "members":{
3066
- "SecurityProfileSummaryList":{"shape":"SecurityProfileSummaryList"},
3067
- "NextToken":{"shape":"NextToken"}
3068
- }
3069
- },
3070
- "ListTagsForResourceRequest":{
3071
- "type":"structure",
3072
- "required":["resourceArn"],
3073
- "members":{
3074
- "resourceArn":{
3075
- "shape":"ARN",
3076
- "location":"uri",
3077
- "locationName":"resourceArn"
3078
- }
3079
- }
3080
- },
3081
- "ListTagsForResourceResponse":{
3082
- "type":"structure",
3083
- "members":{
3084
- "tags":{"shape":"TagMap"}
3085
- }
3086
- },
3087
- "ListUserHierarchyGroupsRequest":{
3088
- "type":"structure",
3089
- "required":["InstanceId"],
3090
- "members":{
3091
- "InstanceId":{
3092
- "shape":"InstanceId",
3093
- "location":"uri",
3094
- "locationName":"InstanceId"
3095
- },
3096
- "NextToken":{
3097
- "shape":"NextToken",
3098
- "location":"querystring",
3099
- "locationName":"nextToken"
3100
- },
3101
- "MaxResults":{
3102
- "shape":"MaxResult1000",
3103
- "box":true,
3104
- "location":"querystring",
3105
- "locationName":"maxResults"
3106
- }
3107
- }
3108
- },
3109
- "ListUserHierarchyGroupsResponse":{
3110
- "type":"structure",
3111
- "members":{
3112
- "UserHierarchyGroupSummaryList":{"shape":"HierarchyGroupSummaryList"},
3113
- "NextToken":{"shape":"NextToken"}
3114
- }
3115
- },
3116
- "ListUsersRequest":{
3117
- "type":"structure",
3118
- "required":["InstanceId"],
3119
- "members":{
3120
- "InstanceId":{
3121
- "shape":"InstanceId",
3122
- "location":"uri",
3123
- "locationName":"InstanceId"
3124
- },
3125
- "NextToken":{
3126
- "shape":"NextToken",
3127
- "location":"querystring",
3128
- "locationName":"nextToken"
3129
- },
3130
- "MaxResults":{
3131
- "shape":"MaxResult1000",
3132
- "box":true,
3133
- "location":"querystring",
3134
- "locationName":"maxResults"
3135
- }
3136
- }
3137
- },
3138
- "ListUsersResponse":{
3139
- "type":"structure",
3140
- "members":{
3141
- "UserSummaryList":{"shape":"UserSummaryList"},
3142
- "NextToken":{"shape":"NextToken"}
3143
- }
3144
- },
3145
- "MaxResult10":{
3146
- "type":"integer",
3147
- "max":10,
3148
- "min":1
3149
- },
3150
- "MaxResult100":{
3151
- "type":"integer",
3152
- "max":100,
3153
- "min":1
3154
- },
3155
- "MaxResult1000":{
3156
- "type":"integer",
3157
- "max":1000,
3158
- "min":1
3159
- },
3160
- "MaxResult2":{
3161
- "type":"integer",
3162
- "max":2,
3163
- "min":1
3164
- },
3165
- "MaxResult25":{
3166
- "type":"integer",
3167
- "max":25,
3168
- "min":1
3169
- },
3170
- "MaxResult7":{
3171
- "type":"integer",
3172
- "max":7,
3173
- "min":1
3174
- },
3175
- "MediaConcurrencies":{
3176
- "type":"list",
3177
- "member":{"shape":"MediaConcurrency"}
3178
- },
3179
- "MediaConcurrency":{
3180
- "type":"structure",
3181
- "required":[
3182
- "Channel",
3183
- "Concurrency"
3184
- ],
3185
- "members":{
3186
- "Channel":{"shape":"Channel"},
3187
- "Concurrency":{"shape":"Concurrency"}
3188
- }
3189
- },
3190
- "Message":{"type":"string"},
3191
- "NextToken":{"type":"string"},
3192
- "Origin":{
3193
- "type":"string",
3194
- "max":267
3195
- },
3196
- "OriginsList":{
3197
- "type":"list",
3198
- "member":{"shape":"Origin"}
3199
- },
3200
- "OutboundCallsEnabled":{"type":"boolean"},
3201
- "OutboundContactNotPermittedException":{
3202
- "type":"structure",
3203
- "members":{
3204
- "Message":{"shape":"Message"}
3205
- },
3206
- "error":{"httpStatusCode":403},
3207
- "exception":true
3208
- },
3209
- "PEM":{
3210
- "type":"string",
3211
- "max":1024,
3212
- "min":1
3213
- },
3214
- "ParticipantDetails":{
3215
- "type":"structure",
3216
- "required":["DisplayName"],
3217
- "members":{
3218
- "DisplayName":{"shape":"DisplayName"}
3219
- }
3220
- },
3221
- "ParticipantId":{
3222
- "type":"string",
3223
- "max":256,
3224
- "min":1
3225
- },
3226
- "ParticipantToken":{
3227
- "type":"string",
3228
- "max":1000,
3229
- "min":1
3230
- },
3231
- "Password":{
3232
- "type":"string",
3233
- "pattern":"/^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)[a-zA-Z\\d\\S]{8,64}$/"
3234
- },
3235
- "PhoneNumber":{"type":"string"},
3236
- "PhoneNumberCountryCode":{
3237
- "type":"string",
3238
- "enum":[
3239
- "AF",
3240
- "AL",
3241
- "DZ",
3242
- "AS",
3243
- "AD",
3244
- "AO",
3245
- "AI",
3246
- "AQ",
3247
- "AG",
3248
- "AR",
3249
- "AM",
3250
- "AW",
3251
- "AU",
3252
- "AT",
3253
- "AZ",
3254
- "BS",
3255
- "BH",
3256
- "BD",
3257
- "BB",
3258
- "BY",
3259
- "BE",
3260
- "BZ",
3261
- "BJ",
3262
- "BM",
3263
- "BT",
3264
- "BO",
3265
- "BA",
3266
- "BW",
3267
- "BR",
3268
- "IO",
3269
- "VG",
3270
- "BN",
3271
- "BG",
3272
- "BF",
3273
- "BI",
3274
- "KH",
3275
- "CM",
3276
- "CA",
3277
- "CV",
3278
- "KY",
3279
- "CF",
3280
- "TD",
3281
- "CL",
3282
- "CN",
3283
- "CX",
3284
- "CC",
3285
- "CO",
3286
- "KM",
3287
- "CK",
3288
- "CR",
3289
- "HR",
3290
- "CU",
3291
- "CW",
3292
- "CY",
3293
- "CZ",
3294
- "CD",
3295
- "DK",
3296
- "DJ",
3297
- "DM",
3298
- "DO",
3299
- "TL",
3300
- "EC",
3301
- "EG",
3302
- "SV",
3303
- "GQ",
3304
- "ER",
3305
- "EE",
3306
- "ET",
3307
- "FK",
3308
- "FO",
3309
- "FJ",
3310
- "FI",
3311
- "FR",
3312
- "PF",
3313
- "GA",
3314
- "GM",
3315
- "GE",
3316
- "DE",
3317
- "GH",
3318
- "GI",
3319
- "GR",
3320
- "GL",
3321
- "GD",
3322
- "GU",
3323
- "GT",
3324
- "GG",
3325
- "GN",
3326
- "GW",
3327
- "GY",
3328
- "HT",
3329
- "HN",
3330
- "HK",
3331
- "HU",
3332
- "IS",
3333
- "IN",
3334
- "ID",
3335
- "IR",
3336
- "IQ",
3337
- "IE",
3338
- "IM",
3339
- "IL",
3340
- "IT",
3341
- "CI",
3342
- "JM",
3343
- "JP",
3344
- "JE",
3345
- "JO",
3346
- "KZ",
3347
- "KE",
3348
- "KI",
3349
- "KW",
3350
- "KG",
3351
- "LA",
3352
- "LV",
3353
- "LB",
3354
- "LS",
3355
- "LR",
3356
- "LY",
3357
- "LI",
3358
- "LT",
3359
- "LU",
3360
- "MO",
3361
- "MK",
3362
- "MG",
3363
- "MW",
3364
- "MY",
3365
- "MV",
3366
- "ML",
3367
- "MT",
3368
- "MH",
3369
- "MR",
3370
- "MU",
3371
- "YT",
3372
- "MX",
3373
- "FM",
3374
- "MD",
3375
- "MC",
3376
- "MN",
3377
- "ME",
3378
- "MS",
3379
- "MA",
3380
- "MZ",
3381
- "MM",
3382
- "NA",
3383
- "NR",
3384
- "NP",
3385
- "NL",
3386
- "AN",
3387
- "NC",
3388
- "NZ",
3389
- "NI",
3390
- "NE",
3391
- "NG",
3392
- "NU",
3393
- "KP",
3394
- "MP",
3395
- "NO",
3396
- "OM",
3397
- "PK",
3398
- "PW",
3399
- "PA",
3400
- "PG",
3401
- "PY",
3402
- "PE",
3403
- "PH",
3404
- "PN",
3405
- "PL",
3406
- "PT",
3407
- "PR",
3408
- "QA",
3409
- "CG",
3410
- "RE",
3411
- "RO",
3412
- "RU",
3413
- "RW",
3414
- "BL",
3415
- "SH",
3416
- "KN",
3417
- "LC",
3418
- "MF",
3419
- "PM",
3420
- "VC",
3421
- "WS",
3422
- "SM",
3423
- "ST",
3424
- "SA",
3425
- "SN",
3426
- "RS",
3427
- "SC",
3428
- "SL",
3429
- "SG",
3430
- "SX",
3431
- "SK",
3432
- "SI",
3433
- "SB",
3434
- "SO",
3435
- "ZA",
3436
- "KR",
3437
- "ES",
3438
- "LK",
3439
- "SD",
3440
- "SR",
3441
- "SJ",
3442
- "SZ",
3443
- "SE",
3444
- "CH",
3445
- "SY",
3446
- "TW",
3447
- "TJ",
3448
- "TZ",
3449
- "TH",
3450
- "TG",
3451
- "TK",
3452
- "TO",
3453
- "TT",
3454
- "TN",
3455
- "TR",
3456
- "TM",
3457
- "TC",
3458
- "TV",
3459
- "VI",
3460
- "UG",
3461
- "UA",
3462
- "AE",
3463
- "GB",
3464
- "US",
3465
- "UY",
3466
- "UZ",
3467
- "VU",
3468
- "VA",
3469
- "VE",
3470
- "VN",
3471
- "WF",
3472
- "EH",
3473
- "YE",
3474
- "ZM",
3475
- "ZW"
3476
- ]
3477
- },
3478
- "PhoneNumberCountryCodes":{
3479
- "type":"list",
3480
- "member":{"shape":"PhoneNumberCountryCode"},
3481
- "max":10
3482
- },
3483
- "PhoneNumberId":{"type":"string"},
3484
- "PhoneNumberSummary":{
3485
- "type":"structure",
3486
- "members":{
3487
- "Id":{"shape":"PhoneNumberId"},
3488
- "Arn":{"shape":"ARN"},
3489
- "PhoneNumber":{"shape":"PhoneNumber"},
3490
- "PhoneNumberType":{"shape":"PhoneNumberType"},
3491
- "PhoneNumberCountryCode":{"shape":"PhoneNumberCountryCode"}
3492
- }
3493
- },
3494
- "PhoneNumberSummaryList":{
3495
- "type":"list",
3496
- "member":{"shape":"PhoneNumberSummary"}
3497
- },
3498
- "PhoneNumberType":{
3499
- "type":"string",
3500
- "enum":[
3501
- "TOLL_FREE",
3502
- "DID"
3503
- ]
3504
- },
3505
- "PhoneNumberTypes":{
3506
- "type":"list",
3507
- "member":{"shape":"PhoneNumberType"},
3508
- "max":2
3509
- },
3510
- "PhoneType":{
3511
- "type":"string",
3512
- "enum":[
3513
- "SOFT_PHONE",
3514
- "DESK_PHONE"
3515
- ]
3516
- },
3517
- "Prefix":{
3518
- "type":"string",
3519
- "max":128,
3520
- "min":1
3521
- },
3522
- "Priority":{
3523
- "type":"integer",
3524
- "max":99,
3525
- "min":1
3526
- },
3527
- "ProblemDetail":{
3528
- "type":"structure",
3529
- "members":{
3530
- "message":{"shape":"ProblemMessageString"}
3531
- }
3532
- },
3533
- "ProblemMessageString":{
3534
- "type":"string",
3535
- "max":256,
3536
- "min":1
3537
- },
3538
- "Problems":{
3539
- "type":"list",
3540
- "member":{"shape":"ProblemDetail"},
3541
- "max":50,
3542
- "min":1
3543
- },
3544
- "PromptId":{
3545
- "type":"string",
3546
- "max":256,
3547
- "min":1
3548
- },
3549
- "PromptName":{
3550
- "type":"string",
3551
- "max":256,
3552
- "min":1
3553
- },
3554
- "PromptSummary":{
3555
- "type":"structure",
3556
- "members":{
3557
- "Id":{"shape":"PromptId"},
3558
- "Arn":{"shape":"ARN"},
3559
- "Name":{"shape":"PromptName"}
3560
- }
3561
- },
3562
- "PromptSummaryList":{
3563
- "type":"list",
3564
- "member":{"shape":"PromptSummary"}
3565
- },
3566
- "QueueId":{"type":"string"},
3567
- "QueueName":{
3568
- "type":"string",
3569
- "max":256,
3570
- "min":1
3571
- },
3572
- "QueueReference":{
3573
- "type":"structure",
3574
- "members":{
3575
- "Id":{"shape":"QueueId"},
3576
- "Arn":{"shape":"ARN"}
3577
- }
3578
- },
3579
- "QueueSummary":{
3580
- "type":"structure",
3581
- "members":{
3582
- "Id":{"shape":"QueueId"},
3583
- "Arn":{"shape":"ARN"},
3584
- "Name":{"shape":"QueueName"},
3585
- "QueueType":{"shape":"QueueType"}
3586
- }
3587
- },
3588
- "QueueSummaryList":{
3589
- "type":"list",
3590
- "member":{"shape":"QueueSummary"}
3591
- },
3592
- "QueueType":{
3593
- "type":"string",
3594
- "enum":[
3595
- "STANDARD",
3596
- "AGENT"
3597
- ]
3598
- },
3599
- "QueueTypes":{
3600
- "type":"list",
3601
- "member":{"shape":"QueueType"},
3602
- "max":2
3603
- },
3604
- "Queues":{
3605
- "type":"list",
3606
- "member":{"shape":"QueueId"},
3607
- "max":100,
3608
- "min":1
3609
- },
3610
- "ResourceConflictException":{
3611
- "type":"structure",
3612
- "members":{
3613
- "Message":{"shape":"Message"}
3614
- },
3615
- "error":{"httpStatusCode":409},
3616
- "exception":true
3617
- },
3618
- "ResourceInUseException":{
3619
- "type":"structure",
3620
- "members":{
3621
- "Message":{"shape":"Message"},
3622
- "ResourceType":{"shape":"ResourceType"},
3623
- "ResourceId":{"shape":"ARN"}
3624
- },
3625
- "error":{"httpStatusCode":409},
3626
- "exception":true
3627
- },
3628
- "ResourceNotFoundException":{
3629
- "type":"structure",
3630
- "members":{
3631
- "Message":{"shape":"Message"}
3632
- },
3633
- "error":{"httpStatusCode":404},
3634
- "exception":true
3635
- },
3636
- "ResourceType":{
3637
- "type":"string",
3638
- "enum":[
3639
- "CONTACT",
3640
- "CONTACT_FLOW",
3641
- "INSTANCE",
3642
- "PARTICIPANT",
3643
- "HIERARCHY_LEVEL",
3644
- "HIERARCHY_GROUP",
3645
- "USER"
3646
- ]
3647
- },
3648
- "ResumeContactRecordingRequest":{
3649
- "type":"structure",
3650
- "required":[
3651
- "InstanceId",
3652
- "ContactId",
3653
- "InitialContactId"
3654
- ],
3655
- "members":{
3656
- "InstanceId":{"shape":"InstanceId"},
3657
- "ContactId":{"shape":"ContactId"},
3658
- "InitialContactId":{"shape":"ContactId"}
3659
- }
3660
- },
3661
- "ResumeContactRecordingResponse":{
3662
- "type":"structure",
3663
- "members":{
3664
- }
3665
- },
3666
- "RoutingProfile":{
3667
- "type":"structure",
3668
- "members":{
3669
- "InstanceId":{"shape":"InstanceId"},
3670
- "Name":{"shape":"RoutingProfileName"},
3671
- "RoutingProfileArn":{"shape":"ARN"},
3672
- "RoutingProfileId":{"shape":"RoutingProfileId"},
3673
- "Description":{"shape":"RoutingProfileDescription"},
3674
- "MediaConcurrencies":{"shape":"MediaConcurrencies"},
3675
- "DefaultOutboundQueueId":{"shape":"QueueId"},
3676
- "Tags":{"shape":"TagMap"}
3677
- }
3678
- },
3679
- "RoutingProfileDescription":{
3680
- "type":"string",
3681
- "max":250,
3682
- "min":1
3683
- },
3684
- "RoutingProfileId":{"type":"string"},
3685
- "RoutingProfileName":{
3686
- "type":"string",
3687
- "max":127,
3688
- "min":1
3689
- },
3690
- "RoutingProfileQueueConfig":{
3691
- "type":"structure",
3692
- "required":[
3693
- "QueueReference",
3694
- "Priority",
3695
- "Delay"
3696
- ],
3697
- "members":{
3698
- "QueueReference":{"shape":"RoutingProfileQueueReference"},
3699
- "Priority":{
3700
- "shape":"Priority",
3701
- "box":true
3702
- },
3703
- "Delay":{
3704
- "shape":"Delay",
3705
- "box":true
3706
- }
3707
- }
3708
- },
3709
- "RoutingProfileQueueConfigList":{
3710
- "type":"list",
3711
- "member":{"shape":"RoutingProfileQueueConfig"},
3712
- "max":10,
3713
- "min":1
3714
- },
3715
- "RoutingProfileQueueConfigSummary":{
3716
- "type":"structure",
3717
- "required":[
3718
- "QueueId",
3719
- "QueueArn",
3720
- "QueueName",
3721
- "Priority",
3722
- "Delay",
3723
- "Channel"
3724
- ],
3725
- "members":{
3726
- "QueueId":{"shape":"QueueId"},
3727
- "QueueArn":{"shape":"ARN"},
3728
- "QueueName":{"shape":"QueueName"},
3729
- "Priority":{"shape":"Priority"},
3730
- "Delay":{"shape":"Delay"},
3731
- "Channel":{"shape":"Channel"}
3732
- }
3733
- },
3734
- "RoutingProfileQueueConfigSummaryList":{
3735
- "type":"list",
3736
- "member":{"shape":"RoutingProfileQueueConfigSummary"}
3737
- },
3738
- "RoutingProfileQueueReference":{
3739
- "type":"structure",
3740
- "required":[
3741
- "QueueId",
3742
- "Channel"
3743
- ],
3744
- "members":{
3745
- "QueueId":{"shape":"QueueId"},
3746
- "Channel":{"shape":"Channel"}
3747
- }
3748
- },
3749
- "RoutingProfileQueueReferenceList":{
3750
- "type":"list",
3751
- "member":{"shape":"RoutingProfileQueueReference"}
3752
- },
3753
- "RoutingProfileSummary":{
3754
- "type":"structure",
3755
- "members":{
3756
- "Id":{"shape":"RoutingProfileId"},
3757
- "Arn":{"shape":"ARN"},
3758
- "Name":{"shape":"RoutingProfileName"}
3759
- }
3760
- },
3761
- "RoutingProfileSummaryList":{
3762
- "type":"list",
3763
- "member":{"shape":"RoutingProfileSummary"}
3764
- },
3765
- "S3Config":{
3766
- "type":"structure",
3767
- "required":[
3768
- "BucketName",
3769
- "BucketPrefix"
3770
- ],
3771
- "members":{
3772
- "BucketName":{"shape":"BucketName"},
3773
- "BucketPrefix":{"shape":"Prefix"},
3774
- "EncryptionConfig":{"shape":"EncryptionConfig"}
3775
- }
3776
- },
3777
- "SecurityKey":{
3778
- "type":"structure",
3779
- "members":{
3780
- "AssociationId":{"shape":"AssociationId"},
3781
- "Key":{"shape":"PEM"},
3782
- "CreationTime":{"shape":"timestamp"}
3783
- }
3784
- },
3785
- "SecurityKeysList":{
3786
- "type":"list",
3787
- "member":{"shape":"SecurityKey"}
3788
- },
3789
- "SecurityProfileId":{"type":"string"},
3790
- "SecurityProfileIds":{
3791
- "type":"list",
3792
- "member":{"shape":"SecurityProfileId"},
3793
- "max":10,
3794
- "min":1
3795
- },
3796
- "SecurityProfileName":{"type":"string"},
3797
- "SecurityProfileSummary":{
3798
- "type":"structure",
3799
- "members":{
3800
- "Id":{"shape":"SecurityProfileId"},
3801
- "Arn":{"shape":"ARN"},
3802
- "Name":{"shape":"SecurityProfileName"}
3803
- }
3804
- },
3805
- "SecurityProfileSummaryList":{
3806
- "type":"list",
3807
- "member":{"shape":"SecurityProfileSummary"}
3808
- },
3809
- "SecurityToken":{
3810
- "type":"string",
3811
- "sensitive":true
3812
- },
3813
- "ServiceQuotaExceededException":{
3814
- "type":"structure",
3815
- "members":{
3816
- "Message":{"shape":"Message"}
3817
- },
3818
- "error":{"httpStatusCode":402},
3819
- "exception":true
3820
- },
3821
- "StartChatContactRequest":{
3822
- "type":"structure",
3823
- "required":[
3824
- "InstanceId",
3825
- "ContactFlowId",
3826
- "ParticipantDetails"
3827
- ],
3828
- "members":{
3829
- "InstanceId":{"shape":"InstanceId"},
3830
- "ContactFlowId":{"shape":"ContactFlowId"},
3831
- "Attributes":{"shape":"Attributes"},
3832
- "ParticipantDetails":{"shape":"ParticipantDetails"},
3833
- "InitialMessage":{"shape":"ChatMessage"},
3834
- "ClientToken":{
3835
- "shape":"ClientToken",
3836
- "idempotencyToken":true
3837
- }
3838
- }
3839
- },
3840
- "StartChatContactResponse":{
3841
- "type":"structure",
3842
- "members":{
3843
- "ContactId":{"shape":"ContactId"},
3844
- "ParticipantId":{"shape":"ParticipantId"},
3845
- "ParticipantToken":{"shape":"ParticipantToken"}
3846
- }
3847
- },
3848
- "StartContactRecordingRequest":{
3849
- "type":"structure",
3850
- "required":[
3851
- "InstanceId",
3852
- "ContactId",
3853
- "InitialContactId",
3854
- "VoiceRecordingConfiguration"
3855
- ],
3856
- "members":{
3857
- "InstanceId":{"shape":"InstanceId"},
3858
- "ContactId":{"shape":"ContactId"},
3859
- "InitialContactId":{"shape":"ContactId"},
3860
- "VoiceRecordingConfiguration":{"shape":"VoiceRecordingConfiguration"}
3861
- }
3862
- },
3863
- "StartContactRecordingResponse":{
3864
- "type":"structure",
3865
- "members":{
3866
- }
3867
- },
3868
- "StartOutboundVoiceContactRequest":{
3869
- "type":"structure",
3870
- "required":[
3871
- "DestinationPhoneNumber",
3872
- "ContactFlowId",
3873
- "InstanceId"
3874
- ],
3875
- "members":{
3876
- "DestinationPhoneNumber":{"shape":"PhoneNumber"},
3877
- "ContactFlowId":{"shape":"ContactFlowId"},
3878
- "InstanceId":{"shape":"InstanceId"},
3879
- "ClientToken":{
3880
- "shape":"ClientToken",
3881
- "idempotencyToken":true
3882
- },
3883
- "SourcePhoneNumber":{"shape":"PhoneNumber"},
3884
- "QueueId":{"shape":"QueueId"},
3885
- "Attributes":{"shape":"Attributes"}
3886
- }
3887
- },
3888
- "StartOutboundVoiceContactResponse":{
3889
- "type":"structure",
3890
- "members":{
3891
- "ContactId":{"shape":"ContactId"}
3892
- }
3893
- },
3894
- "Statistic":{
3895
- "type":"string",
3896
- "enum":[
3897
- "SUM",
3898
- "MAX",
3899
- "AVG"
3900
- ]
3901
- },
3902
- "StopContactRecordingRequest":{
3903
- "type":"structure",
3904
- "required":[
3905
- "InstanceId",
3906
- "ContactId",
3907
- "InitialContactId"
3908
- ],
3909
- "members":{
3910
- "InstanceId":{"shape":"InstanceId"},
3911
- "ContactId":{"shape":"ContactId"},
3912
- "InitialContactId":{"shape":"ContactId"}
3913
- }
3914
- },
3915
- "StopContactRecordingResponse":{
3916
- "type":"structure",
3917
- "members":{
3918
- }
3919
- },
3920
- "StopContactRequest":{
3921
- "type":"structure",
3922
- "required":[
3923
- "ContactId",
3924
- "InstanceId"
3925
- ],
3926
- "members":{
3927
- "ContactId":{"shape":"ContactId"},
3928
- "InstanceId":{"shape":"InstanceId"}
3929
- }
3930
- },
3931
- "StopContactResponse":{
3932
- "type":"structure",
3933
- "members":{
3934
- }
3935
- },
3936
- "StorageType":{
3937
- "type":"string",
3938
- "enum":[
3939
- "S3",
3940
- "KINESIS_VIDEO_STREAM",
3941
- "KINESIS_STREAM",
3942
- "KINESIS_FIREHOSE"
3943
- ]
3944
- },
3945
- "String":{"type":"string"},
3946
- "SuspendContactRecordingRequest":{
3947
- "type":"structure",
3948
- "required":[
3949
- "InstanceId",
3950
- "ContactId",
3951
- "InitialContactId"
3952
- ],
3953
- "members":{
3954
- "InstanceId":{"shape":"InstanceId"},
3955
- "ContactId":{"shape":"ContactId"},
3956
- "InitialContactId":{"shape":"ContactId"}
3957
- }
3958
- },
3959
- "SuspendContactRecordingResponse":{
3960
- "type":"structure",
3961
- "members":{
3962
- }
3963
- },
3964
- "TagKey":{
3965
- "type":"string",
3966
- "max":128,
3967
- "min":1,
3968
- "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
3969
- },
3970
- "TagKeyList":{
3971
- "type":"list",
3972
- "member":{"shape":"TagKey"},
3973
- "max":200,
3974
- "min":1
3975
- },
3976
- "TagMap":{
3977
- "type":"map",
3978
- "key":{"shape":"TagKey"},
3979
- "value":{"shape":"TagValue"},
3980
- "max":200,
3981
- "min":1
3982
- },
3983
- "TagResourceRequest":{
3984
- "type":"structure",
3985
- "required":[
3986
- "resourceArn",
3987
- "tags"
3988
- ],
3989
- "members":{
3990
- "resourceArn":{
3991
- "shape":"ARN",
3992
- "location":"uri",
3993
- "locationName":"resourceArn"
3994
- },
3995
- "tags":{"shape":"TagMap"}
3996
- }
3997
- },
3998
- "TagValue":{
3999
- "type":"string",
4000
- "max":256
4001
- },
4002
- "Threshold":{
4003
- "type":"structure",
4004
- "members":{
4005
- "Comparison":{"shape":"Comparison"},
4006
- "ThresholdValue":{
4007
- "shape":"ThresholdValue",
4008
- "box":true
4009
- }
4010
- }
4011
- },
4012
- "ThresholdValue":{"type":"double"},
4013
- "ThrottlingException":{
4014
- "type":"structure",
4015
- "members":{
4016
- "Message":{"shape":"Message"}
4017
- },
4018
- "error":{"httpStatusCode":429},
4019
- "exception":true
4020
- },
4021
- "Timestamp":{"type":"timestamp"},
4022
- "Unit":{
4023
- "type":"string",
4024
- "enum":[
4025
- "SECONDS",
4026
- "COUNT",
4027
- "PERCENT"
4028
- ]
4029
- },
4030
- "UntagResourceRequest":{
4031
- "type":"structure",
4032
- "required":[
4033
- "resourceArn",
4034
- "tagKeys"
4035
- ],
4036
- "members":{
4037
- "resourceArn":{
4038
- "shape":"ARN",
4039
- "location":"uri",
4040
- "locationName":"resourceArn"
4041
- },
4042
- "tagKeys":{
4043
- "shape":"TagKeyList",
4044
- "location":"querystring",
4045
- "locationName":"tagKeys"
4046
- }
4047
- }
4048
- },
4049
- "UpdateContactAttributesRequest":{
4050
- "type":"structure",
4051
- "required":[
4052
- "InitialContactId",
4053
- "InstanceId",
4054
- "Attributes"
4055
- ],
4056
- "members":{
4057
- "InitialContactId":{"shape":"ContactId"},
4058
- "InstanceId":{"shape":"InstanceId"},
4059
- "Attributes":{"shape":"Attributes"}
4060
- }
4061
- },
4062
- "UpdateContactAttributesResponse":{
4063
- "type":"structure",
4064
- "members":{
4065
- }
4066
- },
4067
- "UpdateContactFlowContentRequest":{
4068
- "type":"structure",
4069
- "required":[
4070
- "InstanceId",
4071
- "ContactFlowId",
4072
- "Content"
4073
- ],
4074
- "members":{
4075
- "InstanceId":{
4076
- "shape":"InstanceId",
4077
- "location":"uri",
4078
- "locationName":"InstanceId"
4079
- },
4080
- "ContactFlowId":{
4081
- "shape":"ContactFlowId",
4082
- "location":"uri",
4083
- "locationName":"ContactFlowId"
4084
- },
4085
- "Content":{"shape":"ContactFlowContent"}
4086
- }
4087
- },
4088
- "UpdateContactFlowNameRequest":{
4089
- "type":"structure",
4090
- "required":[
4091
- "InstanceId",
4092
- "ContactFlowId"
4093
- ],
4094
- "members":{
4095
- "InstanceId":{
4096
- "shape":"InstanceId",
4097
- "location":"uri",
4098
- "locationName":"InstanceId"
4099
- },
4100
- "ContactFlowId":{
4101
- "shape":"ContactFlowId",
4102
- "location":"uri",
4103
- "locationName":"ContactFlowId"
4104
- },
4105
- "Name":{"shape":"ContactFlowName"},
4106
- "Description":{"shape":"ContactFlowDescription"}
4107
- }
4108
- },
4109
- "UpdateInstanceAttributeRequest":{
4110
- "type":"structure",
4111
- "required":[
4112
- "InstanceId",
4113
- "AttributeType",
4114
- "Value"
4115
- ],
4116
- "members":{
4117
- "InstanceId":{
4118
- "shape":"InstanceId",
4119
- "location":"uri",
4120
- "locationName":"InstanceId"
4121
- },
4122
- "AttributeType":{
4123
- "shape":"InstanceAttributeType",
4124
- "location":"uri",
4125
- "locationName":"AttributeType"
4126
- },
4127
- "Value":{"shape":"InstanceAttributeValue"}
4128
- }
4129
- },
4130
- "UpdateInstanceStorageConfigRequest":{
4131
- "type":"structure",
4132
- "required":[
4133
- "InstanceId",
4134
- "AssociationId",
4135
- "ResourceType",
4136
- "StorageConfig"
4137
- ],
4138
- "members":{
4139
- "InstanceId":{
4140
- "shape":"InstanceId",
4141
- "location":"uri",
4142
- "locationName":"InstanceId"
4143
- },
4144
- "AssociationId":{
4145
- "shape":"AssociationId",
4146
- "location":"uri",
4147
- "locationName":"AssociationId"
4148
- },
4149
- "ResourceType":{
4150
- "shape":"InstanceStorageResourceType",
4151
- "location":"querystring",
4152
- "locationName":"resourceType"
4153
- },
4154
- "StorageConfig":{"shape":"InstanceStorageConfig"}
4155
- }
4156
- },
4157
- "UpdateRoutingProfileConcurrencyRequest":{
4158
- "type":"structure",
4159
- "required":[
4160
- "InstanceId",
4161
- "RoutingProfileId",
4162
- "MediaConcurrencies"
4163
- ],
4164
- "members":{
4165
- "InstanceId":{
4166
- "shape":"InstanceId",
4167
- "location":"uri",
4168
- "locationName":"InstanceId"
4169
- },
4170
- "RoutingProfileId":{
4171
- "shape":"RoutingProfileId",
4172
- "location":"uri",
4173
- "locationName":"RoutingProfileId"
4174
- },
4175
- "MediaConcurrencies":{"shape":"MediaConcurrencies"}
4176
- }
4177
- },
4178
- "UpdateRoutingProfileDefaultOutboundQueueRequest":{
4179
- "type":"structure",
4180
- "required":[
4181
- "InstanceId",
4182
- "RoutingProfileId",
4183
- "DefaultOutboundQueueId"
4184
- ],
4185
- "members":{
4186
- "InstanceId":{
4187
- "shape":"InstanceId",
4188
- "location":"uri",
4189
- "locationName":"InstanceId"
4190
- },
4191
- "RoutingProfileId":{
4192
- "shape":"RoutingProfileId",
4193
- "location":"uri",
4194
- "locationName":"RoutingProfileId"
4195
- },
4196
- "DefaultOutboundQueueId":{"shape":"QueueId"}
4197
- }
4198
- },
4199
- "UpdateRoutingProfileNameRequest":{
4200
- "type":"structure",
4201
- "required":[
4202
- "InstanceId",
4203
- "RoutingProfileId"
4204
- ],
4205
- "members":{
4206
- "InstanceId":{
4207
- "shape":"InstanceId",
4208
- "location":"uri",
4209
- "locationName":"InstanceId"
4210
- },
4211
- "RoutingProfileId":{
4212
- "shape":"RoutingProfileId",
4213
- "location":"uri",
4214
- "locationName":"RoutingProfileId"
4215
- },
4216
- "Name":{"shape":"RoutingProfileName"},
4217
- "Description":{"shape":"RoutingProfileDescription"}
4218
- }
4219
- },
4220
- "UpdateRoutingProfileQueuesRequest":{
4221
- "type":"structure",
4222
- "required":[
4223
- "InstanceId",
4224
- "RoutingProfileId",
4225
- "QueueConfigs"
4226
- ],
4227
- "members":{
4228
- "InstanceId":{
4229
- "shape":"InstanceId",
4230
- "location":"uri",
4231
- "locationName":"InstanceId"
4232
- },
4233
- "RoutingProfileId":{
4234
- "shape":"RoutingProfileId",
4235
- "location":"uri",
4236
- "locationName":"RoutingProfileId"
4237
- },
4238
- "QueueConfigs":{"shape":"RoutingProfileQueueConfigList"}
4239
- }
4240
- },
4241
- "UpdateUserHierarchyGroupNameRequest":{
4242
- "type":"structure",
4243
- "required":[
4244
- "Name",
4245
- "HierarchyGroupId",
4246
- "InstanceId"
4247
- ],
4248
- "members":{
4249
- "Name":{"shape":"HierarchyGroupName"},
4250
- "HierarchyGroupId":{
4251
- "shape":"HierarchyGroupId",
4252
- "location":"uri",
4253
- "locationName":"HierarchyGroupId"
4254
- },
4255
- "InstanceId":{
4256
- "shape":"InstanceId",
4257
- "location":"uri",
4258
- "locationName":"InstanceId"
4259
- }
4260
- }
4261
- },
4262
- "UpdateUserHierarchyRequest":{
4263
- "type":"structure",
4264
- "required":[
4265
- "UserId",
4266
- "InstanceId"
4267
- ],
4268
- "members":{
4269
- "HierarchyGroupId":{"shape":"HierarchyGroupId"},
4270
- "UserId":{
4271
- "shape":"UserId",
4272
- "location":"uri",
4273
- "locationName":"UserId"
4274
- },
4275
- "InstanceId":{
4276
- "shape":"InstanceId",
4277
- "location":"uri",
4278
- "locationName":"InstanceId"
4279
- }
4280
- }
4281
- },
4282
- "UpdateUserHierarchyStructureRequest":{
4283
- "type":"structure",
4284
- "required":[
4285
- "HierarchyStructure",
4286
- "InstanceId"
4287
- ],
4288
- "members":{
4289
- "HierarchyStructure":{"shape":"HierarchyStructureUpdate"},
4290
- "InstanceId":{
4291
- "shape":"InstanceId",
4292
- "location":"uri",
4293
- "locationName":"InstanceId"
4294
- }
4295
- }
4296
- },
4297
- "UpdateUserIdentityInfoRequest":{
4298
- "type":"structure",
4299
- "required":[
4300
- "IdentityInfo",
4301
- "UserId",
4302
- "InstanceId"
4303
- ],
4304
- "members":{
4305
- "IdentityInfo":{"shape":"UserIdentityInfo"},
4306
- "UserId":{
4307
- "shape":"UserId",
4308
- "location":"uri",
4309
- "locationName":"UserId"
4310
- },
4311
- "InstanceId":{
4312
- "shape":"InstanceId",
4313
- "location":"uri",
4314
- "locationName":"InstanceId"
4315
- }
4316
- }
4317
- },
4318
- "UpdateUserPhoneConfigRequest":{
4319
- "type":"structure",
4320
- "required":[
4321
- "PhoneConfig",
4322
- "UserId",
4323
- "InstanceId"
4324
- ],
4325
- "members":{
4326
- "PhoneConfig":{"shape":"UserPhoneConfig"},
4327
- "UserId":{
4328
- "shape":"UserId",
4329
- "location":"uri",
4330
- "locationName":"UserId"
4331
- },
4332
- "InstanceId":{
4333
- "shape":"InstanceId",
4334
- "location":"uri",
4335
- "locationName":"InstanceId"
4336
- }
4337
- }
4338
- },
4339
- "UpdateUserRoutingProfileRequest":{
4340
- "type":"structure",
4341
- "required":[
4342
- "RoutingProfileId",
4343
- "UserId",
4344
- "InstanceId"
4345
- ],
4346
- "members":{
4347
- "RoutingProfileId":{"shape":"RoutingProfileId"},
4348
- "UserId":{
4349
- "shape":"UserId",
4350
- "location":"uri",
4351
- "locationName":"UserId"
4352
- },
4353
- "InstanceId":{
4354
- "shape":"InstanceId",
4355
- "location":"uri",
4356
- "locationName":"InstanceId"
4357
- }
4358
- }
4359
- },
4360
- "UpdateUserSecurityProfilesRequest":{
4361
- "type":"structure",
4362
- "required":[
4363
- "SecurityProfileIds",
4364
- "UserId",
4365
- "InstanceId"
4366
- ],
4367
- "members":{
4368
- "SecurityProfileIds":{"shape":"SecurityProfileIds"},
4369
- "UserId":{
4370
- "shape":"UserId",
4371
- "location":"uri",
4372
- "locationName":"UserId"
4373
- },
4374
- "InstanceId":{
4375
- "shape":"InstanceId",
4376
- "location":"uri",
4377
- "locationName":"InstanceId"
4378
- }
4379
- }
4380
- },
4381
- "User":{
4382
- "type":"structure",
4383
- "members":{
4384
- "Id":{"shape":"UserId"},
4385
- "Arn":{"shape":"ARN"},
4386
- "Username":{"shape":"AgentUsername"},
4387
- "IdentityInfo":{"shape":"UserIdentityInfo"},
4388
- "PhoneConfig":{"shape":"UserPhoneConfig"},
4389
- "DirectoryUserId":{"shape":"DirectoryUserId"},
4390
- "SecurityProfileIds":{"shape":"SecurityProfileIds"},
4391
- "RoutingProfileId":{"shape":"RoutingProfileId"},
4392
- "HierarchyGroupId":{"shape":"HierarchyGroupId"},
4393
- "Tags":{"shape":"TagMap"}
4394
- }
4395
- },
4396
- "UserId":{"type":"string"},
4397
- "UserIdentityInfo":{
4398
- "type":"structure",
4399
- "members":{
4400
- "FirstName":{"shape":"AgentFirstName"},
4401
- "LastName":{"shape":"AgentLastName"},
4402
- "Email":{"shape":"Email"}
4403
- }
4404
- },
4405
- "UserNotFoundException":{
4406
- "type":"structure",
4407
- "members":{
4408
- "Message":{"shape":"Message"}
4409
- },
4410
- "error":{"httpStatusCode":404},
4411
- "exception":true
4412
- },
4413
- "UserPhoneConfig":{
4414
- "type":"structure",
4415
- "required":["PhoneType"],
4416
- "members":{
4417
- "PhoneType":{"shape":"PhoneType"},
4418
- "AutoAccept":{"shape":"AutoAccept"},
4419
- "AfterContactWorkTimeLimit":{"shape":"AfterContactWorkTimeLimit"},
4420
- "DeskPhoneNumber":{"shape":"PhoneNumber"}
4421
- }
4422
- },
4423
- "UserSummary":{
4424
- "type":"structure",
4425
- "members":{
4426
- "Id":{"shape":"UserId"},
4427
- "Arn":{"shape":"ARN"},
4428
- "Username":{"shape":"AgentUsername"}
4429
- }
4430
- },
4431
- "UserSummaryList":{
4432
- "type":"list",
4433
- "member":{"shape":"UserSummary"}
4434
- },
4435
- "Value":{"type":"double"},
4436
- "VoiceRecordingConfiguration":{
4437
- "type":"structure",
4438
- "members":{
4439
- "VoiceRecordingTrack":{"shape":"VoiceRecordingTrack"}
4440
- }
4441
- },
4442
- "VoiceRecordingTrack":{
4443
- "type":"string",
4444
- "enum":[
4445
- "FROM_AGENT",
4446
- "TO_AGENT",
4447
- "ALL"
4448
- ]
4449
- },
4450
- "timestamp":{"type":"timestamp"}
4451
- }
4452
- }