aws-sdk-core 2.11.335 → 3.62.0

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