aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  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 +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  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 +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  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 +56 -21
  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 +256 -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 +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  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/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,263 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-05-28",
5
- "endpointPrefix":"data.iot",
6
- "protocol":"rest-json",
7
- "serviceFullName":"AWS IoT Data Plane",
8
- "signatureVersion":"v4",
9
- "signingName":"iotdata"
10
- },
11
- "operations":{
12
- "DeleteThingShadow":{
13
- "name":"DeleteThingShadow",
14
- "http":{
15
- "method":"DELETE",
16
- "requestUri":"/things/{thingName}/shadow"
17
- },
18
- "input":{"shape":"DeleteThingShadowRequest"},
19
- "output":{"shape":"DeleteThingShadowResponse"},
20
- "errors":[
21
- {"shape":"ResourceNotFoundException"},
22
- {"shape":"InvalidRequestException"},
23
- {"shape":"ThrottlingException"},
24
- {"shape":"UnauthorizedException"},
25
- {"shape":"ServiceUnavailableException"},
26
- {"shape":"InternalFailureException"},
27
- {"shape":"MethodNotAllowedException"},
28
- {"shape":"UnsupportedDocumentEncodingException"}
29
- ]
30
- },
31
- "GetThingShadow":{
32
- "name":"GetThingShadow",
33
- "http":{
34
- "method":"GET",
35
- "requestUri":"/things/{thingName}/shadow"
36
- },
37
- "input":{"shape":"GetThingShadowRequest"},
38
- "output":{"shape":"GetThingShadowResponse"},
39
- "errors":[
40
- {"shape":"InvalidRequestException"},
41
- {"shape":"ResourceNotFoundException"},
42
- {"shape":"ThrottlingException"},
43
- {"shape":"UnauthorizedException"},
44
- {"shape":"ServiceUnavailableException"},
45
- {"shape":"InternalFailureException"},
46
- {"shape":"MethodNotAllowedException"},
47
- {"shape":"UnsupportedDocumentEncodingException"}
48
- ]
49
- },
50
- "Publish":{
51
- "name":"Publish",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/topics/{topic}"
55
- },
56
- "input":{"shape":"PublishRequest"},
57
- "errors":[
58
- {"shape":"InternalFailureException"},
59
- {"shape":"InvalidRequestException"},
60
- {"shape":"UnauthorizedException"},
61
- {"shape":"MethodNotAllowedException"}
62
- ]
63
- },
64
- "UpdateThingShadow":{
65
- "name":"UpdateThingShadow",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/things/{thingName}/shadow"
69
- },
70
- "input":{"shape":"UpdateThingShadowRequest"},
71
- "output":{"shape":"UpdateThingShadowResponse"},
72
- "errors":[
73
- {"shape":"ConflictException"},
74
- {"shape":"RequestEntityTooLargeException"},
75
- {"shape":"InvalidRequestException"},
76
- {"shape":"ThrottlingException"},
77
- {"shape":"UnauthorizedException"},
78
- {"shape":"ServiceUnavailableException"},
79
- {"shape":"InternalFailureException"},
80
- {"shape":"MethodNotAllowedException"},
81
- {"shape":"UnsupportedDocumentEncodingException"}
82
- ]
83
- }
84
- },
85
- "shapes":{
86
- "ConflictException":{
87
- "type":"structure",
88
- "members":{
89
- "message":{"shape":"ErrorMessage"}
90
- },
91
- "error":{"httpStatusCode":409},
92
- "exception":true
93
- },
94
- "DeleteThingShadowRequest":{
95
- "type":"structure",
96
- "required":["thingName"],
97
- "members":{
98
- "thingName":{
99
- "shape":"ThingName",
100
- "location":"uri",
101
- "locationName":"thingName"
102
- }
103
- }
104
- },
105
- "DeleteThingShadowResponse":{
106
- "type":"structure",
107
- "required":["payload"],
108
- "members":{
109
- "payload":{"shape":"JsonDocument"}
110
- },
111
- "payload":"payload"
112
- },
113
- "ErrorMessage":{"type":"string"},
114
- "GetThingShadowRequest":{
115
- "type":"structure",
116
- "required":["thingName"],
117
- "members":{
118
- "thingName":{
119
- "shape":"ThingName",
120
- "location":"uri",
121
- "locationName":"thingName"
122
- }
123
- }
124
- },
125
- "GetThingShadowResponse":{
126
- "type":"structure",
127
- "members":{
128
- "payload":{"shape":"JsonDocument"}
129
- },
130
- "payload":"payload"
131
- },
132
- "InternalFailureException":{
133
- "type":"structure",
134
- "members":{
135
- "message":{"shape":"errorMessage"}
136
- },
137
- "error":{"httpStatusCode":500},
138
- "exception":true,
139
- "fault":true
140
- },
141
- "InvalidRequestException":{
142
- "type":"structure",
143
- "members":{
144
- "message":{"shape":"errorMessage"}
145
- },
146
- "error":{"httpStatusCode":400},
147
- "exception":true
148
- },
149
- "JsonDocument":{"type":"blob"},
150
- "MethodNotAllowedException":{
151
- "type":"structure",
152
- "members":{
153
- "message":{"shape":"ErrorMessage"}
154
- },
155
- "error":{"httpStatusCode":405},
156
- "exception":true
157
- },
158
- "Payload":{"type":"blob"},
159
- "PublishRequest":{
160
- "type":"structure",
161
- "required":["topic"],
162
- "members":{
163
- "topic":{
164
- "shape":"Topic",
165
- "location":"uri",
166
- "locationName":"topic"
167
- },
168
- "qos":{
169
- "shape":"Qos",
170
- "location":"querystring",
171
- "locationName":"qos"
172
- },
173
- "payload":{"shape":"Payload"}
174
- },
175
- "payload":"payload"
176
- },
177
- "Qos":{
178
- "type":"integer",
179
- "max":1,
180
- "min":0
181
- },
182
- "RequestEntityTooLargeException":{
183
- "type":"structure",
184
- "members":{
185
- "message":{"shape":"ErrorMessage"}
186
- },
187
- "error":{"httpStatusCode":413},
188
- "exception":true
189
- },
190
- "ResourceNotFoundException":{
191
- "type":"structure",
192
- "members":{
193
- "message":{"shape":"errorMessage"}
194
- },
195
- "error":{"httpStatusCode":404},
196
- "exception":true
197
- },
198
- "ServiceUnavailableException":{
199
- "type":"structure",
200
- "members":{
201
- "message":{"shape":"errorMessage"}
202
- },
203
- "error":{"httpStatusCode":503},
204
- "exception":true,
205
- "fault":true
206
- },
207
- "ThingName":{
208
- "type":"string",
209
- "max":128,
210
- "min":1,
211
- "pattern":"[a-zA-Z0-9_-]+"
212
- },
213
- "ThrottlingException":{
214
- "type":"structure",
215
- "members":{
216
- "message":{"shape":"errorMessage"}
217
- },
218
- "error":{"httpStatusCode":429},
219
- "exception":true
220
- },
221
- "Topic":{"type":"string"},
222
- "UnauthorizedException":{
223
- "type":"structure",
224
- "members":{
225
- "message":{"shape":"errorMessage"}
226
- },
227
- "error":{"httpStatusCode":401},
228
- "exception":true
229
- },
230
- "UnsupportedDocumentEncodingException":{
231
- "type":"structure",
232
- "members":{
233
- "message":{"shape":"errorMessage"}
234
- },
235
- "error":{"httpStatusCode":415},
236
- "exception":true
237
- },
238
- "UpdateThingShadowRequest":{
239
- "type":"structure",
240
- "required":[
241
- "thingName",
242
- "payload"
243
- ],
244
- "members":{
245
- "thingName":{
246
- "shape":"ThingName",
247
- "location":"uri",
248
- "locationName":"thingName"
249
- },
250
- "payload":{"shape":"JsonDocument"}
251
- },
252
- "payload":"payload"
253
- },
254
- "UpdateThingShadowResponse":{
255
- "type":"structure",
256
- "members":{
257
- "payload":{"shape":"JsonDocument"}
258
- },
259
- "payload":"payload"
260
- },
261
- "errorMessage":{"type":"string"}
262
- }
263
- }
@@ -1,3800 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-05-28",
5
- "endpointPrefix":"iot",
6
- "serviceFullName":"AWS IoT",
7
- "signatureVersion":"v4",
8
- "signingName":"execute-api",
9
- "protocol":"rest-json"
10
- },
11
- "operations":{
12
- "AcceptCertificateTransfer":{
13
- "name":"AcceptCertificateTransfer",
14
- "http":{
15
- "method":"PATCH",
16
- "requestUri":"/accept-certificate-transfer/{certificateId}"
17
- },
18
- "input":{"shape":"AcceptCertificateTransferRequest"},
19
- "errors":[
20
- {
21
- "shape":"ResourceNotFoundException",
22
- "error":{"httpStatusCode":404},
23
- "exception":true
24
- },
25
- {
26
- "shape":"TransferAlreadyCompletedException",
27
- "error":{"httpStatusCode":410},
28
- "exception":true
29
- },
30
- {
31
- "shape":"InvalidRequestException",
32
- "error":{"httpStatusCode":400},
33
- "exception":true
34
- },
35
- {
36
- "shape":"ThrottlingException",
37
- "error":{"httpStatusCode":429},
38
- "exception":true
39
- },
40
- {
41
- "shape":"UnauthorizedException",
42
- "error":{"httpStatusCode":401},
43
- "exception":true
44
- },
45
- {
46
- "shape":"ServiceUnavailableException",
47
- "error":{"httpStatusCode":503},
48
- "exception":true,
49
- "fault":true
50
- },
51
- {
52
- "shape":"InternalFailureException",
53
- "error":{"httpStatusCode":500},
54
- "exception":true,
55
- "fault":true
56
- }
57
- ]
58
- },
59
- "AttachPrincipalPolicy":{
60
- "name":"AttachPrincipalPolicy",
61
- "http":{
62
- "method":"PUT",
63
- "requestUri":"/principal-policies/{policyName}"
64
- },
65
- "input":{"shape":"AttachPrincipalPolicyRequest"},
66
- "errors":[
67
- {
68
- "shape":"ResourceNotFoundException",
69
- "error":{"httpStatusCode":404},
70
- "exception":true
71
- },
72
- {
73
- "shape":"InvalidRequestException",
74
- "error":{"httpStatusCode":400},
75
- "exception":true
76
- },
77
- {
78
- "shape":"ThrottlingException",
79
- "error":{"httpStatusCode":429},
80
- "exception":true
81
- },
82
- {
83
- "shape":"UnauthorizedException",
84
- "error":{"httpStatusCode":401},
85
- "exception":true
86
- },
87
- {
88
- "shape":"ServiceUnavailableException",
89
- "error":{"httpStatusCode":503},
90
- "exception":true,
91
- "fault":true
92
- },
93
- {
94
- "shape":"InternalFailureException",
95
- "error":{"httpStatusCode":500},
96
- "exception":true,
97
- "fault":true
98
- },
99
- {
100
- "shape":"LimitExceededException",
101
- "error":{"httpStatusCode":410},
102
- "exception":true
103
- }
104
- ]
105
- },
106
- "AttachThingPrincipal":{
107
- "name":"AttachThingPrincipal",
108
- "http":{
109
- "method":"PUT",
110
- "requestUri":"/things/{thingName}/principals"
111
- },
112
- "input":{"shape":"AttachThingPrincipalRequest"},
113
- "output":{"shape":"AttachThingPrincipalResponse"},
114
- "errors":[
115
- {
116
- "shape":"ResourceNotFoundException",
117
- "error":{"httpStatusCode":404},
118
- "exception":true
119
- },
120
- {
121
- "shape":"InvalidRequestException",
122
- "error":{"httpStatusCode":400},
123
- "exception":true
124
- },
125
- {
126
- "shape":"ThrottlingException",
127
- "error":{"httpStatusCode":429},
128
- "exception":true
129
- },
130
- {
131
- "shape":"UnauthorizedException",
132
- "error":{"httpStatusCode":401},
133
- "exception":true
134
- },
135
- {
136
- "shape":"ServiceUnavailableException",
137
- "error":{"httpStatusCode":503},
138
- "exception":true,
139
- "fault":true
140
- },
141
- {
142
- "shape":"InternalFailureException",
143
- "error":{"httpStatusCode":500},
144
- "exception":true,
145
- "fault":true
146
- }
147
- ]
148
- },
149
- "CancelCertificateTransfer":{
150
- "name":"CancelCertificateTransfer",
151
- "http":{
152
- "method":"PATCH",
153
- "requestUri":"/cancel-certificate-transfer/{certificateId}"
154
- },
155
- "input":{"shape":"CancelCertificateTransferRequest"},
156
- "errors":[
157
- {
158
- "shape":"ResourceNotFoundException",
159
- "error":{"httpStatusCode":404},
160
- "exception":true
161
- },
162
- {
163
- "shape":"TransferAlreadyCompletedException",
164
- "error":{"httpStatusCode":410},
165
- "exception":true
166
- },
167
- {
168
- "shape":"InvalidRequestException",
169
- "error":{"httpStatusCode":400},
170
- "exception":true
171
- },
172
- {
173
- "shape":"ThrottlingException",
174
- "error":{"httpStatusCode":429},
175
- "exception":true
176
- },
177
- {
178
- "shape":"UnauthorizedException",
179
- "error":{"httpStatusCode":401},
180
- "exception":true
181
- },
182
- {
183
- "shape":"ServiceUnavailableException",
184
- "error":{"httpStatusCode":503},
185
- "exception":true,
186
- "fault":true
187
- },
188
- {
189
- "shape":"InternalFailureException",
190
- "error":{"httpStatusCode":500},
191
- "exception":true,
192
- "fault":true
193
- }
194
- ]
195
- },
196
- "CreateCertificateFromCsr":{
197
- "name":"CreateCertificateFromCsr",
198
- "http":{
199
- "method":"POST",
200
- "requestUri":"/certificates"
201
- },
202
- "input":{"shape":"CreateCertificateFromCsrRequest"},
203
- "output":{"shape":"CreateCertificateFromCsrResponse"},
204
- "errors":[
205
- {
206
- "shape":"InvalidRequestException",
207
- "error":{"httpStatusCode":400},
208
- "exception":true
209
- },
210
- {
211
- "shape":"ThrottlingException",
212
- "error":{"httpStatusCode":429},
213
- "exception":true
214
- },
215
- {
216
- "shape":"UnauthorizedException",
217
- "error":{"httpStatusCode":401},
218
- "exception":true
219
- },
220
- {
221
- "shape":"ServiceUnavailableException",
222
- "error":{"httpStatusCode":503},
223
- "exception":true,
224
- "fault":true
225
- },
226
- {
227
- "shape":"InternalFailureException",
228
- "error":{"httpStatusCode":500},
229
- "exception":true,
230
- "fault":true
231
- }
232
- ]
233
- },
234
- "CreateKeysAndCertificate":{
235
- "name":"CreateKeysAndCertificate",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/keys-and-certificate"
239
- },
240
- "input":{"shape":"CreateKeysAndCertificateRequest"},
241
- "output":{"shape":"CreateKeysAndCertificateResponse"},
242
- "errors":[
243
- {
244
- "shape":"InvalidRequestException",
245
- "error":{"httpStatusCode":400},
246
- "exception":true
247
- },
248
- {
249
- "shape":"ThrottlingException",
250
- "error":{"httpStatusCode":429},
251
- "exception":true
252
- },
253
- {
254
- "shape":"UnauthorizedException",
255
- "error":{"httpStatusCode":401},
256
- "exception":true
257
- },
258
- {
259
- "shape":"ServiceUnavailableException",
260
- "error":{"httpStatusCode":503},
261
- "exception":true,
262
- "fault":true
263
- },
264
- {
265
- "shape":"InternalFailureException",
266
- "error":{"httpStatusCode":500},
267
- "exception":true,
268
- "fault":true
269
- }
270
- ]
271
- },
272
- "CreatePolicy":{
273
- "name":"CreatePolicy",
274
- "http":{
275
- "method":"POST",
276
- "requestUri":"/policies/{policyName}"
277
- },
278
- "input":{"shape":"CreatePolicyRequest"},
279
- "output":{"shape":"CreatePolicyResponse"},
280
- "errors":[
281
- {
282
- "shape":"ResourceAlreadyExistsException",
283
- "error":{"httpStatusCode":409},
284
- "exception":true
285
- },
286
- {
287
- "shape":"MalformedPolicyException",
288
- "error":{"httpStatusCode":400},
289
- "exception":true
290
- },
291
- {
292
- "shape":"InvalidRequestException",
293
- "error":{"httpStatusCode":400},
294
- "exception":true
295
- },
296
- {
297
- "shape":"ThrottlingException",
298
- "error":{"httpStatusCode":429},
299
- "exception":true
300
- },
301
- {
302
- "shape":"UnauthorizedException",
303
- "error":{"httpStatusCode":401},
304
- "exception":true
305
- },
306
- {
307
- "shape":"ServiceUnavailableException",
308
- "error":{"httpStatusCode":503},
309
- "exception":true,
310
- "fault":true
311
- },
312
- {
313
- "shape":"InternalFailureException",
314
- "error":{"httpStatusCode":500},
315
- "exception":true,
316
- "fault":true
317
- }
318
- ]
319
- },
320
- "CreatePolicyVersion":{
321
- "name":"CreatePolicyVersion",
322
- "http":{
323
- "method":"POST",
324
- "requestUri":"/policies/{policyName}/version"
325
- },
326
- "input":{"shape":"CreatePolicyVersionRequest"},
327
- "output":{"shape":"CreatePolicyVersionResponse"},
328
- "errors":[
329
- {
330
- "shape":"ResourceNotFoundException",
331
- "error":{"httpStatusCode":404},
332
- "exception":true
333
- },
334
- {
335
- "shape":"MalformedPolicyException",
336
- "error":{"httpStatusCode":400},
337
- "exception":true
338
- },
339
- {
340
- "shape":"VersionsLimitExceededException",
341
- "error":{"httpStatusCode":409},
342
- "exception":true
343
- },
344
- {
345
- "shape":"InvalidRequestException",
346
- "error":{"httpStatusCode":400},
347
- "exception":true
348
- },
349
- {
350
- "shape":"ThrottlingException",
351
- "error":{"httpStatusCode":429},
352
- "exception":true
353
- },
354
- {
355
- "shape":"UnauthorizedException",
356
- "error":{"httpStatusCode":401},
357
- "exception":true
358
- },
359
- {
360
- "shape":"ServiceUnavailableException",
361
- "error":{"httpStatusCode":503},
362
- "exception":true,
363
- "fault":true
364
- },
365
- {
366
- "shape":"InternalFailureException",
367
- "error":{"httpStatusCode":500},
368
- "exception":true,
369
- "fault":true
370
- }
371
- ]
372
- },
373
- "CreateThing":{
374
- "name":"CreateThing",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/things/{thingName}"
378
- },
379
- "input":{"shape":"CreateThingRequest"},
380
- "output":{"shape":"CreateThingResponse"},
381
- "errors":[
382
- {
383
- "shape":"InvalidRequestException",
384
- "error":{"httpStatusCode":400},
385
- "exception":true
386
- },
387
- {
388
- "shape":"ThrottlingException",
389
- "error":{"httpStatusCode":429},
390
- "exception":true
391
- },
392
- {
393
- "shape":"UnauthorizedException",
394
- "error":{"httpStatusCode":401},
395
- "exception":true
396
- },
397
- {
398
- "shape":"ServiceUnavailableException",
399
- "error":{"httpStatusCode":503},
400
- "exception":true,
401
- "fault":true
402
- },
403
- {
404
- "shape":"InternalFailureException",
405
- "error":{"httpStatusCode":500},
406
- "exception":true,
407
- "fault":true
408
- },
409
- {
410
- "shape":"ResourceAlreadyExistsException",
411
- "error":{"httpStatusCode":409},
412
- "exception":true
413
- }
414
- ]
415
- },
416
- "CreateTopicRule":{
417
- "name":"CreateTopicRule",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/rules/{ruleName}"
421
- },
422
- "input":{"shape":"CreateTopicRuleRequest"},
423
- "errors":[
424
- {
425
- "shape":"SqlParseException",
426
- "error":{"httpStatusCode":400},
427
- "exception":true
428
- },
429
- {
430
- "shape":"InternalException",
431
- "error":{"httpStatusCode":500},
432
- "exception":true,
433
- "fault":true
434
- },
435
- {
436
- "shape":"InvalidRequestException",
437
- "error":{"httpStatusCode":400},
438
- "exception":true
439
- },
440
- {
441
- "shape":"ResourceAlreadyExistsException",
442
- "error":{"httpStatusCode":409},
443
- "exception":true
444
- },
445
- {
446
- "shape":"ServiceUnavailableException",
447
- "error":{"httpStatusCode":503},
448
- "exception":true,
449
- "fault":true
450
- }
451
- ]
452
- },
453
- "DeleteCACertificate":{
454
- "name":"DeleteCACertificate",
455
- "http":{
456
- "method":"DELETE",
457
- "requestUri":"/cacertificate/{caCertificateId}"
458
- },
459
- "input":{"shape":"DeleteCACertificateRequest"},
460
- "output":{"shape":"DeleteCACertificateResponse"},
461
- "errors":[
462
- {
463
- "shape":"InvalidRequestException",
464
- "error":{"httpStatusCode":400},
465
- "exception":true
466
- },
467
- {
468
- "shape":"CertificateStateException",
469
- "error":{"httpStatusCode":406},
470
- "exception":true
471
- },
472
- {
473
- "shape":"ThrottlingException",
474
- "error":{"httpStatusCode":429},
475
- "exception":true
476
- },
477
- {
478
- "shape":"UnauthorizedException",
479
- "error":{"httpStatusCode":401},
480
- "exception":true
481
- },
482
- {
483
- "shape":"ServiceUnavailableException",
484
- "error":{"httpStatusCode":503},
485
- "exception":true,
486
- "fault":true
487
- },
488
- {
489
- "shape":"InternalFailureException",
490
- "error":{"httpStatusCode":500},
491
- "exception":true,
492
- "fault":true
493
- },
494
- {
495
- "shape":"ResourceNotFoundException",
496
- "error":{"httpStatusCode":404},
497
- "exception":true
498
- }
499
- ]
500
- },
501
- "DeleteCertificate":{
502
- "name":"DeleteCertificate",
503
- "http":{
504
- "method":"DELETE",
505
- "requestUri":"/certificates/{certificateId}"
506
- },
507
- "input":{"shape":"DeleteCertificateRequest"},
508
- "errors":[
509
- {
510
- "shape":"CertificateStateException",
511
- "error":{"httpStatusCode":406},
512
- "exception":true
513
- },
514
- {
515
- "shape":"DeleteConflictException",
516
- "error":{"httpStatusCode":409},
517
- "exception":true
518
- },
519
- {
520
- "shape":"InvalidRequestException",
521
- "error":{"httpStatusCode":400},
522
- "exception":true
523
- },
524
- {
525
- "shape":"ThrottlingException",
526
- "error":{"httpStatusCode":429},
527
- "exception":true
528
- },
529
- {
530
- "shape":"UnauthorizedException",
531
- "error":{"httpStatusCode":401},
532
- "exception":true
533
- },
534
- {
535
- "shape":"ServiceUnavailableException",
536
- "error":{"httpStatusCode":503},
537
- "exception":true,
538
- "fault":true
539
- },
540
- {
541
- "shape":"InternalFailureException",
542
- "error":{"httpStatusCode":500},
543
- "exception":true,
544
- "fault":true
545
- },
546
- {
547
- "shape":"ResourceNotFoundException",
548
- "error":{"httpStatusCode":404},
549
- "exception":true
550
- }
551
- ]
552
- },
553
- "DeletePolicy":{
554
- "name":"DeletePolicy",
555
- "http":{
556
- "method":"DELETE",
557
- "requestUri":"/policies/{policyName}"
558
- },
559
- "input":{"shape":"DeletePolicyRequest"},
560
- "errors":[
561
- {
562
- "shape":"DeleteConflictException",
563
- "error":{"httpStatusCode":409},
564
- "exception":true
565
- },
566
- {
567
- "shape":"ResourceNotFoundException",
568
- "error":{"httpStatusCode":404},
569
- "exception":true
570
- },
571
- {
572
- "shape":"InvalidRequestException",
573
- "error":{"httpStatusCode":400},
574
- "exception":true
575
- },
576
- {
577
- "shape":"ThrottlingException",
578
- "error":{"httpStatusCode":429},
579
- "exception":true
580
- },
581
- {
582
- "shape":"UnauthorizedException",
583
- "error":{"httpStatusCode":401},
584
- "exception":true
585
- },
586
- {
587
- "shape":"ServiceUnavailableException",
588
- "error":{"httpStatusCode":503},
589
- "exception":true,
590
- "fault":true
591
- },
592
- {
593
- "shape":"InternalFailureException",
594
- "error":{"httpStatusCode":500},
595
- "exception":true,
596
- "fault":true
597
- }
598
- ]
599
- },
600
- "DeletePolicyVersion":{
601
- "name":"DeletePolicyVersion",
602
- "http":{
603
- "method":"DELETE",
604
- "requestUri":"/policies/{policyName}/version/{policyVersionId}"
605
- },
606
- "input":{"shape":"DeletePolicyVersionRequest"},
607
- "errors":[
608
- {
609
- "shape":"DeleteConflictException",
610
- "error":{"httpStatusCode":409},
611
- "exception":true
612
- },
613
- {
614
- "shape":"ResourceNotFoundException",
615
- "error":{"httpStatusCode":404},
616
- "exception":true
617
- },
618
- {
619
- "shape":"InvalidRequestException",
620
- "error":{"httpStatusCode":400},
621
- "exception":true
622
- },
623
- {
624
- "shape":"ThrottlingException",
625
- "error":{"httpStatusCode":429},
626
- "exception":true
627
- },
628
- {
629
- "shape":"UnauthorizedException",
630
- "error":{"httpStatusCode":401},
631
- "exception":true
632
- },
633
- {
634
- "shape":"ServiceUnavailableException",
635
- "error":{"httpStatusCode":503},
636
- "exception":true,
637
- "fault":true
638
- },
639
- {
640
- "shape":"InternalFailureException",
641
- "error":{"httpStatusCode":500},
642
- "exception":true,
643
- "fault":true
644
- }
645
- ]
646
- },
647
- "DeleteRegistrationCode":{
648
- "name":"DeleteRegistrationCode",
649
- "http":{
650
- "method":"DELETE",
651
- "requestUri":"/registrationcode"
652
- },
653
- "input":{"shape":"DeleteRegistrationCodeRequest"},
654
- "output":{"shape":"DeleteRegistrationCodeResponse"},
655
- "errors":[
656
- {
657
- "shape":"ThrottlingException",
658
- "error":{"httpStatusCode":429},
659
- "exception":true
660
- },
661
- {
662
- "shape":"ResourceNotFoundException",
663
- "error":{"httpStatusCode":404},
664
- "exception":true
665
- },
666
- {
667
- "shape":"UnauthorizedException",
668
- "error":{"httpStatusCode":401},
669
- "exception":true
670
- },
671
- {
672
- "shape":"ServiceUnavailableException",
673
- "error":{"httpStatusCode":503},
674
- "exception":true,
675
- "fault":true
676
- },
677
- {
678
- "shape":"InternalFailureException",
679
- "error":{"httpStatusCode":500},
680
- "exception":true,
681
- "fault":true
682
- }
683
- ]
684
- },
685
- "DeleteThing":{
686
- "name":"DeleteThing",
687
- "http":{
688
- "method":"DELETE",
689
- "requestUri":"/things/{thingName}"
690
- },
691
- "input":{"shape":"DeleteThingRequest"},
692
- "output":{"shape":"DeleteThingResponse"},
693
- "errors":[
694
- {
695
- "shape":"ResourceNotFoundException",
696
- "error":{"httpStatusCode":404},
697
- "exception":true
698
- },
699
- {
700
- "shape":"InvalidRequestException",
701
- "error":{"httpStatusCode":400},
702
- "exception":true
703
- },
704
- {
705
- "shape":"ThrottlingException",
706
- "error":{"httpStatusCode":429},
707
- "exception":true
708
- },
709
- {
710
- "shape":"UnauthorizedException",
711
- "error":{"httpStatusCode":401},
712
- "exception":true
713
- },
714
- {
715
- "shape":"ServiceUnavailableException",
716
- "error":{"httpStatusCode":503},
717
- "exception":true,
718
- "fault":true
719
- },
720
- {
721
- "shape":"InternalFailureException",
722
- "error":{"httpStatusCode":500},
723
- "exception":true,
724
- "fault":true
725
- }
726
- ]
727
- },
728
- "DeleteTopicRule":{
729
- "name":"DeleteTopicRule",
730
- "http":{
731
- "method":"DELETE",
732
- "requestUri":"/rules/{ruleName}"
733
- },
734
- "input":{"shape":"DeleteTopicRuleRequest"},
735
- "errors":[
736
- {
737
- "shape":"InternalException",
738
- "error":{"httpStatusCode":500},
739
- "exception":true,
740
- "fault":true
741
- },
742
- {
743
- "shape":"InvalidRequestException",
744
- "error":{"httpStatusCode":400},
745
- "exception":true
746
- },
747
- {
748
- "shape":"ServiceUnavailableException",
749
- "error":{"httpStatusCode":503},
750
- "exception":true,
751
- "fault":true
752
- },
753
- {
754
- "shape":"UnauthorizedException",
755
- "error":{"httpStatusCode":401},
756
- "exception":true
757
- }
758
- ]
759
- },
760
- "DescribeCACertificate":{
761
- "name":"DescribeCACertificate",
762
- "http":{
763
- "method":"GET",
764
- "requestUri":"/cacertificate/{caCertificateId}"
765
- },
766
- "input":{"shape":"DescribeCACertificateRequest"},
767
- "output":{"shape":"DescribeCACertificateResponse"},
768
- "errors":[
769
- {
770
- "shape":"InvalidRequestException",
771
- "error":{"httpStatusCode":400},
772
- "exception":true
773
- },
774
- {
775
- "shape":"ThrottlingException",
776
- "error":{"httpStatusCode":429},
777
- "exception":true
778
- },
779
- {
780
- "shape":"UnauthorizedException",
781
- "error":{"httpStatusCode":401},
782
- "exception":true
783
- },
784
- {
785
- "shape":"ServiceUnavailableException",
786
- "error":{"httpStatusCode":503},
787
- "exception":true,
788
- "fault":true
789
- },
790
- {
791
- "shape":"InternalFailureException",
792
- "error":{"httpStatusCode":500},
793
- "exception":true,
794
- "fault":true
795
- },
796
- {
797
- "shape":"ResourceNotFoundException",
798
- "error":{"httpStatusCode":404},
799
- "exception":true
800
- }
801
- ]
802
- },
803
- "DescribeCertificate":{
804
- "name":"DescribeCertificate",
805
- "http":{
806
- "method":"GET",
807
- "requestUri":"/certificates/{certificateId}"
808
- },
809
- "input":{"shape":"DescribeCertificateRequest"},
810
- "output":{"shape":"DescribeCertificateResponse"},
811
- "errors":[
812
- {
813
- "shape":"InvalidRequestException",
814
- "error":{"httpStatusCode":400},
815
- "exception":true
816
- },
817
- {
818
- "shape":"ThrottlingException",
819
- "error":{"httpStatusCode":429},
820
- "exception":true
821
- },
822
- {
823
- "shape":"UnauthorizedException",
824
- "error":{"httpStatusCode":401},
825
- "exception":true
826
- },
827
- {
828
- "shape":"ServiceUnavailableException",
829
- "error":{"httpStatusCode":503},
830
- "exception":true,
831
- "fault":true
832
- },
833
- {
834
- "shape":"InternalFailureException",
835
- "error":{"httpStatusCode":500},
836
- "exception":true,
837
- "fault":true
838
- },
839
- {
840
- "shape":"ResourceNotFoundException",
841
- "error":{"httpStatusCode":404},
842
- "exception":true
843
- }
844
- ]
845
- },
846
- "DescribeEndpoint":{
847
- "name":"DescribeEndpoint",
848
- "http":{
849
- "method":"GET",
850
- "requestUri":"/endpoint"
851
- },
852
- "input":{"shape":"DescribeEndpointRequest"},
853
- "output":{"shape":"DescribeEndpointResponse"},
854
- "errors":[
855
- {
856
- "shape":"InternalFailureException",
857
- "error":{"httpStatusCode":500},
858
- "exception":true,
859
- "fault":true
860
- },
861
- {
862
- "shape":"UnauthorizedException",
863
- "error":{"httpStatusCode":401},
864
- "exception":true
865
- },
866
- {
867
- "shape":"ThrottlingException",
868
- "error":{"httpStatusCode":429},
869
- "exception":true
870
- }
871
- ]
872
- },
873
- "DescribeThing":{
874
- "name":"DescribeThing",
875
- "http":{
876
- "method":"GET",
877
- "requestUri":"/things/{thingName}"
878
- },
879
- "input":{"shape":"DescribeThingRequest"},
880
- "output":{"shape":"DescribeThingResponse"},
881
- "errors":[
882
- {
883
- "shape":"ResourceNotFoundException",
884
- "error":{"httpStatusCode":404},
885
- "exception":true
886
- },
887
- {
888
- "shape":"InvalidRequestException",
889
- "error":{"httpStatusCode":400},
890
- "exception":true
891
- },
892
- {
893
- "shape":"ThrottlingException",
894
- "error":{"httpStatusCode":429},
895
- "exception":true
896
- },
897
- {
898
- "shape":"UnauthorizedException",
899
- "error":{"httpStatusCode":401},
900
- "exception":true
901
- },
902
- {
903
- "shape":"ServiceUnavailableException",
904
- "error":{"httpStatusCode":503},
905
- "exception":true,
906
- "fault":true
907
- },
908
- {
909
- "shape":"InternalFailureException",
910
- "error":{"httpStatusCode":500},
911
- "exception":true,
912
- "fault":true
913
- }
914
- ]
915
- },
916
- "DetachPrincipalPolicy":{
917
- "name":"DetachPrincipalPolicy",
918
- "http":{
919
- "method":"DELETE",
920
- "requestUri":"/principal-policies/{policyName}"
921
- },
922
- "input":{"shape":"DetachPrincipalPolicyRequest"},
923
- "errors":[
924
- {
925
- "shape":"ResourceNotFoundException",
926
- "error":{"httpStatusCode":404},
927
- "exception":true
928
- },
929
- {
930
- "shape":"InvalidRequestException",
931
- "error":{"httpStatusCode":400},
932
- "exception":true
933
- },
934
- {
935
- "shape":"ThrottlingException",
936
- "error":{"httpStatusCode":429},
937
- "exception":true
938
- },
939
- {
940
- "shape":"UnauthorizedException",
941
- "error":{"httpStatusCode":401},
942
- "exception":true
943
- },
944
- {
945
- "shape":"ServiceUnavailableException",
946
- "error":{"httpStatusCode":503},
947
- "exception":true,
948
- "fault":true
949
- },
950
- {
951
- "shape":"InternalFailureException",
952
- "error":{"httpStatusCode":500},
953
- "exception":true,
954
- "fault":true
955
- }
956
- ]
957
- },
958
- "DetachThingPrincipal":{
959
- "name":"DetachThingPrincipal",
960
- "http":{
961
- "method":"DELETE",
962
- "requestUri":"/things/{thingName}/principals"
963
- },
964
- "input":{"shape":"DetachThingPrincipalRequest"},
965
- "output":{"shape":"DetachThingPrincipalResponse"},
966
- "errors":[
967
- {
968
- "shape":"ResourceNotFoundException",
969
- "error":{"httpStatusCode":404},
970
- "exception":true
971
- },
972
- {
973
- "shape":"InvalidRequestException",
974
- "error":{"httpStatusCode":400},
975
- "exception":true
976
- },
977
- {
978
- "shape":"ThrottlingException",
979
- "error":{"httpStatusCode":429},
980
- "exception":true
981
- },
982
- {
983
- "shape":"UnauthorizedException",
984
- "error":{"httpStatusCode":401},
985
- "exception":true
986
- },
987
- {
988
- "shape":"ServiceUnavailableException",
989
- "error":{"httpStatusCode":503},
990
- "exception":true,
991
- "fault":true
992
- },
993
- {
994
- "shape":"InternalFailureException",
995
- "error":{"httpStatusCode":500},
996
- "exception":true,
997
- "fault":true
998
- }
999
- ]
1000
- },
1001
- "DisableTopicRule":{
1002
- "name":"DisableTopicRule",
1003
- "http":{
1004
- "method":"POST",
1005
- "requestUri":"/rules/{ruleName}/disable"
1006
- },
1007
- "input":{"shape":"DisableTopicRuleRequest"},
1008
- "errors":[
1009
- {
1010
- "shape":"InternalException",
1011
- "error":{"httpStatusCode":500},
1012
- "exception":true,
1013
- "fault":true
1014
- },
1015
- {
1016
- "shape":"InvalidRequestException",
1017
- "error":{"httpStatusCode":400},
1018
- "exception":true
1019
- },
1020
- {
1021
- "shape":"ServiceUnavailableException",
1022
- "error":{"httpStatusCode":503},
1023
- "exception":true,
1024
- "fault":true
1025
- },
1026
- {
1027
- "shape":"UnauthorizedException",
1028
- "error":{"httpStatusCode":401},
1029
- "exception":true
1030
- }
1031
- ]
1032
- },
1033
- "EnableTopicRule":{
1034
- "name":"EnableTopicRule",
1035
- "http":{
1036
- "method":"POST",
1037
- "requestUri":"/rules/{ruleName}/enable"
1038
- },
1039
- "input":{"shape":"EnableTopicRuleRequest"},
1040
- "errors":[
1041
- {
1042
- "shape":"InternalException",
1043
- "error":{"httpStatusCode":500},
1044
- "exception":true,
1045
- "fault":true
1046
- },
1047
- {
1048
- "shape":"InvalidRequestException",
1049
- "error":{"httpStatusCode":400},
1050
- "exception":true
1051
- },
1052
- {
1053
- "shape":"ServiceUnavailableException",
1054
- "error":{"httpStatusCode":503},
1055
- "exception":true,
1056
- "fault":true
1057
- },
1058
- {
1059
- "shape":"UnauthorizedException",
1060
- "error":{"httpStatusCode":401},
1061
- "exception":true
1062
- }
1063
- ]
1064
- },
1065
- "GetLoggingOptions":{
1066
- "name":"GetLoggingOptions",
1067
- "http":{
1068
- "method":"GET",
1069
- "requestUri":"/loggingOptions"
1070
- },
1071
- "input":{"shape":"GetLoggingOptionsRequest"},
1072
- "output":{"shape":"GetLoggingOptionsResponse"},
1073
- "errors":[
1074
- {
1075
- "shape":"InternalException",
1076
- "error":{"httpStatusCode":500},
1077
- "exception":true,
1078
- "fault":true
1079
- },
1080
- {
1081
- "shape":"InvalidRequestException",
1082
- "error":{"httpStatusCode":400},
1083
- "exception":true
1084
- },
1085
- {
1086
- "shape":"ServiceUnavailableException",
1087
- "error":{"httpStatusCode":503},
1088
- "exception":true,
1089
- "fault":true
1090
- }
1091
- ]
1092
- },
1093
- "GetPolicy":{
1094
- "name":"GetPolicy",
1095
- "http":{
1096
- "method":"GET",
1097
- "requestUri":"/policies/{policyName}"
1098
- },
1099
- "input":{"shape":"GetPolicyRequest"},
1100
- "output":{"shape":"GetPolicyResponse"},
1101
- "errors":[
1102
- {
1103
- "shape":"ResourceNotFoundException",
1104
- "error":{"httpStatusCode":404},
1105
- "exception":true
1106
- },
1107
- {
1108
- "shape":"InvalidRequestException",
1109
- "error":{"httpStatusCode":400},
1110
- "exception":true
1111
- },
1112
- {
1113
- "shape":"ThrottlingException",
1114
- "error":{"httpStatusCode":429},
1115
- "exception":true
1116
- },
1117
- {
1118
- "shape":"UnauthorizedException",
1119
- "error":{"httpStatusCode":401},
1120
- "exception":true
1121
- },
1122
- {
1123
- "shape":"ServiceUnavailableException",
1124
- "error":{"httpStatusCode":503},
1125
- "exception":true,
1126
- "fault":true
1127
- },
1128
- {
1129
- "shape":"InternalFailureException",
1130
- "error":{"httpStatusCode":500},
1131
- "exception":true,
1132
- "fault":true
1133
- }
1134
- ]
1135
- },
1136
- "GetPolicyVersion":{
1137
- "name":"GetPolicyVersion",
1138
- "http":{
1139
- "method":"GET",
1140
- "requestUri":"/policies/{policyName}/version/{policyVersionId}"
1141
- },
1142
- "input":{"shape":"GetPolicyVersionRequest"},
1143
- "output":{"shape":"GetPolicyVersionResponse"},
1144
- "errors":[
1145
- {
1146
- "shape":"ResourceNotFoundException",
1147
- "error":{"httpStatusCode":404},
1148
- "exception":true
1149
- },
1150
- {
1151
- "shape":"InvalidRequestException",
1152
- "error":{"httpStatusCode":400},
1153
- "exception":true
1154
- },
1155
- {
1156
- "shape":"ThrottlingException",
1157
- "error":{"httpStatusCode":429},
1158
- "exception":true
1159
- },
1160
- {
1161
- "shape":"UnauthorizedException",
1162
- "error":{"httpStatusCode":401},
1163
- "exception":true
1164
- },
1165
- {
1166
- "shape":"ServiceUnavailableException",
1167
- "error":{"httpStatusCode":503},
1168
- "exception":true,
1169
- "fault":true
1170
- },
1171
- {
1172
- "shape":"InternalFailureException",
1173
- "error":{"httpStatusCode":500},
1174
- "exception":true,
1175
- "fault":true
1176
- }
1177
- ]
1178
- },
1179
- "GetRegistrationCode":{
1180
- "name":"GetRegistrationCode",
1181
- "http":{
1182
- "method":"GET",
1183
- "requestUri":"/registrationcode"
1184
- },
1185
- "input":{"shape":"GetRegistrationCodeRequest"},
1186
- "output":{"shape":"GetRegistrationCodeResponse"},
1187
- "errors":[
1188
- {
1189
- "shape":"ThrottlingException",
1190
- "error":{"httpStatusCode":429},
1191
- "exception":true
1192
- },
1193
- {
1194
- "shape":"UnauthorizedException",
1195
- "error":{"httpStatusCode":401},
1196
- "exception":true
1197
- },
1198
- {
1199
- "shape":"ServiceUnavailableException",
1200
- "error":{"httpStatusCode":503},
1201
- "exception":true,
1202
- "fault":true
1203
- },
1204
- {
1205
- "shape":"InternalFailureException",
1206
- "error":{"httpStatusCode":500},
1207
- "exception":true,
1208
- "fault":true
1209
- },
1210
- {
1211
- "shape":"InvalidRequestException",
1212
- "error":{"httpStatusCode":400},
1213
- "exception":true
1214
- }
1215
- ]
1216
- },
1217
- "GetTopicRule":{
1218
- "name":"GetTopicRule",
1219
- "http":{
1220
- "method":"GET",
1221
- "requestUri":"/rules/{ruleName}"
1222
- },
1223
- "input":{"shape":"GetTopicRuleRequest"},
1224
- "output":{"shape":"GetTopicRuleResponse"},
1225
- "errors":[
1226
- {
1227
- "shape":"InternalException",
1228
- "error":{"httpStatusCode":500},
1229
- "exception":true,
1230
- "fault":true
1231
- },
1232
- {
1233
- "shape":"InvalidRequestException",
1234
- "error":{"httpStatusCode":400},
1235
- "exception":true
1236
- },
1237
- {
1238
- "shape":"ServiceUnavailableException",
1239
- "error":{"httpStatusCode":503},
1240
- "exception":true,
1241
- "fault":true
1242
- },
1243
- {
1244
- "shape":"UnauthorizedException",
1245
- "error":{"httpStatusCode":401},
1246
- "exception":true
1247
- }
1248
- ]
1249
- },
1250
- "ListCACertificates":{
1251
- "name":"ListCACertificates",
1252
- "http":{
1253
- "method":"GET",
1254
- "requestUri":"/cacertificates"
1255
- },
1256
- "input":{"shape":"ListCACertificatesRequest"},
1257
- "output":{"shape":"ListCACertificatesResponse"},
1258
- "errors":[
1259
- {
1260
- "shape":"InvalidRequestException",
1261
- "error":{"httpStatusCode":400},
1262
- "exception":true
1263
- },
1264
- {
1265
- "shape":"ThrottlingException",
1266
- "error":{"httpStatusCode":429},
1267
- "exception":true
1268
- },
1269
- {
1270
- "shape":"UnauthorizedException",
1271
- "error":{"httpStatusCode":401},
1272
- "exception":true
1273
- },
1274
- {
1275
- "shape":"ServiceUnavailableException",
1276
- "error":{"httpStatusCode":503},
1277
- "exception":true,
1278
- "fault":true
1279
- },
1280
- {
1281
- "shape":"InternalFailureException",
1282
- "error":{"httpStatusCode":500},
1283
- "exception":true,
1284
- "fault":true
1285
- }
1286
- ]
1287
- },
1288
- "ListCertificates":{
1289
- "name":"ListCertificates",
1290
- "http":{
1291
- "method":"GET",
1292
- "requestUri":"/certificates"
1293
- },
1294
- "input":{"shape":"ListCertificatesRequest"},
1295
- "output":{"shape":"ListCertificatesResponse"},
1296
- "errors":[
1297
- {
1298
- "shape":"InvalidRequestException",
1299
- "error":{"httpStatusCode":400},
1300
- "exception":true
1301
- },
1302
- {
1303
- "shape":"ThrottlingException",
1304
- "error":{"httpStatusCode":429},
1305
- "exception":true
1306
- },
1307
- {
1308
- "shape":"UnauthorizedException",
1309
- "error":{"httpStatusCode":401},
1310
- "exception":true
1311
- },
1312
- {
1313
- "shape":"ServiceUnavailableException",
1314
- "error":{"httpStatusCode":503},
1315
- "exception":true,
1316
- "fault":true
1317
- },
1318
- {
1319
- "shape":"InternalFailureException",
1320
- "error":{"httpStatusCode":500},
1321
- "exception":true,
1322
- "fault":true
1323
- }
1324
- ]
1325
- },
1326
- "ListCertificatesByCA":{
1327
- "name":"ListCertificatesByCA",
1328
- "http":{
1329
- "method":"GET",
1330
- "requestUri":"/certificates-by-ca/{caCertificateId}"
1331
- },
1332
- "input":{"shape":"ListCertificatesByCARequest"},
1333
- "output":{"shape":"ListCertificatesByCAResponse"},
1334
- "errors":[
1335
- {
1336
- "shape":"InvalidRequestException",
1337
- "error":{"httpStatusCode":400},
1338
- "exception":true
1339
- },
1340
- {
1341
- "shape":"ThrottlingException",
1342
- "error":{"httpStatusCode":429},
1343
- "exception":true
1344
- },
1345
- {
1346
- "shape":"UnauthorizedException",
1347
- "error":{"httpStatusCode":401},
1348
- "exception":true
1349
- },
1350
- {
1351
- "shape":"ServiceUnavailableException",
1352
- "error":{"httpStatusCode":503},
1353
- "exception":true,
1354
- "fault":true
1355
- },
1356
- {
1357
- "shape":"InternalFailureException",
1358
- "error":{"httpStatusCode":500},
1359
- "exception":true,
1360
- "fault":true
1361
- }
1362
- ]
1363
- },
1364
- "ListPolicies":{
1365
- "name":"ListPolicies",
1366
- "http":{
1367
- "method":"GET",
1368
- "requestUri":"/policies"
1369
- },
1370
- "input":{"shape":"ListPoliciesRequest"},
1371
- "output":{"shape":"ListPoliciesResponse"},
1372
- "errors":[
1373
- {
1374
- "shape":"InvalidRequestException",
1375
- "error":{"httpStatusCode":400},
1376
- "exception":true
1377
- },
1378
- {
1379
- "shape":"ThrottlingException",
1380
- "error":{"httpStatusCode":429},
1381
- "exception":true
1382
- },
1383
- {
1384
- "shape":"UnauthorizedException",
1385
- "error":{"httpStatusCode":401},
1386
- "exception":true
1387
- },
1388
- {
1389
- "shape":"ServiceUnavailableException",
1390
- "error":{"httpStatusCode":503},
1391
- "exception":true,
1392
- "fault":true
1393
- },
1394
- {
1395
- "shape":"InternalFailureException",
1396
- "error":{"httpStatusCode":500},
1397
- "exception":true,
1398
- "fault":true
1399
- }
1400
- ]
1401
- },
1402
- "ListPolicyPrincipals":{
1403
- "name":"ListPolicyPrincipals",
1404
- "http":{
1405
- "method":"GET",
1406
- "requestUri":"/policy-principals"
1407
- },
1408
- "input":{"shape":"ListPolicyPrincipalsRequest"},
1409
- "output":{"shape":"ListPolicyPrincipalsResponse"},
1410
- "errors":[
1411
- {
1412
- "shape":"ResourceNotFoundException",
1413
- "error":{"httpStatusCode":404},
1414
- "exception":true
1415
- },
1416
- {
1417
- "shape":"InvalidRequestException",
1418
- "error":{"httpStatusCode":400},
1419
- "exception":true
1420
- },
1421
- {
1422
- "shape":"ThrottlingException",
1423
- "error":{"httpStatusCode":429},
1424
- "exception":true
1425
- },
1426
- {
1427
- "shape":"UnauthorizedException",
1428
- "error":{"httpStatusCode":401},
1429
- "exception":true
1430
- },
1431
- {
1432
- "shape":"ServiceUnavailableException",
1433
- "error":{"httpStatusCode":503},
1434
- "exception":true,
1435
- "fault":true
1436
- },
1437
- {
1438
- "shape":"InternalFailureException",
1439
- "error":{"httpStatusCode":500},
1440
- "exception":true,
1441
- "fault":true
1442
- }
1443
- ]
1444
- },
1445
- "ListPolicyVersions":{
1446
- "name":"ListPolicyVersions",
1447
- "http":{
1448
- "method":"GET",
1449
- "requestUri":"/policies/{policyName}/version"
1450
- },
1451
- "input":{"shape":"ListPolicyVersionsRequest"},
1452
- "output":{"shape":"ListPolicyVersionsResponse"},
1453
- "errors":[
1454
- {
1455
- "shape":"ResourceNotFoundException",
1456
- "error":{"httpStatusCode":404},
1457
- "exception":true
1458
- },
1459
- {
1460
- "shape":"InvalidRequestException",
1461
- "error":{"httpStatusCode":400},
1462
- "exception":true
1463
- },
1464
- {
1465
- "shape":"ThrottlingException",
1466
- "error":{"httpStatusCode":429},
1467
- "exception":true
1468
- },
1469
- {
1470
- "shape":"UnauthorizedException",
1471
- "error":{"httpStatusCode":401},
1472
- "exception":true
1473
- },
1474
- {
1475
- "shape":"ServiceUnavailableException",
1476
- "error":{"httpStatusCode":503},
1477
- "exception":true,
1478
- "fault":true
1479
- },
1480
- {
1481
- "shape":"InternalFailureException",
1482
- "error":{"httpStatusCode":500},
1483
- "exception":true,
1484
- "fault":true
1485
- }
1486
- ]
1487
- },
1488
- "ListPrincipalPolicies":{
1489
- "name":"ListPrincipalPolicies",
1490
- "http":{
1491
- "method":"GET",
1492
- "requestUri":"/principal-policies"
1493
- },
1494
- "input":{"shape":"ListPrincipalPoliciesRequest"},
1495
- "output":{"shape":"ListPrincipalPoliciesResponse"},
1496
- "errors":[
1497
- {
1498
- "shape":"ResourceNotFoundException",
1499
- "error":{"httpStatusCode":404},
1500
- "exception":true
1501
- },
1502
- {
1503
- "shape":"InvalidRequestException",
1504
- "error":{"httpStatusCode":400},
1505
- "exception":true
1506
- },
1507
- {
1508
- "shape":"ThrottlingException",
1509
- "error":{"httpStatusCode":429},
1510
- "exception":true
1511
- },
1512
- {
1513
- "shape":"UnauthorizedException",
1514
- "error":{"httpStatusCode":401},
1515
- "exception":true
1516
- },
1517
- {
1518
- "shape":"ServiceUnavailableException",
1519
- "error":{"httpStatusCode":503},
1520
- "exception":true,
1521
- "fault":true
1522
- },
1523
- {
1524
- "shape":"InternalFailureException",
1525
- "error":{"httpStatusCode":500},
1526
- "exception":true,
1527
- "fault":true
1528
- }
1529
- ]
1530
- },
1531
- "ListPrincipalThings":{
1532
- "name":"ListPrincipalThings",
1533
- "http":{
1534
- "method":"GET",
1535
- "requestUri":"/principals/things"
1536
- },
1537
- "input":{"shape":"ListPrincipalThingsRequest"},
1538
- "output":{"shape":"ListPrincipalThingsResponse"},
1539
- "errors":[
1540
- {
1541
- "shape":"InvalidRequestException",
1542
- "error":{"httpStatusCode":400},
1543
- "exception":true
1544
- },
1545
- {
1546
- "shape":"ThrottlingException",
1547
- "error":{"httpStatusCode":429},
1548
- "exception":true
1549
- },
1550
- {
1551
- "shape":"UnauthorizedException",
1552
- "error":{"httpStatusCode":401},
1553
- "exception":true
1554
- },
1555
- {
1556
- "shape":"ServiceUnavailableException",
1557
- "error":{"httpStatusCode":503},
1558
- "exception":true,
1559
- "fault":true
1560
- },
1561
- {
1562
- "shape":"InternalFailureException",
1563
- "error":{"httpStatusCode":500},
1564
- "exception":true,
1565
- "fault":true
1566
- }
1567
- ]
1568
- },
1569
- "ListThingPrincipals":{
1570
- "name":"ListThingPrincipals",
1571
- "http":{
1572
- "method":"GET",
1573
- "requestUri":"/things/{thingName}/principals"
1574
- },
1575
- "input":{"shape":"ListThingPrincipalsRequest"},
1576
- "output":{"shape":"ListThingPrincipalsResponse"},
1577
- "errors":[
1578
- {
1579
- "shape":"InvalidRequestException",
1580
- "error":{"httpStatusCode":400},
1581
- "exception":true
1582
- },
1583
- {
1584
- "shape":"ThrottlingException",
1585
- "error":{"httpStatusCode":429},
1586
- "exception":true
1587
- },
1588
- {
1589
- "shape":"UnauthorizedException",
1590
- "error":{"httpStatusCode":401},
1591
- "exception":true
1592
- },
1593
- {
1594
- "shape":"ServiceUnavailableException",
1595
- "error":{"httpStatusCode":503},
1596
- "exception":true,
1597
- "fault":true
1598
- },
1599
- {
1600
- "shape":"InternalFailureException",
1601
- "error":{"httpStatusCode":500},
1602
- "exception":true,
1603
- "fault":true
1604
- }
1605
- ]
1606
- },
1607
- "ListThings":{
1608
- "name":"ListThings",
1609
- "http":{
1610
- "method":"GET",
1611
- "requestUri":"/things"
1612
- },
1613
- "input":{"shape":"ListThingsRequest"},
1614
- "output":{"shape":"ListThingsResponse"},
1615
- "errors":[
1616
- {
1617
- "shape":"InvalidRequestException",
1618
- "error":{"httpStatusCode":400},
1619
- "exception":true
1620
- },
1621
- {
1622
- "shape":"ThrottlingException",
1623
- "error":{"httpStatusCode":429},
1624
- "exception":true
1625
- },
1626
- {
1627
- "shape":"UnauthorizedException",
1628
- "error":{"httpStatusCode":401},
1629
- "exception":true
1630
- },
1631
- {
1632
- "shape":"ServiceUnavailableException",
1633
- "error":{"httpStatusCode":503},
1634
- "exception":true,
1635
- "fault":true
1636
- },
1637
- {
1638
- "shape":"InternalFailureException",
1639
- "error":{"httpStatusCode":500},
1640
- "exception":true,
1641
- "fault":true
1642
- }
1643
- ]
1644
- },
1645
- "ListTopicRules":{
1646
- "name":"ListTopicRules",
1647
- "http":{
1648
- "method":"GET",
1649
- "requestUri":"/rules"
1650
- },
1651
- "input":{"shape":"ListTopicRulesRequest"},
1652
- "output":{"shape":"ListTopicRulesResponse"},
1653
- "errors":[
1654
- {
1655
- "shape":"InternalException",
1656
- "error":{"httpStatusCode":500},
1657
- "exception":true,
1658
- "fault":true
1659
- },
1660
- {
1661
- "shape":"InvalidRequestException",
1662
- "error":{"httpStatusCode":400},
1663
- "exception":true
1664
- },
1665
- {
1666
- "shape":"ServiceUnavailableException",
1667
- "error":{"httpStatusCode":503},
1668
- "exception":true,
1669
- "fault":true
1670
- }
1671
- ]
1672
- },
1673
- "RegisterCACertificate":{
1674
- "name":"RegisterCACertificate",
1675
- "http":{
1676
- "method":"POST",
1677
- "requestUri":"/cacertificate"
1678
- },
1679
- "input":{"shape":"RegisterCACertificateRequest"},
1680
- "output":{"shape":"RegisterCACertificateResponse"},
1681
- "errors":[
1682
- {
1683
- "shape":"ResourceAlreadyExistsException",
1684
- "error":{"httpStatusCode":409},
1685
- "exception":true
1686
- },
1687
- {
1688
- "shape":"RegistrationCodeValidationException",
1689
- "error":{"httpStatusCode":400},
1690
- "exception":true
1691
- },
1692
- {
1693
- "shape":"InvalidRequestException",
1694
- "error":{"httpStatusCode":400},
1695
- "exception":true
1696
- },
1697
- {
1698
- "shape":"CertificateValidationException",
1699
- "error":{"httpStatusCode":400},
1700
- "exception":true
1701
- },
1702
- {
1703
- "shape":"ThrottlingException",
1704
- "error":{"httpStatusCode":429},
1705
- "exception":true
1706
- },
1707
- {
1708
- "shape":"LimitExceededException",
1709
- "error":{"httpStatusCode":410},
1710
- "exception":true
1711
- },
1712
- {
1713
- "shape":"UnauthorizedException",
1714
- "error":{"httpStatusCode":401},
1715
- "exception":true
1716
- },
1717
- {
1718
- "shape":"ServiceUnavailableException",
1719
- "error":{"httpStatusCode":503},
1720
- "exception":true,
1721
- "fault":true
1722
- },
1723
- {
1724
- "shape":"InternalFailureException",
1725
- "error":{"httpStatusCode":500},
1726
- "exception":true,
1727
- "fault":true
1728
- }
1729
- ]
1730
- },
1731
- "RegisterCertificate":{
1732
- "name":"RegisterCertificate",
1733
- "http":{
1734
- "method":"POST",
1735
- "requestUri":"/certificate/register"
1736
- },
1737
- "input":{"shape":"RegisterCertificateRequest"},
1738
- "output":{"shape":"RegisterCertificateResponse"},
1739
- "errors":[
1740
- {
1741
- "shape":"ResourceAlreadyExistsException",
1742
- "error":{"httpStatusCode":409},
1743
- "exception":true
1744
- },
1745
- {
1746
- "shape":"InvalidRequestException",
1747
- "error":{"httpStatusCode":400},
1748
- "exception":true
1749
- },
1750
- {
1751
- "shape":"CertificateValidationException",
1752
- "error":{"httpStatusCode":400},
1753
- "exception":true
1754
- },
1755
- {
1756
- "shape":"CertificateStateException",
1757
- "error":{"httpStatusCode":406},
1758
- "exception":true
1759
- },
1760
- {
1761
- "shape":"CertificateConflictException",
1762
- "error":{"httpStatusCode":409},
1763
- "exception":true
1764
- },
1765
- {
1766
- "shape":"ThrottlingException",
1767
- "error":{"httpStatusCode":429},
1768
- "exception":true
1769
- },
1770
- {
1771
- "shape":"UnauthorizedException",
1772
- "error":{"httpStatusCode":401},
1773
- "exception":true
1774
- },
1775
- {
1776
- "shape":"ServiceUnavailableException",
1777
- "error":{"httpStatusCode":503},
1778
- "exception":true,
1779
- "fault":true
1780
- },
1781
- {
1782
- "shape":"InternalFailureException",
1783
- "error":{"httpStatusCode":500},
1784
- "exception":true,
1785
- "fault":true
1786
- }
1787
- ]
1788
- },
1789
- "RejectCertificateTransfer":{
1790
- "name":"RejectCertificateTransfer",
1791
- "http":{
1792
- "method":"PATCH",
1793
- "requestUri":"/reject-certificate-transfer/{certificateId}"
1794
- },
1795
- "input":{"shape":"RejectCertificateTransferRequest"},
1796
- "errors":[
1797
- {
1798
- "shape":"ResourceNotFoundException",
1799
- "error":{"httpStatusCode":404},
1800
- "exception":true
1801
- },
1802
- {
1803
- "shape":"TransferAlreadyCompletedException",
1804
- "error":{"httpStatusCode":410},
1805
- "exception":true
1806
- },
1807
- {
1808
- "shape":"InvalidRequestException",
1809
- "error":{"httpStatusCode":400},
1810
- "exception":true
1811
- },
1812
- {
1813
- "shape":"ThrottlingException",
1814
- "error":{"httpStatusCode":429},
1815
- "exception":true
1816
- },
1817
- {
1818
- "shape":"UnauthorizedException",
1819
- "error":{"httpStatusCode":401},
1820
- "exception":true
1821
- },
1822
- {
1823
- "shape":"ServiceUnavailableException",
1824
- "error":{"httpStatusCode":503},
1825
- "exception":true,
1826
- "fault":true
1827
- },
1828
- {
1829
- "shape":"InternalFailureException",
1830
- "error":{"httpStatusCode":500},
1831
- "exception":true,
1832
- "fault":true
1833
- }
1834
- ]
1835
- },
1836
- "ReplaceTopicRule":{
1837
- "name":"ReplaceTopicRule",
1838
- "http":{
1839
- "method":"PATCH",
1840
- "requestUri":"/rules/{ruleName}"
1841
- },
1842
- "input":{"shape":"ReplaceTopicRuleRequest"},
1843
- "errors":[
1844
- {
1845
- "shape":"SqlParseException",
1846
- "error":{"httpStatusCode":400},
1847
- "exception":true
1848
- },
1849
- {
1850
- "shape":"InternalException",
1851
- "error":{"httpStatusCode":500},
1852
- "exception":true,
1853
- "fault":true
1854
- },
1855
- {
1856
- "shape":"InvalidRequestException",
1857
- "error":{"httpStatusCode":400},
1858
- "exception":true
1859
- },
1860
- {
1861
- "shape":"ServiceUnavailableException",
1862
- "error":{"httpStatusCode":503},
1863
- "exception":true,
1864
- "fault":true
1865
- },
1866
- {
1867
- "shape":"UnauthorizedException",
1868
- "error":{"httpStatusCode":401},
1869
- "exception":true
1870
- }
1871
- ]
1872
- },
1873
- "SetDefaultPolicyVersion":{
1874
- "name":"SetDefaultPolicyVersion",
1875
- "http":{
1876
- "method":"PATCH",
1877
- "requestUri":"/policies/{policyName}/version/{policyVersionId}"
1878
- },
1879
- "input":{"shape":"SetDefaultPolicyVersionRequest"},
1880
- "errors":[
1881
- {
1882
- "shape":"ResourceNotFoundException",
1883
- "error":{"httpStatusCode":404},
1884
- "exception":true
1885
- },
1886
- {
1887
- "shape":"InvalidRequestException",
1888
- "error":{"httpStatusCode":400},
1889
- "exception":true
1890
- },
1891
- {
1892
- "shape":"ThrottlingException",
1893
- "error":{"httpStatusCode":429},
1894
- "exception":true
1895
- },
1896
- {
1897
- "shape":"UnauthorizedException",
1898
- "error":{"httpStatusCode":401},
1899
- "exception":true
1900
- },
1901
- {
1902
- "shape":"ServiceUnavailableException",
1903
- "error":{"httpStatusCode":503},
1904
- "exception":true,
1905
- "fault":true
1906
- },
1907
- {
1908
- "shape":"InternalFailureException",
1909
- "error":{"httpStatusCode":500},
1910
- "exception":true,
1911
- "fault":true
1912
- }
1913
- ]
1914
- },
1915
- "SetLoggingOptions":{
1916
- "name":"SetLoggingOptions",
1917
- "http":{
1918
- "method":"POST",
1919
- "requestUri":"/loggingOptions"
1920
- },
1921
- "input":{"shape":"SetLoggingOptionsRequest"},
1922
- "errors":[
1923
- {
1924
- "shape":"InternalException",
1925
- "error":{"httpStatusCode":500},
1926
- "exception":true,
1927
- "fault":true
1928
- },
1929
- {
1930
- "shape":"InvalidRequestException",
1931
- "error":{"httpStatusCode":400},
1932
- "exception":true
1933
- },
1934
- {
1935
- "shape":"ServiceUnavailableException",
1936
- "error":{"httpStatusCode":503},
1937
- "exception":true,
1938
- "fault":true
1939
- }
1940
- ]
1941
- },
1942
- "TransferCertificate":{
1943
- "name":"TransferCertificate",
1944
- "http":{
1945
- "method":"PATCH",
1946
- "requestUri":"/transfer-certificate/{certificateId}"
1947
- },
1948
- "input":{"shape":"TransferCertificateRequest"},
1949
- "output":{"shape":"TransferCertificateResponse"},
1950
- "errors":[
1951
- {
1952
- "shape":"InvalidRequestException",
1953
- "error":{"httpStatusCode":400},
1954
- "exception":true
1955
- },
1956
- {
1957
- "shape":"ResourceNotFoundException",
1958
- "error":{"httpStatusCode":404},
1959
- "exception":true
1960
- },
1961
- {
1962
- "shape":"CertificateStateException",
1963
- "error":{"httpStatusCode":406},
1964
- "exception":true
1965
- },
1966
- {
1967
- "shape":"TransferConflictException",
1968
- "error":{"httpStatusCode":409},
1969
- "exception":true
1970
- },
1971
- {
1972
- "shape":"ThrottlingException",
1973
- "error":{"httpStatusCode":429},
1974
- "exception":true
1975
- },
1976
- {
1977
- "shape":"UnauthorizedException",
1978
- "error":{"httpStatusCode":401},
1979
- "exception":true
1980
- },
1981
- {
1982
- "shape":"ServiceUnavailableException",
1983
- "error":{"httpStatusCode":503},
1984
- "exception":true,
1985
- "fault":true
1986
- },
1987
- {
1988
- "shape":"InternalFailureException",
1989
- "error":{"httpStatusCode":500},
1990
- "exception":true,
1991
- "fault":true
1992
- }
1993
- ]
1994
- },
1995
- "UpdateCACertificate":{
1996
- "name":"UpdateCACertificate",
1997
- "http":{
1998
- "method":"PUT",
1999
- "requestUri":"/cacertificate/{caCertificateId}"
2000
- },
2001
- "input":{"shape":"UpdateCACertificateRequest"},
2002
- "errors":[
2003
- {
2004
- "shape":"ResourceNotFoundException",
2005
- "error":{"httpStatusCode":404},
2006
- "exception":true
2007
- },
2008
- {
2009
- "shape":"InvalidRequestException",
2010
- "error":{"httpStatusCode":400},
2011
- "exception":true
2012
- },
2013
- {
2014
- "shape":"ThrottlingException",
2015
- "error":{"httpStatusCode":429},
2016
- "exception":true
2017
- },
2018
- {
2019
- "shape":"UnauthorizedException",
2020
- "error":{"httpStatusCode":401},
2021
- "exception":true
2022
- },
2023
- {
2024
- "shape":"ServiceUnavailableException",
2025
- "error":{"httpStatusCode":503},
2026
- "exception":true,
2027
- "fault":true
2028
- },
2029
- {
2030
- "shape":"InternalFailureException",
2031
- "error":{"httpStatusCode":500},
2032
- "exception":true,
2033
- "fault":true
2034
- }
2035
- ]
2036
- },
2037
- "UpdateCertificate":{
2038
- "name":"UpdateCertificate",
2039
- "http":{
2040
- "method":"PUT",
2041
- "requestUri":"/certificates/{certificateId}"
2042
- },
2043
- "input":{"shape":"UpdateCertificateRequest"},
2044
- "errors":[
2045
- {
2046
- "shape":"ResourceNotFoundException",
2047
- "error":{"httpStatusCode":404},
2048
- "exception":true
2049
- },
2050
- {
2051
- "shape":"CertificateStateException",
2052
- "error":{"httpStatusCode":406},
2053
- "exception":true
2054
- },
2055
- {
2056
- "shape":"InvalidRequestException",
2057
- "error":{"httpStatusCode":400},
2058
- "exception":true
2059
- },
2060
- {
2061
- "shape":"ThrottlingException",
2062
- "error":{"httpStatusCode":429},
2063
- "exception":true
2064
- },
2065
- {
2066
- "shape":"UnauthorizedException",
2067
- "error":{"httpStatusCode":401},
2068
- "exception":true
2069
- },
2070
- {
2071
- "shape":"ServiceUnavailableException",
2072
- "error":{"httpStatusCode":503},
2073
- "exception":true,
2074
- "fault":true
2075
- },
2076
- {
2077
- "shape":"InternalFailureException",
2078
- "error":{"httpStatusCode":500},
2079
- "exception":true,
2080
- "fault":true
2081
- }
2082
- ]
2083
- },
2084
- "UpdateThing":{
2085
- "name":"UpdateThing",
2086
- "http":{
2087
- "method":"PATCH",
2088
- "requestUri":"/things/{thingName}"
2089
- },
2090
- "input":{"shape":"UpdateThingRequest"},
2091
- "output":{"shape":"UpdateThingResponse"},
2092
- "errors":[
2093
- {
2094
- "shape":"InvalidRequestException",
2095
- "error":{"httpStatusCode":400},
2096
- "exception":true
2097
- },
2098
- {
2099
- "shape":"ThrottlingException",
2100
- "error":{"httpStatusCode":429},
2101
- "exception":true
2102
- },
2103
- {
2104
- "shape":"UnauthorizedException",
2105
- "error":{"httpStatusCode":401},
2106
- "exception":true
2107
- },
2108
- {
2109
- "shape":"ServiceUnavailableException",
2110
- "error":{"httpStatusCode":503},
2111
- "exception":true,
2112
- "fault":true
2113
- },
2114
- {
2115
- "shape":"InternalFailureException",
2116
- "error":{"httpStatusCode":500},
2117
- "exception":true,
2118
- "fault":true
2119
- },
2120
- {
2121
- "shape":"ResourceNotFoundException",
2122
- "error":{"httpStatusCode":404},
2123
- "exception":true
2124
- }
2125
- ]
2126
- }
2127
- },
2128
- "shapes":{
2129
- "AcceptCertificateTransferRequest":{
2130
- "type":"structure",
2131
- "required":["certificateId"],
2132
- "members":{
2133
- "certificateId":{
2134
- "shape":"CertificateId",
2135
- "location":"uri",
2136
- "locationName":"certificateId"
2137
- },
2138
- "setAsActive":{
2139
- "shape":"SetAsActive",
2140
- "location":"querystring",
2141
- "locationName":"setAsActive"
2142
- }
2143
- }
2144
- },
2145
- "Action":{
2146
- "type":"structure",
2147
- "members":{
2148
- "dynamoDB":{"shape":"DynamoDBAction"},
2149
- "lambda":{"shape":"LambdaAction"},
2150
- "sns":{"shape":"SnsAction"},
2151
- "sqs":{"shape":"SqsAction"},
2152
- "kinesis":{"shape":"KinesisAction"},
2153
- "republish":{"shape":"RepublishAction"},
2154
- "s3":{"shape":"S3Action"},
2155
- "firehose":{"shape":"FirehoseAction"},
2156
- "cloudwatchMetric":{"shape":"CloudwatchMetricAction"},
2157
- "cloudwatchAlarm":{"shape":"CloudwatchAlarmAction"},
2158
- "elasticsearch":{"shape":"ElasticsearchAction"}
2159
- }
2160
- },
2161
- "ActionList":{
2162
- "type":"list",
2163
- "member":{"shape":"Action"},
2164
- "min":0,
2165
- "max":10
2166
- },
2167
- "AlarmName":{"type":"string"},
2168
- "AscendingOrder":{"type":"boolean"},
2169
- "AttachPrincipalPolicyRequest":{
2170
- "type":"structure",
2171
- "required":[
2172
- "policyName",
2173
- "principal"
2174
- ],
2175
- "members":{
2176
- "policyName":{
2177
- "shape":"PolicyName",
2178
- "location":"uri",
2179
- "locationName":"policyName"
2180
- },
2181
- "principal":{
2182
- "shape":"Principal",
2183
- "location":"header",
2184
- "locationName":"x-amzn-iot-principal"
2185
- }
2186
- }
2187
- },
2188
- "AttachThingPrincipalRequest":{
2189
- "type":"structure",
2190
- "required":[
2191
- "thingName",
2192
- "principal"
2193
- ],
2194
- "members":{
2195
- "thingName":{
2196
- "shape":"ThingName",
2197
- "location":"uri",
2198
- "locationName":"thingName"
2199
- },
2200
- "principal":{
2201
- "shape":"Principal",
2202
- "location":"header",
2203
- "locationName":"x-amzn-principal"
2204
- }
2205
- }
2206
- },
2207
- "AttachThingPrincipalResponse":{
2208
- "type":"structure",
2209
- "members":{
2210
- }
2211
- },
2212
- "AttributeName":{
2213
- "type":"string",
2214
- "max":128,
2215
- "pattern":"[a-zA-Z0-9_.,@/:#-]+"
2216
- },
2217
- "AttributePayload":{
2218
- "type":"structure",
2219
- "members":{
2220
- "attributes":{"shape":"Attributes"}
2221
- }
2222
- },
2223
- "AttributeValue":{
2224
- "type":"string",
2225
- "max":1024,
2226
- "pattern":"[a-zA-Z0-9_.,@/:#-]+"
2227
- },
2228
- "Attributes":{
2229
- "type":"map",
2230
- "key":{"shape":"AttributeName"},
2231
- "value":{"shape":"AttributeValue"}
2232
- },
2233
- "AwsAccountId":{
2234
- "type":"string",
2235
- "pattern":"[0-9]{12}"
2236
- },
2237
- "AwsArn":{"type":"string"},
2238
- "AwsIotSqlVersion":{"type":"string"},
2239
- "BucketName":{"type":"string"},
2240
- "CACertificate":{
2241
- "type":"structure",
2242
- "members":{
2243
- "certificateArn":{"shape":"CertificateArn"},
2244
- "certificateId":{"shape":"CertificateId"},
2245
- "status":{"shape":"CACertificateStatus"},
2246
- "creationDate":{"shape":"DateType"}
2247
- }
2248
- },
2249
- "CACertificateDescription":{
2250
- "type":"structure",
2251
- "members":{
2252
- "certificateArn":{"shape":"CertificateArn"},
2253
- "certificateId":{"shape":"CertificateId"},
2254
- "status":{"shape":"CACertificateStatus"},
2255
- "certificatePem":{"shape":"CertificatePem"},
2256
- "ownedBy":{"shape":"AwsAccountId"},
2257
- "creationDate":{"shape":"DateType"}
2258
- }
2259
- },
2260
- "CACertificateStatus":{
2261
- "type":"string",
2262
- "enum":[
2263
- "ACTIVE",
2264
- "INACTIVE"
2265
- ]
2266
- },
2267
- "CACertificates":{
2268
- "type":"list",
2269
- "member":{"shape":"CACertificate"}
2270
- },
2271
- "CancelCertificateTransferRequest":{
2272
- "type":"structure",
2273
- "required":["certificateId"],
2274
- "members":{
2275
- "certificateId":{
2276
- "shape":"CertificateId",
2277
- "location":"uri",
2278
- "locationName":"certificateId"
2279
- }
2280
- }
2281
- },
2282
- "Certificate":{
2283
- "type":"structure",
2284
- "members":{
2285
- "certificateArn":{"shape":"CertificateArn"},
2286
- "certificateId":{"shape":"CertificateId"},
2287
- "status":{"shape":"CertificateStatus"},
2288
- "creationDate":{"shape":"DateType"}
2289
- }
2290
- },
2291
- "CertificateArn":{"type":"string"},
2292
- "CertificateConflictException":{
2293
- "type":"structure",
2294
- "members":{
2295
- "message":{"shape":"errorMessage"}
2296
- },
2297
- "error":{"httpStatusCode":409},
2298
- "exception":true
2299
- },
2300
- "CertificateDescription":{
2301
- "type":"structure",
2302
- "members":{
2303
- "certificateArn":{"shape":"CertificateArn"},
2304
- "certificateId":{"shape":"CertificateId"},
2305
- "caCertificateId":{"shape":"CertificateId"},
2306
- "status":{"shape":"CertificateStatus"},
2307
- "certificatePem":{"shape":"CertificatePem"},
2308
- "ownedBy":{"shape":"AwsAccountId"},
2309
- "previousOwnedBy":{"shape":"AwsAccountId"},
2310
- "creationDate":{"shape":"DateType"},
2311
- "lastModifiedDate":{"shape":"DateType"},
2312
- "transferData":{"shape":"TransferData"}
2313
- }
2314
- },
2315
- "CertificateId":{
2316
- "type":"string",
2317
- "min":64,
2318
- "max":64,
2319
- "pattern":"(0x)?[a-fA-F0-9]+"
2320
- },
2321
- "CertificatePem":{
2322
- "type":"string",
2323
- "min":1,
2324
- "max":65536
2325
- },
2326
- "CertificateSigningRequest":{
2327
- "type":"string",
2328
- "min":1
2329
- },
2330
- "CertificateStateException":{
2331
- "type":"structure",
2332
- "members":{
2333
- "message":{"shape":"errorMessage"}
2334
- },
2335
- "error":{"httpStatusCode":406},
2336
- "exception":true
2337
- },
2338
- "CertificateStatus":{
2339
- "type":"string",
2340
- "enum":[
2341
- "ACTIVE",
2342
- "INACTIVE",
2343
- "REVOKED",
2344
- "PENDING_TRANSFER",
2345
- "REGISTER_INACTIVE"
2346
- ]
2347
- },
2348
- "CertificateValidationException":{
2349
- "type":"structure",
2350
- "members":{
2351
- "message":{"shape":"errorMessage"}
2352
- },
2353
- "error":{"httpStatusCode":400},
2354
- "exception":true
2355
- },
2356
- "Certificates":{
2357
- "type":"list",
2358
- "member":{"shape":"Certificate"}
2359
- },
2360
- "ClientId":{"type":"string"},
2361
- "CloudwatchAlarmAction":{
2362
- "type":"structure",
2363
- "required":[
2364
- "roleArn",
2365
- "alarmName",
2366
- "stateReason",
2367
- "stateValue"
2368
- ],
2369
- "members":{
2370
- "roleArn":{"shape":"AwsArn"},
2371
- "alarmName":{"shape":"AlarmName"},
2372
- "stateReason":{"shape":"StateReason"},
2373
- "stateValue":{"shape":"StateValue"}
2374
- }
2375
- },
2376
- "CloudwatchMetricAction":{
2377
- "type":"structure",
2378
- "required":[
2379
- "roleArn",
2380
- "metricNamespace",
2381
- "metricName",
2382
- "metricValue",
2383
- "metricUnit"
2384
- ],
2385
- "members":{
2386
- "roleArn":{"shape":"AwsArn"},
2387
- "metricNamespace":{"shape":"MetricNamespace"},
2388
- "metricName":{"shape":"MetricName"},
2389
- "metricValue":{"shape":"MetricValue"},
2390
- "metricUnit":{"shape":"MetricUnit"},
2391
- "metricTimestamp":{"shape":"MetricTimestamp"}
2392
- }
2393
- },
2394
- "CreateCertificateFromCsrRequest":{
2395
- "type":"structure",
2396
- "required":["certificateSigningRequest"],
2397
- "members":{
2398
- "certificateSigningRequest":{"shape":"CertificateSigningRequest"},
2399
- "setAsActive":{
2400
- "shape":"SetAsActive",
2401
- "location":"querystring",
2402
- "locationName":"setAsActive"
2403
- }
2404
- }
2405
- },
2406
- "CreateCertificateFromCsrResponse":{
2407
- "type":"structure",
2408
- "members":{
2409
- "certificateArn":{"shape":"CertificateArn"},
2410
- "certificateId":{"shape":"CertificateId"},
2411
- "certificatePem":{"shape":"CertificatePem"}
2412
- }
2413
- },
2414
- "CreateKeysAndCertificateRequest":{
2415
- "type":"structure",
2416
- "members":{
2417
- "setAsActive":{
2418
- "shape":"SetAsActive",
2419
- "location":"querystring",
2420
- "locationName":"setAsActive"
2421
- }
2422
- }
2423
- },
2424
- "CreateKeysAndCertificateResponse":{
2425
- "type":"structure",
2426
- "members":{
2427
- "certificateArn":{"shape":"CertificateArn"},
2428
- "certificateId":{"shape":"CertificateId"},
2429
- "certificatePem":{"shape":"CertificatePem"},
2430
- "keyPair":{"shape":"KeyPair"}
2431
- }
2432
- },
2433
- "CreatePolicyRequest":{
2434
- "type":"structure",
2435
- "required":[
2436
- "policyName",
2437
- "policyDocument"
2438
- ],
2439
- "members":{
2440
- "policyName":{
2441
- "shape":"PolicyName",
2442
- "location":"uri",
2443
- "locationName":"policyName"
2444
- },
2445
- "policyDocument":{"shape":"PolicyDocument"}
2446
- }
2447
- },
2448
- "CreatePolicyResponse":{
2449
- "type":"structure",
2450
- "members":{
2451
- "policyName":{"shape":"PolicyName"},
2452
- "policyArn":{"shape":"PolicyArn"},
2453
- "policyDocument":{"shape":"PolicyDocument"},
2454
- "policyVersionId":{"shape":"PolicyVersionId"}
2455
- }
2456
- },
2457
- "CreatePolicyVersionRequest":{
2458
- "type":"structure",
2459
- "required":[
2460
- "policyName",
2461
- "policyDocument"
2462
- ],
2463
- "members":{
2464
- "policyName":{
2465
- "shape":"PolicyName",
2466
- "location":"uri",
2467
- "locationName":"policyName"
2468
- },
2469
- "policyDocument":{"shape":"PolicyDocument"},
2470
- "setAsDefault":{
2471
- "shape":"SetAsDefault",
2472
- "location":"querystring",
2473
- "locationName":"setAsDefault"
2474
- }
2475
- }
2476
- },
2477
- "CreatePolicyVersionResponse":{
2478
- "type":"structure",
2479
- "members":{
2480
- "policyArn":{"shape":"PolicyArn"},
2481
- "policyDocument":{"shape":"PolicyDocument"},
2482
- "policyVersionId":{"shape":"PolicyVersionId"},
2483
- "isDefaultVersion":{"shape":"IsDefaultVersion"}
2484
- }
2485
- },
2486
- "CreateThingRequest":{
2487
- "type":"structure",
2488
- "required":["thingName"],
2489
- "members":{
2490
- "thingName":{
2491
- "shape":"ThingName",
2492
- "location":"uri",
2493
- "locationName":"thingName"
2494
- },
2495
- "attributePayload":{"shape":"AttributePayload"}
2496
- }
2497
- },
2498
- "CreateThingResponse":{
2499
- "type":"structure",
2500
- "members":{
2501
- "thingName":{"shape":"ThingName"},
2502
- "thingArn":{"shape":"ThingArn"}
2503
- }
2504
- },
2505
- "CreateTopicRuleRequest":{
2506
- "type":"structure",
2507
- "required":[
2508
- "ruleName",
2509
- "topicRulePayload"
2510
- ],
2511
- "members":{
2512
- "ruleName":{
2513
- "shape":"RuleName",
2514
- "location":"uri",
2515
- "locationName":"ruleName"
2516
- },
2517
- "topicRulePayload":{"shape":"TopicRulePayload"}
2518
- },
2519
- "payload":"topicRulePayload"
2520
- },
2521
- "CreatedAtDate":{"type":"timestamp"},
2522
- "DateType":{"type":"timestamp"},
2523
- "DeleteCACertificateRequest":{
2524
- "type":"structure",
2525
- "required":["certificateId"],
2526
- "members":{
2527
- "certificateId":{
2528
- "shape":"CertificateId",
2529
- "location":"uri",
2530
- "locationName":"caCertificateId"
2531
- }
2532
- }
2533
- },
2534
- "DeleteCACertificateResponse":{
2535
- "type":"structure",
2536
- "members":{
2537
- }
2538
- },
2539
- "DeleteCertificateRequest":{
2540
- "type":"structure",
2541
- "required":["certificateId"],
2542
- "members":{
2543
- "certificateId":{
2544
- "shape":"CertificateId",
2545
- "location":"uri",
2546
- "locationName":"certificateId"
2547
- }
2548
- }
2549
- },
2550
- "DeleteConflictException":{
2551
- "type":"structure",
2552
- "members":{
2553
- "message":{"shape":"errorMessage"}
2554
- },
2555
- "error":{"httpStatusCode":409},
2556
- "exception":true
2557
- },
2558
- "DeletePolicyRequest":{
2559
- "type":"structure",
2560
- "required":["policyName"],
2561
- "members":{
2562
- "policyName":{
2563
- "shape":"PolicyName",
2564
- "location":"uri",
2565
- "locationName":"policyName"
2566
- }
2567
- }
2568
- },
2569
- "DeletePolicyVersionRequest":{
2570
- "type":"structure",
2571
- "required":[
2572
- "policyName",
2573
- "policyVersionId"
2574
- ],
2575
- "members":{
2576
- "policyName":{
2577
- "shape":"PolicyName",
2578
- "location":"uri",
2579
- "locationName":"policyName"
2580
- },
2581
- "policyVersionId":{
2582
- "shape":"PolicyVersionId",
2583
- "location":"uri",
2584
- "locationName":"policyVersionId"
2585
- }
2586
- }
2587
- },
2588
- "DeleteRegistrationCodeRequest":{
2589
- "type":"structure",
2590
- "members":{
2591
- }
2592
- },
2593
- "DeleteRegistrationCodeResponse":{
2594
- "type":"structure",
2595
- "members":{
2596
- }
2597
- },
2598
- "DeleteThingRequest":{
2599
- "type":"structure",
2600
- "required":["thingName"],
2601
- "members":{
2602
- "thingName":{
2603
- "shape":"ThingName",
2604
- "location":"uri",
2605
- "locationName":"thingName"
2606
- }
2607
- }
2608
- },
2609
- "DeleteThingResponse":{
2610
- "type":"structure",
2611
- "members":{
2612
- }
2613
- },
2614
- "DeleteTopicRuleRequest":{
2615
- "type":"structure",
2616
- "members":{
2617
- "ruleName":{
2618
- "shape":"RuleName",
2619
- "location":"uri",
2620
- "locationName":"ruleName"
2621
- }
2622
- },
2623
- "required":["ruleName"]
2624
- },
2625
- "DeliveryStreamName":{"type":"string"},
2626
- "DescribeCACertificateRequest":{
2627
- "type":"structure",
2628
- "required":["certificateId"],
2629
- "members":{
2630
- "certificateId":{
2631
- "shape":"CertificateId",
2632
- "location":"uri",
2633
- "locationName":"caCertificateId"
2634
- }
2635
- }
2636
- },
2637
- "DescribeCACertificateResponse":{
2638
- "type":"structure",
2639
- "members":{
2640
- "certificateDescription":{"shape":"CACertificateDescription"}
2641
- }
2642
- },
2643
- "DescribeCertificateRequest":{
2644
- "type":"structure",
2645
- "required":["certificateId"],
2646
- "members":{
2647
- "certificateId":{
2648
- "shape":"CertificateId",
2649
- "location":"uri",
2650
- "locationName":"certificateId"
2651
- }
2652
- }
2653
- },
2654
- "DescribeCertificateResponse":{
2655
- "type":"structure",
2656
- "members":{
2657
- "certificateDescription":{"shape":"CertificateDescription"}
2658
- }
2659
- },
2660
- "DescribeEndpointRequest":{
2661
- "type":"structure",
2662
- "members":{
2663
- }
2664
- },
2665
- "DescribeEndpointResponse":{
2666
- "type":"structure",
2667
- "members":{
2668
- "endpointAddress":{"shape":"EndpointAddress"}
2669
- }
2670
- },
2671
- "DescribeThingRequest":{
2672
- "type":"structure",
2673
- "required":["thingName"],
2674
- "members":{
2675
- "thingName":{
2676
- "shape":"ThingName",
2677
- "location":"uri",
2678
- "locationName":"thingName"
2679
- }
2680
- }
2681
- },
2682
- "DescribeThingResponse":{
2683
- "type":"structure",
2684
- "members":{
2685
- "defaultClientId":{"shape":"ClientId"},
2686
- "thingName":{"shape":"ThingName"},
2687
- "attributes":{"shape":"Attributes"}
2688
- }
2689
- },
2690
- "Description":{"type":"string"},
2691
- "DetachPrincipalPolicyRequest":{
2692
- "type":"structure",
2693
- "required":[
2694
- "policyName",
2695
- "principal"
2696
- ],
2697
- "members":{
2698
- "policyName":{
2699
- "shape":"PolicyName",
2700
- "location":"uri",
2701
- "locationName":"policyName"
2702
- },
2703
- "principal":{
2704
- "shape":"Principal",
2705
- "location":"header",
2706
- "locationName":"x-amzn-iot-principal"
2707
- }
2708
- }
2709
- },
2710
- "DetachThingPrincipalRequest":{
2711
- "type":"structure",
2712
- "required":[
2713
- "thingName",
2714
- "principal"
2715
- ],
2716
- "members":{
2717
- "thingName":{
2718
- "shape":"ThingName",
2719
- "location":"uri",
2720
- "locationName":"thingName"
2721
- },
2722
- "principal":{
2723
- "shape":"Principal",
2724
- "location":"header",
2725
- "locationName":"x-amzn-principal"
2726
- }
2727
- }
2728
- },
2729
- "DetachThingPrincipalResponse":{
2730
- "type":"structure",
2731
- "members":{
2732
- }
2733
- },
2734
- "DisableTopicRuleRequest":{
2735
- "type":"structure",
2736
- "required":["ruleName"],
2737
- "members":{
2738
- "ruleName":{
2739
- "shape":"RuleName",
2740
- "location":"uri",
2741
- "locationName":"ruleName"
2742
- }
2743
- }
2744
- },
2745
- "DynamoDBAction":{
2746
- "type":"structure",
2747
- "required":[
2748
- "tableName",
2749
- "roleArn",
2750
- "hashKeyField",
2751
- "hashKeyValue"
2752
- ],
2753
- "members":{
2754
- "tableName":{"shape":"TableName"},
2755
- "roleArn":{"shape":"AwsArn"},
2756
- "operation":{"shape":"DynamoOperation"},
2757
- "hashKeyField":{"shape":"HashKeyField"},
2758
- "hashKeyValue":{"shape":"HashKeyValue"},
2759
- "hashKeyType":{"shape":"DynamoKeyType"},
2760
- "rangeKeyField":{"shape":"RangeKeyField"},
2761
- "rangeKeyValue":{"shape":"RangeKeyValue"},
2762
- "rangeKeyType":{"shape":"DynamoKeyType"},
2763
- "payloadField":{"shape":"PayloadField"}
2764
- }
2765
- },
2766
- "DynamoKeyType":{
2767
- "type":"string",
2768
- "enum":[
2769
- "STRING",
2770
- "NUMBER"
2771
- ]
2772
- },
2773
- "DynamoOperation":{"type":"string"},
2774
- "ElasticsearchAction":{
2775
- "type":"structure",
2776
- "required":[
2777
- "roleArn",
2778
- "endpoint",
2779
- "index",
2780
- "type",
2781
- "id"
2782
- ],
2783
- "members":{
2784
- "roleArn":{"shape":"AwsArn"},
2785
- "endpoint":{"shape":"ElasticsearchEndpoint"},
2786
- "index":{"shape":"ElasticsearchIndex"},
2787
- "type":{"shape":"ElasticsearchType"},
2788
- "id":{"shape":"ElasticsearchId"}
2789
- }
2790
- },
2791
- "ElasticsearchEndpoint":{
2792
- "type":"string",
2793
- "pattern":"https?://.*"
2794
- },
2795
- "ElasticsearchId":{"type":"string"},
2796
- "ElasticsearchIndex":{"type":"string"},
2797
- "ElasticsearchType":{"type":"string"},
2798
- "EnableTopicRuleRequest":{
2799
- "type":"structure",
2800
- "required":["ruleName"],
2801
- "members":{
2802
- "ruleName":{
2803
- "shape":"RuleName",
2804
- "location":"uri",
2805
- "locationName":"ruleName"
2806
- }
2807
- }
2808
- },
2809
- "EndpointAddress":{"type":"string"},
2810
- "FirehoseAction":{
2811
- "type":"structure",
2812
- "required":[
2813
- "roleArn",
2814
- "deliveryStreamName"
2815
- ],
2816
- "members":{
2817
- "roleArn":{"shape":"AwsArn"},
2818
- "deliveryStreamName":{"shape":"DeliveryStreamName"}
2819
- }
2820
- },
2821
- "FunctionArn":{"type":"string"},
2822
- "GetLoggingOptionsRequest":{
2823
- "type":"structure",
2824
- "members":{
2825
- }
2826
- },
2827
- "GetLoggingOptionsResponse":{
2828
- "type":"structure",
2829
- "members":{
2830
- "roleArn":{"shape":"AwsArn"},
2831
- "logLevel":{"shape":"LogLevel"}
2832
- }
2833
- },
2834
- "GetPolicyRequest":{
2835
- "type":"structure",
2836
- "required":["policyName"],
2837
- "members":{
2838
- "policyName":{
2839
- "shape":"PolicyName",
2840
- "location":"uri",
2841
- "locationName":"policyName"
2842
- }
2843
- }
2844
- },
2845
- "GetPolicyResponse":{
2846
- "type":"structure",
2847
- "members":{
2848
- "policyName":{"shape":"PolicyName"},
2849
- "policyArn":{"shape":"PolicyArn"},
2850
- "policyDocument":{"shape":"PolicyDocument"},
2851
- "defaultVersionId":{"shape":"PolicyVersionId"}
2852
- }
2853
- },
2854
- "GetPolicyVersionRequest":{
2855
- "type":"structure",
2856
- "required":[
2857
- "policyName",
2858
- "policyVersionId"
2859
- ],
2860
- "members":{
2861
- "policyName":{
2862
- "shape":"PolicyName",
2863
- "location":"uri",
2864
- "locationName":"policyName"
2865
- },
2866
- "policyVersionId":{
2867
- "shape":"PolicyVersionId",
2868
- "location":"uri",
2869
- "locationName":"policyVersionId"
2870
- }
2871
- }
2872
- },
2873
- "GetPolicyVersionResponse":{
2874
- "type":"structure",
2875
- "members":{
2876
- "policyArn":{"shape":"PolicyArn"},
2877
- "policyName":{"shape":"PolicyName"},
2878
- "policyDocument":{"shape":"PolicyDocument"},
2879
- "policyVersionId":{"shape":"PolicyVersionId"},
2880
- "isDefaultVersion":{"shape":"IsDefaultVersion"}
2881
- }
2882
- },
2883
- "GetRegistrationCodeRequest":{
2884
- "type":"structure",
2885
- "members":{
2886
- }
2887
- },
2888
- "GetRegistrationCodeResponse":{
2889
- "type":"structure",
2890
- "members":{
2891
- "registrationCode":{"shape":"RegistrationCode"}
2892
- }
2893
- },
2894
- "GetTopicRuleRequest":{
2895
- "type":"structure",
2896
- "required":["ruleName"],
2897
- "members":{
2898
- "ruleName":{
2899
- "shape":"RuleName",
2900
- "location":"uri",
2901
- "locationName":"ruleName"
2902
- }
2903
- }
2904
- },
2905
- "GetTopicRuleResponse":{
2906
- "type":"structure",
2907
- "members":{
2908
- "ruleArn":{"shape":"RuleArn"},
2909
- "rule":{"shape":"TopicRule"}
2910
- }
2911
- },
2912
- "HashKeyField":{"type":"string"},
2913
- "HashKeyValue":{"type":"string"},
2914
- "InternalException":{
2915
- "type":"structure",
2916
- "members":{
2917
- "message":{"shape":"errorMessage"}
2918
- },
2919
- "error":{"httpStatusCode":500},
2920
- "exception":true,
2921
- "fault":true
2922
- },
2923
- "InternalFailureException":{
2924
- "type":"structure",
2925
- "members":{
2926
- "message":{"shape":"errorMessage"}
2927
- },
2928
- "error":{"httpStatusCode":500},
2929
- "exception":true,
2930
- "fault":true
2931
- },
2932
- "InvalidRequestException":{
2933
- "type":"structure",
2934
- "members":{
2935
- "message":{"shape":"errorMessage"}
2936
- },
2937
- "error":{"httpStatusCode":400},
2938
- "exception":true
2939
- },
2940
- "IsDefaultVersion":{"type":"boolean"},
2941
- "IsDisabled":{"type":"boolean"},
2942
- "Key":{"type":"string"},
2943
- "KeyPair":{
2944
- "type":"structure",
2945
- "members":{
2946
- "PublicKey":{"shape":"PublicKey"},
2947
- "PrivateKey":{"shape":"PrivateKey"}
2948
- }
2949
- },
2950
- "KinesisAction":{
2951
- "type":"structure",
2952
- "required":[
2953
- "roleArn",
2954
- "streamName"
2955
- ],
2956
- "members":{
2957
- "roleArn":{"shape":"AwsArn"},
2958
- "streamName":{"shape":"StreamName"},
2959
- "partitionKey":{"shape":"PartitionKey"}
2960
- }
2961
- },
2962
- "LambdaAction":{
2963
- "type":"structure",
2964
- "required":["functionArn"],
2965
- "members":{
2966
- "functionArn":{"shape":"FunctionArn"}
2967
- }
2968
- },
2969
- "LimitExceededException":{
2970
- "type":"structure",
2971
- "members":{
2972
- "message":{"shape":"errorMessage"}
2973
- },
2974
- "error":{"httpStatusCode":410},
2975
- "exception":true
2976
- },
2977
- "ListCACertificatesRequest":{
2978
- "type":"structure",
2979
- "members":{
2980
- "pageSize":{
2981
- "shape":"PageSize",
2982
- "location":"querystring",
2983
- "locationName":"pageSize"
2984
- },
2985
- "marker":{
2986
- "shape":"Marker",
2987
- "location":"querystring",
2988
- "locationName":"marker"
2989
- },
2990
- "ascendingOrder":{
2991
- "shape":"AscendingOrder",
2992
- "location":"querystring",
2993
- "locationName":"isAscendingOrder"
2994
- }
2995
- }
2996
- },
2997
- "ListCACertificatesResponse":{
2998
- "type":"structure",
2999
- "members":{
3000
- "certificates":{"shape":"CACertificates"},
3001
- "nextMarker":{"shape":"Marker"}
3002
- }
3003
- },
3004
- "ListCertificatesByCARequest":{
3005
- "type":"structure",
3006
- "required":["caCertificateId"],
3007
- "members":{
3008
- "caCertificateId":{
3009
- "shape":"CertificateId",
3010
- "location":"uri",
3011
- "locationName":"caCertificateId"
3012
- },
3013
- "pageSize":{
3014
- "shape":"PageSize",
3015
- "location":"querystring",
3016
- "locationName":"pageSize"
3017
- },
3018
- "marker":{
3019
- "shape":"Marker",
3020
- "location":"querystring",
3021
- "locationName":"marker"
3022
- },
3023
- "ascendingOrder":{
3024
- "shape":"AscendingOrder",
3025
- "location":"querystring",
3026
- "locationName":"isAscendingOrder"
3027
- }
3028
- }
3029
- },
3030
- "ListCertificatesByCAResponse":{
3031
- "type":"structure",
3032
- "members":{
3033
- "certificates":{"shape":"Certificates"},
3034
- "nextMarker":{"shape":"Marker"}
3035
- }
3036
- },
3037
- "ListCertificatesRequest":{
3038
- "type":"structure",
3039
- "members":{
3040
- "pageSize":{
3041
- "shape":"PageSize",
3042
- "location":"querystring",
3043
- "locationName":"pageSize"
3044
- },
3045
- "marker":{
3046
- "shape":"Marker",
3047
- "location":"querystring",
3048
- "locationName":"marker"
3049
- },
3050
- "ascendingOrder":{
3051
- "shape":"AscendingOrder",
3052
- "location":"querystring",
3053
- "locationName":"isAscendingOrder"
3054
- }
3055
- }
3056
- },
3057
- "ListCertificatesResponse":{
3058
- "type":"structure",
3059
- "members":{
3060
- "certificates":{"shape":"Certificates"},
3061
- "nextMarker":{"shape":"Marker"}
3062
- }
3063
- },
3064
- "ListPoliciesRequest":{
3065
- "type":"structure",
3066
- "members":{
3067
- "marker":{
3068
- "shape":"Marker",
3069
- "location":"querystring",
3070
- "locationName":"marker"
3071
- },
3072
- "pageSize":{
3073
- "shape":"PageSize",
3074
- "location":"querystring",
3075
- "locationName":"pageSize"
3076
- },
3077
- "ascendingOrder":{
3078
- "shape":"AscendingOrder",
3079
- "location":"querystring",
3080
- "locationName":"isAscendingOrder"
3081
- }
3082
- }
3083
- },
3084
- "ListPoliciesResponse":{
3085
- "type":"structure",
3086
- "members":{
3087
- "policies":{"shape":"Policies"},
3088
- "nextMarker":{"shape":"Marker"}
3089
- }
3090
- },
3091
- "ListPolicyPrincipalsRequest":{
3092
- "type":"structure",
3093
- "required":["policyName"],
3094
- "members":{
3095
- "policyName":{
3096
- "shape":"PolicyName",
3097
- "location":"header",
3098
- "locationName":"x-amzn-iot-policy"
3099
- },
3100
- "marker":{
3101
- "shape":"Marker",
3102
- "location":"querystring",
3103
- "locationName":"marker"
3104
- },
3105
- "pageSize":{
3106
- "shape":"PageSize",
3107
- "location":"querystring",
3108
- "locationName":"pageSize"
3109
- },
3110
- "ascendingOrder":{
3111
- "shape":"AscendingOrder",
3112
- "location":"querystring",
3113
- "locationName":"isAscendingOrder"
3114
- }
3115
- }
3116
- },
3117
- "ListPolicyPrincipalsResponse":{
3118
- "type":"structure",
3119
- "members":{
3120
- "principals":{"shape":"Principals"},
3121
- "nextMarker":{"shape":"Marker"}
3122
- }
3123
- },
3124
- "ListPolicyVersionsRequest":{
3125
- "type":"structure",
3126
- "required":["policyName"],
3127
- "members":{
3128
- "policyName":{
3129
- "shape":"PolicyName",
3130
- "location":"uri",
3131
- "locationName":"policyName"
3132
- }
3133
- }
3134
- },
3135
- "ListPolicyVersionsResponse":{
3136
- "type":"structure",
3137
- "members":{
3138
- "policyVersions":{"shape":"PolicyVersions"}
3139
- }
3140
- },
3141
- "ListPrincipalPoliciesRequest":{
3142
- "type":"structure",
3143
- "required":["principal"],
3144
- "members":{
3145
- "principal":{
3146
- "shape":"Principal",
3147
- "location":"header",
3148
- "locationName":"x-amzn-iot-principal"
3149
- },
3150
- "marker":{
3151
- "shape":"Marker",
3152
- "location":"querystring",
3153
- "locationName":"marker"
3154
- },
3155
- "pageSize":{
3156
- "shape":"PageSize",
3157
- "location":"querystring",
3158
- "locationName":"pageSize"
3159
- },
3160
- "ascendingOrder":{
3161
- "shape":"AscendingOrder",
3162
- "location":"querystring",
3163
- "locationName":"isAscendingOrder"
3164
- }
3165
- }
3166
- },
3167
- "ListPrincipalPoliciesResponse":{
3168
- "type":"structure",
3169
- "members":{
3170
- "policies":{"shape":"Policies"},
3171
- "nextMarker":{"shape":"Marker"}
3172
- }
3173
- },
3174
- "ListPrincipalThingsRequest":{
3175
- "type":"structure",
3176
- "required":["principal"],
3177
- "members":{
3178
- "nextToken":{
3179
- "shape":"NextToken",
3180
- "location":"querystring",
3181
- "locationName":"nextToken"
3182
- },
3183
- "maxResults":{
3184
- "shape":"MaxResults",
3185
- "location":"querystring",
3186
- "locationName":"maxResults"
3187
- },
3188
- "principal":{
3189
- "shape":"Principal",
3190
- "location":"header",
3191
- "locationName":"x-amzn-principal"
3192
- }
3193
- }
3194
- },
3195
- "ListPrincipalThingsResponse":{
3196
- "type":"structure",
3197
- "members":{
3198
- "things":{"shape":"ThingNameList"},
3199
- "nextToken":{"shape":"NextToken"}
3200
- }
3201
- },
3202
- "ListThingPrincipalsRequest":{
3203
- "type":"structure",
3204
- "required":["thingName"],
3205
- "members":{
3206
- "thingName":{
3207
- "shape":"ThingName",
3208
- "location":"uri",
3209
- "locationName":"thingName"
3210
- }
3211
- }
3212
- },
3213
- "ListThingPrincipalsResponse":{
3214
- "type":"structure",
3215
- "members":{
3216
- "principals":{"shape":"Principals"}
3217
- }
3218
- },
3219
- "ListThingsRequest":{
3220
- "type":"structure",
3221
- "members":{
3222
- "nextToken":{
3223
- "shape":"NextToken",
3224
- "location":"querystring",
3225
- "locationName":"nextToken"
3226
- },
3227
- "maxResults":{
3228
- "shape":"MaxResults",
3229
- "location":"querystring",
3230
- "locationName":"maxResults"
3231
- },
3232
- "attributeName":{
3233
- "shape":"AttributeName",
3234
- "location":"querystring",
3235
- "locationName":"attributeName"
3236
- },
3237
- "attributeValue":{
3238
- "shape":"AttributeValue",
3239
- "location":"querystring",
3240
- "locationName":"attributeValue"
3241
- }
3242
- }
3243
- },
3244
- "ListThingsResponse":{
3245
- "type":"structure",
3246
- "members":{
3247
- "things":{"shape":"ThingAttributeList"},
3248
- "nextToken":{"shape":"NextToken"}
3249
- }
3250
- },
3251
- "ListTopicRulesRequest":{
3252
- "type":"structure",
3253
- "members":{
3254
- "topic":{
3255
- "shape":"Topic",
3256
- "location":"querystring",
3257
- "locationName":"topic"
3258
- },
3259
- "maxResults":{
3260
- "shape":"MaxResults",
3261
- "location":"querystring",
3262
- "locationName":"maxResults"
3263
- },
3264
- "nextToken":{
3265
- "shape":"NextToken",
3266
- "location":"querystring",
3267
- "locationName":"nextToken"
3268
- },
3269
- "ruleDisabled":{
3270
- "shape":"IsDisabled",
3271
- "location":"querystring",
3272
- "locationName":"ruleDisabled"
3273
- }
3274
- }
3275
- },
3276
- "ListTopicRulesResponse":{
3277
- "type":"structure",
3278
- "members":{
3279
- "rules":{"shape":"TopicRuleList"},
3280
- "nextToken":{"shape":"NextToken"}
3281
- }
3282
- },
3283
- "LogLevel":{
3284
- "type":"string",
3285
- "enum":[
3286
- "DEBUG",
3287
- "INFO",
3288
- "ERROR",
3289
- "WARN",
3290
- "DISABLED"
3291
- ]
3292
- },
3293
- "LoggingOptionsPayload":{
3294
- "type":"structure",
3295
- "required":["roleArn"],
3296
- "members":{
3297
- "roleArn":{"shape":"AwsArn"},
3298
- "logLevel":{"shape":"LogLevel"}
3299
- }
3300
- },
3301
- "MalformedPolicyException":{
3302
- "type":"structure",
3303
- "members":{
3304
- "message":{"shape":"errorMessage"}
3305
- },
3306
- "error":{"httpStatusCode":400},
3307
- "exception":true
3308
- },
3309
- "Marker":{"type":"string"},
3310
- "MaxResults":{
3311
- "type":"integer",
3312
- "min":1,
3313
- "max":10000
3314
- },
3315
- "Message":{
3316
- "type":"string",
3317
- "max":128
3318
- },
3319
- "MessageFormat":{
3320
- "type":"string",
3321
- "enum":[
3322
- "RAW",
3323
- "JSON"
3324
- ]
3325
- },
3326
- "MetricName":{"type":"string"},
3327
- "MetricNamespace":{"type":"string"},
3328
- "MetricTimestamp":{"type":"string"},
3329
- "MetricUnit":{"type":"string"},
3330
- "MetricValue":{"type":"string"},
3331
- "NextToken":{"type":"string"},
3332
- "PageSize":{
3333
- "type":"integer",
3334
- "min":1,
3335
- "max":250
3336
- },
3337
- "PartitionKey":{"type":"string"},
3338
- "PayloadField":{"type":"string"},
3339
- "Policies":{
3340
- "type":"list",
3341
- "member":{"shape":"Policy"}
3342
- },
3343
- "Policy":{
3344
- "type":"structure",
3345
- "members":{
3346
- "policyName":{"shape":"PolicyName"},
3347
- "policyArn":{"shape":"PolicyArn"}
3348
- }
3349
- },
3350
- "PolicyArn":{"type":"string"},
3351
- "PolicyDocument":{"type":"string"},
3352
- "PolicyName":{
3353
- "type":"string",
3354
- "min":1,
3355
- "max":128,
3356
- "pattern":"[\\w+=,.@-]+"
3357
- },
3358
- "PolicyVersion":{
3359
- "type":"structure",
3360
- "members":{
3361
- "versionId":{"shape":"PolicyVersionId"},
3362
- "isDefaultVersion":{"shape":"IsDefaultVersion"},
3363
- "createDate":{"shape":"DateType"}
3364
- }
3365
- },
3366
- "PolicyVersionId":{
3367
- "type":"string",
3368
- "pattern":"[0-9]+"
3369
- },
3370
- "PolicyVersions":{
3371
- "type":"list",
3372
- "member":{"shape":"PolicyVersion"}
3373
- },
3374
- "Principal":{"type":"string"},
3375
- "PrincipalArn":{"type":"string"},
3376
- "Principals":{
3377
- "type":"list",
3378
- "member":{"shape":"PrincipalArn"}
3379
- },
3380
- "PrivateKey":{
3381
- "type":"string",
3382
- "min":1,
3383
- "sensitive":true
3384
- },
3385
- "PublicKey":{
3386
- "type":"string",
3387
- "min":1
3388
- },
3389
- "QueueUrl":{"type":"string"},
3390
- "RangeKeyField":{"type":"string"},
3391
- "RangeKeyValue":{"type":"string"},
3392
- "RegisterCACertificateRequest":{
3393
- "type":"structure",
3394
- "required":[
3395
- "caCertificate",
3396
- "verificationCertificate"
3397
- ],
3398
- "members":{
3399
- "caCertificate":{"shape":"CertificatePem"},
3400
- "verificationCertificate":{"shape":"CertificatePem"},
3401
- "setAsActive":{
3402
- "shape":"SetAsActive",
3403
- "location":"querystring",
3404
- "locationName":"setAsActive"
3405
- }
3406
- }
3407
- },
3408
- "RegisterCACertificateResponse":{
3409
- "type":"structure",
3410
- "members":{
3411
- "certificateArn":{"shape":"CertificateArn"},
3412
- "certificateId":{"shape":"CertificateId"}
3413
- }
3414
- },
3415
- "RegisterCertificateRequest":{
3416
- "type":"structure",
3417
- "required":["certificatePem"],
3418
- "members":{
3419
- "certificatePem":{"shape":"CertificatePem"},
3420
- "caCertificatePem":{"shape":"CertificatePem"},
3421
- "setAsActive":{
3422
- "shape":"SetAsActive",
3423
- "location":"querystring",
3424
- "locationName":"setAsActive"
3425
- }
3426
- }
3427
- },
3428
- "RegisterCertificateResponse":{
3429
- "type":"structure",
3430
- "members":{
3431
- "certificateArn":{"shape":"CertificateArn"},
3432
- "certificateId":{"shape":"CertificateId"}
3433
- }
3434
- },
3435
- "RegistrationCode":{
3436
- "type":"string",
3437
- "min":64,
3438
- "max":64,
3439
- "pattern":"(0x)?[a-fA-F0-9]+"
3440
- },
3441
- "RegistrationCodeValidationException":{
3442
- "type":"structure",
3443
- "members":{
3444
- "message":{"shape":"errorMessage"}
3445
- },
3446
- "error":{"httpStatusCode":400},
3447
- "exception":true
3448
- },
3449
- "RejectCertificateTransferRequest":{
3450
- "type":"structure",
3451
- "required":["certificateId"],
3452
- "members":{
3453
- "certificateId":{
3454
- "shape":"CertificateId",
3455
- "location":"uri",
3456
- "locationName":"certificateId"
3457
- },
3458
- "rejectReason":{"shape":"Message"}
3459
- }
3460
- },
3461
- "ReplaceTopicRuleRequest":{
3462
- "type":"structure",
3463
- "required":[
3464
- "ruleName",
3465
- "topicRulePayload"
3466
- ],
3467
- "members":{
3468
- "ruleName":{
3469
- "shape":"RuleName",
3470
- "location":"uri",
3471
- "locationName":"ruleName"
3472
- },
3473
- "topicRulePayload":{"shape":"TopicRulePayload"}
3474
- },
3475
- "payload":"topicRulePayload"
3476
- },
3477
- "RepublishAction":{
3478
- "type":"structure",
3479
- "required":[
3480
- "roleArn",
3481
- "topic"
3482
- ],
3483
- "members":{
3484
- "roleArn":{"shape":"AwsArn"},
3485
- "topic":{"shape":"TopicPattern"}
3486
- }
3487
- },
3488
- "ResourceAlreadyExistsException":{
3489
- "type":"structure",
3490
- "members":{
3491
- "message":{"shape":"errorMessage"}
3492
- },
3493
- "error":{"httpStatusCode":409},
3494
- "exception":true
3495
- },
3496
- "ResourceNotFoundException":{
3497
- "type":"structure",
3498
- "members":{
3499
- "message":{"shape":"errorMessage"}
3500
- },
3501
- "error":{"httpStatusCode":404},
3502
- "exception":true
3503
- },
3504
- "RuleArn":{"type":"string"},
3505
- "RuleName":{
3506
- "type":"string",
3507
- "min":1,
3508
- "max":128,
3509
- "pattern":"^[a-zA-Z0-9_]+$"
3510
- },
3511
- "S3Action":{
3512
- "type":"structure",
3513
- "required":[
3514
- "roleArn",
3515
- "bucketName",
3516
- "key"
3517
- ],
3518
- "members":{
3519
- "roleArn":{"shape":"AwsArn"},
3520
- "bucketName":{"shape":"BucketName"},
3521
- "key":{"shape":"Key"}
3522
- }
3523
- },
3524
- "SQL":{"type":"string"},
3525
- "ServiceUnavailableException":{
3526
- "type":"structure",
3527
- "members":{
3528
- "message":{"shape":"errorMessage"}
3529
- },
3530
- "error":{"httpStatusCode":503},
3531
- "exception":true,
3532
- "fault":true
3533
- },
3534
- "SetAsActive":{"type":"boolean"},
3535
- "SetAsDefault":{"type":"boolean"},
3536
- "SetDefaultPolicyVersionRequest":{
3537
- "type":"structure",
3538
- "required":[
3539
- "policyName",
3540
- "policyVersionId"
3541
- ],
3542
- "members":{
3543
- "policyName":{
3544
- "shape":"PolicyName",
3545
- "location":"uri",
3546
- "locationName":"policyName"
3547
- },
3548
- "policyVersionId":{
3549
- "shape":"PolicyVersionId",
3550
- "location":"uri",
3551
- "locationName":"policyVersionId"
3552
- }
3553
- }
3554
- },
3555
- "SetLoggingOptionsRequest":{
3556
- "type":"structure",
3557
- "required":["loggingOptionsPayload"],
3558
- "members":{
3559
- "loggingOptionsPayload":{"shape":"LoggingOptionsPayload"}
3560
- },
3561
- "payload":"loggingOptionsPayload"
3562
- },
3563
- "SnsAction":{
3564
- "type":"structure",
3565
- "required":[
3566
- "targetArn",
3567
- "roleArn"
3568
- ],
3569
- "members":{
3570
- "targetArn":{"shape":"AwsArn"},
3571
- "roleArn":{"shape":"AwsArn"},
3572
- "messageFormat":{"shape":"MessageFormat"}
3573
- }
3574
- },
3575
- "SqlParseException":{
3576
- "type":"structure",
3577
- "members":{
3578
- "message":{"shape":"errorMessage"}
3579
- },
3580
- "error":{"httpStatusCode":400},
3581
- "exception":true
3582
- },
3583
- "SqsAction":{
3584
- "type":"structure",
3585
- "required":[
3586
- "roleArn",
3587
- "queueUrl"
3588
- ],
3589
- "members":{
3590
- "roleArn":{"shape":"AwsArn"},
3591
- "queueUrl":{"shape":"QueueUrl"},
3592
- "useBase64":{"shape":"UseBase64"}
3593
- }
3594
- },
3595
- "StateReason":{"type":"string"},
3596
- "StateValue":{"type":"string"},
3597
- "StreamName":{"type":"string"},
3598
- "TableName":{"type":"string"},
3599
- "ThingArn":{"type":"string"},
3600
- "ThingAttribute":{
3601
- "type":"structure",
3602
- "members":{
3603
- "thingName":{"shape":"ThingName"},
3604
- "attributes":{"shape":"Attributes"}
3605
- }
3606
- },
3607
- "ThingAttributeList":{
3608
- "type":"list",
3609
- "member":{"shape":"ThingAttribute"}
3610
- },
3611
- "ThingName":{
3612
- "type":"string",
3613
- "min":1,
3614
- "max":128,
3615
- "pattern":"[a-zA-Z0-9_-]+"
3616
- },
3617
- "ThingNameList":{
3618
- "type":"list",
3619
- "member":{"shape":"ThingName"}
3620
- },
3621
- "ThrottlingException":{
3622
- "type":"structure",
3623
- "members":{
3624
- "message":{"shape":"errorMessage"}
3625
- },
3626
- "error":{"httpStatusCode":429},
3627
- "exception":true
3628
- },
3629
- "Topic":{"type":"string"},
3630
- "TopicPattern":{"type":"string"},
3631
- "TopicRule":{
3632
- "type":"structure",
3633
- "members":{
3634
- "ruleName":{"shape":"RuleName"},
3635
- "sql":{"shape":"SQL"},
3636
- "description":{"shape":"Description"},
3637
- "createdAt":{"shape":"CreatedAtDate"},
3638
- "actions":{"shape":"ActionList"},
3639
- "ruleDisabled":{"shape":"IsDisabled"},
3640
- "awsIotSqlVersion":{"shape":"AwsIotSqlVersion"}
3641
- }
3642
- },
3643
- "TopicRuleList":{
3644
- "type":"list",
3645
- "member":{"shape":"TopicRuleListItem"}
3646
- },
3647
- "TopicRuleListItem":{
3648
- "type":"structure",
3649
- "members":{
3650
- "ruleArn":{"shape":"RuleArn"},
3651
- "ruleName":{"shape":"RuleName"},
3652
- "topicPattern":{"shape":"TopicPattern"},
3653
- "createdAt":{"shape":"CreatedAtDate"},
3654
- "ruleDisabled":{"shape":"IsDisabled"}
3655
- }
3656
- },
3657
- "TopicRulePayload":{
3658
- "type":"structure",
3659
- "required":[
3660
- "sql",
3661
- "actions"
3662
- ],
3663
- "members":{
3664
- "sql":{"shape":"SQL"},
3665
- "description":{"shape":"Description"},
3666
- "actions":{"shape":"ActionList"},
3667
- "ruleDisabled":{"shape":"IsDisabled"},
3668
- "awsIotSqlVersion":{"shape":"AwsIotSqlVersion"}
3669
- }
3670
- },
3671
- "TransferAlreadyCompletedException":{
3672
- "type":"structure",
3673
- "members":{
3674
- "message":{"shape":"errorMessage"}
3675
- },
3676
- "error":{"httpStatusCode":410},
3677
- "exception":true
3678
- },
3679
- "TransferCertificateRequest":{
3680
- "type":"structure",
3681
- "required":[
3682
- "certificateId",
3683
- "targetAwsAccount"
3684
- ],
3685
- "members":{
3686
- "certificateId":{
3687
- "shape":"CertificateId",
3688
- "location":"uri",
3689
- "locationName":"certificateId"
3690
- },
3691
- "targetAwsAccount":{
3692
- "shape":"AwsAccountId",
3693
- "location":"querystring",
3694
- "locationName":"targetAwsAccount"
3695
- },
3696
- "transferMessage":{"shape":"Message"}
3697
- }
3698
- },
3699
- "TransferCertificateResponse":{
3700
- "type":"structure",
3701
- "members":{
3702
- "transferredCertificateArn":{"shape":"CertificateArn"}
3703
- }
3704
- },
3705
- "TransferConflictException":{
3706
- "type":"structure",
3707
- "members":{
3708
- "message":{"shape":"errorMessage"}
3709
- },
3710
- "error":{"httpStatusCode":409},
3711
- "exception":true
3712
- },
3713
- "TransferData":{
3714
- "type":"structure",
3715
- "members":{
3716
- "transferMessage":{"shape":"Message"},
3717
- "rejectReason":{"shape":"Message"},
3718
- "transferDate":{"shape":"DateType"},
3719
- "acceptDate":{"shape":"DateType"},
3720
- "rejectDate":{"shape":"DateType"}
3721
- }
3722
- },
3723
- "UnauthorizedException":{
3724
- "type":"structure",
3725
- "members":{
3726
- "message":{"shape":"errorMessage"}
3727
- },
3728
- "error":{"httpStatusCode":401},
3729
- "exception":true
3730
- },
3731
- "UpdateCACertificateRequest":{
3732
- "type":"structure",
3733
- "required":[
3734
- "certificateId",
3735
- "newStatus"
3736
- ],
3737
- "members":{
3738
- "certificateId":{
3739
- "shape":"CertificateId",
3740
- "location":"uri",
3741
- "locationName":"caCertificateId"
3742
- },
3743
- "newStatus":{
3744
- "shape":"CACertificateStatus",
3745
- "location":"querystring",
3746
- "locationName":"newStatus"
3747
- }
3748
- }
3749
- },
3750
- "UpdateCertificateRequest":{
3751
- "type":"structure",
3752
- "required":[
3753
- "certificateId",
3754
- "newStatus"
3755
- ],
3756
- "members":{
3757
- "certificateId":{
3758
- "shape":"CertificateId",
3759
- "location":"uri",
3760
- "locationName":"certificateId"
3761
- },
3762
- "newStatus":{
3763
- "shape":"CertificateStatus",
3764
- "location":"querystring",
3765
- "locationName":"newStatus"
3766
- }
3767
- }
3768
- },
3769
- "UpdateThingRequest":{
3770
- "type":"structure",
3771
- "required":[
3772
- "thingName",
3773
- "attributePayload"
3774
- ],
3775
- "members":{
3776
- "thingName":{
3777
- "shape":"ThingName",
3778
- "location":"uri",
3779
- "locationName":"thingName"
3780
- },
3781
- "attributePayload":{"shape":"AttributePayload"}
3782
- }
3783
- },
3784
- "UpdateThingResponse":{
3785
- "type":"structure",
3786
- "members":{
3787
- }
3788
- },
3789
- "UseBase64":{"type":"boolean"},
3790
- "VersionsLimitExceededException":{
3791
- "type":"structure",
3792
- "members":{
3793
- "message":{"shape":"errorMessage"}
3794
- },
3795
- "error":{"httpStatusCode":409},
3796
- "exception":true
3797
- },
3798
- "errorMessage":{"type":"string"}
3799
- }
3800
- }