aws-sdk-core 2.11.435 → 3.89.0

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