aws-sdk-core 2.11.407 → 3.77.0

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