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,10 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListCertificates": {
4
- "input_token": "NextToken",
5
- "limit_key": "MaxItems",
6
- "output_token": "NextToken",
7
- "result_key": "CertificateSummaryList"
8
- }
9
- }
10
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "ListCertificates",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "GetCertificate",
12
- "input": {
13
- "CertificateArn": "arn:aws:acm:region:123456789012:certificate\/12345678-1234-1234-1234-123456789012"
14
- },
15
- "errorExpectedFromService": true
16
- }
17
- ]
18
- }
@@ -1,35 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "CertificateValidated": {
5
- "delay": 60,
6
- "maxAttempts": 40,
7
- "operation": "DescribeCertificate",
8
- "acceptors": [
9
- {
10
- "matcher": "pathAll",
11
- "expected": "SUCCESS",
12
- "argument": "Certificate.DomainValidationOptions[].ValidationStatus",
13
- "state": "success"
14
- },
15
- {
16
- "matcher": "pathAny",
17
- "expected": "PENDING_VALIDATION",
18
- "argument": "Certificate.DomainValidationOptions[].ValidationStatus",
19
- "state": "retry"
20
- },
21
- {
22
- "matcher": "path",
23
- "expected": "FAILED",
24
- "argument": "Certificate.Status",
25
- "state": "failure"
26
- },
27
- {
28
- "matcher": "error",
29
- "expected": "ResourceNotFoundException",
30
- "state": "failure"
31
- }
32
- ]
33
- }
34
- }
35
- }
@@ -1,4146 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2017-11-09",
5
- "endpointPrefix":"a4b",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Alexa For Business",
9
- "serviceId":"Alexa For Business",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AlexaForBusiness",
12
- "uid":"alexaforbusiness-2017-11-09"
13
- },
14
- "operations":{
15
- "ApproveSkill":{
16
- "name":"ApproveSkill",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"ApproveSkillRequest"},
22
- "output":{"shape":"ApproveSkillResponse"},
23
- "errors":[
24
- {"shape":"LimitExceededException"},
25
- {"shape":"NotFoundException"},
26
- {"shape":"ConcurrentModificationException"}
27
- ]
28
- },
29
- "AssociateContactWithAddressBook":{
30
- "name":"AssociateContactWithAddressBook",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"AssociateContactWithAddressBookRequest"},
36
- "output":{"shape":"AssociateContactWithAddressBookResponse"},
37
- "errors":[
38
- {"shape":"LimitExceededException"}
39
- ]
40
- },
41
- "AssociateDeviceWithNetworkProfile":{
42
- "name":"AssociateDeviceWithNetworkProfile",
43
- "http":{
44
- "method":"POST",
45
- "requestUri":"/"
46
- },
47
- "input":{"shape":"AssociateDeviceWithNetworkProfileRequest"},
48
- "output":{"shape":"AssociateDeviceWithNetworkProfileResponse"},
49
- "errors":[
50
- {"shape":"NotFoundException"},
51
- {"shape":"ConcurrentModificationException"},
52
- {"shape":"DeviceNotRegisteredException"}
53
- ]
54
- },
55
- "AssociateDeviceWithRoom":{
56
- "name":"AssociateDeviceWithRoom",
57
- "http":{
58
- "method":"POST",
59
- "requestUri":"/"
60
- },
61
- "input":{"shape":"AssociateDeviceWithRoomRequest"},
62
- "output":{"shape":"AssociateDeviceWithRoomResponse"},
63
- "errors":[
64
- {"shape":"LimitExceededException"},
65
- {"shape":"ConcurrentModificationException"},
66
- {"shape":"DeviceNotRegisteredException"}
67
- ]
68
- },
69
- "AssociateSkillGroupWithRoom":{
70
- "name":"AssociateSkillGroupWithRoom",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"AssociateSkillGroupWithRoomRequest"},
76
- "output":{"shape":"AssociateSkillGroupWithRoomResponse"},
77
- "errors":[
78
- {"shape":"ConcurrentModificationException"}
79
- ]
80
- },
81
- "AssociateSkillWithSkillGroup":{
82
- "name":"AssociateSkillWithSkillGroup",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/"
86
- },
87
- "input":{"shape":"AssociateSkillWithSkillGroupRequest"},
88
- "output":{"shape":"AssociateSkillWithSkillGroupResponse"},
89
- "errors":[
90
- {"shape":"ConcurrentModificationException"},
91
- {"shape":"NotFoundException"},
92
- {"shape":"SkillNotLinkedException"}
93
- ]
94
- },
95
- "AssociateSkillWithUsers":{
96
- "name":"AssociateSkillWithUsers",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"AssociateSkillWithUsersRequest"},
102
- "output":{"shape":"AssociateSkillWithUsersResponse"},
103
- "errors":[
104
- {"shape":"ConcurrentModificationException"},
105
- {"shape":"NotFoundException"}
106
- ]
107
- },
108
- "CreateAddressBook":{
109
- "name":"CreateAddressBook",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/"
113
- },
114
- "input":{"shape":"CreateAddressBookRequest"},
115
- "output":{"shape":"CreateAddressBookResponse"},
116
- "errors":[
117
- {"shape":"AlreadyExistsException"},
118
- {"shape":"LimitExceededException"}
119
- ]
120
- },
121
- "CreateBusinessReportSchedule":{
122
- "name":"CreateBusinessReportSchedule",
123
- "http":{
124
- "method":"POST",
125
- "requestUri":"/"
126
- },
127
- "input":{"shape":"CreateBusinessReportScheduleRequest"},
128
- "output":{"shape":"CreateBusinessReportScheduleResponse"},
129
- "errors":[
130
- {"shape":"AlreadyExistsException"}
131
- ]
132
- },
133
- "CreateConferenceProvider":{
134
- "name":"CreateConferenceProvider",
135
- "http":{
136
- "method":"POST",
137
- "requestUri":"/"
138
- },
139
- "input":{"shape":"CreateConferenceProviderRequest"},
140
- "output":{"shape":"CreateConferenceProviderResponse"},
141
- "errors":[
142
- {"shape":"AlreadyExistsException"}
143
- ]
144
- },
145
- "CreateContact":{
146
- "name":"CreateContact",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/"
150
- },
151
- "input":{"shape":"CreateContactRequest"},
152
- "output":{"shape":"CreateContactResponse"},
153
- "errors":[
154
- {"shape":"AlreadyExistsException"},
155
- {"shape":"LimitExceededException"}
156
- ]
157
- },
158
- "CreateGatewayGroup":{
159
- "name":"CreateGatewayGroup",
160
- "http":{
161
- "method":"POST",
162
- "requestUri":"/"
163
- },
164
- "input":{"shape":"CreateGatewayGroupRequest"},
165
- "output":{"shape":"CreateGatewayGroupResponse"},
166
- "errors":[
167
- {"shape":"AlreadyExistsException"},
168
- {"shape":"LimitExceededException"}
169
- ]
170
- },
171
- "CreateNetworkProfile":{
172
- "name":"CreateNetworkProfile",
173
- "http":{
174
- "method":"POST",
175
- "requestUri":"/"
176
- },
177
- "input":{"shape":"CreateNetworkProfileRequest"},
178
- "output":{"shape":"CreateNetworkProfileResponse"},
179
- "errors":[
180
- {"shape":"AlreadyExistsException"},
181
- {"shape":"LimitExceededException"},
182
- {"shape":"ConcurrentModificationException"},
183
- {"shape":"InvalidCertificateAuthorityException"},
184
- {"shape":"InvalidServiceLinkedRoleStateException"}
185
- ]
186
- },
187
- "CreateProfile":{
188
- "name":"CreateProfile",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"CreateProfileRequest"},
194
- "output":{"shape":"CreateProfileResponse"},
195
- "errors":[
196
- {"shape":"LimitExceededException"},
197
- {"shape":"AlreadyExistsException"},
198
- {"shape":"ConcurrentModificationException"}
199
- ]
200
- },
201
- "CreateRoom":{
202
- "name":"CreateRoom",
203
- "http":{
204
- "method":"POST",
205
- "requestUri":"/"
206
- },
207
- "input":{"shape":"CreateRoomRequest"},
208
- "output":{"shape":"CreateRoomResponse"},
209
- "errors":[
210
- {"shape":"AlreadyExistsException"},
211
- {"shape":"LimitExceededException"}
212
- ]
213
- },
214
- "CreateSkillGroup":{
215
- "name":"CreateSkillGroup",
216
- "http":{
217
- "method":"POST",
218
- "requestUri":"/"
219
- },
220
- "input":{"shape":"CreateSkillGroupRequest"},
221
- "output":{"shape":"CreateSkillGroupResponse"},
222
- "errors":[
223
- {"shape":"AlreadyExistsException"},
224
- {"shape":"LimitExceededException"},
225
- {"shape":"ConcurrentModificationException"}
226
- ]
227
- },
228
- "CreateUser":{
229
- "name":"CreateUser",
230
- "http":{
231
- "method":"POST",
232
- "requestUri":"/"
233
- },
234
- "input":{"shape":"CreateUserRequest"},
235
- "output":{"shape":"CreateUserResponse"},
236
- "errors":[
237
- {"shape":"ResourceInUseException"},
238
- {"shape":"LimitExceededException"},
239
- {"shape":"ConcurrentModificationException"}
240
- ]
241
- },
242
- "DeleteAddressBook":{
243
- "name":"DeleteAddressBook",
244
- "http":{
245
- "method":"POST",
246
- "requestUri":"/"
247
- },
248
- "input":{"shape":"DeleteAddressBookRequest"},
249
- "output":{"shape":"DeleteAddressBookResponse"},
250
- "errors":[
251
- {"shape":"NotFoundException"},
252
- {"shape":"ConcurrentModificationException"}
253
- ]
254
- },
255
- "DeleteBusinessReportSchedule":{
256
- "name":"DeleteBusinessReportSchedule",
257
- "http":{
258
- "method":"POST",
259
- "requestUri":"/"
260
- },
261
- "input":{"shape":"DeleteBusinessReportScheduleRequest"},
262
- "output":{"shape":"DeleteBusinessReportScheduleResponse"},
263
- "errors":[
264
- {"shape":"NotFoundException"},
265
- {"shape":"ConcurrentModificationException"}
266
- ]
267
- },
268
- "DeleteConferenceProvider":{
269
- "name":"DeleteConferenceProvider",
270
- "http":{
271
- "method":"POST",
272
- "requestUri":"/"
273
- },
274
- "input":{"shape":"DeleteConferenceProviderRequest"},
275
- "output":{"shape":"DeleteConferenceProviderResponse"},
276
- "errors":[
277
- {"shape":"NotFoundException"}
278
- ]
279
- },
280
- "DeleteContact":{
281
- "name":"DeleteContact",
282
- "http":{
283
- "method":"POST",
284
- "requestUri":"/"
285
- },
286
- "input":{"shape":"DeleteContactRequest"},
287
- "output":{"shape":"DeleteContactResponse"},
288
- "errors":[
289
- {"shape":"NotFoundException"},
290
- {"shape":"ConcurrentModificationException"}
291
- ]
292
- },
293
- "DeleteDevice":{
294
- "name":"DeleteDevice",
295
- "http":{
296
- "method":"POST",
297
- "requestUri":"/"
298
- },
299
- "input":{"shape":"DeleteDeviceRequest"},
300
- "output":{"shape":"DeleteDeviceResponse"},
301
- "errors":[
302
- {"shape":"NotFoundException"},
303
- {"shape":"ConcurrentModificationException"},
304
- {"shape":"InvalidCertificateAuthorityException"}
305
- ]
306
- },
307
- "DeleteDeviceUsageData":{
308
- "name":"DeleteDeviceUsageData",
309
- "http":{
310
- "method":"POST",
311
- "requestUri":"/"
312
- },
313
- "input":{"shape":"DeleteDeviceUsageDataRequest"},
314
- "output":{"shape":"DeleteDeviceUsageDataResponse"},
315
- "errors":[
316
- {"shape":"NotFoundException"},
317
- {"shape":"DeviceNotRegisteredException"},
318
- {"shape":"LimitExceededException"}
319
- ]
320
- },
321
- "DeleteGatewayGroup":{
322
- "name":"DeleteGatewayGroup",
323
- "http":{
324
- "method":"POST",
325
- "requestUri":"/"
326
- },
327
- "input":{"shape":"DeleteGatewayGroupRequest"},
328
- "output":{"shape":"DeleteGatewayGroupResponse"},
329
- "errors":[
330
- {"shape":"ResourceAssociatedException"}
331
- ]
332
- },
333
- "DeleteNetworkProfile":{
334
- "name":"DeleteNetworkProfile",
335
- "http":{
336
- "method":"POST",
337
- "requestUri":"/"
338
- },
339
- "input":{"shape":"DeleteNetworkProfileRequest"},
340
- "output":{"shape":"DeleteNetworkProfileResponse"},
341
- "errors":[
342
- {"shape":"ResourceInUseException"},
343
- {"shape":"ConcurrentModificationException"},
344
- {"shape":"NotFoundException"}
345
- ]
346
- },
347
- "DeleteProfile":{
348
- "name":"DeleteProfile",
349
- "http":{
350
- "method":"POST",
351
- "requestUri":"/"
352
- },
353
- "input":{"shape":"DeleteProfileRequest"},
354
- "output":{"shape":"DeleteProfileResponse"},
355
- "errors":[
356
- {"shape":"NotFoundException"},
357
- {"shape":"ConcurrentModificationException"}
358
- ]
359
- },
360
- "DeleteRoom":{
361
- "name":"DeleteRoom",
362
- "http":{
363
- "method":"POST",
364
- "requestUri":"/"
365
- },
366
- "input":{"shape":"DeleteRoomRequest"},
367
- "output":{"shape":"DeleteRoomResponse"},
368
- "errors":[
369
- {"shape":"NotFoundException"},
370
- {"shape":"ConcurrentModificationException"}
371
- ]
372
- },
373
- "DeleteRoomSkillParameter":{
374
- "name":"DeleteRoomSkillParameter",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/"
378
- },
379
- "input":{"shape":"DeleteRoomSkillParameterRequest"},
380
- "output":{"shape":"DeleteRoomSkillParameterResponse"},
381
- "errors":[
382
- {"shape":"ConcurrentModificationException"}
383
- ]
384
- },
385
- "DeleteSkillAuthorization":{
386
- "name":"DeleteSkillAuthorization",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/"
390
- },
391
- "input":{"shape":"DeleteSkillAuthorizationRequest"},
392
- "output":{"shape":"DeleteSkillAuthorizationResponse"},
393
- "errors":[
394
- {"shape":"NotFoundException"},
395
- {"shape":"ConcurrentModificationException"}
396
- ]
397
- },
398
- "DeleteSkillGroup":{
399
- "name":"DeleteSkillGroup",
400
- "http":{
401
- "method":"POST",
402
- "requestUri":"/"
403
- },
404
- "input":{"shape":"DeleteSkillGroupRequest"},
405
- "output":{"shape":"DeleteSkillGroupResponse"},
406
- "errors":[
407
- {"shape":"NotFoundException"},
408
- {"shape":"ConcurrentModificationException"}
409
- ]
410
- },
411
- "DeleteUser":{
412
- "name":"DeleteUser",
413
- "http":{
414
- "method":"POST",
415
- "requestUri":"/"
416
- },
417
- "input":{"shape":"DeleteUserRequest"},
418
- "output":{"shape":"DeleteUserResponse"},
419
- "errors":[
420
- {"shape":"NotFoundException"},
421
- {"shape":"ConcurrentModificationException"}
422
- ]
423
- },
424
- "DisassociateContactFromAddressBook":{
425
- "name":"DisassociateContactFromAddressBook",
426
- "http":{
427
- "method":"POST",
428
- "requestUri":"/"
429
- },
430
- "input":{"shape":"DisassociateContactFromAddressBookRequest"},
431
- "output":{"shape":"DisassociateContactFromAddressBookResponse"}
432
- },
433
- "DisassociateDeviceFromRoom":{
434
- "name":"DisassociateDeviceFromRoom",
435
- "http":{
436
- "method":"POST",
437
- "requestUri":"/"
438
- },
439
- "input":{"shape":"DisassociateDeviceFromRoomRequest"},
440
- "output":{"shape":"DisassociateDeviceFromRoomResponse"},
441
- "errors":[
442
- {"shape":"ConcurrentModificationException"},
443
- {"shape":"DeviceNotRegisteredException"}
444
- ]
445
- },
446
- "DisassociateSkillFromSkillGroup":{
447
- "name":"DisassociateSkillFromSkillGroup",
448
- "http":{
449
- "method":"POST",
450
- "requestUri":"/"
451
- },
452
- "input":{"shape":"DisassociateSkillFromSkillGroupRequest"},
453
- "output":{"shape":"DisassociateSkillFromSkillGroupResponse"},
454
- "errors":[
455
- {"shape":"ConcurrentModificationException"},
456
- {"shape":"NotFoundException"}
457
- ]
458
- },
459
- "DisassociateSkillFromUsers":{
460
- "name":"DisassociateSkillFromUsers",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DisassociateSkillFromUsersRequest"},
466
- "output":{"shape":"DisassociateSkillFromUsersResponse"},
467
- "errors":[
468
- {"shape":"ConcurrentModificationException"},
469
- {"shape":"NotFoundException"}
470
- ]
471
- },
472
- "DisassociateSkillGroupFromRoom":{
473
- "name":"DisassociateSkillGroupFromRoom",
474
- "http":{
475
- "method":"POST",
476
- "requestUri":"/"
477
- },
478
- "input":{"shape":"DisassociateSkillGroupFromRoomRequest"},
479
- "output":{"shape":"DisassociateSkillGroupFromRoomResponse"},
480
- "errors":[
481
- {"shape":"ConcurrentModificationException"}
482
- ]
483
- },
484
- "ForgetSmartHomeAppliances":{
485
- "name":"ForgetSmartHomeAppliances",
486
- "http":{
487
- "method":"POST",
488
- "requestUri":"/"
489
- },
490
- "input":{"shape":"ForgetSmartHomeAppliancesRequest"},
491
- "output":{"shape":"ForgetSmartHomeAppliancesResponse"},
492
- "errors":[
493
- {"shape":"NotFoundException"}
494
- ]
495
- },
496
- "GetAddressBook":{
497
- "name":"GetAddressBook",
498
- "http":{
499
- "method":"POST",
500
- "requestUri":"/"
501
- },
502
- "input":{"shape":"GetAddressBookRequest"},
503
- "output":{"shape":"GetAddressBookResponse"},
504
- "errors":[
505
- {"shape":"NotFoundException"}
506
- ]
507
- },
508
- "GetConferencePreference":{
509
- "name":"GetConferencePreference",
510
- "http":{
511
- "method":"POST",
512
- "requestUri":"/"
513
- },
514
- "input":{"shape":"GetConferencePreferenceRequest"},
515
- "output":{"shape":"GetConferencePreferenceResponse"},
516
- "errors":[
517
- {"shape":"NotFoundException"}
518
- ]
519
- },
520
- "GetConferenceProvider":{
521
- "name":"GetConferenceProvider",
522
- "http":{
523
- "method":"POST",
524
- "requestUri":"/"
525
- },
526
- "input":{"shape":"GetConferenceProviderRequest"},
527
- "output":{"shape":"GetConferenceProviderResponse"},
528
- "errors":[
529
- {"shape":"NotFoundException"}
530
- ]
531
- },
532
- "GetContact":{
533
- "name":"GetContact",
534
- "http":{
535
- "method":"POST",
536
- "requestUri":"/"
537
- },
538
- "input":{"shape":"GetContactRequest"},
539
- "output":{"shape":"GetContactResponse"},
540
- "errors":[
541
- {"shape":"NotFoundException"}
542
- ]
543
- },
544
- "GetDevice":{
545
- "name":"GetDevice",
546
- "http":{
547
- "method":"POST",
548
- "requestUri":"/"
549
- },
550
- "input":{"shape":"GetDeviceRequest"},
551
- "output":{"shape":"GetDeviceResponse"},
552
- "errors":[
553
- {"shape":"NotFoundException"}
554
- ]
555
- },
556
- "GetGateway":{
557
- "name":"GetGateway",
558
- "http":{
559
- "method":"POST",
560
- "requestUri":"/"
561
- },
562
- "input":{"shape":"GetGatewayRequest"},
563
- "output":{"shape":"GetGatewayResponse"},
564
- "errors":[
565
- {"shape":"NotFoundException"}
566
- ]
567
- },
568
- "GetGatewayGroup":{
569
- "name":"GetGatewayGroup",
570
- "http":{
571
- "method":"POST",
572
- "requestUri":"/"
573
- },
574
- "input":{"shape":"GetGatewayGroupRequest"},
575
- "output":{"shape":"GetGatewayGroupResponse"},
576
- "errors":[
577
- {"shape":"NotFoundException"}
578
- ]
579
- },
580
- "GetInvitationConfiguration":{
581
- "name":"GetInvitationConfiguration",
582
- "http":{
583
- "method":"POST",
584
- "requestUri":"/"
585
- },
586
- "input":{"shape":"GetInvitationConfigurationRequest"},
587
- "output":{"shape":"GetInvitationConfigurationResponse"},
588
- "errors":[
589
- {"shape":"NotFoundException"}
590
- ]
591
- },
592
- "GetNetworkProfile":{
593
- "name":"GetNetworkProfile",
594
- "http":{
595
- "method":"POST",
596
- "requestUri":"/"
597
- },
598
- "input":{"shape":"GetNetworkProfileRequest"},
599
- "output":{"shape":"GetNetworkProfileResponse"},
600
- "errors":[
601
- {"shape":"NotFoundException"},
602
- {"shape":"InvalidSecretsManagerResourceException"}
603
- ]
604
- },
605
- "GetProfile":{
606
- "name":"GetProfile",
607
- "http":{
608
- "method":"POST",
609
- "requestUri":"/"
610
- },
611
- "input":{"shape":"GetProfileRequest"},
612
- "output":{"shape":"GetProfileResponse"},
613
- "errors":[
614
- {"shape":"NotFoundException"}
615
- ]
616
- },
617
- "GetRoom":{
618
- "name":"GetRoom",
619
- "http":{
620
- "method":"POST",
621
- "requestUri":"/"
622
- },
623
- "input":{"shape":"GetRoomRequest"},
624
- "output":{"shape":"GetRoomResponse"},
625
- "errors":[
626
- {"shape":"NotFoundException"}
627
- ]
628
- },
629
- "GetRoomSkillParameter":{
630
- "name":"GetRoomSkillParameter",
631
- "http":{
632
- "method":"POST",
633
- "requestUri":"/"
634
- },
635
- "input":{"shape":"GetRoomSkillParameterRequest"},
636
- "output":{"shape":"GetRoomSkillParameterResponse"},
637
- "errors":[
638
- {"shape":"NotFoundException"}
639
- ]
640
- },
641
- "GetSkillGroup":{
642
- "name":"GetSkillGroup",
643
- "http":{
644
- "method":"POST",
645
- "requestUri":"/"
646
- },
647
- "input":{"shape":"GetSkillGroupRequest"},
648
- "output":{"shape":"GetSkillGroupResponse"},
649
- "errors":[
650
- {"shape":"NotFoundException"}
651
- ]
652
- },
653
- "ListBusinessReportSchedules":{
654
- "name":"ListBusinessReportSchedules",
655
- "http":{
656
- "method":"POST",
657
- "requestUri":"/"
658
- },
659
- "input":{"shape":"ListBusinessReportSchedulesRequest"},
660
- "output":{"shape":"ListBusinessReportSchedulesResponse"}
661
- },
662
- "ListConferenceProviders":{
663
- "name":"ListConferenceProviders",
664
- "http":{
665
- "method":"POST",
666
- "requestUri":"/"
667
- },
668
- "input":{"shape":"ListConferenceProvidersRequest"},
669
- "output":{"shape":"ListConferenceProvidersResponse"}
670
- },
671
- "ListDeviceEvents":{
672
- "name":"ListDeviceEvents",
673
- "http":{
674
- "method":"POST",
675
- "requestUri":"/"
676
- },
677
- "input":{"shape":"ListDeviceEventsRequest"},
678
- "output":{"shape":"ListDeviceEventsResponse"},
679
- "errors":[
680
- {"shape":"NotFoundException"}
681
- ]
682
- },
683
- "ListGatewayGroups":{
684
- "name":"ListGatewayGroups",
685
- "http":{
686
- "method":"POST",
687
- "requestUri":"/"
688
- },
689
- "input":{"shape":"ListGatewayGroupsRequest"},
690
- "output":{"shape":"ListGatewayGroupsResponse"}
691
- },
692
- "ListGateways":{
693
- "name":"ListGateways",
694
- "http":{
695
- "method":"POST",
696
- "requestUri":"/"
697
- },
698
- "input":{"shape":"ListGatewaysRequest"},
699
- "output":{"shape":"ListGatewaysResponse"}
700
- },
701
- "ListSkills":{
702
- "name":"ListSkills",
703
- "http":{
704
- "method":"POST",
705
- "requestUri":"/"
706
- },
707
- "input":{"shape":"ListSkillsRequest"},
708
- "output":{"shape":"ListSkillsResponse"}
709
- },
710
- "ListSkillsStoreCategories":{
711
- "name":"ListSkillsStoreCategories",
712
- "http":{
713
- "method":"POST",
714
- "requestUri":"/"
715
- },
716
- "input":{"shape":"ListSkillsStoreCategoriesRequest"},
717
- "output":{"shape":"ListSkillsStoreCategoriesResponse"}
718
- },
719
- "ListSkillsStoreSkillsByCategory":{
720
- "name":"ListSkillsStoreSkillsByCategory",
721
- "http":{
722
- "method":"POST",
723
- "requestUri":"/"
724
- },
725
- "input":{"shape":"ListSkillsStoreSkillsByCategoryRequest"},
726
- "output":{"shape":"ListSkillsStoreSkillsByCategoryResponse"}
727
- },
728
- "ListSmartHomeAppliances":{
729
- "name":"ListSmartHomeAppliances",
730
- "http":{
731
- "method":"POST",
732
- "requestUri":"/"
733
- },
734
- "input":{"shape":"ListSmartHomeAppliancesRequest"},
735
- "output":{"shape":"ListSmartHomeAppliancesResponse"},
736
- "errors":[
737
- {"shape":"NotFoundException"}
738
- ]
739
- },
740
- "ListTags":{
741
- "name":"ListTags",
742
- "http":{
743
- "method":"POST",
744
- "requestUri":"/"
745
- },
746
- "input":{"shape":"ListTagsRequest"},
747
- "output":{"shape":"ListTagsResponse"},
748
- "errors":[
749
- {"shape":"NotFoundException"}
750
- ]
751
- },
752
- "PutConferencePreference":{
753
- "name":"PutConferencePreference",
754
- "http":{
755
- "method":"POST",
756
- "requestUri":"/"
757
- },
758
- "input":{"shape":"PutConferencePreferenceRequest"},
759
- "output":{"shape":"PutConferencePreferenceResponse"},
760
- "errors":[
761
- {"shape":"NotFoundException"}
762
- ]
763
- },
764
- "PutInvitationConfiguration":{
765
- "name":"PutInvitationConfiguration",
766
- "http":{
767
- "method":"POST",
768
- "requestUri":"/"
769
- },
770
- "input":{"shape":"PutInvitationConfigurationRequest"},
771
- "output":{"shape":"PutInvitationConfigurationResponse"},
772
- "errors":[
773
- {"shape":"NotFoundException"},
774
- {"shape":"ConcurrentModificationException"}
775
- ]
776
- },
777
- "PutRoomSkillParameter":{
778
- "name":"PutRoomSkillParameter",
779
- "http":{
780
- "method":"POST",
781
- "requestUri":"/"
782
- },
783
- "input":{"shape":"PutRoomSkillParameterRequest"},
784
- "output":{"shape":"PutRoomSkillParameterResponse"},
785
- "errors":[
786
- {"shape":"ConcurrentModificationException"}
787
- ]
788
- },
789
- "PutSkillAuthorization":{
790
- "name":"PutSkillAuthorization",
791
- "http":{
792
- "method":"POST",
793
- "requestUri":"/"
794
- },
795
- "input":{"shape":"PutSkillAuthorizationRequest"},
796
- "output":{"shape":"PutSkillAuthorizationResponse"},
797
- "errors":[
798
- {"shape":"UnauthorizedException"},
799
- {"shape":"ConcurrentModificationException"}
800
- ]
801
- },
802
- "RegisterAVSDevice":{
803
- "name":"RegisterAVSDevice",
804
- "http":{
805
- "method":"POST",
806
- "requestUri":"/"
807
- },
808
- "input":{"shape":"RegisterAVSDeviceRequest"},
809
- "output":{"shape":"RegisterAVSDeviceResponse"},
810
- "errors":[
811
- {"shape":"LimitExceededException"},
812
- {"shape":"ConcurrentModificationException"},
813
- {"shape":"NotFoundException"},
814
- {"shape":"InvalidDeviceException"}
815
- ]
816
- },
817
- "RejectSkill":{
818
- "name":"RejectSkill",
819
- "http":{
820
- "method":"POST",
821
- "requestUri":"/"
822
- },
823
- "input":{"shape":"RejectSkillRequest"},
824
- "output":{"shape":"RejectSkillResponse"},
825
- "errors":[
826
- {"shape":"ConcurrentModificationException"},
827
- {"shape":"NotFoundException"}
828
- ]
829
- },
830
- "ResolveRoom":{
831
- "name":"ResolveRoom",
832
- "http":{
833
- "method":"POST",
834
- "requestUri":"/"
835
- },
836
- "input":{"shape":"ResolveRoomRequest"},
837
- "output":{"shape":"ResolveRoomResponse"},
838
- "errors":[
839
- {"shape":"NotFoundException"}
840
- ]
841
- },
842
- "RevokeInvitation":{
843
- "name":"RevokeInvitation",
844
- "http":{
845
- "method":"POST",
846
- "requestUri":"/"
847
- },
848
- "input":{"shape":"RevokeInvitationRequest"},
849
- "output":{"shape":"RevokeInvitationResponse"},
850
- "errors":[
851
- {"shape":"NotFoundException"},
852
- {"shape":"ConcurrentModificationException"}
853
- ]
854
- },
855
- "SearchAddressBooks":{
856
- "name":"SearchAddressBooks",
857
- "http":{
858
- "method":"POST",
859
- "requestUri":"/"
860
- },
861
- "input":{"shape":"SearchAddressBooksRequest"},
862
- "output":{"shape":"SearchAddressBooksResponse"}
863
- },
864
- "SearchContacts":{
865
- "name":"SearchContacts",
866
- "http":{
867
- "method":"POST",
868
- "requestUri":"/"
869
- },
870
- "input":{"shape":"SearchContactsRequest"},
871
- "output":{"shape":"SearchContactsResponse"}
872
- },
873
- "SearchDevices":{
874
- "name":"SearchDevices",
875
- "http":{
876
- "method":"POST",
877
- "requestUri":"/"
878
- },
879
- "input":{"shape":"SearchDevicesRequest"},
880
- "output":{"shape":"SearchDevicesResponse"}
881
- },
882
- "SearchNetworkProfiles":{
883
- "name":"SearchNetworkProfiles",
884
- "http":{
885
- "method":"POST",
886
- "requestUri":"/"
887
- },
888
- "input":{"shape":"SearchNetworkProfilesRequest"},
889
- "output":{"shape":"SearchNetworkProfilesResponse"}
890
- },
891
- "SearchProfiles":{
892
- "name":"SearchProfiles",
893
- "http":{
894
- "method":"POST",
895
- "requestUri":"/"
896
- },
897
- "input":{"shape":"SearchProfilesRequest"},
898
- "output":{"shape":"SearchProfilesResponse"}
899
- },
900
- "SearchRooms":{
901
- "name":"SearchRooms",
902
- "http":{
903
- "method":"POST",
904
- "requestUri":"/"
905
- },
906
- "input":{"shape":"SearchRoomsRequest"},
907
- "output":{"shape":"SearchRoomsResponse"}
908
- },
909
- "SearchSkillGroups":{
910
- "name":"SearchSkillGroups",
911
- "http":{
912
- "method":"POST",
913
- "requestUri":"/"
914
- },
915
- "input":{"shape":"SearchSkillGroupsRequest"},
916
- "output":{"shape":"SearchSkillGroupsResponse"}
917
- },
918
- "SearchUsers":{
919
- "name":"SearchUsers",
920
- "http":{
921
- "method":"POST",
922
- "requestUri":"/"
923
- },
924
- "input":{"shape":"SearchUsersRequest"},
925
- "output":{"shape":"SearchUsersResponse"}
926
- },
927
- "SendAnnouncement":{
928
- "name":"SendAnnouncement",
929
- "http":{
930
- "method":"POST",
931
- "requestUri":"/"
932
- },
933
- "input":{"shape":"SendAnnouncementRequest"},
934
- "output":{"shape":"SendAnnouncementResponse"},
935
- "errors":[
936
- {"shape":"LimitExceededException"},
937
- {"shape":"AlreadyExistsException"}
938
- ]
939
- },
940
- "SendInvitation":{
941
- "name":"SendInvitation",
942
- "http":{
943
- "method":"POST",
944
- "requestUri":"/"
945
- },
946
- "input":{"shape":"SendInvitationRequest"},
947
- "output":{"shape":"SendInvitationResponse"},
948
- "errors":[
949
- {"shape":"NotFoundException"},
950
- {"shape":"InvalidUserStatusException"},
951
- {"shape":"ConcurrentModificationException"}
952
- ]
953
- },
954
- "StartDeviceSync":{
955
- "name":"StartDeviceSync",
956
- "http":{
957
- "method":"POST",
958
- "requestUri":"/"
959
- },
960
- "input":{"shape":"StartDeviceSyncRequest"},
961
- "output":{"shape":"StartDeviceSyncResponse"},
962
- "errors":[
963
- {"shape":"DeviceNotRegisteredException"}
964
- ]
965
- },
966
- "StartSmartHomeApplianceDiscovery":{
967
- "name":"StartSmartHomeApplianceDiscovery",
968
- "http":{
969
- "method":"POST",
970
- "requestUri":"/"
971
- },
972
- "input":{"shape":"StartSmartHomeApplianceDiscoveryRequest"},
973
- "output":{"shape":"StartSmartHomeApplianceDiscoveryResponse"},
974
- "errors":[
975
- {"shape":"NotFoundException"}
976
- ]
977
- },
978
- "TagResource":{
979
- "name":"TagResource",
980
- "http":{
981
- "method":"POST",
982
- "requestUri":"/"
983
- },
984
- "input":{"shape":"TagResourceRequest"},
985
- "output":{"shape":"TagResourceResponse"},
986
- "errors":[
987
- {"shape":"NotFoundException"}
988
- ]
989
- },
990
- "UntagResource":{
991
- "name":"UntagResource",
992
- "http":{
993
- "method":"POST",
994
- "requestUri":"/"
995
- },
996
- "input":{"shape":"UntagResourceRequest"},
997
- "output":{"shape":"UntagResourceResponse"},
998
- "errors":[
999
- {"shape":"NotFoundException"}
1000
- ]
1001
- },
1002
- "UpdateAddressBook":{
1003
- "name":"UpdateAddressBook",
1004
- "http":{
1005
- "method":"POST",
1006
- "requestUri":"/"
1007
- },
1008
- "input":{"shape":"UpdateAddressBookRequest"},
1009
- "output":{"shape":"UpdateAddressBookResponse"},
1010
- "errors":[
1011
- {"shape":"NotFoundException"},
1012
- {"shape":"NameInUseException"},
1013
- {"shape":"ConcurrentModificationException"}
1014
- ]
1015
- },
1016
- "UpdateBusinessReportSchedule":{
1017
- "name":"UpdateBusinessReportSchedule",
1018
- "http":{
1019
- "method":"POST",
1020
- "requestUri":"/"
1021
- },
1022
- "input":{"shape":"UpdateBusinessReportScheduleRequest"},
1023
- "output":{"shape":"UpdateBusinessReportScheduleResponse"},
1024
- "errors":[
1025
- {"shape":"NotFoundException"},
1026
- {"shape":"ConcurrentModificationException"}
1027
- ]
1028
- },
1029
- "UpdateConferenceProvider":{
1030
- "name":"UpdateConferenceProvider",
1031
- "http":{
1032
- "method":"POST",
1033
- "requestUri":"/"
1034
- },
1035
- "input":{"shape":"UpdateConferenceProviderRequest"},
1036
- "output":{"shape":"UpdateConferenceProviderResponse"},
1037
- "errors":[
1038
- {"shape":"NotFoundException"}
1039
- ]
1040
- },
1041
- "UpdateContact":{
1042
- "name":"UpdateContact",
1043
- "http":{
1044
- "method":"POST",
1045
- "requestUri":"/"
1046
- },
1047
- "input":{"shape":"UpdateContactRequest"},
1048
- "output":{"shape":"UpdateContactResponse"},
1049
- "errors":[
1050
- {"shape":"NotFoundException"},
1051
- {"shape":"ConcurrentModificationException"}
1052
- ]
1053
- },
1054
- "UpdateDevice":{
1055
- "name":"UpdateDevice",
1056
- "http":{
1057
- "method":"POST",
1058
- "requestUri":"/"
1059
- },
1060
- "input":{"shape":"UpdateDeviceRequest"},
1061
- "output":{"shape":"UpdateDeviceResponse"},
1062
- "errors":[
1063
- {"shape":"NotFoundException"},
1064
- {"shape":"ConcurrentModificationException"},
1065
- {"shape":"DeviceNotRegisteredException"}
1066
- ]
1067
- },
1068
- "UpdateGateway":{
1069
- "name":"UpdateGateway",
1070
- "http":{
1071
- "method":"POST",
1072
- "requestUri":"/"
1073
- },
1074
- "input":{"shape":"UpdateGatewayRequest"},
1075
- "output":{"shape":"UpdateGatewayResponse"},
1076
- "errors":[
1077
- {"shape":"NotFoundException"},
1078
- {"shape":"NameInUseException"}
1079
- ]
1080
- },
1081
- "UpdateGatewayGroup":{
1082
- "name":"UpdateGatewayGroup",
1083
- "http":{
1084
- "method":"POST",
1085
- "requestUri":"/"
1086
- },
1087
- "input":{"shape":"UpdateGatewayGroupRequest"},
1088
- "output":{"shape":"UpdateGatewayGroupResponse"},
1089
- "errors":[
1090
- {"shape":"NotFoundException"},
1091
- {"shape":"NameInUseException"}
1092
- ]
1093
- },
1094
- "UpdateNetworkProfile":{
1095
- "name":"UpdateNetworkProfile",
1096
- "http":{
1097
- "method":"POST",
1098
- "requestUri":"/"
1099
- },
1100
- "input":{"shape":"UpdateNetworkProfileRequest"},
1101
- "output":{"shape":"UpdateNetworkProfileResponse"},
1102
- "errors":[
1103
- {"shape":"NotFoundException"},
1104
- {"shape":"NameInUseException"},
1105
- {"shape":"ConcurrentModificationException"},
1106
- {"shape":"InvalidCertificateAuthorityException"},
1107
- {"shape":"InvalidSecretsManagerResourceException"}
1108
- ]
1109
- },
1110
- "UpdateProfile":{
1111
- "name":"UpdateProfile",
1112
- "http":{
1113
- "method":"POST",
1114
- "requestUri":"/"
1115
- },
1116
- "input":{"shape":"UpdateProfileRequest"},
1117
- "output":{"shape":"UpdateProfileResponse"},
1118
- "errors":[
1119
- {"shape":"NotFoundException"},
1120
- {"shape":"NameInUseException"},
1121
- {"shape":"ConcurrentModificationException"}
1122
- ]
1123
- },
1124
- "UpdateRoom":{
1125
- "name":"UpdateRoom",
1126
- "http":{
1127
- "method":"POST",
1128
- "requestUri":"/"
1129
- },
1130
- "input":{"shape":"UpdateRoomRequest"},
1131
- "output":{"shape":"UpdateRoomResponse"},
1132
- "errors":[
1133
- {"shape":"NotFoundException"},
1134
- {"shape":"NameInUseException"}
1135
- ]
1136
- },
1137
- "UpdateSkillGroup":{
1138
- "name":"UpdateSkillGroup",
1139
- "http":{
1140
- "method":"POST",
1141
- "requestUri":"/"
1142
- },
1143
- "input":{"shape":"UpdateSkillGroupRequest"},
1144
- "output":{"shape":"UpdateSkillGroupResponse"},
1145
- "errors":[
1146
- {"shape":"NotFoundException"},
1147
- {"shape":"NameInUseException"},
1148
- {"shape":"ConcurrentModificationException"}
1149
- ]
1150
- }
1151
- },
1152
- "shapes":{
1153
- "Address":{
1154
- "type":"string",
1155
- "max":500,
1156
- "min":1
1157
- },
1158
- "AddressBook":{
1159
- "type":"structure",
1160
- "members":{
1161
- "AddressBookArn":{"shape":"Arn"},
1162
- "Name":{"shape":"AddressBookName"},
1163
- "Description":{"shape":"AddressBookDescription"}
1164
- }
1165
- },
1166
- "AddressBookData":{
1167
- "type":"structure",
1168
- "members":{
1169
- "AddressBookArn":{"shape":"Arn"},
1170
- "Name":{"shape":"AddressBookName"},
1171
- "Description":{"shape":"AddressBookDescription"}
1172
- }
1173
- },
1174
- "AddressBookDataList":{
1175
- "type":"list",
1176
- "member":{"shape":"AddressBookData"}
1177
- },
1178
- "AddressBookDescription":{
1179
- "type":"string",
1180
- "max":200,
1181
- "min":1,
1182
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1183
- },
1184
- "AddressBookName":{
1185
- "type":"string",
1186
- "max":100,
1187
- "min":1,
1188
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1189
- },
1190
- "AlreadyExistsException":{
1191
- "type":"structure",
1192
- "members":{
1193
- "Message":{"shape":"ErrorMessage"}
1194
- },
1195
- "exception":true
1196
- },
1197
- "AmazonId":{
1198
- "type":"string",
1199
- "pattern":"[a-zA-Z0-9]{1,18}"
1200
- },
1201
- "ApplianceDescription":{"type":"string"},
1202
- "ApplianceFriendlyName":{"type":"string"},
1203
- "ApplianceManufacturerName":{"type":"string"},
1204
- "ApproveSkillRequest":{
1205
- "type":"structure",
1206
- "required":["SkillId"],
1207
- "members":{
1208
- "SkillId":{"shape":"SkillId"}
1209
- }
1210
- },
1211
- "ApproveSkillResponse":{
1212
- "type":"structure",
1213
- "members":{
1214
- }
1215
- },
1216
- "Arn":{
1217
- "type":"string",
1218
- "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
1219
- },
1220
- "AssociateContactWithAddressBookRequest":{
1221
- "type":"structure",
1222
- "required":[
1223
- "ContactArn",
1224
- "AddressBookArn"
1225
- ],
1226
- "members":{
1227
- "ContactArn":{"shape":"Arn"},
1228
- "AddressBookArn":{"shape":"Arn"}
1229
- }
1230
- },
1231
- "AssociateContactWithAddressBookResponse":{
1232
- "type":"structure",
1233
- "members":{
1234
- }
1235
- },
1236
- "AssociateDeviceWithNetworkProfileRequest":{
1237
- "type":"structure",
1238
- "required":[
1239
- "DeviceArn",
1240
- "NetworkProfileArn"
1241
- ],
1242
- "members":{
1243
- "DeviceArn":{"shape":"Arn"},
1244
- "NetworkProfileArn":{"shape":"Arn"}
1245
- }
1246
- },
1247
- "AssociateDeviceWithNetworkProfileResponse":{
1248
- "type":"structure",
1249
- "members":{
1250
- }
1251
- },
1252
- "AssociateDeviceWithRoomRequest":{
1253
- "type":"structure",
1254
- "members":{
1255
- "DeviceArn":{"shape":"Arn"},
1256
- "RoomArn":{"shape":"Arn"}
1257
- }
1258
- },
1259
- "AssociateDeviceWithRoomResponse":{
1260
- "type":"structure",
1261
- "members":{
1262
- }
1263
- },
1264
- "AssociateSkillGroupWithRoomRequest":{
1265
- "type":"structure",
1266
- "members":{
1267
- "SkillGroupArn":{"shape":"Arn"},
1268
- "RoomArn":{"shape":"Arn"}
1269
- }
1270
- },
1271
- "AssociateSkillGroupWithRoomResponse":{
1272
- "type":"structure",
1273
- "members":{
1274
- }
1275
- },
1276
- "AssociateSkillWithSkillGroupRequest":{
1277
- "type":"structure",
1278
- "required":["SkillId"],
1279
- "members":{
1280
- "SkillGroupArn":{"shape":"Arn"},
1281
- "SkillId":{"shape":"SkillId"}
1282
- }
1283
- },
1284
- "AssociateSkillWithSkillGroupResponse":{
1285
- "type":"structure",
1286
- "members":{
1287
- }
1288
- },
1289
- "AssociateSkillWithUsersRequest":{
1290
- "type":"structure",
1291
- "required":["SkillId"],
1292
- "members":{
1293
- "SkillId":{"shape":"SkillId"}
1294
- }
1295
- },
1296
- "AssociateSkillWithUsersResponse":{
1297
- "type":"structure",
1298
- "members":{
1299
- }
1300
- },
1301
- "Audio":{
1302
- "type":"structure",
1303
- "required":[
1304
- "Locale",
1305
- "Location"
1306
- ],
1307
- "members":{
1308
- "Locale":{"shape":"Locale"},
1309
- "Location":{"shape":"AudioLocation"}
1310
- }
1311
- },
1312
- "AudioList":{
1313
- "type":"list",
1314
- "member":{"shape":"Audio"},
1315
- "max":1
1316
- },
1317
- "AudioLocation":{
1318
- "type":"string",
1319
- "max":1200,
1320
- "min":0,
1321
- "pattern":"https://([A-Za-z0-9_.-]+)?(s3-[A-Za-z0-9-]+|s3\\.([A-Za-z0-9-])+|s3|s3.dualstack\\.([A-Za-z0-9-])+)+.amazonaws.com/.*"
1322
- },
1323
- "AuthorizationResult":{
1324
- "type":"map",
1325
- "key":{"shape":"Key"},
1326
- "value":{"shape":"Value"},
1327
- "sensitive":true
1328
- },
1329
- "Boolean":{"type":"boolean"},
1330
- "BulletPoint":{"type":"string"},
1331
- "BulletPoints":{
1332
- "type":"list",
1333
- "member":{"shape":"BulletPoint"}
1334
- },
1335
- "BusinessReport":{
1336
- "type":"structure",
1337
- "members":{
1338
- "Status":{"shape":"BusinessReportStatus"},
1339
- "FailureCode":{"shape":"BusinessReportFailureCode"},
1340
- "S3Location":{"shape":"BusinessReportS3Location"},
1341
- "DeliveryTime":{"shape":"BusinessReportDeliveryTime"},
1342
- "DownloadUrl":{"shape":"BusinessReportDownloadUrl"}
1343
- }
1344
- },
1345
- "BusinessReportContentRange":{
1346
- "type":"structure",
1347
- "required":["Interval"],
1348
- "members":{
1349
- "Interval":{"shape":"BusinessReportInterval"}
1350
- }
1351
- },
1352
- "BusinessReportDeliveryTime":{"type":"timestamp"},
1353
- "BusinessReportDownloadUrl":{"type":"string"},
1354
- "BusinessReportFailureCode":{
1355
- "type":"string",
1356
- "enum":[
1357
- "ACCESS_DENIED",
1358
- "NO_SUCH_BUCKET",
1359
- "INTERNAL_FAILURE"
1360
- ]
1361
- },
1362
- "BusinessReportFormat":{
1363
- "type":"string",
1364
- "enum":[
1365
- "CSV",
1366
- "CSV_ZIP"
1367
- ]
1368
- },
1369
- "BusinessReportInterval":{
1370
- "type":"string",
1371
- "enum":[
1372
- "ONE_DAY",
1373
- "ONE_WEEK",
1374
- "THIRTY_DAYS"
1375
- ]
1376
- },
1377
- "BusinessReportRecurrence":{
1378
- "type":"structure",
1379
- "members":{
1380
- "StartDate":{"shape":"Date"}
1381
- }
1382
- },
1383
- "BusinessReportS3Location":{
1384
- "type":"structure",
1385
- "members":{
1386
- "Path":{"shape":"BusinessReportS3Path"},
1387
- "BucketName":{"shape":"CustomerS3BucketName"}
1388
- }
1389
- },
1390
- "BusinessReportS3Path":{"type":"string"},
1391
- "BusinessReportSchedule":{
1392
- "type":"structure",
1393
- "members":{
1394
- "ScheduleArn":{"shape":"Arn"},
1395
- "ScheduleName":{"shape":"BusinessReportScheduleName"},
1396
- "S3BucketName":{"shape":"CustomerS3BucketName"},
1397
- "S3KeyPrefix":{"shape":"S3KeyPrefix"},
1398
- "Format":{"shape":"BusinessReportFormat"},
1399
- "ContentRange":{"shape":"BusinessReportContentRange"},
1400
- "Recurrence":{"shape":"BusinessReportRecurrence"},
1401
- "LastBusinessReport":{"shape":"BusinessReport"}
1402
- }
1403
- },
1404
- "BusinessReportScheduleList":{
1405
- "type":"list",
1406
- "member":{"shape":"BusinessReportSchedule"}
1407
- },
1408
- "BusinessReportScheduleName":{
1409
- "type":"string",
1410
- "max":64,
1411
- "min":0,
1412
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1413
- },
1414
- "BusinessReportStatus":{
1415
- "type":"string",
1416
- "enum":[
1417
- "RUNNING",
1418
- "SUCCEEDED",
1419
- "FAILED"
1420
- ]
1421
- },
1422
- "Category":{
1423
- "type":"structure",
1424
- "members":{
1425
- "CategoryId":{"shape":"CategoryId"},
1426
- "CategoryName":{"shape":"CategoryName"}
1427
- }
1428
- },
1429
- "CategoryId":{
1430
- "type":"long",
1431
- "min":1
1432
- },
1433
- "CategoryList":{
1434
- "type":"list",
1435
- "member":{"shape":"Category"}
1436
- },
1437
- "CategoryName":{"type":"string"},
1438
- "CertificateTime":{"type":"timestamp"},
1439
- "ClientId":{
1440
- "type":"string",
1441
- "pattern":"^\\S+{1,256}$"
1442
- },
1443
- "ClientRequestToken":{
1444
- "type":"string",
1445
- "max":150,
1446
- "min":10,
1447
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
1448
- },
1449
- "CommsProtocol":{
1450
- "type":"string",
1451
- "enum":[
1452
- "SIP",
1453
- "SIPS",
1454
- "H323"
1455
- ]
1456
- },
1457
- "ConcurrentModificationException":{
1458
- "type":"structure",
1459
- "members":{
1460
- "Message":{"shape":"ErrorMessage"}
1461
- },
1462
- "exception":true
1463
- },
1464
- "ConferencePreference":{
1465
- "type":"structure",
1466
- "members":{
1467
- "DefaultConferenceProviderArn":{"shape":"Arn"}
1468
- }
1469
- },
1470
- "ConferenceProvider":{
1471
- "type":"structure",
1472
- "members":{
1473
- "Arn":{"shape":"Arn"},
1474
- "Name":{"shape":"ConferenceProviderName"},
1475
- "Type":{"shape":"ConferenceProviderType"},
1476
- "IPDialIn":{"shape":"IPDialIn"},
1477
- "PSTNDialIn":{"shape":"PSTNDialIn"},
1478
- "MeetingSetting":{"shape":"MeetingSetting"}
1479
- }
1480
- },
1481
- "ConferenceProviderName":{
1482
- "type":"string",
1483
- "max":50,
1484
- "min":1,
1485
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1486
- },
1487
- "ConferenceProviderType":{
1488
- "type":"string",
1489
- "enum":[
1490
- "CHIME",
1491
- "BLUEJEANS",
1492
- "FUZE",
1493
- "GOOGLE_HANGOUTS",
1494
- "POLYCOM",
1495
- "RINGCENTRAL",
1496
- "SKYPE_FOR_BUSINESS",
1497
- "WEBEX",
1498
- "ZOOM",
1499
- "CUSTOM"
1500
- ]
1501
- },
1502
- "ConferenceProvidersList":{
1503
- "type":"list",
1504
- "member":{"shape":"ConferenceProvider"}
1505
- },
1506
- "ConnectionStatus":{
1507
- "type":"string",
1508
- "enum":[
1509
- "ONLINE",
1510
- "OFFLINE"
1511
- ]
1512
- },
1513
- "ConnectionStatusUpdatedTime":{"type":"timestamp"},
1514
- "Contact":{
1515
- "type":"structure",
1516
- "members":{
1517
- "ContactArn":{"shape":"Arn"},
1518
- "DisplayName":{"shape":"ContactName"},
1519
- "FirstName":{"shape":"ContactName"},
1520
- "LastName":{"shape":"ContactName"},
1521
- "PhoneNumber":{"shape":"RawPhoneNumber"},
1522
- "PhoneNumbers":{"shape":"PhoneNumberList"},
1523
- "SipAddresses":{"shape":"SipAddressList"}
1524
- }
1525
- },
1526
- "ContactData":{
1527
- "type":"structure",
1528
- "members":{
1529
- "ContactArn":{"shape":"Arn"},
1530
- "DisplayName":{"shape":"ContactName"},
1531
- "FirstName":{"shape":"ContactName"},
1532
- "LastName":{"shape":"ContactName"},
1533
- "PhoneNumber":{"shape":"RawPhoneNumber"},
1534
- "PhoneNumbers":{"shape":"PhoneNumberList"},
1535
- "SipAddresses":{"shape":"SipAddressList"}
1536
- }
1537
- },
1538
- "ContactDataList":{
1539
- "type":"list",
1540
- "member":{"shape":"ContactData"}
1541
- },
1542
- "ContactName":{
1543
- "type":"string",
1544
- "max":100,
1545
- "min":1,
1546
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1547
- },
1548
- "Content":{
1549
- "type":"structure",
1550
- "members":{
1551
- "TextList":{"shape":"TextList"},
1552
- "SsmlList":{"shape":"SsmlList"},
1553
- "AudioList":{"shape":"AudioList"}
1554
- }
1555
- },
1556
- "CountryCode":{
1557
- "type":"string",
1558
- "pattern":"\\d{1,3}"
1559
- },
1560
- "CreateAddressBookRequest":{
1561
- "type":"structure",
1562
- "required":["Name"],
1563
- "members":{
1564
- "Name":{"shape":"AddressBookName"},
1565
- "Description":{"shape":"AddressBookDescription"},
1566
- "ClientRequestToken":{
1567
- "shape":"ClientRequestToken",
1568
- "idempotencyToken":true
1569
- }
1570
- }
1571
- },
1572
- "CreateAddressBookResponse":{
1573
- "type":"structure",
1574
- "members":{
1575
- "AddressBookArn":{"shape":"Arn"}
1576
- }
1577
- },
1578
- "CreateBusinessReportScheduleRequest":{
1579
- "type":"structure",
1580
- "required":[
1581
- "Format",
1582
- "ContentRange"
1583
- ],
1584
- "members":{
1585
- "ScheduleName":{"shape":"BusinessReportScheduleName"},
1586
- "S3BucketName":{"shape":"CustomerS3BucketName"},
1587
- "S3KeyPrefix":{"shape":"S3KeyPrefix"},
1588
- "Format":{"shape":"BusinessReportFormat"},
1589
- "ContentRange":{"shape":"BusinessReportContentRange"},
1590
- "Recurrence":{"shape":"BusinessReportRecurrence"},
1591
- "ClientRequestToken":{
1592
- "shape":"ClientRequestToken",
1593
- "idempotencyToken":true
1594
- },
1595
- "Tags":{"shape":"TagList"}
1596
- }
1597
- },
1598
- "CreateBusinessReportScheduleResponse":{
1599
- "type":"structure",
1600
- "members":{
1601
- "ScheduleArn":{"shape":"Arn"}
1602
- }
1603
- },
1604
- "CreateConferenceProviderRequest":{
1605
- "type":"structure",
1606
- "required":[
1607
- "ConferenceProviderName",
1608
- "ConferenceProviderType",
1609
- "MeetingSetting"
1610
- ],
1611
- "members":{
1612
- "ConferenceProviderName":{"shape":"ConferenceProviderName"},
1613
- "ConferenceProviderType":{"shape":"ConferenceProviderType"},
1614
- "IPDialIn":{"shape":"IPDialIn"},
1615
- "PSTNDialIn":{"shape":"PSTNDialIn"},
1616
- "MeetingSetting":{"shape":"MeetingSetting"},
1617
- "ClientRequestToken":{
1618
- "shape":"ClientRequestToken",
1619
- "idempotencyToken":true
1620
- }
1621
- }
1622
- },
1623
- "CreateConferenceProviderResponse":{
1624
- "type":"structure",
1625
- "members":{
1626
- "ConferenceProviderArn":{"shape":"Arn"}
1627
- }
1628
- },
1629
- "CreateContactRequest":{
1630
- "type":"structure",
1631
- "required":["FirstName"],
1632
- "members":{
1633
- "DisplayName":{"shape":"ContactName"},
1634
- "FirstName":{"shape":"ContactName"},
1635
- "LastName":{"shape":"ContactName"},
1636
- "PhoneNumber":{"shape":"RawPhoneNumber"},
1637
- "PhoneNumbers":{"shape":"PhoneNumberList"},
1638
- "SipAddresses":{"shape":"SipAddressList"},
1639
- "ClientRequestToken":{
1640
- "shape":"ClientRequestToken",
1641
- "idempotencyToken":true
1642
- }
1643
- }
1644
- },
1645
- "CreateContactResponse":{
1646
- "type":"structure",
1647
- "members":{
1648
- "ContactArn":{"shape":"Arn"}
1649
- }
1650
- },
1651
- "CreateEndOfMeetingReminder":{
1652
- "type":"structure",
1653
- "required":[
1654
- "ReminderAtMinutes",
1655
- "ReminderType",
1656
- "Enabled"
1657
- ],
1658
- "members":{
1659
- "ReminderAtMinutes":{"shape":"EndOfMeetingReminderMinutesList"},
1660
- "ReminderType":{"shape":"EndOfMeetingReminderType"},
1661
- "Enabled":{"shape":"Boolean"}
1662
- }
1663
- },
1664
- "CreateGatewayGroupRequest":{
1665
- "type":"structure",
1666
- "required":[
1667
- "Name",
1668
- "ClientRequestToken"
1669
- ],
1670
- "members":{
1671
- "Name":{"shape":"GatewayGroupName"},
1672
- "Description":{"shape":"GatewayGroupDescription"},
1673
- "ClientRequestToken":{
1674
- "shape":"ClientRequestToken",
1675
- "idempotencyToken":true
1676
- }
1677
- }
1678
- },
1679
- "CreateGatewayGroupResponse":{
1680
- "type":"structure",
1681
- "members":{
1682
- "GatewayGroupArn":{"shape":"Arn"}
1683
- }
1684
- },
1685
- "CreateInstantBooking":{
1686
- "type":"structure",
1687
- "required":[
1688
- "DurationInMinutes",
1689
- "Enabled"
1690
- ],
1691
- "members":{
1692
- "DurationInMinutes":{"shape":"Minutes"},
1693
- "Enabled":{"shape":"Boolean"}
1694
- }
1695
- },
1696
- "CreateMeetingRoomConfiguration":{
1697
- "type":"structure",
1698
- "members":{
1699
- "RoomUtilizationMetricsEnabled":{"shape":"Boolean"},
1700
- "EndOfMeetingReminder":{"shape":"CreateEndOfMeetingReminder"},
1701
- "InstantBooking":{"shape":"CreateInstantBooking"},
1702
- "RequireCheckIn":{"shape":"CreateRequireCheckIn"}
1703
- }
1704
- },
1705
- "CreateNetworkProfileRequest":{
1706
- "type":"structure",
1707
- "required":[
1708
- "NetworkProfileName",
1709
- "Ssid",
1710
- "SecurityType",
1711
- "ClientRequestToken"
1712
- ],
1713
- "members":{
1714
- "NetworkProfileName":{"shape":"NetworkProfileName"},
1715
- "Description":{"shape":"NetworkProfileDescription"},
1716
- "Ssid":{"shape":"NetworkSsid"},
1717
- "SecurityType":{"shape":"NetworkSecurityType"},
1718
- "EapMethod":{"shape":"NetworkEapMethod"},
1719
- "CurrentPassword":{"shape":"CurrentWiFiPassword"},
1720
- "NextPassword":{"shape":"NextWiFiPassword"},
1721
- "CertificateAuthorityArn":{"shape":"Arn"},
1722
- "TrustAnchors":{"shape":"TrustAnchorList"},
1723
- "ClientRequestToken":{
1724
- "shape":"ClientRequestToken",
1725
- "idempotencyToken":true
1726
- }
1727
- }
1728
- },
1729
- "CreateNetworkProfileResponse":{
1730
- "type":"structure",
1731
- "members":{
1732
- "NetworkProfileArn":{"shape":"Arn"}
1733
- }
1734
- },
1735
- "CreateProfileRequest":{
1736
- "type":"structure",
1737
- "required":[
1738
- "ProfileName",
1739
- "Timezone",
1740
- "Address",
1741
- "DistanceUnit",
1742
- "TemperatureUnit",
1743
- "WakeWord"
1744
- ],
1745
- "members":{
1746
- "ProfileName":{"shape":"ProfileName"},
1747
- "Timezone":{"shape":"Timezone"},
1748
- "Address":{"shape":"Address"},
1749
- "DistanceUnit":{"shape":"DistanceUnit"},
1750
- "TemperatureUnit":{"shape":"TemperatureUnit"},
1751
- "WakeWord":{"shape":"WakeWord"},
1752
- "Locale":{"shape":"DeviceLocale"},
1753
- "ClientRequestToken":{
1754
- "shape":"ClientRequestToken",
1755
- "idempotencyToken":true
1756
- },
1757
- "SetupModeDisabled":{"shape":"Boolean"},
1758
- "MaxVolumeLimit":{"shape":"MaxVolumeLimit"},
1759
- "PSTNEnabled":{"shape":"Boolean"},
1760
- "MeetingRoomConfiguration":{"shape":"CreateMeetingRoomConfiguration"},
1761
- "Tags":{"shape":"TagList"}
1762
- }
1763
- },
1764
- "CreateProfileResponse":{
1765
- "type":"structure",
1766
- "members":{
1767
- "ProfileArn":{"shape":"Arn"}
1768
- }
1769
- },
1770
- "CreateRequireCheckIn":{
1771
- "type":"structure",
1772
- "required":[
1773
- "ReleaseAfterMinutes",
1774
- "Enabled"
1775
- ],
1776
- "members":{
1777
- "ReleaseAfterMinutes":{"shape":"Minutes"},
1778
- "Enabled":{"shape":"Boolean"}
1779
- }
1780
- },
1781
- "CreateRoomRequest":{
1782
- "type":"structure",
1783
- "required":["RoomName"],
1784
- "members":{
1785
- "RoomName":{"shape":"RoomName"},
1786
- "Description":{"shape":"RoomDescription"},
1787
- "ProfileArn":{"shape":"Arn"},
1788
- "ProviderCalendarId":{"shape":"ProviderCalendarId"},
1789
- "ClientRequestToken":{
1790
- "shape":"ClientRequestToken",
1791
- "idempotencyToken":true
1792
- },
1793
- "Tags":{"shape":"TagList"}
1794
- }
1795
- },
1796
- "CreateRoomResponse":{
1797
- "type":"structure",
1798
- "members":{
1799
- "RoomArn":{"shape":"Arn"}
1800
- }
1801
- },
1802
- "CreateSkillGroupRequest":{
1803
- "type":"structure",
1804
- "required":["SkillGroupName"],
1805
- "members":{
1806
- "SkillGroupName":{"shape":"SkillGroupName"},
1807
- "Description":{"shape":"SkillGroupDescription"},
1808
- "ClientRequestToken":{
1809
- "shape":"ClientRequestToken",
1810
- "idempotencyToken":true
1811
- },
1812
- "Tags":{"shape":"TagList"}
1813
- }
1814
- },
1815
- "CreateSkillGroupResponse":{
1816
- "type":"structure",
1817
- "members":{
1818
- "SkillGroupArn":{"shape":"Arn"}
1819
- }
1820
- },
1821
- "CreateUserRequest":{
1822
- "type":"structure",
1823
- "required":["UserId"],
1824
- "members":{
1825
- "UserId":{"shape":"user_UserId"},
1826
- "FirstName":{"shape":"user_FirstName"},
1827
- "LastName":{"shape":"user_LastName"},
1828
- "Email":{"shape":"Email"},
1829
- "ClientRequestToken":{
1830
- "shape":"ClientRequestToken",
1831
- "idempotencyToken":true
1832
- },
1833
- "Tags":{"shape":"TagList"}
1834
- }
1835
- },
1836
- "CreateUserResponse":{
1837
- "type":"structure",
1838
- "members":{
1839
- "UserArn":{"shape":"Arn"}
1840
- }
1841
- },
1842
- "CurrentWiFiPassword":{
1843
- "type":"string",
1844
- "max":128,
1845
- "min":5,
1846
- "pattern":"[\\x00-\\x7F]*",
1847
- "sensitive":true
1848
- },
1849
- "CustomerS3BucketName":{
1850
- "type":"string",
1851
- "pattern":"[a-z0-9-\\.]{3,63}"
1852
- },
1853
- "Date":{
1854
- "type":"string",
1855
- "pattern":"^\\d{4}\\-(0?[1-9]|1[012])\\-(0?[1-9]|[12][0-9]|3[01])$"
1856
- },
1857
- "DeleteAddressBookRequest":{
1858
- "type":"structure",
1859
- "required":["AddressBookArn"],
1860
- "members":{
1861
- "AddressBookArn":{"shape":"Arn"}
1862
- }
1863
- },
1864
- "DeleteAddressBookResponse":{
1865
- "type":"structure",
1866
- "members":{
1867
- }
1868
- },
1869
- "DeleteBusinessReportScheduleRequest":{
1870
- "type":"structure",
1871
- "required":["ScheduleArn"],
1872
- "members":{
1873
- "ScheduleArn":{"shape":"Arn"}
1874
- }
1875
- },
1876
- "DeleteBusinessReportScheduleResponse":{
1877
- "type":"structure",
1878
- "members":{
1879
- }
1880
- },
1881
- "DeleteConferenceProviderRequest":{
1882
- "type":"structure",
1883
- "required":["ConferenceProviderArn"],
1884
- "members":{
1885
- "ConferenceProviderArn":{"shape":"Arn"}
1886
- }
1887
- },
1888
- "DeleteConferenceProviderResponse":{
1889
- "type":"structure",
1890
- "members":{
1891
- }
1892
- },
1893
- "DeleteContactRequest":{
1894
- "type":"structure",
1895
- "required":["ContactArn"],
1896
- "members":{
1897
- "ContactArn":{"shape":"Arn"}
1898
- }
1899
- },
1900
- "DeleteContactResponse":{
1901
- "type":"structure",
1902
- "members":{
1903
- }
1904
- },
1905
- "DeleteDeviceRequest":{
1906
- "type":"structure",
1907
- "required":["DeviceArn"],
1908
- "members":{
1909
- "DeviceArn":{"shape":"Arn"}
1910
- }
1911
- },
1912
- "DeleteDeviceResponse":{
1913
- "type":"structure",
1914
- "members":{
1915
- }
1916
- },
1917
- "DeleteDeviceUsageDataRequest":{
1918
- "type":"structure",
1919
- "required":[
1920
- "DeviceArn",
1921
- "DeviceUsageType"
1922
- ],
1923
- "members":{
1924
- "DeviceArn":{"shape":"Arn"},
1925
- "DeviceUsageType":{"shape":"DeviceUsageType"}
1926
- }
1927
- },
1928
- "DeleteDeviceUsageDataResponse":{
1929
- "type":"structure",
1930
- "members":{
1931
- }
1932
- },
1933
- "DeleteGatewayGroupRequest":{
1934
- "type":"structure",
1935
- "required":["GatewayGroupArn"],
1936
- "members":{
1937
- "GatewayGroupArn":{"shape":"Arn"}
1938
- }
1939
- },
1940
- "DeleteGatewayGroupResponse":{
1941
- "type":"structure",
1942
- "members":{
1943
- }
1944
- },
1945
- "DeleteNetworkProfileRequest":{
1946
- "type":"structure",
1947
- "required":["NetworkProfileArn"],
1948
- "members":{
1949
- "NetworkProfileArn":{"shape":"Arn"}
1950
- }
1951
- },
1952
- "DeleteNetworkProfileResponse":{
1953
- "type":"structure",
1954
- "members":{
1955
- }
1956
- },
1957
- "DeleteProfileRequest":{
1958
- "type":"structure",
1959
- "members":{
1960
- "ProfileArn":{"shape":"Arn"}
1961
- }
1962
- },
1963
- "DeleteProfileResponse":{
1964
- "type":"structure",
1965
- "members":{
1966
- }
1967
- },
1968
- "DeleteRoomRequest":{
1969
- "type":"structure",
1970
- "members":{
1971
- "RoomArn":{"shape":"Arn"}
1972
- }
1973
- },
1974
- "DeleteRoomResponse":{
1975
- "type":"structure",
1976
- "members":{
1977
- }
1978
- },
1979
- "DeleteRoomSkillParameterRequest":{
1980
- "type":"structure",
1981
- "required":[
1982
- "SkillId",
1983
- "ParameterKey"
1984
- ],
1985
- "members":{
1986
- "RoomArn":{"shape":"Arn"},
1987
- "SkillId":{"shape":"SkillId"},
1988
- "ParameterKey":{"shape":"RoomSkillParameterKey"}
1989
- }
1990
- },
1991
- "DeleteRoomSkillParameterResponse":{
1992
- "type":"structure",
1993
- "members":{
1994
- }
1995
- },
1996
- "DeleteSkillAuthorizationRequest":{
1997
- "type":"structure",
1998
- "required":["SkillId"],
1999
- "members":{
2000
- "SkillId":{"shape":"SkillId"},
2001
- "RoomArn":{"shape":"Arn"}
2002
- }
2003
- },
2004
- "DeleteSkillAuthorizationResponse":{
2005
- "type":"structure",
2006
- "members":{
2007
- }
2008
- },
2009
- "DeleteSkillGroupRequest":{
2010
- "type":"structure",
2011
- "members":{
2012
- "SkillGroupArn":{"shape":"Arn"}
2013
- }
2014
- },
2015
- "DeleteSkillGroupResponse":{
2016
- "type":"structure",
2017
- "members":{
2018
- }
2019
- },
2020
- "DeleteUserRequest":{
2021
- "type":"structure",
2022
- "required":["EnrollmentId"],
2023
- "members":{
2024
- "UserArn":{"shape":"Arn"},
2025
- "EnrollmentId":{"shape":"EnrollmentId"}
2026
- }
2027
- },
2028
- "DeleteUserResponse":{
2029
- "type":"structure",
2030
- "members":{
2031
- }
2032
- },
2033
- "DeveloperInfo":{
2034
- "type":"structure",
2035
- "members":{
2036
- "DeveloperName":{"shape":"DeveloperName"},
2037
- "PrivacyPolicy":{"shape":"PrivacyPolicy"},
2038
- "Email":{"shape":"Email"},
2039
- "Url":{"shape":"Url"}
2040
- }
2041
- },
2042
- "DeveloperName":{"type":"string"},
2043
- "Device":{
2044
- "type":"structure",
2045
- "members":{
2046
- "DeviceArn":{"shape":"Arn"},
2047
- "DeviceSerialNumber":{"shape":"DeviceSerialNumber"},
2048
- "DeviceType":{"shape":"DeviceType"},
2049
- "DeviceName":{"shape":"DeviceName"},
2050
- "SoftwareVersion":{"shape":"SoftwareVersion"},
2051
- "MacAddress":{"shape":"MacAddress"},
2052
- "RoomArn":{"shape":"Arn"},
2053
- "DeviceStatus":{"shape":"DeviceStatus"},
2054
- "DeviceStatusInfo":{"shape":"DeviceStatusInfo"},
2055
- "NetworkProfileInfo":{"shape":"DeviceNetworkProfileInfo"}
2056
- }
2057
- },
2058
- "DeviceData":{
2059
- "type":"structure",
2060
- "members":{
2061
- "DeviceArn":{"shape":"Arn"},
2062
- "DeviceSerialNumber":{"shape":"DeviceSerialNumber"},
2063
- "DeviceType":{"shape":"DeviceType"},
2064
- "DeviceName":{"shape":"DeviceName"},
2065
- "SoftwareVersion":{"shape":"SoftwareVersion"},
2066
- "MacAddress":{"shape":"MacAddress"},
2067
- "DeviceStatus":{"shape":"DeviceStatus"},
2068
- "NetworkProfileArn":{"shape":"Arn"},
2069
- "NetworkProfileName":{"shape":"NetworkProfileName"},
2070
- "RoomArn":{"shape":"Arn"},
2071
- "RoomName":{"shape":"DeviceRoomName"},
2072
- "DeviceStatusInfo":{"shape":"DeviceStatusInfo"},
2073
- "CreatedTime":{"shape":"DeviceDataCreatedTime"}
2074
- }
2075
- },
2076
- "DeviceDataCreatedTime":{"type":"timestamp"},
2077
- "DeviceDataList":{
2078
- "type":"list",
2079
- "member":{"shape":"DeviceData"}
2080
- },
2081
- "DeviceEvent":{
2082
- "type":"structure",
2083
- "members":{
2084
- "Type":{"shape":"DeviceEventType"},
2085
- "Value":{"shape":"DeviceEventValue"},
2086
- "Timestamp":{"shape":"DeviceEventTime"}
2087
- }
2088
- },
2089
- "DeviceEventList":{
2090
- "type":"list",
2091
- "member":{"shape":"DeviceEvent"}
2092
- },
2093
- "DeviceEventTime":{"type":"timestamp"},
2094
- "DeviceEventType":{
2095
- "type":"string",
2096
- "enum":[
2097
- "CONNECTION_STATUS",
2098
- "DEVICE_STATUS"
2099
- ]
2100
- },
2101
- "DeviceEventValue":{"type":"string"},
2102
- "DeviceLocale":{
2103
- "type":"string",
2104
- "max":256,
2105
- "min":1
2106
- },
2107
- "DeviceName":{
2108
- "type":"string",
2109
- "max":100,
2110
- "min":2,
2111
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2112
- },
2113
- "DeviceNetworkProfileInfo":{
2114
- "type":"structure",
2115
- "members":{
2116
- "NetworkProfileArn":{"shape":"Arn"},
2117
- "CertificateArn":{"shape":"Arn"},
2118
- "CertificateExpirationTime":{"shape":"CertificateTime"}
2119
- }
2120
- },
2121
- "DeviceNotRegisteredException":{
2122
- "type":"structure",
2123
- "members":{
2124
- "Message":{"shape":"ErrorMessage"}
2125
- },
2126
- "exception":true
2127
- },
2128
- "DeviceRoomName":{
2129
- "type":"string",
2130
- "max":100,
2131
- "min":1,
2132
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2133
- },
2134
- "DeviceSerialNumber":{
2135
- "type":"string",
2136
- "pattern":"[a-zA-Z0-9]{1,200}"
2137
- },
2138
- "DeviceSerialNumberForAVS":{
2139
- "type":"string",
2140
- "pattern":"^[a-zA-Z0-9]{1,50}$"
2141
- },
2142
- "DeviceStatus":{
2143
- "type":"string",
2144
- "enum":[
2145
- "READY",
2146
- "PENDING",
2147
- "WAS_OFFLINE",
2148
- "DEREGISTERED",
2149
- "FAILED"
2150
- ]
2151
- },
2152
- "DeviceStatusDetail":{
2153
- "type":"structure",
2154
- "members":{
2155
- "Feature":{"shape":"Feature"},
2156
- "Code":{"shape":"DeviceStatusDetailCode"}
2157
- }
2158
- },
2159
- "DeviceStatusDetailCode":{
2160
- "type":"string",
2161
- "enum":[
2162
- "DEVICE_SOFTWARE_UPDATE_NEEDED",
2163
- "DEVICE_WAS_OFFLINE",
2164
- "CREDENTIALS_ACCESS_FAILURE",
2165
- "TLS_VERSION_MISMATCH",
2166
- "ASSOCIATION_REJECTION",
2167
- "AUTHENTICATION_FAILURE",
2168
- "DHCP_FAILURE",
2169
- "INTERNET_UNAVAILABLE",
2170
- "DNS_FAILURE",
2171
- "UNKNOWN_FAILURE",
2172
- "CERTIFICATE_ISSUING_LIMIT_EXCEEDED",
2173
- "INVALID_CERTIFICATE_AUTHORITY",
2174
- "NETWORK_PROFILE_NOT_FOUND",
2175
- "INVALID_PASSWORD_STATE",
2176
- "PASSWORD_NOT_FOUND",
2177
- "PASSWORD_MANAGER_ACCESS_DENIED",
2178
- "CERTIFICATE_AUTHORITY_ACCESS_DENIED"
2179
- ]
2180
- },
2181
- "DeviceStatusDetails":{
2182
- "type":"list",
2183
- "member":{"shape":"DeviceStatusDetail"}
2184
- },
2185
- "DeviceStatusInfo":{
2186
- "type":"structure",
2187
- "members":{
2188
- "DeviceStatusDetails":{"shape":"DeviceStatusDetails"},
2189
- "ConnectionStatus":{"shape":"ConnectionStatus"},
2190
- "ConnectionStatusUpdatedTime":{"shape":"ConnectionStatusUpdatedTime"}
2191
- }
2192
- },
2193
- "DeviceType":{
2194
- "type":"string",
2195
- "pattern":"[a-zA-Z0-9]{1,200}"
2196
- },
2197
- "DeviceUsageType":{
2198
- "type":"string",
2199
- "enum":["VOICE"]
2200
- },
2201
- "DisassociateContactFromAddressBookRequest":{
2202
- "type":"structure",
2203
- "required":[
2204
- "ContactArn",
2205
- "AddressBookArn"
2206
- ],
2207
- "members":{
2208
- "ContactArn":{"shape":"Arn"},
2209
- "AddressBookArn":{"shape":"Arn"}
2210
- }
2211
- },
2212
- "DisassociateContactFromAddressBookResponse":{
2213
- "type":"structure",
2214
- "members":{
2215
- }
2216
- },
2217
- "DisassociateDeviceFromRoomRequest":{
2218
- "type":"structure",
2219
- "members":{
2220
- "DeviceArn":{"shape":"Arn"}
2221
- }
2222
- },
2223
- "DisassociateDeviceFromRoomResponse":{
2224
- "type":"structure",
2225
- "members":{
2226
- }
2227
- },
2228
- "DisassociateSkillFromSkillGroupRequest":{
2229
- "type":"structure",
2230
- "required":["SkillId"],
2231
- "members":{
2232
- "SkillGroupArn":{"shape":"Arn"},
2233
- "SkillId":{"shape":"SkillId"}
2234
- }
2235
- },
2236
- "DisassociateSkillFromSkillGroupResponse":{
2237
- "type":"structure",
2238
- "members":{
2239
- }
2240
- },
2241
- "DisassociateSkillFromUsersRequest":{
2242
- "type":"structure",
2243
- "required":["SkillId"],
2244
- "members":{
2245
- "SkillId":{"shape":"SkillId"}
2246
- }
2247
- },
2248
- "DisassociateSkillFromUsersResponse":{
2249
- "type":"structure",
2250
- "members":{
2251
- }
2252
- },
2253
- "DisassociateSkillGroupFromRoomRequest":{
2254
- "type":"structure",
2255
- "members":{
2256
- "SkillGroupArn":{"shape":"Arn"},
2257
- "RoomArn":{"shape":"Arn"}
2258
- }
2259
- },
2260
- "DisassociateSkillGroupFromRoomResponse":{
2261
- "type":"structure",
2262
- "members":{
2263
- }
2264
- },
2265
- "DistanceUnit":{
2266
- "type":"string",
2267
- "enum":[
2268
- "METRIC",
2269
- "IMPERIAL"
2270
- ]
2271
- },
2272
- "Email":{
2273
- "type":"string",
2274
- "max":128,
2275
- "min":1,
2276
- "pattern":"([0-9a-zA-Z]([+-.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z]([-\\w]*[0-9a-zA-Z]+)*\\.)+[a-zA-Z]{2,9})"
2277
- },
2278
- "EnablementType":{
2279
- "type":"string",
2280
- "enum":[
2281
- "ENABLED",
2282
- "PENDING"
2283
- ]
2284
- },
2285
- "EnablementTypeFilter":{
2286
- "type":"string",
2287
- "enum":[
2288
- "ENABLED",
2289
- "PENDING"
2290
- ]
2291
- },
2292
- "EndOfMeetingReminder":{
2293
- "type":"structure",
2294
- "members":{
2295
- "ReminderAtMinutes":{"shape":"EndOfMeetingReminderMinutesList"},
2296
- "ReminderType":{"shape":"EndOfMeetingReminderType"},
2297
- "Enabled":{"shape":"Boolean"}
2298
- }
2299
- },
2300
- "EndOfMeetingReminderMinutesList":{
2301
- "type":"list",
2302
- "member":{"shape":"Minutes"},
2303
- "max":1,
2304
- "min":1
2305
- },
2306
- "EndOfMeetingReminderType":{
2307
- "type":"string",
2308
- "enum":[
2309
- "ANNOUNCEMENT_TIME_CHECK",
2310
- "ANNOUNCEMENT_VARIABLE_TIME_LEFT",
2311
- "CHIME",
2312
- "KNOCK"
2313
- ]
2314
- },
2315
- "EndUserLicenseAgreement":{"type":"string"},
2316
- "Endpoint":{
2317
- "type":"string",
2318
- "max":256,
2319
- "min":1
2320
- },
2321
- "EnrollmentId":{
2322
- "type":"string",
2323
- "max":128,
2324
- "min":0
2325
- },
2326
- "EnrollmentStatus":{
2327
- "type":"string",
2328
- "enum":[
2329
- "INITIALIZED",
2330
- "PENDING",
2331
- "REGISTERED",
2332
- "DISASSOCIATING",
2333
- "DEREGISTERING"
2334
- ]
2335
- },
2336
- "ErrorMessage":{"type":"string"},
2337
- "Feature":{
2338
- "type":"string",
2339
- "enum":[
2340
- "BLUETOOTH",
2341
- "VOLUME",
2342
- "NOTIFICATIONS",
2343
- "LISTS",
2344
- "SKILLS",
2345
- "NETWORK_PROFILE",
2346
- "SETTINGS",
2347
- "ALL"
2348
- ]
2349
- },
2350
- "Features":{
2351
- "type":"list",
2352
- "member":{"shape":"Feature"}
2353
- },
2354
- "Filter":{
2355
- "type":"structure",
2356
- "required":[
2357
- "Key",
2358
- "Values"
2359
- ],
2360
- "members":{
2361
- "Key":{"shape":"FilterKey"},
2362
- "Values":{"shape":"FilterValueList"}
2363
- }
2364
- },
2365
- "FilterKey":{
2366
- "type":"string",
2367
- "max":500,
2368
- "min":1
2369
- },
2370
- "FilterList":{
2371
- "type":"list",
2372
- "member":{"shape":"Filter"},
2373
- "max":25
2374
- },
2375
- "FilterValue":{
2376
- "type":"string",
2377
- "max":500,
2378
- "min":1
2379
- },
2380
- "FilterValueList":{
2381
- "type":"list",
2382
- "member":{"shape":"FilterValue"},
2383
- "max":50
2384
- },
2385
- "ForgetSmartHomeAppliancesRequest":{
2386
- "type":"structure",
2387
- "required":["RoomArn"],
2388
- "members":{
2389
- "RoomArn":{"shape":"Arn"}
2390
- }
2391
- },
2392
- "ForgetSmartHomeAppliancesResponse":{
2393
- "type":"structure",
2394
- "members":{
2395
- }
2396
- },
2397
- "Gateway":{
2398
- "type":"structure",
2399
- "members":{
2400
- "Arn":{"shape":"Arn"},
2401
- "Name":{"shape":"GatewayName"},
2402
- "Description":{"shape":"GatewayDescription"},
2403
- "GatewayGroupArn":{"shape":"Arn"},
2404
- "SoftwareVersion":{"shape":"GatewayVersion"}
2405
- }
2406
- },
2407
- "GatewayDescription":{
2408
- "type":"string",
2409
- "max":200,
2410
- "min":0,
2411
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2412
- },
2413
- "GatewayGroup":{
2414
- "type":"structure",
2415
- "members":{
2416
- "Arn":{"shape":"Arn"},
2417
- "Name":{"shape":"GatewayGroupName"},
2418
- "Description":{"shape":"GatewayGroupDescription"}
2419
- }
2420
- },
2421
- "GatewayGroupDescription":{
2422
- "type":"string",
2423
- "max":200,
2424
- "min":0
2425
- },
2426
- "GatewayGroupName":{
2427
- "type":"string",
2428
- "max":100,
2429
- "min":1,
2430
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2431
- },
2432
- "GatewayGroupSummaries":{
2433
- "type":"list",
2434
- "member":{"shape":"GatewayGroupSummary"}
2435
- },
2436
- "GatewayGroupSummary":{
2437
- "type":"structure",
2438
- "members":{
2439
- "Arn":{"shape":"Arn"},
2440
- "Name":{"shape":"GatewayGroupName"},
2441
- "Description":{"shape":"GatewayGroupDescription"}
2442
- }
2443
- },
2444
- "GatewayName":{
2445
- "type":"string",
2446
- "max":253,
2447
- "min":1,
2448
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2449
- },
2450
- "GatewaySummaries":{
2451
- "type":"list",
2452
- "member":{"shape":"GatewaySummary"}
2453
- },
2454
- "GatewaySummary":{
2455
- "type":"structure",
2456
- "members":{
2457
- "Arn":{"shape":"Arn"},
2458
- "Name":{"shape":"GatewayName"},
2459
- "Description":{"shape":"GatewayDescription"},
2460
- "GatewayGroupArn":{"shape":"Arn"},
2461
- "SoftwareVersion":{"shape":"GatewayVersion"}
2462
- }
2463
- },
2464
- "GatewayVersion":{
2465
- "type":"string",
2466
- "max":50,
2467
- "min":1
2468
- },
2469
- "GenericKeyword":{"type":"string"},
2470
- "GenericKeywords":{
2471
- "type":"list",
2472
- "member":{"shape":"GenericKeyword"}
2473
- },
2474
- "GetAddressBookRequest":{
2475
- "type":"structure",
2476
- "required":["AddressBookArn"],
2477
- "members":{
2478
- "AddressBookArn":{"shape":"Arn"}
2479
- }
2480
- },
2481
- "GetAddressBookResponse":{
2482
- "type":"structure",
2483
- "members":{
2484
- "AddressBook":{"shape":"AddressBook"}
2485
- }
2486
- },
2487
- "GetConferencePreferenceRequest":{
2488
- "type":"structure",
2489
- "members":{
2490
- }
2491
- },
2492
- "GetConferencePreferenceResponse":{
2493
- "type":"structure",
2494
- "members":{
2495
- "Preference":{"shape":"ConferencePreference"}
2496
- }
2497
- },
2498
- "GetConferenceProviderRequest":{
2499
- "type":"structure",
2500
- "required":["ConferenceProviderArn"],
2501
- "members":{
2502
- "ConferenceProviderArn":{"shape":"Arn"}
2503
- }
2504
- },
2505
- "GetConferenceProviderResponse":{
2506
- "type":"structure",
2507
- "members":{
2508
- "ConferenceProvider":{"shape":"ConferenceProvider"}
2509
- }
2510
- },
2511
- "GetContactRequest":{
2512
- "type":"structure",
2513
- "required":["ContactArn"],
2514
- "members":{
2515
- "ContactArn":{"shape":"Arn"}
2516
- }
2517
- },
2518
- "GetContactResponse":{
2519
- "type":"structure",
2520
- "members":{
2521
- "Contact":{"shape":"Contact"}
2522
- }
2523
- },
2524
- "GetDeviceRequest":{
2525
- "type":"structure",
2526
- "members":{
2527
- "DeviceArn":{"shape":"Arn"}
2528
- }
2529
- },
2530
- "GetDeviceResponse":{
2531
- "type":"structure",
2532
- "members":{
2533
- "Device":{"shape":"Device"}
2534
- }
2535
- },
2536
- "GetGatewayGroupRequest":{
2537
- "type":"structure",
2538
- "required":["GatewayGroupArn"],
2539
- "members":{
2540
- "GatewayGroupArn":{"shape":"Arn"}
2541
- }
2542
- },
2543
- "GetGatewayGroupResponse":{
2544
- "type":"structure",
2545
- "members":{
2546
- "GatewayGroup":{"shape":"GatewayGroup"}
2547
- }
2548
- },
2549
- "GetGatewayRequest":{
2550
- "type":"structure",
2551
- "required":["GatewayArn"],
2552
- "members":{
2553
- "GatewayArn":{"shape":"Arn"}
2554
- }
2555
- },
2556
- "GetGatewayResponse":{
2557
- "type":"structure",
2558
- "members":{
2559
- "Gateway":{"shape":"Gateway"}
2560
- }
2561
- },
2562
- "GetInvitationConfigurationRequest":{
2563
- "type":"structure",
2564
- "members":{
2565
- }
2566
- },
2567
- "GetInvitationConfigurationResponse":{
2568
- "type":"structure",
2569
- "members":{
2570
- "OrganizationName":{"shape":"OrganizationName"},
2571
- "ContactEmail":{"shape":"Email"},
2572
- "PrivateSkillIds":{"shape":"ShortSkillIdList"}
2573
- }
2574
- },
2575
- "GetNetworkProfileRequest":{
2576
- "type":"structure",
2577
- "required":["NetworkProfileArn"],
2578
- "members":{
2579
- "NetworkProfileArn":{"shape":"Arn"}
2580
- }
2581
- },
2582
- "GetNetworkProfileResponse":{
2583
- "type":"structure",
2584
- "members":{
2585
- "NetworkProfile":{"shape":"NetworkProfile"}
2586
- }
2587
- },
2588
- "GetProfileRequest":{
2589
- "type":"structure",
2590
- "members":{
2591
- "ProfileArn":{"shape":"Arn"}
2592
- }
2593
- },
2594
- "GetProfileResponse":{
2595
- "type":"structure",
2596
- "members":{
2597
- "Profile":{"shape":"Profile"}
2598
- }
2599
- },
2600
- "GetRoomRequest":{
2601
- "type":"structure",
2602
- "members":{
2603
- "RoomArn":{"shape":"Arn"}
2604
- }
2605
- },
2606
- "GetRoomResponse":{
2607
- "type":"structure",
2608
- "members":{
2609
- "Room":{"shape":"Room"}
2610
- }
2611
- },
2612
- "GetRoomSkillParameterRequest":{
2613
- "type":"structure",
2614
- "required":[
2615
- "SkillId",
2616
- "ParameterKey"
2617
- ],
2618
- "members":{
2619
- "RoomArn":{"shape":"Arn"},
2620
- "SkillId":{"shape":"SkillId"},
2621
- "ParameterKey":{"shape":"RoomSkillParameterKey"}
2622
- }
2623
- },
2624
- "GetRoomSkillParameterResponse":{
2625
- "type":"structure",
2626
- "members":{
2627
- "RoomSkillParameter":{"shape":"RoomSkillParameter"}
2628
- }
2629
- },
2630
- "GetSkillGroupRequest":{
2631
- "type":"structure",
2632
- "members":{
2633
- "SkillGroupArn":{"shape":"Arn"}
2634
- }
2635
- },
2636
- "GetSkillGroupResponse":{
2637
- "type":"structure",
2638
- "members":{
2639
- "SkillGroup":{"shape":"SkillGroup"}
2640
- }
2641
- },
2642
- "IPDialIn":{
2643
- "type":"structure",
2644
- "required":[
2645
- "Endpoint",
2646
- "CommsProtocol"
2647
- ],
2648
- "members":{
2649
- "Endpoint":{"shape":"Endpoint"},
2650
- "CommsProtocol":{"shape":"CommsProtocol"}
2651
- }
2652
- },
2653
- "IconUrl":{"type":"string"},
2654
- "InstantBooking":{
2655
- "type":"structure",
2656
- "members":{
2657
- "DurationInMinutes":{"shape":"Minutes"},
2658
- "Enabled":{"shape":"Boolean"}
2659
- }
2660
- },
2661
- "InvalidCertificateAuthorityException":{
2662
- "type":"structure",
2663
- "members":{
2664
- "Message":{"shape":"ErrorMessage"}
2665
- },
2666
- "exception":true
2667
- },
2668
- "InvalidDeviceException":{
2669
- "type":"structure",
2670
- "members":{
2671
- "Message":{"shape":"ErrorMessage"}
2672
- },
2673
- "exception":true
2674
- },
2675
- "InvalidSecretsManagerResourceException":{
2676
- "type":"structure",
2677
- "members":{
2678
- "Message":{"shape":"ErrorMessage"}
2679
- },
2680
- "exception":true
2681
- },
2682
- "InvalidServiceLinkedRoleStateException":{
2683
- "type":"structure",
2684
- "members":{
2685
- "Message":{"shape":"ErrorMessage"}
2686
- },
2687
- "exception":true
2688
- },
2689
- "InvalidUserStatusException":{
2690
- "type":"structure",
2691
- "members":{
2692
- "Message":{"shape":"ErrorMessage"}
2693
- },
2694
- "exception":true
2695
- },
2696
- "InvocationPhrase":{"type":"string"},
2697
- "Key":{
2698
- "type":"string",
2699
- "min":1
2700
- },
2701
- "LimitExceededException":{
2702
- "type":"structure",
2703
- "members":{
2704
- "Message":{"shape":"ErrorMessage"}
2705
- },
2706
- "exception":true
2707
- },
2708
- "ListBusinessReportSchedulesRequest":{
2709
- "type":"structure",
2710
- "members":{
2711
- "NextToken":{"shape":"NextToken"},
2712
- "MaxResults":{"shape":"MaxResults"}
2713
- }
2714
- },
2715
- "ListBusinessReportSchedulesResponse":{
2716
- "type":"structure",
2717
- "members":{
2718
- "BusinessReportSchedules":{"shape":"BusinessReportScheduleList"},
2719
- "NextToken":{"shape":"NextToken"}
2720
- }
2721
- },
2722
- "ListConferenceProvidersRequest":{
2723
- "type":"structure",
2724
- "members":{
2725
- "NextToken":{"shape":"NextToken"},
2726
- "MaxResults":{"shape":"MaxResults"}
2727
- }
2728
- },
2729
- "ListConferenceProvidersResponse":{
2730
- "type":"structure",
2731
- "members":{
2732
- "ConferenceProviders":{"shape":"ConferenceProvidersList"},
2733
- "NextToken":{"shape":"NextToken"}
2734
- }
2735
- },
2736
- "ListDeviceEventsRequest":{
2737
- "type":"structure",
2738
- "required":["DeviceArn"],
2739
- "members":{
2740
- "DeviceArn":{"shape":"Arn"},
2741
- "EventType":{"shape":"DeviceEventType"},
2742
- "NextToken":{"shape":"NextToken"},
2743
- "MaxResults":{"shape":"MaxResults"}
2744
- }
2745
- },
2746
- "ListDeviceEventsResponse":{
2747
- "type":"structure",
2748
- "members":{
2749
- "DeviceEvents":{"shape":"DeviceEventList"},
2750
- "NextToken":{"shape":"NextToken"}
2751
- }
2752
- },
2753
- "ListGatewayGroupsRequest":{
2754
- "type":"structure",
2755
- "members":{
2756
- "NextToken":{"shape":"NextToken"},
2757
- "MaxResults":{"shape":"MaxResults"}
2758
- }
2759
- },
2760
- "ListGatewayGroupsResponse":{
2761
- "type":"structure",
2762
- "members":{
2763
- "GatewayGroups":{"shape":"GatewayGroupSummaries"},
2764
- "NextToken":{"shape":"NextToken"}
2765
- }
2766
- },
2767
- "ListGatewaysRequest":{
2768
- "type":"structure",
2769
- "members":{
2770
- "GatewayGroupArn":{"shape":"Arn"},
2771
- "NextToken":{"shape":"NextToken"},
2772
- "MaxResults":{"shape":"MaxResults"}
2773
- }
2774
- },
2775
- "ListGatewaysResponse":{
2776
- "type":"structure",
2777
- "members":{
2778
- "Gateways":{"shape":"GatewaySummaries"},
2779
- "NextToken":{"shape":"NextToken"}
2780
- }
2781
- },
2782
- "ListSkillsRequest":{
2783
- "type":"structure",
2784
- "members":{
2785
- "SkillGroupArn":{"shape":"Arn"},
2786
- "EnablementType":{"shape":"EnablementTypeFilter"},
2787
- "SkillType":{"shape":"SkillTypeFilter"},
2788
- "NextToken":{"shape":"NextToken"},
2789
- "MaxResults":{"shape":"SkillListMaxResults"}
2790
- }
2791
- },
2792
- "ListSkillsResponse":{
2793
- "type":"structure",
2794
- "members":{
2795
- "SkillSummaries":{"shape":"SkillSummaryList"},
2796
- "NextToken":{"shape":"NextToken"}
2797
- }
2798
- },
2799
- "ListSkillsStoreCategoriesRequest":{
2800
- "type":"structure",
2801
- "members":{
2802
- "NextToken":{"shape":"NextToken"},
2803
- "MaxResults":{"shape":"MaxResults"}
2804
- }
2805
- },
2806
- "ListSkillsStoreCategoriesResponse":{
2807
- "type":"structure",
2808
- "members":{
2809
- "CategoryList":{"shape":"CategoryList"},
2810
- "NextToken":{"shape":"NextToken"}
2811
- }
2812
- },
2813
- "ListSkillsStoreSkillsByCategoryRequest":{
2814
- "type":"structure",
2815
- "required":["CategoryId"],
2816
- "members":{
2817
- "CategoryId":{"shape":"CategoryId"},
2818
- "NextToken":{"shape":"NextToken"},
2819
- "MaxResults":{"shape":"SkillListMaxResults"}
2820
- }
2821
- },
2822
- "ListSkillsStoreSkillsByCategoryResponse":{
2823
- "type":"structure",
2824
- "members":{
2825
- "SkillsStoreSkills":{"shape":"SkillsStoreSkillList"},
2826
- "NextToken":{"shape":"NextToken"}
2827
- }
2828
- },
2829
- "ListSmartHomeAppliancesRequest":{
2830
- "type":"structure",
2831
- "required":["RoomArn"],
2832
- "members":{
2833
- "RoomArn":{"shape":"Arn"},
2834
- "MaxResults":{"shape":"MaxResults"},
2835
- "NextToken":{"shape":"NextToken"}
2836
- }
2837
- },
2838
- "ListSmartHomeAppliancesResponse":{
2839
- "type":"structure",
2840
- "members":{
2841
- "SmartHomeAppliances":{"shape":"SmartHomeApplianceList"},
2842
- "NextToken":{"shape":"NextToken"}
2843
- }
2844
- },
2845
- "ListTagsRequest":{
2846
- "type":"structure",
2847
- "required":["Arn"],
2848
- "members":{
2849
- "Arn":{"shape":"Arn"},
2850
- "NextToken":{"shape":"NextToken"},
2851
- "MaxResults":{"shape":"MaxResults"}
2852
- }
2853
- },
2854
- "ListTagsResponse":{
2855
- "type":"structure",
2856
- "members":{
2857
- "Tags":{"shape":"TagList"},
2858
- "NextToken":{"shape":"NextToken"}
2859
- }
2860
- },
2861
- "Locale":{
2862
- "type":"string",
2863
- "enum":["en-US"]
2864
- },
2865
- "MacAddress":{"type":"string"},
2866
- "MaxResults":{
2867
- "type":"integer",
2868
- "max":50,
2869
- "min":1
2870
- },
2871
- "MaxVolumeLimit":{"type":"integer"},
2872
- "MeetingRoomConfiguration":{
2873
- "type":"structure",
2874
- "members":{
2875
- "RoomUtilizationMetricsEnabled":{"shape":"Boolean"},
2876
- "EndOfMeetingReminder":{"shape":"EndOfMeetingReminder"},
2877
- "InstantBooking":{"shape":"InstantBooking"},
2878
- "RequireCheckIn":{"shape":"RequireCheckIn"}
2879
- }
2880
- },
2881
- "MeetingSetting":{
2882
- "type":"structure",
2883
- "required":["RequirePin"],
2884
- "members":{
2885
- "RequirePin":{"shape":"RequirePin"}
2886
- }
2887
- },
2888
- "Minutes":{"type":"integer"},
2889
- "NameInUseException":{
2890
- "type":"structure",
2891
- "members":{
2892
- "Message":{"shape":"ErrorMessage"}
2893
- },
2894
- "exception":true
2895
- },
2896
- "NetworkEapMethod":{
2897
- "type":"string",
2898
- "enum":["EAP_TLS"]
2899
- },
2900
- "NetworkProfile":{
2901
- "type":"structure",
2902
- "members":{
2903
- "NetworkProfileArn":{"shape":"Arn"},
2904
- "NetworkProfileName":{"shape":"NetworkProfileName"},
2905
- "Description":{"shape":"NetworkProfileDescription"},
2906
- "Ssid":{"shape":"NetworkSsid"},
2907
- "SecurityType":{"shape":"NetworkSecurityType"},
2908
- "EapMethod":{"shape":"NetworkEapMethod"},
2909
- "CurrentPassword":{"shape":"CurrentWiFiPassword"},
2910
- "NextPassword":{"shape":"NextWiFiPassword"},
2911
- "CertificateAuthorityArn":{"shape":"Arn"},
2912
- "TrustAnchors":{"shape":"TrustAnchorList"}
2913
- }
2914
- },
2915
- "NetworkProfileData":{
2916
- "type":"structure",
2917
- "members":{
2918
- "NetworkProfileArn":{"shape":"Arn"},
2919
- "NetworkProfileName":{"shape":"NetworkProfileName"},
2920
- "Description":{"shape":"NetworkProfileDescription"},
2921
- "Ssid":{"shape":"NetworkSsid"},
2922
- "SecurityType":{"shape":"NetworkSecurityType"},
2923
- "EapMethod":{"shape":"NetworkEapMethod"},
2924
- "CertificateAuthorityArn":{"shape":"Arn"}
2925
- }
2926
- },
2927
- "NetworkProfileDataList":{
2928
- "type":"list",
2929
- "member":{"shape":"NetworkProfileData"}
2930
- },
2931
- "NetworkProfileDescription":{
2932
- "type":"string",
2933
- "max":200,
2934
- "min":0,
2935
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2936
- },
2937
- "NetworkProfileName":{
2938
- "type":"string",
2939
- "max":100,
2940
- "min":1,
2941
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2942
- },
2943
- "NetworkSecurityType":{
2944
- "type":"string",
2945
- "enum":[
2946
- "OPEN",
2947
- "WEP",
2948
- "WPA_PSK",
2949
- "WPA2_PSK",
2950
- "WPA2_ENTERPRISE"
2951
- ]
2952
- },
2953
- "NetworkSsid":{
2954
- "type":"string",
2955
- "max":32,
2956
- "min":1,
2957
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2958
- },
2959
- "NewInThisVersionBulletPoints":{
2960
- "type":"list",
2961
- "member":{"shape":"BulletPoint"}
2962
- },
2963
- "NextToken":{
2964
- "type":"string",
2965
- "max":1100,
2966
- "min":1
2967
- },
2968
- "NextWiFiPassword":{
2969
- "type":"string",
2970
- "max":128,
2971
- "min":0,
2972
- "pattern":"(^$)|([\\x00-\\x7F]{5,})",
2973
- "sensitive":true
2974
- },
2975
- "NotFoundException":{
2976
- "type":"structure",
2977
- "members":{
2978
- "Message":{"shape":"ErrorMessage"}
2979
- },
2980
- "exception":true
2981
- },
2982
- "OneClickIdDelay":{
2983
- "type":"string",
2984
- "max":2,
2985
- "min":1
2986
- },
2987
- "OneClickPinDelay":{
2988
- "type":"string",
2989
- "max":2,
2990
- "min":1
2991
- },
2992
- "OrganizationName":{
2993
- "type":"string",
2994
- "max":100,
2995
- "min":1,
2996
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2997
- },
2998
- "OutboundPhoneNumber":{
2999
- "type":"string",
3000
- "pattern":"\\d{10}"
3001
- },
3002
- "PSTNDialIn":{
3003
- "type":"structure",
3004
- "required":[
3005
- "CountryCode",
3006
- "PhoneNumber",
3007
- "OneClickIdDelay",
3008
- "OneClickPinDelay"
3009
- ],
3010
- "members":{
3011
- "CountryCode":{"shape":"CountryCode"},
3012
- "PhoneNumber":{"shape":"OutboundPhoneNumber"},
3013
- "OneClickIdDelay":{"shape":"OneClickIdDelay"},
3014
- "OneClickPinDelay":{"shape":"OneClickPinDelay"}
3015
- }
3016
- },
3017
- "PhoneNumber":{
3018
- "type":"structure",
3019
- "required":[
3020
- "Number",
3021
- "Type"
3022
- ],
3023
- "members":{
3024
- "Number":{"shape":"RawPhoneNumber"},
3025
- "Type":{"shape":"PhoneNumberType"}
3026
- }
3027
- },
3028
- "PhoneNumberList":{
3029
- "type":"list",
3030
- "member":{"shape":"PhoneNumber"},
3031
- "max":3,
3032
- "min":0
3033
- },
3034
- "PhoneNumberType":{
3035
- "type":"string",
3036
- "enum":[
3037
- "MOBILE",
3038
- "WORK",
3039
- "HOME"
3040
- ],
3041
- "sensitive":true
3042
- },
3043
- "PrivacyPolicy":{"type":"string"},
3044
- "ProductDescription":{"type":"string"},
3045
- "ProductId":{
3046
- "type":"string",
3047
- "pattern":"^[a-zA-Z0-9_]{1,256}$"
3048
- },
3049
- "Profile":{
3050
- "type":"structure",
3051
- "members":{
3052
- "ProfileArn":{"shape":"Arn"},
3053
- "ProfileName":{"shape":"ProfileName"},
3054
- "IsDefault":{"shape":"Boolean"},
3055
- "Address":{"shape":"Address"},
3056
- "Timezone":{"shape":"Timezone"},
3057
- "DistanceUnit":{"shape":"DistanceUnit"},
3058
- "TemperatureUnit":{"shape":"TemperatureUnit"},
3059
- "WakeWord":{"shape":"WakeWord"},
3060
- "Locale":{"shape":"DeviceLocale"},
3061
- "SetupModeDisabled":{"shape":"Boolean"},
3062
- "MaxVolumeLimit":{"shape":"MaxVolumeLimit"},
3063
- "PSTNEnabled":{"shape":"Boolean"},
3064
- "AddressBookArn":{"shape":"Arn"},
3065
- "MeetingRoomConfiguration":{"shape":"MeetingRoomConfiguration"}
3066
- }
3067
- },
3068
- "ProfileData":{
3069
- "type":"structure",
3070
- "members":{
3071
- "ProfileArn":{"shape":"Arn"},
3072
- "ProfileName":{"shape":"ProfileName"},
3073
- "IsDefault":{"shape":"Boolean"},
3074
- "Address":{"shape":"Address"},
3075
- "Timezone":{"shape":"Timezone"},
3076
- "DistanceUnit":{"shape":"DistanceUnit"},
3077
- "TemperatureUnit":{"shape":"TemperatureUnit"},
3078
- "WakeWord":{"shape":"WakeWord"},
3079
- "Locale":{"shape":"DeviceLocale"}
3080
- }
3081
- },
3082
- "ProfileDataList":{
3083
- "type":"list",
3084
- "member":{"shape":"ProfileData"}
3085
- },
3086
- "ProfileName":{
3087
- "type":"string",
3088
- "max":100,
3089
- "min":1,
3090
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3091
- },
3092
- "ProviderCalendarId":{
3093
- "type":"string",
3094
- "max":100,
3095
- "min":0
3096
- },
3097
- "PutConferencePreferenceRequest":{
3098
- "type":"structure",
3099
- "required":["ConferencePreference"],
3100
- "members":{
3101
- "ConferencePreference":{"shape":"ConferencePreference"}
3102
- }
3103
- },
3104
- "PutConferencePreferenceResponse":{
3105
- "type":"structure",
3106
- "members":{
3107
- }
3108
- },
3109
- "PutInvitationConfigurationRequest":{
3110
- "type":"structure",
3111
- "required":["OrganizationName"],
3112
- "members":{
3113
- "OrganizationName":{"shape":"OrganizationName"},
3114
- "ContactEmail":{"shape":"Email"},
3115
- "PrivateSkillIds":{"shape":"ShortSkillIdList"}
3116
- }
3117
- },
3118
- "PutInvitationConfigurationResponse":{
3119
- "type":"structure",
3120
- "members":{
3121
- }
3122
- },
3123
- "PutRoomSkillParameterRequest":{
3124
- "type":"structure",
3125
- "required":[
3126
- "SkillId",
3127
- "RoomSkillParameter"
3128
- ],
3129
- "members":{
3130
- "RoomArn":{"shape":"Arn"},
3131
- "SkillId":{"shape":"SkillId"},
3132
- "RoomSkillParameter":{"shape":"RoomSkillParameter"}
3133
- }
3134
- },
3135
- "PutRoomSkillParameterResponse":{
3136
- "type":"structure",
3137
- "members":{
3138
- }
3139
- },
3140
- "PutSkillAuthorizationRequest":{
3141
- "type":"structure",
3142
- "required":[
3143
- "AuthorizationResult",
3144
- "SkillId"
3145
- ],
3146
- "members":{
3147
- "AuthorizationResult":{"shape":"AuthorizationResult"},
3148
- "SkillId":{"shape":"SkillId"},
3149
- "RoomArn":{"shape":"Arn"}
3150
- }
3151
- },
3152
- "PutSkillAuthorizationResponse":{
3153
- "type":"structure",
3154
- "members":{
3155
- }
3156
- },
3157
- "RawPhoneNumber":{
3158
- "type":"string",
3159
- "max":50,
3160
- "min":0,
3161
- "pattern":"^[\\+0-9\\#\\,\\(][\\+0-9\\-\\.\\/\\(\\)\\,\\#\\s]+$",
3162
- "sensitive":true
3163
- },
3164
- "RegisterAVSDeviceRequest":{
3165
- "type":"structure",
3166
- "required":[
3167
- "ClientId",
3168
- "UserCode",
3169
- "ProductId",
3170
- "AmazonId"
3171
- ],
3172
- "members":{
3173
- "ClientId":{"shape":"ClientId"},
3174
- "UserCode":{"shape":"UserCode"},
3175
- "ProductId":{"shape":"ProductId"},
3176
- "DeviceSerialNumber":{"shape":"DeviceSerialNumberForAVS"},
3177
- "AmazonId":{"shape":"AmazonId"},
3178
- "RoomArn":{"shape":"Arn"}
3179
- }
3180
- },
3181
- "RegisterAVSDeviceResponse":{
3182
- "type":"structure",
3183
- "members":{
3184
- "DeviceArn":{"shape":"Arn"}
3185
- }
3186
- },
3187
- "RejectSkillRequest":{
3188
- "type":"structure",
3189
- "required":["SkillId"],
3190
- "members":{
3191
- "SkillId":{"shape":"SkillId"}
3192
- }
3193
- },
3194
- "RejectSkillResponse":{
3195
- "type":"structure",
3196
- "members":{
3197
- }
3198
- },
3199
- "ReleaseDate":{"type":"string"},
3200
- "RequireCheckIn":{
3201
- "type":"structure",
3202
- "members":{
3203
- "ReleaseAfterMinutes":{"shape":"Minutes"},
3204
- "Enabled":{"shape":"Boolean"}
3205
- }
3206
- },
3207
- "RequirePin":{
3208
- "type":"string",
3209
- "enum":[
3210
- "YES",
3211
- "NO",
3212
- "OPTIONAL"
3213
- ]
3214
- },
3215
- "ResolveRoomRequest":{
3216
- "type":"structure",
3217
- "required":[
3218
- "UserId",
3219
- "SkillId"
3220
- ],
3221
- "members":{
3222
- "UserId":{"shape":"UserId"},
3223
- "SkillId":{"shape":"SkillId"}
3224
- }
3225
- },
3226
- "ResolveRoomResponse":{
3227
- "type":"structure",
3228
- "members":{
3229
- "RoomArn":{"shape":"Arn"},
3230
- "RoomName":{"shape":"RoomName"},
3231
- "RoomSkillParameters":{"shape":"RoomSkillParameters"}
3232
- }
3233
- },
3234
- "ResourceAssociatedException":{
3235
- "type":"structure",
3236
- "members":{
3237
- "Message":{"shape":"ErrorMessage"}
3238
- },
3239
- "exception":true
3240
- },
3241
- "ResourceInUseException":{
3242
- "type":"structure",
3243
- "members":{
3244
- "Message":{"shape":"ErrorMessage"},
3245
- "ClientRequestToken":{"shape":"ClientRequestToken"}
3246
- },
3247
- "exception":true
3248
- },
3249
- "ReviewKey":{"type":"string"},
3250
- "ReviewValue":{"type":"string"},
3251
- "Reviews":{
3252
- "type":"map",
3253
- "key":{"shape":"ReviewKey"},
3254
- "value":{"shape":"ReviewValue"}
3255
- },
3256
- "RevokeInvitationRequest":{
3257
- "type":"structure",
3258
- "members":{
3259
- "UserArn":{"shape":"Arn"},
3260
- "EnrollmentId":{"shape":"EnrollmentId"}
3261
- }
3262
- },
3263
- "RevokeInvitationResponse":{
3264
- "type":"structure",
3265
- "members":{
3266
- }
3267
- },
3268
- "Room":{
3269
- "type":"structure",
3270
- "members":{
3271
- "RoomArn":{"shape":"Arn"},
3272
- "RoomName":{"shape":"RoomName"},
3273
- "Description":{"shape":"RoomDescription"},
3274
- "ProviderCalendarId":{"shape":"ProviderCalendarId"},
3275
- "ProfileArn":{"shape":"Arn"}
3276
- }
3277
- },
3278
- "RoomData":{
3279
- "type":"structure",
3280
- "members":{
3281
- "RoomArn":{"shape":"Arn"},
3282
- "RoomName":{"shape":"RoomName"},
3283
- "Description":{"shape":"RoomDescription"},
3284
- "ProviderCalendarId":{"shape":"ProviderCalendarId"},
3285
- "ProfileArn":{"shape":"Arn"},
3286
- "ProfileName":{"shape":"ProfileName"}
3287
- }
3288
- },
3289
- "RoomDataList":{
3290
- "type":"list",
3291
- "member":{"shape":"RoomData"}
3292
- },
3293
- "RoomDescription":{
3294
- "type":"string",
3295
- "max":200,
3296
- "min":1,
3297
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3298
- },
3299
- "RoomName":{
3300
- "type":"string",
3301
- "max":100,
3302
- "min":1,
3303
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3304
- },
3305
- "RoomSkillParameter":{
3306
- "type":"structure",
3307
- "required":[
3308
- "ParameterKey",
3309
- "ParameterValue"
3310
- ],
3311
- "members":{
3312
- "ParameterKey":{"shape":"RoomSkillParameterKey"},
3313
- "ParameterValue":{"shape":"RoomSkillParameterValue"}
3314
- }
3315
- },
3316
- "RoomSkillParameterKey":{
3317
- "type":"string",
3318
- "max":256,
3319
- "min":1
3320
- },
3321
- "RoomSkillParameterValue":{
3322
- "type":"string",
3323
- "max":512,
3324
- "min":1
3325
- },
3326
- "RoomSkillParameters":{
3327
- "type":"list",
3328
- "member":{"shape":"RoomSkillParameter"}
3329
- },
3330
- "S3KeyPrefix":{
3331
- "type":"string",
3332
- "max":100,
3333
- "min":0,
3334
- "pattern":"[A-Za-z0-9!_\\-\\.\\*'()/]*"
3335
- },
3336
- "SampleUtterances":{
3337
- "type":"list",
3338
- "member":{"shape":"Utterance"}
3339
- },
3340
- "SearchAddressBooksRequest":{
3341
- "type":"structure",
3342
- "members":{
3343
- "Filters":{"shape":"FilterList"},
3344
- "SortCriteria":{"shape":"SortList"},
3345
- "NextToken":{"shape":"NextToken"},
3346
- "MaxResults":{"shape":"MaxResults"}
3347
- }
3348
- },
3349
- "SearchAddressBooksResponse":{
3350
- "type":"structure",
3351
- "members":{
3352
- "AddressBooks":{"shape":"AddressBookDataList"},
3353
- "NextToken":{"shape":"NextToken"},
3354
- "TotalCount":{"shape":"TotalCount"}
3355
- }
3356
- },
3357
- "SearchContactsRequest":{
3358
- "type":"structure",
3359
- "members":{
3360
- "Filters":{"shape":"FilterList"},
3361
- "SortCriteria":{"shape":"SortList"},
3362
- "NextToken":{"shape":"NextToken"},
3363
- "MaxResults":{"shape":"MaxResults"}
3364
- }
3365
- },
3366
- "SearchContactsResponse":{
3367
- "type":"structure",
3368
- "members":{
3369
- "Contacts":{"shape":"ContactDataList"},
3370
- "NextToken":{"shape":"NextToken"},
3371
- "TotalCount":{"shape":"TotalCount"}
3372
- }
3373
- },
3374
- "SearchDevicesRequest":{
3375
- "type":"structure",
3376
- "members":{
3377
- "NextToken":{"shape":"NextToken"},
3378
- "MaxResults":{"shape":"MaxResults"},
3379
- "Filters":{"shape":"FilterList"},
3380
- "SortCriteria":{"shape":"SortList"}
3381
- }
3382
- },
3383
- "SearchDevicesResponse":{
3384
- "type":"structure",
3385
- "members":{
3386
- "Devices":{"shape":"DeviceDataList"},
3387
- "NextToken":{"shape":"NextToken"},
3388
- "TotalCount":{"shape":"TotalCount"}
3389
- }
3390
- },
3391
- "SearchNetworkProfilesRequest":{
3392
- "type":"structure",
3393
- "members":{
3394
- "NextToken":{"shape":"NextToken"},
3395
- "MaxResults":{"shape":"MaxResults"},
3396
- "Filters":{"shape":"FilterList"},
3397
- "SortCriteria":{"shape":"SortList"}
3398
- }
3399
- },
3400
- "SearchNetworkProfilesResponse":{
3401
- "type":"structure",
3402
- "members":{
3403
- "NetworkProfiles":{"shape":"NetworkProfileDataList"},
3404
- "NextToken":{"shape":"NextToken"},
3405
- "TotalCount":{"shape":"TotalCount"}
3406
- }
3407
- },
3408
- "SearchProfilesRequest":{
3409
- "type":"structure",
3410
- "members":{
3411
- "NextToken":{"shape":"NextToken"},
3412
- "MaxResults":{"shape":"MaxResults"},
3413
- "Filters":{"shape":"FilterList"},
3414
- "SortCriteria":{"shape":"SortList"}
3415
- }
3416
- },
3417
- "SearchProfilesResponse":{
3418
- "type":"structure",
3419
- "members":{
3420
- "Profiles":{"shape":"ProfileDataList"},
3421
- "NextToken":{"shape":"NextToken"},
3422
- "TotalCount":{"shape":"TotalCount"}
3423
- }
3424
- },
3425
- "SearchRoomsRequest":{
3426
- "type":"structure",
3427
- "members":{
3428
- "NextToken":{"shape":"NextToken"},
3429
- "MaxResults":{"shape":"MaxResults"},
3430
- "Filters":{"shape":"FilterList"},
3431
- "SortCriteria":{"shape":"SortList"}
3432
- }
3433
- },
3434
- "SearchRoomsResponse":{
3435
- "type":"structure",
3436
- "members":{
3437
- "Rooms":{"shape":"RoomDataList"},
3438
- "NextToken":{"shape":"NextToken"},
3439
- "TotalCount":{"shape":"TotalCount"}
3440
- }
3441
- },
3442
- "SearchSkillGroupsRequest":{
3443
- "type":"structure",
3444
- "members":{
3445
- "NextToken":{"shape":"NextToken"},
3446
- "MaxResults":{"shape":"MaxResults"},
3447
- "Filters":{"shape":"FilterList"},
3448
- "SortCriteria":{"shape":"SortList"}
3449
- }
3450
- },
3451
- "SearchSkillGroupsResponse":{
3452
- "type":"structure",
3453
- "members":{
3454
- "SkillGroups":{"shape":"SkillGroupDataList"},
3455
- "NextToken":{"shape":"NextToken"},
3456
- "TotalCount":{"shape":"TotalCount"}
3457
- }
3458
- },
3459
- "SearchUsersRequest":{
3460
- "type":"structure",
3461
- "members":{
3462
- "NextToken":{"shape":"NextToken"},
3463
- "MaxResults":{"shape":"MaxResults"},
3464
- "Filters":{"shape":"FilterList"},
3465
- "SortCriteria":{"shape":"SortList"}
3466
- }
3467
- },
3468
- "SearchUsersResponse":{
3469
- "type":"structure",
3470
- "members":{
3471
- "Users":{"shape":"UserDataList"},
3472
- "NextToken":{"shape":"NextToken"},
3473
- "TotalCount":{"shape":"TotalCount"}
3474
- }
3475
- },
3476
- "SendAnnouncementRequest":{
3477
- "type":"structure",
3478
- "required":[
3479
- "RoomFilters",
3480
- "Content",
3481
- "ClientRequestToken"
3482
- ],
3483
- "members":{
3484
- "RoomFilters":{"shape":"FilterList"},
3485
- "Content":{"shape":"Content"},
3486
- "TimeToLiveInSeconds":{"shape":"TimeToLiveInSeconds"},
3487
- "ClientRequestToken":{
3488
- "shape":"ClientRequestToken",
3489
- "idempotencyToken":true
3490
- }
3491
- }
3492
- },
3493
- "SendAnnouncementResponse":{
3494
- "type":"structure",
3495
- "members":{
3496
- "AnnouncementArn":{"shape":"Arn"}
3497
- }
3498
- },
3499
- "SendInvitationRequest":{
3500
- "type":"structure",
3501
- "members":{
3502
- "UserArn":{"shape":"Arn"}
3503
- }
3504
- },
3505
- "SendInvitationResponse":{
3506
- "type":"structure",
3507
- "members":{
3508
- }
3509
- },
3510
- "ShortDescription":{"type":"string"},
3511
- "ShortSkillIdList":{
3512
- "type":"list",
3513
- "member":{"shape":"SkillId"},
3514
- "max":3,
3515
- "min":0
3516
- },
3517
- "SipAddress":{
3518
- "type":"structure",
3519
- "required":[
3520
- "Uri",
3521
- "Type"
3522
- ],
3523
- "members":{
3524
- "Uri":{"shape":"SipUri"},
3525
- "Type":{"shape":"SipType"}
3526
- }
3527
- },
3528
- "SipAddressList":{
3529
- "type":"list",
3530
- "member":{"shape":"SipAddress"},
3531
- "max":1,
3532
- "min":0
3533
- },
3534
- "SipType":{
3535
- "type":"string",
3536
- "enum":["WORK"],
3537
- "sensitive":true
3538
- },
3539
- "SipUri":{
3540
- "type":"string",
3541
- "max":256,
3542
- "min":1,
3543
- "pattern":"^sip[s]?:([^@:]+)\\@([^@]+)$",
3544
- "sensitive":true
3545
- },
3546
- "SkillDetails":{
3547
- "type":"structure",
3548
- "members":{
3549
- "ProductDescription":{"shape":"ProductDescription"},
3550
- "InvocationPhrase":{"shape":"InvocationPhrase"},
3551
- "ReleaseDate":{"shape":"ReleaseDate"},
3552
- "EndUserLicenseAgreement":{"shape":"EndUserLicenseAgreement"},
3553
- "GenericKeywords":{"shape":"GenericKeywords"},
3554
- "BulletPoints":{"shape":"BulletPoints"},
3555
- "NewInThisVersionBulletPoints":{"shape":"NewInThisVersionBulletPoints"},
3556
- "SkillTypes":{"shape":"SkillTypes"},
3557
- "Reviews":{"shape":"Reviews"},
3558
- "DeveloperInfo":{"shape":"DeveloperInfo"}
3559
- }
3560
- },
3561
- "SkillGroup":{
3562
- "type":"structure",
3563
- "members":{
3564
- "SkillGroupArn":{"shape":"Arn"},
3565
- "SkillGroupName":{"shape":"SkillGroupName"},
3566
- "Description":{"shape":"SkillGroupDescription"}
3567
- }
3568
- },
3569
- "SkillGroupData":{
3570
- "type":"structure",
3571
- "members":{
3572
- "SkillGroupArn":{"shape":"Arn"},
3573
- "SkillGroupName":{"shape":"SkillGroupName"},
3574
- "Description":{"shape":"SkillGroupDescription"}
3575
- }
3576
- },
3577
- "SkillGroupDataList":{
3578
- "type":"list",
3579
- "member":{"shape":"SkillGroupData"}
3580
- },
3581
- "SkillGroupDescription":{
3582
- "type":"string",
3583
- "max":200,
3584
- "min":1,
3585
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3586
- },
3587
- "SkillGroupName":{
3588
- "type":"string",
3589
- "max":100,
3590
- "min":1,
3591
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3592
- },
3593
- "SkillId":{
3594
- "type":"string",
3595
- "pattern":"(^amzn1\\.ask\\.skill\\.[0-9a-f\\-]{1,200})|(^amzn1\\.echo-sdk-ams\\.app\\.[0-9a-f\\-]{1,200})"
3596
- },
3597
- "SkillListMaxResults":{
3598
- "type":"integer",
3599
- "max":10,
3600
- "min":1
3601
- },
3602
- "SkillName":{
3603
- "type":"string",
3604
- "max":100,
3605
- "min":1,
3606
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3607
- },
3608
- "SkillNotLinkedException":{
3609
- "type":"structure",
3610
- "members":{
3611
- "Message":{"shape":"ErrorMessage"}
3612
- },
3613
- "exception":true
3614
- },
3615
- "SkillStoreType":{"type":"string"},
3616
- "SkillSummary":{
3617
- "type":"structure",
3618
- "members":{
3619
- "SkillId":{"shape":"SkillId"},
3620
- "SkillName":{"shape":"SkillName"},
3621
- "SupportsLinking":{"shape":"boolean"},
3622
- "EnablementType":{"shape":"EnablementType"},
3623
- "SkillType":{"shape":"SkillType"}
3624
- }
3625
- },
3626
- "SkillSummaryList":{
3627
- "type":"list",
3628
- "member":{"shape":"SkillSummary"}
3629
- },
3630
- "SkillType":{
3631
- "type":"string",
3632
- "enum":[
3633
- "PUBLIC",
3634
- "PRIVATE"
3635
- ],
3636
- "max":100,
3637
- "min":1,
3638
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
3639
- },
3640
- "SkillTypeFilter":{
3641
- "type":"string",
3642
- "enum":[
3643
- "PUBLIC",
3644
- "PRIVATE",
3645
- "ALL"
3646
- ]
3647
- },
3648
- "SkillTypes":{
3649
- "type":"list",
3650
- "member":{"shape":"SkillStoreType"}
3651
- },
3652
- "SkillsStoreSkill":{
3653
- "type":"structure",
3654
- "members":{
3655
- "SkillId":{"shape":"SkillId"},
3656
- "SkillName":{"shape":"SkillName"},
3657
- "ShortDescription":{"shape":"ShortDescription"},
3658
- "IconUrl":{"shape":"IconUrl"},
3659
- "SampleUtterances":{"shape":"SampleUtterances"},
3660
- "SkillDetails":{"shape":"SkillDetails"},
3661
- "SupportsLinking":{"shape":"boolean"}
3662
- }
3663
- },
3664
- "SkillsStoreSkillList":{
3665
- "type":"list",
3666
- "member":{"shape":"SkillsStoreSkill"}
3667
- },
3668
- "SmartHomeAppliance":{
3669
- "type":"structure",
3670
- "members":{
3671
- "FriendlyName":{"shape":"ApplianceFriendlyName"},
3672
- "Description":{"shape":"ApplianceDescription"},
3673
- "ManufacturerName":{"shape":"ApplianceManufacturerName"}
3674
- }
3675
- },
3676
- "SmartHomeApplianceList":{
3677
- "type":"list",
3678
- "member":{"shape":"SmartHomeAppliance"}
3679
- },
3680
- "SoftwareVersion":{"type":"string"},
3681
- "Sort":{
3682
- "type":"structure",
3683
- "required":[
3684
- "Key",
3685
- "Value"
3686
- ],
3687
- "members":{
3688
- "Key":{"shape":"SortKey"},
3689
- "Value":{"shape":"SortValue"}
3690
- }
3691
- },
3692
- "SortKey":{
3693
- "type":"string",
3694
- "max":500,
3695
- "min":1
3696
- },
3697
- "SortList":{
3698
- "type":"list",
3699
- "member":{"shape":"Sort"},
3700
- "max":25
3701
- },
3702
- "SortValue":{
3703
- "type":"string",
3704
- "enum":[
3705
- "ASC",
3706
- "DESC"
3707
- ]
3708
- },
3709
- "Ssml":{
3710
- "type":"structure",
3711
- "required":[
3712
- "Locale",
3713
- "Value"
3714
- ],
3715
- "members":{
3716
- "Locale":{"shape":"Locale"},
3717
- "Value":{"shape":"SsmlValue"}
3718
- }
3719
- },
3720
- "SsmlList":{
3721
- "type":"list",
3722
- "member":{"shape":"Ssml"},
3723
- "max":1
3724
- },
3725
- "SsmlValue":{
3726
- "type":"string",
3727
- "max":4096,
3728
- "min":0,
3729
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3730
- },
3731
- "StartDeviceSyncRequest":{
3732
- "type":"structure",
3733
- "required":["Features"],
3734
- "members":{
3735
- "RoomArn":{"shape":"Arn"},
3736
- "DeviceArn":{"shape":"Arn"},
3737
- "Features":{"shape":"Features"}
3738
- }
3739
- },
3740
- "StartDeviceSyncResponse":{
3741
- "type":"structure",
3742
- "members":{
3743
- }
3744
- },
3745
- "StartSmartHomeApplianceDiscoveryRequest":{
3746
- "type":"structure",
3747
- "required":["RoomArn"],
3748
- "members":{
3749
- "RoomArn":{"shape":"Arn"}
3750
- }
3751
- },
3752
- "StartSmartHomeApplianceDiscoveryResponse":{
3753
- "type":"structure",
3754
- "members":{
3755
- }
3756
- },
3757
- "Tag":{
3758
- "type":"structure",
3759
- "required":[
3760
- "Key",
3761
- "Value"
3762
- ],
3763
- "members":{
3764
- "Key":{"shape":"TagKey"},
3765
- "Value":{"shape":"TagValue"}
3766
- }
3767
- },
3768
- "TagKey":{
3769
- "type":"string",
3770
- "max":128,
3771
- "min":1,
3772
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3773
- },
3774
- "TagKeyList":{
3775
- "type":"list",
3776
- "member":{"shape":"TagKey"}
3777
- },
3778
- "TagList":{
3779
- "type":"list",
3780
- "member":{"shape":"Tag"}
3781
- },
3782
- "TagResourceRequest":{
3783
- "type":"structure",
3784
- "required":[
3785
- "Arn",
3786
- "Tags"
3787
- ],
3788
- "members":{
3789
- "Arn":{"shape":"Arn"},
3790
- "Tags":{"shape":"TagList"}
3791
- }
3792
- },
3793
- "TagResourceResponse":{
3794
- "type":"structure",
3795
- "members":{
3796
- }
3797
- },
3798
- "TagValue":{
3799
- "type":"string",
3800
- "max":256,
3801
- "min":0,
3802
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3803
- },
3804
- "TemperatureUnit":{
3805
- "type":"string",
3806
- "enum":[
3807
- "FAHRENHEIT",
3808
- "CELSIUS"
3809
- ]
3810
- },
3811
- "Text":{
3812
- "type":"structure",
3813
- "required":[
3814
- "Locale",
3815
- "Value"
3816
- ],
3817
- "members":{
3818
- "Locale":{"shape":"Locale"},
3819
- "Value":{"shape":"TextValue"}
3820
- }
3821
- },
3822
- "TextList":{
3823
- "type":"list",
3824
- "member":{"shape":"Text"},
3825
- "max":1
3826
- },
3827
- "TextValue":{
3828
- "type":"string",
3829
- "max":4096,
3830
- "min":0,
3831
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
3832
- },
3833
- "TimeToLiveInSeconds":{
3834
- "type":"integer",
3835
- "max":3600,
3836
- "min":1
3837
- },
3838
- "Timezone":{
3839
- "type":"string",
3840
- "max":100,
3841
- "min":1
3842
- },
3843
- "TotalCount":{"type":"integer"},
3844
- "TrustAnchor":{
3845
- "type":"string",
3846
- "pattern":"-{5}BEGIN CERTIFICATE-{5}\\u000D?\\u000A([A-Za-z0-9/+]{64}\\u000D?\\u000A)*[A-Za-z0-9/+]{1,64}={0,2}\\u000D?\\u000A-{5}END CERTIFICATE-{5}(\\u000D?\\u000A)?"
3847
- },
3848
- "TrustAnchorList":{
3849
- "type":"list",
3850
- "member":{"shape":"TrustAnchor"},
3851
- "max":5,
3852
- "min":1
3853
- },
3854
- "UnauthorizedException":{
3855
- "type":"structure",
3856
- "members":{
3857
- "Message":{"shape":"ErrorMessage"}
3858
- },
3859
- "exception":true
3860
- },
3861
- "UntagResourceRequest":{
3862
- "type":"structure",
3863
- "required":[
3864
- "Arn",
3865
- "TagKeys"
3866
- ],
3867
- "members":{
3868
- "Arn":{"shape":"Arn"},
3869
- "TagKeys":{"shape":"TagKeyList"}
3870
- }
3871
- },
3872
- "UntagResourceResponse":{
3873
- "type":"structure",
3874
- "members":{
3875
- }
3876
- },
3877
- "UpdateAddressBookRequest":{
3878
- "type":"structure",
3879
- "required":["AddressBookArn"],
3880
- "members":{
3881
- "AddressBookArn":{"shape":"Arn"},
3882
- "Name":{"shape":"AddressBookName"},
3883
- "Description":{"shape":"AddressBookDescription"}
3884
- }
3885
- },
3886
- "UpdateAddressBookResponse":{
3887
- "type":"structure",
3888
- "members":{
3889
- }
3890
- },
3891
- "UpdateBusinessReportScheduleRequest":{
3892
- "type":"structure",
3893
- "required":["ScheduleArn"],
3894
- "members":{
3895
- "ScheduleArn":{"shape":"Arn"},
3896
- "S3BucketName":{"shape":"CustomerS3BucketName"},
3897
- "S3KeyPrefix":{"shape":"S3KeyPrefix"},
3898
- "Format":{"shape":"BusinessReportFormat"},
3899
- "ScheduleName":{"shape":"BusinessReportScheduleName"},
3900
- "Recurrence":{"shape":"BusinessReportRecurrence"}
3901
- }
3902
- },
3903
- "UpdateBusinessReportScheduleResponse":{
3904
- "type":"structure",
3905
- "members":{
3906
- }
3907
- },
3908
- "UpdateConferenceProviderRequest":{
3909
- "type":"structure",
3910
- "required":[
3911
- "ConferenceProviderArn",
3912
- "ConferenceProviderType",
3913
- "MeetingSetting"
3914
- ],
3915
- "members":{
3916
- "ConferenceProviderArn":{"shape":"Arn"},
3917
- "ConferenceProviderType":{"shape":"ConferenceProviderType"},
3918
- "IPDialIn":{"shape":"IPDialIn"},
3919
- "PSTNDialIn":{"shape":"PSTNDialIn"},
3920
- "MeetingSetting":{"shape":"MeetingSetting"}
3921
- }
3922
- },
3923
- "UpdateConferenceProviderResponse":{
3924
- "type":"structure",
3925
- "members":{
3926
- }
3927
- },
3928
- "UpdateContactRequest":{
3929
- "type":"structure",
3930
- "required":["ContactArn"],
3931
- "members":{
3932
- "ContactArn":{"shape":"Arn"},
3933
- "DisplayName":{"shape":"ContactName"},
3934
- "FirstName":{"shape":"ContactName"},
3935
- "LastName":{"shape":"ContactName"},
3936
- "PhoneNumber":{"shape":"RawPhoneNumber"},
3937
- "PhoneNumbers":{"shape":"PhoneNumberList"},
3938
- "SipAddresses":{"shape":"SipAddressList"}
3939
- }
3940
- },
3941
- "UpdateContactResponse":{
3942
- "type":"structure",
3943
- "members":{
3944
- }
3945
- },
3946
- "UpdateDeviceRequest":{
3947
- "type":"structure",
3948
- "members":{
3949
- "DeviceArn":{"shape":"Arn"},
3950
- "DeviceName":{"shape":"DeviceName"}
3951
- }
3952
- },
3953
- "UpdateDeviceResponse":{
3954
- "type":"structure",
3955
- "members":{
3956
- }
3957
- },
3958
- "UpdateEndOfMeetingReminder":{
3959
- "type":"structure",
3960
- "members":{
3961
- "ReminderAtMinutes":{"shape":"EndOfMeetingReminderMinutesList"},
3962
- "ReminderType":{"shape":"EndOfMeetingReminderType"},
3963
- "Enabled":{"shape":"Boolean"}
3964
- }
3965
- },
3966
- "UpdateGatewayGroupRequest":{
3967
- "type":"structure",
3968
- "required":["GatewayGroupArn"],
3969
- "members":{
3970
- "GatewayGroupArn":{"shape":"Arn"},
3971
- "Name":{"shape":"GatewayGroupName"},
3972
- "Description":{"shape":"GatewayGroupDescription"}
3973
- }
3974
- },
3975
- "UpdateGatewayGroupResponse":{
3976
- "type":"structure",
3977
- "members":{
3978
- }
3979
- },
3980
- "UpdateGatewayRequest":{
3981
- "type":"structure",
3982
- "required":["GatewayArn"],
3983
- "members":{
3984
- "GatewayArn":{"shape":"Arn"},
3985
- "Name":{"shape":"GatewayName"},
3986
- "Description":{"shape":"GatewayDescription"},
3987
- "SoftwareVersion":{"shape":"GatewayVersion"}
3988
- }
3989
- },
3990
- "UpdateGatewayResponse":{
3991
- "type":"structure",
3992
- "members":{
3993
- }
3994
- },
3995
- "UpdateInstantBooking":{
3996
- "type":"structure",
3997
- "members":{
3998
- "DurationInMinutes":{"shape":"Minutes"},
3999
- "Enabled":{"shape":"Boolean"}
4000
- }
4001
- },
4002
- "UpdateMeetingRoomConfiguration":{
4003
- "type":"structure",
4004
- "members":{
4005
- "RoomUtilizationMetricsEnabled":{"shape":"Boolean"},
4006
- "EndOfMeetingReminder":{"shape":"UpdateEndOfMeetingReminder"},
4007
- "InstantBooking":{"shape":"UpdateInstantBooking"},
4008
- "RequireCheckIn":{"shape":"UpdateRequireCheckIn"}
4009
- }
4010
- },
4011
- "UpdateNetworkProfileRequest":{
4012
- "type":"structure",
4013
- "required":["NetworkProfileArn"],
4014
- "members":{
4015
- "NetworkProfileArn":{"shape":"Arn"},
4016
- "NetworkProfileName":{"shape":"NetworkProfileName"},
4017
- "Description":{"shape":"NetworkProfileDescription"},
4018
- "CurrentPassword":{"shape":"CurrentWiFiPassword"},
4019
- "NextPassword":{"shape":"NextWiFiPassword"},
4020
- "CertificateAuthorityArn":{"shape":"Arn"},
4021
- "TrustAnchors":{"shape":"TrustAnchorList"}
4022
- }
4023
- },
4024
- "UpdateNetworkProfileResponse":{
4025
- "type":"structure",
4026
- "members":{
4027
- }
4028
- },
4029
- "UpdateProfileRequest":{
4030
- "type":"structure",
4031
- "members":{
4032
- "ProfileArn":{"shape":"Arn"},
4033
- "ProfileName":{"shape":"ProfileName"},
4034
- "IsDefault":{"shape":"Boolean"},
4035
- "Timezone":{"shape":"Timezone"},
4036
- "Address":{"shape":"Address"},
4037
- "DistanceUnit":{"shape":"DistanceUnit"},
4038
- "TemperatureUnit":{"shape":"TemperatureUnit"},
4039
- "WakeWord":{"shape":"WakeWord"},
4040
- "Locale":{"shape":"DeviceLocale"},
4041
- "SetupModeDisabled":{"shape":"Boolean"},
4042
- "MaxVolumeLimit":{"shape":"MaxVolumeLimit"},
4043
- "PSTNEnabled":{"shape":"Boolean"},
4044
- "MeetingRoomConfiguration":{"shape":"UpdateMeetingRoomConfiguration"}
4045
- }
4046
- },
4047
- "UpdateProfileResponse":{
4048
- "type":"structure",
4049
- "members":{
4050
- }
4051
- },
4052
- "UpdateRequireCheckIn":{
4053
- "type":"structure",
4054
- "members":{
4055
- "ReleaseAfterMinutes":{"shape":"Minutes"},
4056
- "Enabled":{"shape":"Boolean"}
4057
- }
4058
- },
4059
- "UpdateRoomRequest":{
4060
- "type":"structure",
4061
- "members":{
4062
- "RoomArn":{"shape":"Arn"},
4063
- "RoomName":{"shape":"RoomName"},
4064
- "Description":{"shape":"RoomDescription"},
4065
- "ProviderCalendarId":{"shape":"ProviderCalendarId"},
4066
- "ProfileArn":{"shape":"Arn"}
4067
- }
4068
- },
4069
- "UpdateRoomResponse":{
4070
- "type":"structure",
4071
- "members":{
4072
- }
4073
- },
4074
- "UpdateSkillGroupRequest":{
4075
- "type":"structure",
4076
- "members":{
4077
- "SkillGroupArn":{"shape":"Arn"},
4078
- "SkillGroupName":{"shape":"SkillGroupName"},
4079
- "Description":{"shape":"SkillGroupDescription"}
4080
- }
4081
- },
4082
- "UpdateSkillGroupResponse":{
4083
- "type":"structure",
4084
- "members":{
4085
- }
4086
- },
4087
- "Url":{"type":"string"},
4088
- "UserCode":{
4089
- "type":"string",
4090
- "max":128,
4091
- "min":1
4092
- },
4093
- "UserData":{
4094
- "type":"structure",
4095
- "members":{
4096
- "UserArn":{"shape":"Arn"},
4097
- "FirstName":{"shape":"user_FirstName"},
4098
- "LastName":{"shape":"user_LastName"},
4099
- "Email":{"shape":"Email"},
4100
- "EnrollmentStatus":{"shape":"EnrollmentStatus"},
4101
- "EnrollmentId":{"shape":"EnrollmentId"}
4102
- }
4103
- },
4104
- "UserDataList":{
4105
- "type":"list",
4106
- "member":{"shape":"UserData"}
4107
- },
4108
- "UserId":{
4109
- "type":"string",
4110
- "pattern":"amzn1\\.[A-Za-z0-9+-\\/=.]{1,300}"
4111
- },
4112
- "Utterance":{"type":"string"},
4113
- "Value":{
4114
- "type":"string",
4115
- "min":1
4116
- },
4117
- "WakeWord":{
4118
- "type":"string",
4119
- "enum":[
4120
- "ALEXA",
4121
- "AMAZON",
4122
- "ECHO",
4123
- "COMPUTER"
4124
- ]
4125
- },
4126
- "boolean":{"type":"boolean"},
4127
- "user_FirstName":{
4128
- "type":"string",
4129
- "max":30,
4130
- "min":0,
4131
- "pattern":"([A-Za-z\\-' 0-9._]|\\p{IsLetter})*"
4132
- },
4133
- "user_LastName":{
4134
- "type":"string",
4135
- "max":30,
4136
- "min":0,
4137
- "pattern":"([A-Za-z\\-' 0-9._]|\\p{IsLetter})*"
4138
- },
4139
- "user_UserId":{
4140
- "type":"string",
4141
- "max":128,
4142
- "min":1,
4143
- "pattern":"[a-zA-Z0-9@_+.-]*"
4144
- }
4145
- }
4146
- }