aws-sdk-core 2.11.398 → 3.76.0

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