aws-sdk-core 2.11.398 → 3.76.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1204) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -560
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +24 -16
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +172 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1077
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  140. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -843
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2171
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1385
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -3499
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -39
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -2752
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -237
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1048
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1290
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5387
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -3496
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2048
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/cur/2017-01-06/api-2.json +0 -277
  338. data/apis/cur/2017-01-06/examples-1.json +0 -102
  339. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/smoke.json +0 -11
  341. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  342. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  343. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  344. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  345. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  346. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  347. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  348. data/apis/dax/2017-04-19/api-2.json +0 -1140
  349. data/apis/dax/2017-04-19/examples-1.json +0 -5
  350. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -609
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2296
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -2634
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -2812
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  392. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  393. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  394. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  395. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  396. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  397. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  398. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  399. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  400. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  401. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  402. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  403. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  404. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  405. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  406. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  407. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  408. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  409. data/apis/ec2/2016-11-15/api-2.json +0 -25611
  410. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  411. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  412. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  413. data/apis/ec2/2016-11-15/smoke.json +0 -20
  414. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  415. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  416. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  417. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  418. data/apis/ecr/2015-09-21/smoke.json +0 -18
  419. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  420. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  421. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  422. data/apis/ecs/2014-11-13/smoke.json +0 -18
  423. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  424. data/apis/eks/2017-11-01/api-2.json +0 -750
  425. data/apis/eks/2017-11-01/examples-1.json +0 -114
  426. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  427. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  428. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  429. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  430. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  431. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  432. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  433. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  434. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  435. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  436. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  437. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  438. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  439. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  440. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  441. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  442. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  443. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  445. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  446. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  447. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  448. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  449. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  450. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  451. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  452. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  453. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  454. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  455. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  456. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  457. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  458. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  459. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  460. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  461. data/apis/email/2010-12-01/api-2.json +0 -3182
  462. data/apis/email/2010-12-01/examples-1.json +0 -1021
  463. data/apis/email/2010-12-01/paginators-1.json +0 -18
  464. data/apis/email/2010-12-01/smoke.json +0 -18
  465. data/apis/email/2010-12-01/waiters-2.json +0 -18
  466. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  467. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  468. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  469. data/apis/es/2015-01-01/api-2.json +0 -1572
  470. data/apis/es/2015-01-01/examples-1.json +0 -5
  471. data/apis/es/2015-01-01/paginators-1.json +0 -29
  472. data/apis/es/2015-01-01/smoke.json +0 -18
  473. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  474. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  475. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  476. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  477. data/apis/events/2015-10-07/api-2.json +0 -1462
  478. data/apis/events/2015-10-07/examples-1.json +0 -5
  479. data/apis/events/2015-10-07/paginators-1.json +0 -4
  480. data/apis/events/2015-10-07/smoke.json +0 -18
  481. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  482. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  483. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  484. data/apis/firehose/2015-08-04/smoke.json +0 -18
  485. data/apis/fms/2018-01-01/api-2.json +0 -701
  486. data/apis/fms/2018-01-01/examples-1.json +0 -5
  487. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  488. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  489. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  490. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  491. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  492. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  494. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  495. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  496. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  497. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  498. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  499. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  500. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  501. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  502. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  503. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  504. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  505. data/apis/glacier/2012-06-01/smoke.json +0 -18
  506. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  507. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  508. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  509. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  510. data/apis/glue/2017-03-31/api-2.json +0 -6297
  511. data/apis/glue/2017-03-31/examples-1.json +0 -5
  512. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  513. data/apis/glue/2017-03-31/smoke.json +0 -11
  514. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  515. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  516. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  517. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  518. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  519. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  520. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  521. data/apis/health/2016-08-04/api-2.json +0 -554
  522. data/apis/health/2016-08-04/examples-1.json +0 -5
  523. data/apis/health/2016-08-04/paginators-1.json +0 -31
  524. data/apis/health/2016-08-04/smoke.json +0 -11
  525. data/apis/iam/2010-05-08/api-2.json +0 -5778
  526. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  527. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  528. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  529. data/apis/iam/2010-05-08/smoke.json +0 -18
  530. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  531. data/apis/importexport/2010-06-01/api-2.json +0 -667
  532. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  533. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  534. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  535. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  536. data/apis/inspector/2016-02-16/smoke.json +0 -18
  537. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  538. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  539. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  540. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  541. data/apis/iot/2015-05-28/api-2.json +0 -9829
  542. data/apis/iot/2015-05-28/examples-1.json +0 -5
  543. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/smoke.json +0 -18
  545. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  546. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  547. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  548. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  549. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  550. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  551. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  552. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  553. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  554. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  555. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  556. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  557. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  558. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  559. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  560. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  561. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  562. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  563. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  564. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  565. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  566. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  567. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  569. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  570. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  571. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  572. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  573. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  574. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  575. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  576. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  577. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  578. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  579. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  580. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  581. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  582. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  583. data/apis/kms/2014-11-01/api-2.json +0 -1834
  584. data/apis/kms/2014-11-01/examples-1.json +0 -906
  585. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  586. data/apis/kms/2014-11-01/smoke.json +0 -19
  587. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  588. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  589. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  590. data/apis/lambda/2014-11-11/api-2.json +0 -668
  591. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  592. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  593. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  594. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  595. data/apis/lambda/2015-03-31/smoke.json +0 -18
  596. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  597. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  598. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  599. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  600. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  601. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  602. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  603. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  604. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  605. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  607. data/apis/logs/2014-03-28/api-2.json +0 -1701
  608. data/apis/logs/2014-03-28/examples-1.json +0 -5
  609. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  610. data/apis/logs/2014-03-28/smoke.json +0 -19
  611. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  612. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  613. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  614. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  615. data/apis/macie/2017-12-19/api-2.json +0 -365
  616. data/apis/macie/2017-12-19/examples-1.json +0 -5
  617. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  618. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  619. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  620. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  621. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  622. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  623. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  624. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  625. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  626. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  627. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  628. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  629. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  630. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8350
  631. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  632. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  633. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  634. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  635. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  636. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  637. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  638. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  639. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  640. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  641. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  642. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  643. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  646. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  647. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  648. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  649. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  650. data/apis/mobile/2017-07-01/api-2.json +0 -551
  651. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  652. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  653. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  654. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  655. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  656. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  657. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  658. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  659. data/apis/mq/2017-11-27/api-2.json +0 -2538
  660. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  661. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  662. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  663. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  664. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  665. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  666. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  667. data/apis/neptune/2014-10-31/smoke.json +0 -18
  668. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  669. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  670. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  671. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  672. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  673. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  674. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  675. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  676. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  677. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  678. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  679. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  680. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  681. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  682. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  683. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  684. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  685. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  686. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  687. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  688. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  689. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  690. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  691. data/apis/pi/2018-02-27/api-2.json +0 -253
  692. data/apis/pi/2018-02-27/examples-1.json +0 -5
  693. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  694. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  695. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  696. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  697. data/apis/pinpoint/2016-12-01/api-2.json +0 -10826
  698. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  699. data/apis/polly/2016-06-10/api-2.json +0 -832
  700. data/apis/polly/2016-06-10/examples-1.json +0 -171
  701. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  702. data/apis/polly/2016-06-10/smoke.json +0 -11
  703. data/apis/pricing/2017-10-15/api-2.json +0 -227
  704. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  705. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  706. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  707. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  708. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  709. data/apis/qldb/2019-01-02/api-2.json +0 -776
  710. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  711. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  712. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  713. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  714. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  715. data/apis/ram/2018-01-04/api-2.json +0 -1021
  716. data/apis/ram/2018-01-04/examples-1.json +0 -5
  717. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  718. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  719. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  720. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  721. data/apis/rds/2013-01-10/api-2.json +0 -2903
  722. data/apis/rds/2013-01-10/examples-1.json +0 -5
  723. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  724. data/apis/rds/2013-01-10/smoke.json +0 -18
  725. data/apis/rds/2013-02-12/api-2.json +0 -3059
  726. data/apis/rds/2013-02-12/examples-1.json +0 -5
  727. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  728. data/apis/rds/2013-02-12/smoke.json +0 -18
  729. data/apis/rds/2013-09-09/api-2.json +0 -3160
  730. data/apis/rds/2013-09-09/examples-1.json +0 -5
  731. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  732. data/apis/rds/2013-09-09/smoke.json +0 -18
  733. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  734. data/apis/rds/2014-09-01/api-2.json +0 -3273
  735. data/apis/rds/2014-09-01/examples-1.json +0 -5
  736. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  737. data/apis/rds/2014-09-01/smoke.json +0 -18
  738. data/apis/rds/2014-10-31/api-2.json +0 -6880
  739. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  740. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  741. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  742. data/apis/rds/2014-10-31/smoke.json +0 -18
  743. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  744. data/apis/rds/2015-11-12/api-2.json +0 -5509
  745. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  746. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  747. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  748. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  749. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  750. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  751. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  752. data/apis/redshift/2012-12-01/smoke.json +0 -18
  753. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  754. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  755. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  756. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  757. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  758. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  759. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  760. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  761. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  762. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  763. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  764. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  765. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  766. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  767. data/apis/route53/2013-04-01/api-2.json +0 -3780
  768. data/apis/route53/2013-04-01/examples-1.json +0 -762
  769. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  770. data/apis/route53/2013-04-01/smoke.json +0 -18
  771. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  772. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  773. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  774. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  775. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  776. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  777. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  778. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  779. data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
  780. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  781. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  782. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  783. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  784. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  785. data/apis/s3/2006-03-01/api-2.json +0 -6587
  786. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  787. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  788. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  789. data/apis/s3/2006-03-01/smoke.json +0 -11
  790. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  791. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  792. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  793. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  794. data/apis/sagemaker/2017-07-24/api-2.json +0 -5281
  795. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  796. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  797. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  798. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  799. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  800. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  801. data/apis/sdb/2009-04-15/api-2.json +0 -955
  802. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  803. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  804. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  805. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  806. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  807. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  808. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  809. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  810. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  811. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  812. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  813. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  814. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  815. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  816. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  817. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  818. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  819. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  820. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  821. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  822. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  823. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  824. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  825. data/apis/shield/2016-06-02/api-2.json +0 -893
  826. data/apis/shield/2016-06-02/examples-1.json +0 -5
  827. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  828. data/apis/shield/2016-06-02/smoke.json +0 -11
  829. data/apis/signer/2017-08-25/api-2.json +0 -817
  830. data/apis/signer/2017-08-25/examples-1.json +0 -5
  831. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  832. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  833. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  834. data/apis/sms/2016-10-24/api-2.json +0 -1366
  835. data/apis/sms/2016-10-24/examples-1.json +0 -5
  836. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  837. data/apis/sms/2016-10-24/smoke.json +0 -18
  838. data/apis/snowball/2016-06-30/api-2.json +0 -955
  839. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  840. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  841. data/apis/snowball/2016-06-30/smoke.json +0 -11
  842. data/apis/sns/2010-03-31/api-2.json +0 -1468
  843. data/apis/sns/2010-03-31/examples-1.json +0 -5
  844. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  845. data/apis/sns/2010-03-31/resources-1.json +0 -327
  846. data/apis/sns/2010-03-31/smoke.json +0 -19
  847. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  848. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  849. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  850. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  851. data/apis/sqs/2012-11-05/smoke.json +0 -18
  852. data/apis/ssm/2014-11-06/api-2.json +0 -8924
  853. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  854. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  855. data/apis/ssm/2014-11-06/smoke.json +0 -18
  856. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  857. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  858. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  859. data/apis/sso/2019-06-10/api-2.json +0 -281
  860. data/apis/sso/2019-06-10/examples-1.json +0 -5
  861. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  862. data/apis/states/2016-11-23/api-2.json +0 -1409
  863. data/apis/states/2016-11-23/examples-1.json +0 -5
  864. data/apis/states/2016-11-23/paginators-1.json +0 -28
  865. data/apis/states/2016-11-23/smoke.json +0 -11
  866. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  867. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  868. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  869. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  870. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  871. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  872. data/apis/sts/2011-06-15/api-2.json +0 -562
  873. data/apis/sts/2011-06-15/examples-1.json +0 -207
  874. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  875. data/apis/sts/2011-06-15/smoke.json +0 -19
  876. data/apis/support/2013-04-15/api-2.json +0 -773
  877. data/apis/support/2013-04-15/examples-1.json +0 -5
  878. data/apis/support/2013-04-15/paginators-1.json +0 -25
  879. data/apis/support/2013-04-15/smoke.json +0 -22
  880. data/apis/swf/2012-01-25/api-2.json +0 -2792
  881. data/apis/swf/2012-01-25/examples-1.json +0 -5
  882. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  883. data/apis/textract/2018-06-27/api-2.json +0 -572
  884. data/apis/textract/2018-06-27/examples-1.json +0 -5
  885. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  886. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  887. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  888. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  889. data/apis/transcribe/2017-10-26/api-2.json +0 -524
  890. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  891. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  892. data/apis/transfer/2018-11-05/api-2.json +0 -940
  893. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  894. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  895. data/apis/translate/2017-07-01/api-2.json +0 -408
  896. data/apis/translate/2017-07-01/examples-1.json +0 -5
  897. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  898. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  899. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  900. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  901. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  902. data/apis/waf/2015-08-24/api-2.json +0 -3857
  903. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  904. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  905. data/apis/waf/2015-08-24/smoke.json +0 -21
  906. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  907. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  908. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  909. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  910. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  911. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  912. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  913. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  914. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  915. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  916. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  917. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  918. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  919. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  920. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  921. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  922. data/apis/xray/2016-04-12/api-2.json +0 -1352
  923. data/apis/xray/2016-04-12/examples-1.json +0 -5
  924. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  925. data/bin/aws.rb +0 -180
  926. data/endpoints.json +0 -5633
  927. data/lib/aws-sdk-core/acm.rb +0 -7
  928. data/lib/aws-sdk-core/acmpca.rb +0 -7
  929. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  930. data/lib/aws-sdk-core/amplify.rb +0 -6
  931. data/lib/aws-sdk-core/api/builder.rb +0 -129
  932. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  933. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  934. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  935. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  936. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  937. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  938. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  939. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  940. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  941. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  942. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  943. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  944. data/lib/aws-sdk-core/apigateway.rb +0 -6
  945. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  946. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  947. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  948. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  949. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  950. data/lib/aws-sdk-core/appmesh.rb +0 -6
  951. data/lib/aws-sdk-core/appstream.rb +0 -7
  952. data/lib/aws-sdk-core/appsync.rb +0 -6
  953. data/lib/aws-sdk-core/athena.rb +0 -6
  954. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  955. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  956. data/lib/aws-sdk-core/backup.rb +0 -6
  957. data/lib/aws-sdk-core/batch.rb +0 -6
  958. data/lib/aws-sdk-core/budgets.rb +0 -6
  959. data/lib/aws-sdk-core/checksums.rb +0 -51
  960. data/lib/aws-sdk-core/chime.rb +0 -6
  961. data/lib/aws-sdk-core/client.rb +0 -62
  962. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  963. data/lib/aws-sdk-core/cloud9.rb +0 -6
  964. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  965. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  966. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  967. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  968. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  969. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  970. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  971. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  972. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  973. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  974. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  975. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  976. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  977. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  978. data/lib/aws-sdk-core/codebuild.rb +0 -6
  979. data/lib/aws-sdk-core/codecommit.rb +0 -6
  980. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  981. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  982. data/lib/aws-sdk-core/codestar.rb +0 -6
  983. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  984. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  985. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  986. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  987. data/lib/aws-sdk-core/comprehend.rb +0 -6
  988. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  989. data/lib/aws-sdk-core/configservice.rb +0 -6
  990. data/lib/aws-sdk-core/connect.rb +0 -6
  991. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  992. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  993. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  994. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  995. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  996. data/lib/aws-sdk-core/datasync.rb +0 -6
  997. data/lib/aws-sdk-core/dax.rb +0 -6
  998. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  999. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1000. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1001. data/lib/aws-sdk-core/dlm.rb +0 -6
  1002. data/lib/aws-sdk-core/docdb.rb +0 -7
  1003. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1004. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1005. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1006. data/lib/aws-sdk-core/ec2.rb +0 -8
  1007. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1008. data/lib/aws-sdk-core/ecr.rb +0 -6
  1009. data/lib/aws-sdk-core/ecs.rb +0 -7
  1010. data/lib/aws-sdk-core/efs.rb +0 -6
  1011. data/lib/aws-sdk-core/eks.rb +0 -7
  1012. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1013. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1014. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1017. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1018. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1019. data/lib/aws-sdk-core/emr.rb +0 -7
  1020. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1021. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1022. data/lib/aws-sdk-core/firehose.rb +0 -6
  1023. data/lib/aws-sdk-core/fms.rb +0 -6
  1024. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1025. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1033. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1034. data/lib/aws-sdk-core/health.rb +0 -6
  1035. data/lib/aws-sdk-core/iam.rb +0 -8
  1036. data/lib/aws-sdk-core/importexport.rb +0 -5
  1037. data/lib/aws-sdk-core/inspector.rb +0 -6
  1038. data/lib/aws-sdk-core/iot.rb +0 -6
  1039. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1040. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1041. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1042. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1043. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1044. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1045. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1046. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1047. data/lib/aws-sdk-core/kafka.rb +0 -5
  1048. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1049. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1050. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1051. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1052. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1053. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1054. data/lib/aws-sdk-core/kms.rb +0 -6
  1055. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1056. data/lib/aws-sdk-core/lambda.rb +0 -7
  1057. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1058. data/lib/aws-sdk-core/lex.rb +0 -6
  1059. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1060. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1061. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1062. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1063. data/lib/aws-sdk-core/macie.rb +0 -6
  1064. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1065. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1066. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1067. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1068. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1069. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1070. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1071. data/lib/aws-sdk-core/medialive.rb +0 -6
  1072. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1073. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1074. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1075. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1076. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1077. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1078. data/lib/aws-sdk-core/mobile.rb +0 -6
  1079. data/lib/aws-sdk-core/mq.rb +0 -5
  1080. data/lib/aws-sdk-core/mturk.rb +0 -6
  1081. data/lib/aws-sdk-core/neptune.rb +0 -7
  1082. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1083. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1084. data/lib/aws-sdk-core/organizations.rb +0 -6
  1085. data/lib/aws-sdk-core/partitions.rb +0 -174
  1086. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1087. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1088. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1089. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1090. data/lib/aws-sdk-core/personalize.rb +0 -6
  1091. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1092. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1093. data/lib/aws-sdk-core/pi.rb +0 -6
  1094. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1095. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1096. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1097. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1098. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1099. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1100. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1101. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1102. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1103. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1104. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1105. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1107. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1108. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1109. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1110. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1111. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1112. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1113. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1114. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1115. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1116. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1117. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1118. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1119. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1120. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1121. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1122. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1123. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1124. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1125. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1126. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1127. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1128. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1129. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1130. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1131. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1132. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1133. data/lib/aws-sdk-core/polly.rb +0 -14
  1134. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1135. data/lib/aws-sdk-core/pricing.rb +0 -6
  1136. data/lib/aws-sdk-core/qldb.rb +0 -6
  1137. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1138. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1139. data/lib/aws-sdk-core/ram.rb +0 -6
  1140. data/lib/aws-sdk-core/rds.rb +0 -16
  1141. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1142. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1143. data/lib/aws-sdk-core/redshift.rb +0 -7
  1144. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1145. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1146. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1147. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1148. data/lib/aws-sdk-core/route53.rb +0 -7
  1149. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1150. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1151. data/lib/aws-sdk-core/s3.rb +0 -26
  1152. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1153. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1154. data/lib/aws-sdk-core/s3control.rb +0 -6
  1155. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1156. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1157. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1158. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1159. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1160. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1161. data/lib/aws-sdk-core/service.rb +0 -4
  1162. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1163. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1164. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1165. data/lib/aws-sdk-core/ses.rb +0 -7
  1166. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1167. data/lib/aws-sdk-core/shield.rb +0 -6
  1168. data/lib/aws-sdk-core/signer.rb +0 -7
  1169. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1170. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1171. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1172. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1173. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1174. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1175. data/lib/aws-sdk-core/sms.rb +0 -6
  1176. data/lib/aws-sdk-core/snowball.rb +0 -6
  1177. data/lib/aws-sdk-core/sns.rb +0 -7
  1178. data/lib/aws-sdk-core/sqs.rb +0 -7
  1179. data/lib/aws-sdk-core/ssm.rb +0 -6
  1180. data/lib/aws-sdk-core/sso.rb +0 -6
  1181. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1182. data/lib/aws-sdk-core/states.rb +0 -6
  1183. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1184. data/lib/aws-sdk-core/sts.rb +0 -6
  1185. data/lib/aws-sdk-core/support.rb +0 -6
  1186. data/lib/aws-sdk-core/swf.rb +0 -6
  1187. data/lib/aws-sdk-core/textract.rb +0 -6
  1188. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1189. data/lib/aws-sdk-core/transfer.rb +0 -6
  1190. data/lib/aws-sdk-core/translate.rb +0 -6
  1191. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1192. data/lib/aws-sdk-core/version.rb +0 -3
  1193. data/lib/aws-sdk-core/waf.rb +0 -6
  1194. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1195. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1196. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1197. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1198. data/lib/aws-sdk-core/worklink.rb +0 -6
  1199. data/lib/aws-sdk-core/workmail.rb +0 -6
  1200. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1201. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1202. data/lib/aws-sdk-core/xray.rb +0 -6
  1203. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1204. data/service-models.json +0 -797
@@ -1,4 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": { }
4
- }
@@ -1,40 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListConfigs": {
4
- "input_token": "nextToken",
5
- "limit_key": "maxResults",
6
- "output_token": "nextToken",
7
- "result_key": "configList"
8
- },
9
- "ListContacts": {
10
- "input_token": "nextToken",
11
- "limit_key": "maxResults",
12
- "output_token": "nextToken",
13
- "result_key": "contactList"
14
- },
15
- "ListDataflowEndpointGroups": {
16
- "input_token": "nextToken",
17
- "limit_key": "maxResults",
18
- "output_token": "nextToken",
19
- "result_key": "dataflowEndpointGroupList"
20
- },
21
- "ListMissionProfiles": {
22
- "input_token": "nextToken",
23
- "limit_key": "maxResults",
24
- "output_token": "nextToken",
25
- "result_key": "missionProfileList"
26
- },
27
- "ListGroundStations": {
28
- "input_token": "nextToken",
29
- "limit_key": "maxResults",
30
- "output_token": "nextToken",
31
- "result_key": "groundStationList"
32
- },
33
- "ListSatellites": {
34
- "input_token": "nextToken",
35
- "limit_key": "maxResults",
36
- "output_token": "nextToken",
37
- "result_key": "satellites"
38
- }
39
- }
40
- }
@@ -1,3206 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2017-11-28",
5
- "endpointPrefix":"guardduty",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceFullName":"Amazon GuardDuty",
9
- "serviceId":"GuardDuty",
10
- "signatureVersion":"v4",
11
- "signingName":"guardduty",
12
- "uid":"guardduty-2017-11-28"
13
- },
14
- "operations":{
15
- "AcceptInvitation":{
16
- "name":"AcceptInvitation",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/detector/{detectorId}/master",
20
- "responseCode":200
21
- },
22
- "input":{"shape":"AcceptInvitationRequest"},
23
- "output":{"shape":"AcceptInvitationResponse"},
24
- "errors":[
25
- {"shape":"BadRequestException"},
26
- {"shape":"InternalServerErrorException"}
27
- ]
28
- },
29
- "ArchiveFindings":{
30
- "name":"ArchiveFindings",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/detector/{detectorId}/findings/archive",
34
- "responseCode":200
35
- },
36
- "input":{"shape":"ArchiveFindingsRequest"},
37
- "output":{"shape":"ArchiveFindingsResponse"},
38
- "errors":[
39
- {"shape":"BadRequestException"},
40
- {"shape":"InternalServerErrorException"}
41
- ]
42
- },
43
- "CreateDetector":{
44
- "name":"CreateDetector",
45
- "http":{
46
- "method":"POST",
47
- "requestUri":"/detector",
48
- "responseCode":200
49
- },
50
- "input":{"shape":"CreateDetectorRequest"},
51
- "output":{"shape":"CreateDetectorResponse"},
52
- "errors":[
53
- {"shape":"BadRequestException"},
54
- {"shape":"InternalServerErrorException"}
55
- ]
56
- },
57
- "CreateFilter":{
58
- "name":"CreateFilter",
59
- "http":{
60
- "method":"POST",
61
- "requestUri":"/detector/{detectorId}/filter",
62
- "responseCode":200
63
- },
64
- "input":{"shape":"CreateFilterRequest"},
65
- "output":{"shape":"CreateFilterResponse"},
66
- "errors":[
67
- {"shape":"BadRequestException"},
68
- {"shape":"InternalServerErrorException"}
69
- ]
70
- },
71
- "CreateIPSet":{
72
- "name":"CreateIPSet",
73
- "http":{
74
- "method":"POST",
75
- "requestUri":"/detector/{detectorId}/ipset",
76
- "responseCode":200
77
- },
78
- "input":{"shape":"CreateIPSetRequest"},
79
- "output":{"shape":"CreateIPSetResponse"},
80
- "errors":[
81
- {"shape":"BadRequestException"},
82
- {"shape":"InternalServerErrorException"}
83
- ]
84
- },
85
- "CreateMembers":{
86
- "name":"CreateMembers",
87
- "http":{
88
- "method":"POST",
89
- "requestUri":"/detector/{detectorId}/member",
90
- "responseCode":200
91
- },
92
- "input":{"shape":"CreateMembersRequest"},
93
- "output":{"shape":"CreateMembersResponse"},
94
- "errors":[
95
- {"shape":"BadRequestException"},
96
- {"shape":"InternalServerErrorException"}
97
- ]
98
- },
99
- "CreateSampleFindings":{
100
- "name":"CreateSampleFindings",
101
- "http":{
102
- "method":"POST",
103
- "requestUri":"/detector/{detectorId}/findings/create",
104
- "responseCode":200
105
- },
106
- "input":{"shape":"CreateSampleFindingsRequest"},
107
- "output":{"shape":"CreateSampleFindingsResponse"},
108
- "errors":[
109
- {"shape":"BadRequestException"},
110
- {"shape":"InternalServerErrorException"}
111
- ]
112
- },
113
- "CreateThreatIntelSet":{
114
- "name":"CreateThreatIntelSet",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/detector/{detectorId}/threatintelset",
118
- "responseCode":200
119
- },
120
- "input":{"shape":"CreateThreatIntelSetRequest"},
121
- "output":{"shape":"CreateThreatIntelSetResponse"},
122
- "errors":[
123
- {"shape":"BadRequestException"},
124
- {"shape":"InternalServerErrorException"}
125
- ]
126
- },
127
- "DeclineInvitations":{
128
- "name":"DeclineInvitations",
129
- "http":{
130
- "method":"POST",
131
- "requestUri":"/invitation/decline",
132
- "responseCode":200
133
- },
134
- "input":{"shape":"DeclineInvitationsRequest"},
135
- "output":{"shape":"DeclineInvitationsResponse"},
136
- "errors":[
137
- {"shape":"BadRequestException"},
138
- {"shape":"InternalServerErrorException"}
139
- ]
140
- },
141
- "DeleteDetector":{
142
- "name":"DeleteDetector",
143
- "http":{
144
- "method":"DELETE",
145
- "requestUri":"/detector/{detectorId}",
146
- "responseCode":200
147
- },
148
- "input":{"shape":"DeleteDetectorRequest"},
149
- "output":{"shape":"DeleteDetectorResponse"},
150
- "errors":[
151
- {"shape":"BadRequestException"},
152
- {"shape":"InternalServerErrorException"}
153
- ]
154
- },
155
- "DeleteFilter":{
156
- "name":"DeleteFilter",
157
- "http":{
158
- "method":"DELETE",
159
- "requestUri":"/detector/{detectorId}/filter/{filterName}",
160
- "responseCode":200
161
- },
162
- "input":{"shape":"DeleteFilterRequest"},
163
- "output":{"shape":"DeleteFilterResponse"},
164
- "errors":[
165
- {"shape":"BadRequestException"},
166
- {"shape":"InternalServerErrorException"}
167
- ]
168
- },
169
- "DeleteIPSet":{
170
- "name":"DeleteIPSet",
171
- "http":{
172
- "method":"DELETE",
173
- "requestUri":"/detector/{detectorId}/ipset/{ipSetId}",
174
- "responseCode":200
175
- },
176
- "input":{"shape":"DeleteIPSetRequest"},
177
- "output":{"shape":"DeleteIPSetResponse"},
178
- "errors":[
179
- {"shape":"BadRequestException"},
180
- {"shape":"InternalServerErrorException"}
181
- ]
182
- },
183
- "DeleteInvitations":{
184
- "name":"DeleteInvitations",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/invitation/delete",
188
- "responseCode":200
189
- },
190
- "input":{"shape":"DeleteInvitationsRequest"},
191
- "output":{"shape":"DeleteInvitationsResponse"},
192
- "errors":[
193
- {"shape":"BadRequestException"},
194
- {"shape":"InternalServerErrorException"}
195
- ]
196
- },
197
- "DeleteMembers":{
198
- "name":"DeleteMembers",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/detector/{detectorId}/member/delete",
202
- "responseCode":200
203
- },
204
- "input":{"shape":"DeleteMembersRequest"},
205
- "output":{"shape":"DeleteMembersResponse"},
206
- "errors":[
207
- {"shape":"BadRequestException"},
208
- {"shape":"InternalServerErrorException"}
209
- ]
210
- },
211
- "DeleteThreatIntelSet":{
212
- "name":"DeleteThreatIntelSet",
213
- "http":{
214
- "method":"DELETE",
215
- "requestUri":"/detector/{detectorId}/threatintelset/{threatIntelSetId}",
216
- "responseCode":200
217
- },
218
- "input":{"shape":"DeleteThreatIntelSetRequest"},
219
- "output":{"shape":"DeleteThreatIntelSetResponse"},
220
- "errors":[
221
- {"shape":"BadRequestException"},
222
- {"shape":"InternalServerErrorException"}
223
- ]
224
- },
225
- "DisassociateFromMasterAccount":{
226
- "name":"DisassociateFromMasterAccount",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/detector/{detectorId}/master/disassociate",
230
- "responseCode":200
231
- },
232
- "input":{"shape":"DisassociateFromMasterAccountRequest"},
233
- "output":{"shape":"DisassociateFromMasterAccountResponse"},
234
- "errors":[
235
- {"shape":"BadRequestException"},
236
- {"shape":"InternalServerErrorException"}
237
- ]
238
- },
239
- "DisassociateMembers":{
240
- "name":"DisassociateMembers",
241
- "http":{
242
- "method":"POST",
243
- "requestUri":"/detector/{detectorId}/member/disassociate",
244
- "responseCode":200
245
- },
246
- "input":{"shape":"DisassociateMembersRequest"},
247
- "output":{"shape":"DisassociateMembersResponse"},
248
- "errors":[
249
- {"shape":"BadRequestException"},
250
- {"shape":"InternalServerErrorException"}
251
- ]
252
- },
253
- "GetDetector":{
254
- "name":"GetDetector",
255
- "http":{
256
- "method":"GET",
257
- "requestUri":"/detector/{detectorId}",
258
- "responseCode":200
259
- },
260
- "input":{"shape":"GetDetectorRequest"},
261
- "output":{"shape":"GetDetectorResponse"},
262
- "errors":[
263
- {"shape":"BadRequestException"},
264
- {"shape":"InternalServerErrorException"}
265
- ]
266
- },
267
- "GetFilter":{
268
- "name":"GetFilter",
269
- "http":{
270
- "method":"GET",
271
- "requestUri":"/detector/{detectorId}/filter/{filterName}",
272
- "responseCode":200
273
- },
274
- "input":{"shape":"GetFilterRequest"},
275
- "output":{"shape":"GetFilterResponse"},
276
- "errors":[
277
- {"shape":"BadRequestException"},
278
- {"shape":"InternalServerErrorException"}
279
- ]
280
- },
281
- "GetFindings":{
282
- "name":"GetFindings",
283
- "http":{
284
- "method":"POST",
285
- "requestUri":"/detector/{detectorId}/findings/get",
286
- "responseCode":200
287
- },
288
- "input":{"shape":"GetFindingsRequest"},
289
- "output":{"shape":"GetFindingsResponse"},
290
- "errors":[
291
- {"shape":"BadRequestException"},
292
- {"shape":"InternalServerErrorException"}
293
- ]
294
- },
295
- "GetFindingsStatistics":{
296
- "name":"GetFindingsStatistics",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/detector/{detectorId}/findings/statistics",
300
- "responseCode":200
301
- },
302
- "input":{"shape":"GetFindingsStatisticsRequest"},
303
- "output":{"shape":"GetFindingsStatisticsResponse"},
304
- "errors":[
305
- {"shape":"BadRequestException"},
306
- {"shape":"InternalServerErrorException"}
307
- ]
308
- },
309
- "GetIPSet":{
310
- "name":"GetIPSet",
311
- "http":{
312
- "method":"GET",
313
- "requestUri":"/detector/{detectorId}/ipset/{ipSetId}",
314
- "responseCode":200
315
- },
316
- "input":{"shape":"GetIPSetRequest"},
317
- "output":{"shape":"GetIPSetResponse"},
318
- "errors":[
319
- {"shape":"BadRequestException"},
320
- {"shape":"InternalServerErrorException"}
321
- ]
322
- },
323
- "GetInvitationsCount":{
324
- "name":"GetInvitationsCount",
325
- "http":{
326
- "method":"GET",
327
- "requestUri":"/invitation/count",
328
- "responseCode":200
329
- },
330
- "input":{"shape":"GetInvitationsCountRequest"},
331
- "output":{"shape":"GetInvitationsCountResponse"},
332
- "errors":[
333
- {"shape":"BadRequestException"},
334
- {"shape":"InternalServerErrorException"}
335
- ]
336
- },
337
- "GetMasterAccount":{
338
- "name":"GetMasterAccount",
339
- "http":{
340
- "method":"GET",
341
- "requestUri":"/detector/{detectorId}/master",
342
- "responseCode":200
343
- },
344
- "input":{"shape":"GetMasterAccountRequest"},
345
- "output":{"shape":"GetMasterAccountResponse"},
346
- "errors":[
347
- {"shape":"BadRequestException"},
348
- {"shape":"InternalServerErrorException"}
349
- ]
350
- },
351
- "GetMembers":{
352
- "name":"GetMembers",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/detector/{detectorId}/member/get",
356
- "responseCode":200
357
- },
358
- "input":{"shape":"GetMembersRequest"},
359
- "output":{"shape":"GetMembersResponse"},
360
- "errors":[
361
- {"shape":"BadRequestException"},
362
- {"shape":"InternalServerErrorException"}
363
- ]
364
- },
365
- "GetThreatIntelSet":{
366
- "name":"GetThreatIntelSet",
367
- "http":{
368
- "method":"GET",
369
- "requestUri":"/detector/{detectorId}/threatintelset/{threatIntelSetId}",
370
- "responseCode":200
371
- },
372
- "input":{"shape":"GetThreatIntelSetRequest"},
373
- "output":{"shape":"GetThreatIntelSetResponse"},
374
- "errors":[
375
- {"shape":"BadRequestException"},
376
- {"shape":"InternalServerErrorException"}
377
- ]
378
- },
379
- "InviteMembers":{
380
- "name":"InviteMembers",
381
- "http":{
382
- "method":"POST",
383
- "requestUri":"/detector/{detectorId}/member/invite",
384
- "responseCode":200
385
- },
386
- "input":{"shape":"InviteMembersRequest"},
387
- "output":{"shape":"InviteMembersResponse"},
388
- "errors":[
389
- {"shape":"BadRequestException"},
390
- {"shape":"InternalServerErrorException"}
391
- ]
392
- },
393
- "ListDetectors":{
394
- "name":"ListDetectors",
395
- "http":{
396
- "method":"GET",
397
- "requestUri":"/detector",
398
- "responseCode":200
399
- },
400
- "input":{"shape":"ListDetectorsRequest"},
401
- "output":{"shape":"ListDetectorsResponse"},
402
- "errors":[
403
- {"shape":"BadRequestException"},
404
- {"shape":"InternalServerErrorException"}
405
- ]
406
- },
407
- "ListFilters":{
408
- "name":"ListFilters",
409
- "http":{
410
- "method":"GET",
411
- "requestUri":"/detector/{detectorId}/filter",
412
- "responseCode":200
413
- },
414
- "input":{"shape":"ListFiltersRequest"},
415
- "output":{"shape":"ListFiltersResponse"},
416
- "errors":[
417
- {"shape":"BadRequestException"},
418
- {"shape":"InternalServerErrorException"}
419
- ]
420
- },
421
- "ListFindings":{
422
- "name":"ListFindings",
423
- "http":{
424
- "method":"POST",
425
- "requestUri":"/detector/{detectorId}/findings",
426
- "responseCode":200
427
- },
428
- "input":{"shape":"ListFindingsRequest"},
429
- "output":{"shape":"ListFindingsResponse"},
430
- "errors":[
431
- {"shape":"BadRequestException"},
432
- {"shape":"InternalServerErrorException"}
433
- ]
434
- },
435
- "ListIPSets":{
436
- "name":"ListIPSets",
437
- "http":{
438
- "method":"GET",
439
- "requestUri":"/detector/{detectorId}/ipset",
440
- "responseCode":200
441
- },
442
- "input":{"shape":"ListIPSetsRequest"},
443
- "output":{"shape":"ListIPSetsResponse"},
444
- "errors":[
445
- {"shape":"BadRequestException"},
446
- {"shape":"InternalServerErrorException"}
447
- ]
448
- },
449
- "ListInvitations":{
450
- "name":"ListInvitations",
451
- "http":{
452
- "method":"GET",
453
- "requestUri":"/invitation",
454
- "responseCode":200
455
- },
456
- "input":{"shape":"ListInvitationsRequest"},
457
- "output":{"shape":"ListInvitationsResponse"},
458
- "errors":[
459
- {"shape":"BadRequestException"},
460
- {"shape":"InternalServerErrorException"}
461
- ]
462
- },
463
- "ListMembers":{
464
- "name":"ListMembers",
465
- "http":{
466
- "method":"GET",
467
- "requestUri":"/detector/{detectorId}/member",
468
- "responseCode":200
469
- },
470
- "input":{"shape":"ListMembersRequest"},
471
- "output":{"shape":"ListMembersResponse"},
472
- "errors":[
473
- {"shape":"BadRequestException"},
474
- {"shape":"InternalServerErrorException"}
475
- ]
476
- },
477
- "ListTagsForResource":{
478
- "name":"ListTagsForResource",
479
- "http":{
480
- "method":"GET",
481
- "requestUri":"/tags/{resourceArn}",
482
- "responseCode":200
483
- },
484
- "input":{"shape":"ListTagsForResourceRequest"},
485
- "output":{"shape":"ListTagsForResourceResponse"},
486
- "errors":[
487
- {"shape":"BadRequestException"},
488
- {"shape":"InternalServerErrorException"}
489
- ]
490
- },
491
- "ListThreatIntelSets":{
492
- "name":"ListThreatIntelSets",
493
- "http":{
494
- "method":"GET",
495
- "requestUri":"/detector/{detectorId}/threatintelset",
496
- "responseCode":200
497
- },
498
- "input":{"shape":"ListThreatIntelSetsRequest"},
499
- "output":{"shape":"ListThreatIntelSetsResponse"},
500
- "errors":[
501
- {"shape":"BadRequestException"},
502
- {"shape":"InternalServerErrorException"}
503
- ]
504
- },
505
- "StartMonitoringMembers":{
506
- "name":"StartMonitoringMembers",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/detector/{detectorId}/member/start",
510
- "responseCode":200
511
- },
512
- "input":{"shape":"StartMonitoringMembersRequest"},
513
- "output":{"shape":"StartMonitoringMembersResponse"},
514
- "errors":[
515
- {"shape":"BadRequestException"},
516
- {"shape":"InternalServerErrorException"}
517
- ]
518
- },
519
- "StopMonitoringMembers":{
520
- "name":"StopMonitoringMembers",
521
- "http":{
522
- "method":"POST",
523
- "requestUri":"/detector/{detectorId}/member/stop",
524
- "responseCode":200
525
- },
526
- "input":{"shape":"StopMonitoringMembersRequest"},
527
- "output":{"shape":"StopMonitoringMembersResponse"},
528
- "errors":[
529
- {"shape":"BadRequestException"},
530
- {"shape":"InternalServerErrorException"}
531
- ]
532
- },
533
- "TagResource":{
534
- "name":"TagResource",
535
- "http":{
536
- "method":"POST",
537
- "requestUri":"/tags/{resourceArn}",
538
- "responseCode":204
539
- },
540
- "input":{"shape":"TagResourceRequest"},
541
- "output":{"shape":"TagResourceResponse"},
542
- "errors":[
543
- {"shape":"BadRequestException"},
544
- {"shape":"InternalServerErrorException"}
545
- ]
546
- },
547
- "UnarchiveFindings":{
548
- "name":"UnarchiveFindings",
549
- "http":{
550
- "method":"POST",
551
- "requestUri":"/detector/{detectorId}/findings/unarchive",
552
- "responseCode":200
553
- },
554
- "input":{"shape":"UnarchiveFindingsRequest"},
555
- "output":{"shape":"UnarchiveFindingsResponse"},
556
- "errors":[
557
- {"shape":"BadRequestException"},
558
- {"shape":"InternalServerErrorException"}
559
- ]
560
- },
561
- "UntagResource":{
562
- "name":"UntagResource",
563
- "http":{
564
- "method":"DELETE",
565
- "requestUri":"/tags/{resourceArn}",
566
- "responseCode":204
567
- },
568
- "input":{"shape":"UntagResourceRequest"},
569
- "output":{"shape":"UntagResourceResponse"},
570
- "errors":[
571
- {"shape":"BadRequestException"},
572
- {"shape":"InternalServerErrorException"}
573
- ]
574
- },
575
- "UpdateDetector":{
576
- "name":"UpdateDetector",
577
- "http":{
578
- "method":"POST",
579
- "requestUri":"/detector/{detectorId}",
580
- "responseCode":200
581
- },
582
- "input":{"shape":"UpdateDetectorRequest"},
583
- "output":{"shape":"UpdateDetectorResponse"},
584
- "errors":[
585
- {"shape":"BadRequestException"},
586
- {"shape":"InternalServerErrorException"}
587
- ]
588
- },
589
- "UpdateFilter":{
590
- "name":"UpdateFilter",
591
- "http":{
592
- "method":"POST",
593
- "requestUri":"/detector/{detectorId}/filter/{filterName}",
594
- "responseCode":200
595
- },
596
- "input":{"shape":"UpdateFilterRequest"},
597
- "output":{"shape":"UpdateFilterResponse"},
598
- "errors":[
599
- {"shape":"BadRequestException"},
600
- {"shape":"InternalServerErrorException"}
601
- ]
602
- },
603
- "UpdateFindingsFeedback":{
604
- "name":"UpdateFindingsFeedback",
605
- "http":{
606
- "method":"POST",
607
- "requestUri":"/detector/{detectorId}/findings/feedback",
608
- "responseCode":200
609
- },
610
- "input":{"shape":"UpdateFindingsFeedbackRequest"},
611
- "output":{"shape":"UpdateFindingsFeedbackResponse"},
612
- "errors":[
613
- {"shape":"BadRequestException"},
614
- {"shape":"InternalServerErrorException"}
615
- ]
616
- },
617
- "UpdateIPSet":{
618
- "name":"UpdateIPSet",
619
- "http":{
620
- "method":"POST",
621
- "requestUri":"/detector/{detectorId}/ipset/{ipSetId}",
622
- "responseCode":200
623
- },
624
- "input":{"shape":"UpdateIPSetRequest"},
625
- "output":{"shape":"UpdateIPSetResponse"},
626
- "errors":[
627
- {"shape":"BadRequestException"},
628
- {"shape":"InternalServerErrorException"}
629
- ]
630
- },
631
- "UpdateThreatIntelSet":{
632
- "name":"UpdateThreatIntelSet",
633
- "http":{
634
- "method":"POST",
635
- "requestUri":"/detector/{detectorId}/threatintelset/{threatIntelSetId}",
636
- "responseCode":200
637
- },
638
- "input":{"shape":"UpdateThreatIntelSetRequest"},
639
- "output":{"shape":"UpdateThreatIntelSetResponse"},
640
- "errors":[
641
- {"shape":"BadRequestException"},
642
- {"shape":"InternalServerErrorException"}
643
- ]
644
- }
645
- },
646
- "shapes":{
647
- "AcceptInvitationRequest":{
648
- "type":"structure",
649
- "required":[
650
- "DetectorId",
651
- "MasterId",
652
- "InvitationId"
653
- ],
654
- "members":{
655
- "DetectorId":{
656
- "shape":"DetectorId",
657
- "location":"uri",
658
- "locationName":"detectorId"
659
- },
660
- "MasterId":{
661
- "shape":"String",
662
- "locationName":"masterId"
663
- },
664
- "InvitationId":{
665
- "shape":"String",
666
- "locationName":"invitationId"
667
- }
668
- }
669
- },
670
- "AcceptInvitationResponse":{
671
- "type":"structure",
672
- "members":{
673
- }
674
- },
675
- "AccessKeyDetails":{
676
- "type":"structure",
677
- "members":{
678
- "AccessKeyId":{
679
- "shape":"String",
680
- "locationName":"accessKeyId"
681
- },
682
- "PrincipalId":{
683
- "shape":"String",
684
- "locationName":"principalId"
685
- },
686
- "UserName":{
687
- "shape":"String",
688
- "locationName":"userName"
689
- },
690
- "UserType":{
691
- "shape":"String",
692
- "locationName":"userType"
693
- }
694
- }
695
- },
696
- "AccountDetail":{
697
- "type":"structure",
698
- "required":[
699
- "AccountId",
700
- "Email"
701
- ],
702
- "members":{
703
- "AccountId":{
704
- "shape":"AccountId",
705
- "locationName":"accountId"
706
- },
707
- "Email":{
708
- "shape":"Email",
709
- "locationName":"email"
710
- }
711
- }
712
- },
713
- "AccountDetails":{
714
- "type":"list",
715
- "member":{"shape":"AccountDetail"},
716
- "max":50,
717
- "min":1
718
- },
719
- "AccountId":{
720
- "type":"string",
721
- "max":12,
722
- "min":12
723
- },
724
- "AccountIds":{
725
- "type":"list",
726
- "member":{"shape":"AccountId"},
727
- "max":50,
728
- "min":1
729
- },
730
- "Action":{
731
- "type":"structure",
732
- "members":{
733
- "ActionType":{
734
- "shape":"String",
735
- "locationName":"actionType"
736
- },
737
- "AwsApiCallAction":{
738
- "shape":"AwsApiCallAction",
739
- "locationName":"awsApiCallAction"
740
- },
741
- "DnsRequestAction":{
742
- "shape":"DnsRequestAction",
743
- "locationName":"dnsRequestAction"
744
- },
745
- "NetworkConnectionAction":{
746
- "shape":"NetworkConnectionAction",
747
- "locationName":"networkConnectionAction"
748
- },
749
- "PortProbeAction":{
750
- "shape":"PortProbeAction",
751
- "locationName":"portProbeAction"
752
- }
753
- }
754
- },
755
- "ArchiveFindingsRequest":{
756
- "type":"structure",
757
- "required":[
758
- "DetectorId",
759
- "FindingIds"
760
- ],
761
- "members":{
762
- "DetectorId":{
763
- "shape":"DetectorId",
764
- "location":"uri",
765
- "locationName":"detectorId"
766
- },
767
- "FindingIds":{
768
- "shape":"FindingIds",
769
- "locationName":"findingIds"
770
- }
771
- }
772
- },
773
- "ArchiveFindingsResponse":{
774
- "type":"structure",
775
- "members":{
776
- }
777
- },
778
- "AwsApiCallAction":{
779
- "type":"structure",
780
- "members":{
781
- "Api":{
782
- "shape":"String",
783
- "locationName":"api"
784
- },
785
- "CallerType":{
786
- "shape":"String",
787
- "locationName":"callerType"
788
- },
789
- "DomainDetails":{
790
- "shape":"DomainDetails",
791
- "locationName":"domainDetails"
792
- },
793
- "RemoteIpDetails":{
794
- "shape":"RemoteIpDetails",
795
- "locationName":"remoteIpDetails"
796
- },
797
- "ServiceName":{
798
- "shape":"String",
799
- "locationName":"serviceName"
800
- }
801
- }
802
- },
803
- "BadRequestException":{
804
- "type":"structure",
805
- "members":{
806
- "Message":{
807
- "shape":"String",
808
- "locationName":"message"
809
- },
810
- "Type":{
811
- "shape":"String",
812
- "locationName":"__type"
813
- }
814
- },
815
- "error":{"httpStatusCode":400},
816
- "exception":true
817
- },
818
- "Boolean":{"type":"boolean"},
819
- "City":{
820
- "type":"structure",
821
- "members":{
822
- "CityName":{
823
- "shape":"String",
824
- "locationName":"cityName"
825
- }
826
- }
827
- },
828
- "ClientToken":{
829
- "type":"string",
830
- "max":64,
831
- "min":0
832
- },
833
- "Condition":{
834
- "type":"structure",
835
- "members":{
836
- "Eq":{
837
- "shape":"Eq",
838
- "deprecated":true,
839
- "locationName":"eq"
840
- },
841
- "Neq":{
842
- "shape":"Neq",
843
- "deprecated":true,
844
- "locationName":"neq"
845
- },
846
- "Gt":{
847
- "shape":"Integer",
848
- "deprecated":true,
849
- "locationName":"gt"
850
- },
851
- "Gte":{
852
- "shape":"Integer",
853
- "deprecated":true,
854
- "locationName":"gte"
855
- },
856
- "Lt":{
857
- "shape":"Integer",
858
- "deprecated":true,
859
- "locationName":"lt"
860
- },
861
- "Lte":{
862
- "shape":"Integer",
863
- "deprecated":true,
864
- "locationName":"lte"
865
- },
866
- "Equals":{
867
- "shape":"Equals",
868
- "locationName":"equals"
869
- },
870
- "NotEquals":{
871
- "shape":"NotEquals",
872
- "locationName":"notEquals"
873
- },
874
- "GreaterThan":{
875
- "shape":"Long",
876
- "locationName":"greaterThan"
877
- },
878
- "GreaterThanOrEqual":{
879
- "shape":"Long",
880
- "locationName":"greaterThanOrEqual"
881
- },
882
- "LessThan":{
883
- "shape":"Long",
884
- "locationName":"lessThan"
885
- },
886
- "LessThanOrEqual":{
887
- "shape":"Long",
888
- "locationName":"lessThanOrEqual"
889
- }
890
- }
891
- },
892
- "CountBySeverity":{
893
- "type":"map",
894
- "key":{"shape":"String"},
895
- "value":{"shape":"Integer"}
896
- },
897
- "Country":{
898
- "type":"structure",
899
- "members":{
900
- "CountryCode":{
901
- "shape":"String",
902
- "locationName":"countryCode"
903
- },
904
- "CountryName":{
905
- "shape":"String",
906
- "locationName":"countryName"
907
- }
908
- }
909
- },
910
- "CreateDetectorRequest":{
911
- "type":"structure",
912
- "required":["Enable"],
913
- "members":{
914
- "Enable":{
915
- "shape":"Boolean",
916
- "locationName":"enable"
917
- },
918
- "ClientToken":{
919
- "shape":"ClientToken",
920
- "idempotencyToken":true,
921
- "locationName":"clientToken"
922
- },
923
- "FindingPublishingFrequency":{
924
- "shape":"FindingPublishingFrequency",
925
- "locationName":"findingPublishingFrequency"
926
- },
927
- "Tags":{
928
- "shape":"TagMap",
929
- "locationName":"tags"
930
- }
931
- }
932
- },
933
- "CreateDetectorResponse":{
934
- "type":"structure",
935
- "members":{
936
- "DetectorId":{
937
- "shape":"DetectorId",
938
- "locationName":"detectorId"
939
- }
940
- }
941
- },
942
- "CreateFilterRequest":{
943
- "type":"structure",
944
- "required":[
945
- "DetectorId",
946
- "Name",
947
- "FindingCriteria"
948
- ],
949
- "members":{
950
- "DetectorId":{
951
- "shape":"DetectorId",
952
- "location":"uri",
953
- "locationName":"detectorId"
954
- },
955
- "Name":{
956
- "shape":"FilterName",
957
- "locationName":"name"
958
- },
959
- "Description":{
960
- "shape":"FilterDescription",
961
- "locationName":"description"
962
- },
963
- "Action":{
964
- "shape":"FilterAction",
965
- "locationName":"action"
966
- },
967
- "Rank":{
968
- "shape":"FilterRank",
969
- "locationName":"rank"
970
- },
971
- "FindingCriteria":{
972
- "shape":"FindingCriteria",
973
- "locationName":"findingCriteria"
974
- },
975
- "ClientToken":{
976
- "shape":"ClientToken",
977
- "idempotencyToken":true,
978
- "locationName":"clientToken"
979
- },
980
- "Tags":{
981
- "shape":"TagMap",
982
- "locationName":"tags"
983
- }
984
- }
985
- },
986
- "CreateFilterResponse":{
987
- "type":"structure",
988
- "required":["Name"],
989
- "members":{
990
- "Name":{
991
- "shape":"FilterName",
992
- "locationName":"name"
993
- }
994
- }
995
- },
996
- "CreateIPSetRequest":{
997
- "type":"structure",
998
- "required":[
999
- "DetectorId",
1000
- "Name",
1001
- "Format",
1002
- "Location",
1003
- "Activate"
1004
- ],
1005
- "members":{
1006
- "DetectorId":{
1007
- "shape":"DetectorId",
1008
- "location":"uri",
1009
- "locationName":"detectorId"
1010
- },
1011
- "Name":{
1012
- "shape":"Name",
1013
- "locationName":"name"
1014
- },
1015
- "Format":{
1016
- "shape":"IpSetFormat",
1017
- "locationName":"format"
1018
- },
1019
- "Location":{
1020
- "shape":"Location",
1021
- "locationName":"location"
1022
- },
1023
- "Activate":{
1024
- "shape":"Boolean",
1025
- "locationName":"activate"
1026
- },
1027
- "ClientToken":{
1028
- "shape":"ClientToken",
1029
- "idempotencyToken":true,
1030
- "locationName":"clientToken"
1031
- },
1032
- "Tags":{
1033
- "shape":"TagMap",
1034
- "locationName":"tags"
1035
- }
1036
- }
1037
- },
1038
- "CreateIPSetResponse":{
1039
- "type":"structure",
1040
- "required":["IpSetId"],
1041
- "members":{
1042
- "IpSetId":{
1043
- "shape":"String",
1044
- "locationName":"ipSetId"
1045
- }
1046
- }
1047
- },
1048
- "CreateMembersRequest":{
1049
- "type":"structure",
1050
- "required":[
1051
- "DetectorId",
1052
- "AccountDetails"
1053
- ],
1054
- "members":{
1055
- "DetectorId":{
1056
- "shape":"DetectorId",
1057
- "location":"uri",
1058
- "locationName":"detectorId"
1059
- },
1060
- "AccountDetails":{
1061
- "shape":"AccountDetails",
1062
- "locationName":"accountDetails"
1063
- }
1064
- }
1065
- },
1066
- "CreateMembersResponse":{
1067
- "type":"structure",
1068
- "required":["UnprocessedAccounts"],
1069
- "members":{
1070
- "UnprocessedAccounts":{
1071
- "shape":"UnprocessedAccounts",
1072
- "locationName":"unprocessedAccounts"
1073
- }
1074
- }
1075
- },
1076
- "CreateSampleFindingsRequest":{
1077
- "type":"structure",
1078
- "required":["DetectorId"],
1079
- "members":{
1080
- "DetectorId":{
1081
- "shape":"DetectorId",
1082
- "location":"uri",
1083
- "locationName":"detectorId"
1084
- },
1085
- "FindingTypes":{
1086
- "shape":"FindingTypes",
1087
- "locationName":"findingTypes"
1088
- }
1089
- }
1090
- },
1091
- "CreateSampleFindingsResponse":{
1092
- "type":"structure",
1093
- "members":{
1094
- }
1095
- },
1096
- "CreateThreatIntelSetRequest":{
1097
- "type":"structure",
1098
- "required":[
1099
- "DetectorId",
1100
- "Name",
1101
- "Format",
1102
- "Location",
1103
- "Activate"
1104
- ],
1105
- "members":{
1106
- "DetectorId":{
1107
- "shape":"DetectorId",
1108
- "location":"uri",
1109
- "locationName":"detectorId"
1110
- },
1111
- "Name":{
1112
- "shape":"Name",
1113
- "locationName":"name"
1114
- },
1115
- "Format":{
1116
- "shape":"ThreatIntelSetFormat",
1117
- "locationName":"format"
1118
- },
1119
- "Location":{
1120
- "shape":"Location",
1121
- "locationName":"location"
1122
- },
1123
- "Activate":{
1124
- "shape":"Boolean",
1125
- "locationName":"activate"
1126
- },
1127
- "ClientToken":{
1128
- "shape":"ClientToken",
1129
- "idempotencyToken":true,
1130
- "locationName":"clientToken"
1131
- },
1132
- "Tags":{
1133
- "shape":"TagMap",
1134
- "locationName":"tags"
1135
- }
1136
- }
1137
- },
1138
- "CreateThreatIntelSetResponse":{
1139
- "type":"structure",
1140
- "required":["ThreatIntelSetId"],
1141
- "members":{
1142
- "ThreatIntelSetId":{
1143
- "shape":"String",
1144
- "locationName":"threatIntelSetId"
1145
- }
1146
- }
1147
- },
1148
- "Criterion":{
1149
- "type":"map",
1150
- "key":{"shape":"String"},
1151
- "value":{"shape":"Condition"}
1152
- },
1153
- "DeclineInvitationsRequest":{
1154
- "type":"structure",
1155
- "required":["AccountIds"],
1156
- "members":{
1157
- "AccountIds":{
1158
- "shape":"AccountIds",
1159
- "locationName":"accountIds"
1160
- }
1161
- }
1162
- },
1163
- "DeclineInvitationsResponse":{
1164
- "type":"structure",
1165
- "required":["UnprocessedAccounts"],
1166
- "members":{
1167
- "UnprocessedAccounts":{
1168
- "shape":"UnprocessedAccounts",
1169
- "locationName":"unprocessedAccounts"
1170
- }
1171
- }
1172
- },
1173
- "DeleteDetectorRequest":{
1174
- "type":"structure",
1175
- "required":["DetectorId"],
1176
- "members":{
1177
- "DetectorId":{
1178
- "shape":"DetectorId",
1179
- "location":"uri",
1180
- "locationName":"detectorId"
1181
- }
1182
- }
1183
- },
1184
- "DeleteDetectorResponse":{
1185
- "type":"structure",
1186
- "members":{
1187
- }
1188
- },
1189
- "DeleteFilterRequest":{
1190
- "type":"structure",
1191
- "required":[
1192
- "DetectorId",
1193
- "FilterName"
1194
- ],
1195
- "members":{
1196
- "DetectorId":{
1197
- "shape":"DetectorId",
1198
- "location":"uri",
1199
- "locationName":"detectorId"
1200
- },
1201
- "FilterName":{
1202
- "shape":"String",
1203
- "location":"uri",
1204
- "locationName":"filterName"
1205
- }
1206
- }
1207
- },
1208
- "DeleteFilterResponse":{
1209
- "type":"structure",
1210
- "members":{
1211
- }
1212
- },
1213
- "DeleteIPSetRequest":{
1214
- "type":"structure",
1215
- "required":[
1216
- "DetectorId",
1217
- "IpSetId"
1218
- ],
1219
- "members":{
1220
- "DetectorId":{
1221
- "shape":"DetectorId",
1222
- "location":"uri",
1223
- "locationName":"detectorId"
1224
- },
1225
- "IpSetId":{
1226
- "shape":"String",
1227
- "location":"uri",
1228
- "locationName":"ipSetId"
1229
- }
1230
- }
1231
- },
1232
- "DeleteIPSetResponse":{
1233
- "type":"structure",
1234
- "members":{
1235
- }
1236
- },
1237
- "DeleteInvitationsRequest":{
1238
- "type":"structure",
1239
- "required":["AccountIds"],
1240
- "members":{
1241
- "AccountIds":{
1242
- "shape":"AccountIds",
1243
- "locationName":"accountIds"
1244
- }
1245
- }
1246
- },
1247
- "DeleteInvitationsResponse":{
1248
- "type":"structure",
1249
- "required":["UnprocessedAccounts"],
1250
- "members":{
1251
- "UnprocessedAccounts":{
1252
- "shape":"UnprocessedAccounts",
1253
- "locationName":"unprocessedAccounts"
1254
- }
1255
- }
1256
- },
1257
- "DeleteMembersRequest":{
1258
- "type":"structure",
1259
- "required":[
1260
- "DetectorId",
1261
- "AccountIds"
1262
- ],
1263
- "members":{
1264
- "DetectorId":{
1265
- "shape":"DetectorId",
1266
- "location":"uri",
1267
- "locationName":"detectorId"
1268
- },
1269
- "AccountIds":{
1270
- "shape":"AccountIds",
1271
- "locationName":"accountIds"
1272
- }
1273
- }
1274
- },
1275
- "DeleteMembersResponse":{
1276
- "type":"structure",
1277
- "required":["UnprocessedAccounts"],
1278
- "members":{
1279
- "UnprocessedAccounts":{
1280
- "shape":"UnprocessedAccounts",
1281
- "locationName":"unprocessedAccounts"
1282
- }
1283
- }
1284
- },
1285
- "DeleteThreatIntelSetRequest":{
1286
- "type":"structure",
1287
- "required":[
1288
- "DetectorId",
1289
- "ThreatIntelSetId"
1290
- ],
1291
- "members":{
1292
- "DetectorId":{
1293
- "shape":"DetectorId",
1294
- "location":"uri",
1295
- "locationName":"detectorId"
1296
- },
1297
- "ThreatIntelSetId":{
1298
- "shape":"String",
1299
- "location":"uri",
1300
- "locationName":"threatIntelSetId"
1301
- }
1302
- }
1303
- },
1304
- "DeleteThreatIntelSetResponse":{
1305
- "type":"structure",
1306
- "members":{
1307
- }
1308
- },
1309
- "DetectorId":{
1310
- "type":"string",
1311
- "max":300,
1312
- "min":1
1313
- },
1314
- "DetectorIds":{
1315
- "type":"list",
1316
- "member":{"shape":"DetectorId"},
1317
- "max":50,
1318
- "min":0
1319
- },
1320
- "DetectorStatus":{
1321
- "type":"string",
1322
- "enum":[
1323
- "ENABLED",
1324
- "DISABLED"
1325
- ],
1326
- "max":300,
1327
- "min":1
1328
- },
1329
- "DisassociateFromMasterAccountRequest":{
1330
- "type":"structure",
1331
- "required":["DetectorId"],
1332
- "members":{
1333
- "DetectorId":{
1334
- "shape":"DetectorId",
1335
- "location":"uri",
1336
- "locationName":"detectorId"
1337
- }
1338
- }
1339
- },
1340
- "DisassociateFromMasterAccountResponse":{
1341
- "type":"structure",
1342
- "members":{
1343
- }
1344
- },
1345
- "DisassociateMembersRequest":{
1346
- "type":"structure",
1347
- "required":[
1348
- "DetectorId",
1349
- "AccountIds"
1350
- ],
1351
- "members":{
1352
- "DetectorId":{
1353
- "shape":"DetectorId",
1354
- "location":"uri",
1355
- "locationName":"detectorId"
1356
- },
1357
- "AccountIds":{
1358
- "shape":"AccountIds",
1359
- "locationName":"accountIds"
1360
- }
1361
- }
1362
- },
1363
- "DisassociateMembersResponse":{
1364
- "type":"structure",
1365
- "required":["UnprocessedAccounts"],
1366
- "members":{
1367
- "UnprocessedAccounts":{
1368
- "shape":"UnprocessedAccounts",
1369
- "locationName":"unprocessedAccounts"
1370
- }
1371
- }
1372
- },
1373
- "DnsRequestAction":{
1374
- "type":"structure",
1375
- "members":{
1376
- "Domain":{
1377
- "shape":"String",
1378
- "locationName":"domain"
1379
- }
1380
- }
1381
- },
1382
- "DomainDetails":{
1383
- "type":"structure",
1384
- "members":{
1385
- "Domain":{
1386
- "shape":"String",
1387
- "locationName":"domain"
1388
- }
1389
- }
1390
- },
1391
- "Double":{"type":"double"},
1392
- "Email":{
1393
- "type":"string",
1394
- "max":64,
1395
- "min":1
1396
- },
1397
- "Eq":{
1398
- "type":"list",
1399
- "member":{"shape":"String"}
1400
- },
1401
- "Equals":{
1402
- "type":"list",
1403
- "member":{"shape":"String"}
1404
- },
1405
- "Evidence":{
1406
- "type":"structure",
1407
- "members":{
1408
- "ThreatIntelligenceDetails":{
1409
- "shape":"ThreatIntelligenceDetails",
1410
- "locationName":"threatIntelligenceDetails"
1411
- }
1412
- }
1413
- },
1414
- "Feedback":{
1415
- "type":"string",
1416
- "enum":[
1417
- "USEFUL",
1418
- "NOT_USEFUL"
1419
- ]
1420
- },
1421
- "FilterAction":{
1422
- "type":"string",
1423
- "enum":[
1424
- "NOOP",
1425
- "ARCHIVE"
1426
- ],
1427
- "max":300,
1428
- "min":1
1429
- },
1430
- "FilterDescription":{
1431
- "type":"string",
1432
- "max":512,
1433
- "min":0
1434
- },
1435
- "FilterName":{
1436
- "type":"string",
1437
- "max":64,
1438
- "min":3
1439
- },
1440
- "FilterNames":{
1441
- "type":"list",
1442
- "member":{"shape":"FilterName"},
1443
- "max":50,
1444
- "min":0
1445
- },
1446
- "FilterRank":{
1447
- "type":"integer",
1448
- "max":100,
1449
- "min":1
1450
- },
1451
- "Finding":{
1452
- "type":"structure",
1453
- "required":[
1454
- "AccountId",
1455
- "Arn",
1456
- "CreatedAt",
1457
- "Id",
1458
- "Region",
1459
- "Resource",
1460
- "SchemaVersion",
1461
- "Severity",
1462
- "Type",
1463
- "UpdatedAt"
1464
- ],
1465
- "members":{
1466
- "AccountId":{
1467
- "shape":"String",
1468
- "locationName":"accountId"
1469
- },
1470
- "Arn":{
1471
- "shape":"String",
1472
- "locationName":"arn"
1473
- },
1474
- "Confidence":{
1475
- "shape":"Double",
1476
- "locationName":"confidence"
1477
- },
1478
- "CreatedAt":{
1479
- "shape":"String",
1480
- "locationName":"createdAt"
1481
- },
1482
- "Description":{
1483
- "shape":"String",
1484
- "locationName":"description"
1485
- },
1486
- "Id":{
1487
- "shape":"String",
1488
- "locationName":"id"
1489
- },
1490
- "Partition":{
1491
- "shape":"String",
1492
- "locationName":"partition"
1493
- },
1494
- "Region":{
1495
- "shape":"String",
1496
- "locationName":"region"
1497
- },
1498
- "Resource":{
1499
- "shape":"Resource",
1500
- "locationName":"resource"
1501
- },
1502
- "SchemaVersion":{
1503
- "shape":"String",
1504
- "locationName":"schemaVersion"
1505
- },
1506
- "Service":{
1507
- "shape":"Service",
1508
- "locationName":"service"
1509
- },
1510
- "Severity":{
1511
- "shape":"Double",
1512
- "locationName":"severity"
1513
- },
1514
- "Title":{
1515
- "shape":"String",
1516
- "locationName":"title"
1517
- },
1518
- "Type":{
1519
- "shape":"FindingType",
1520
- "locationName":"type"
1521
- },
1522
- "UpdatedAt":{
1523
- "shape":"String",
1524
- "locationName":"updatedAt"
1525
- }
1526
- }
1527
- },
1528
- "FindingCriteria":{
1529
- "type":"structure",
1530
- "members":{
1531
- "Criterion":{
1532
- "shape":"Criterion",
1533
- "locationName":"criterion"
1534
- }
1535
- }
1536
- },
1537
- "FindingId":{
1538
- "type":"string",
1539
- "max":300,
1540
- "min":1
1541
- },
1542
- "FindingIds":{
1543
- "type":"list",
1544
- "member":{"shape":"FindingId"},
1545
- "max":50,
1546
- "min":0
1547
- },
1548
- "FindingPublishingFrequency":{
1549
- "type":"string",
1550
- "enum":[
1551
- "FIFTEEN_MINUTES",
1552
- "ONE_HOUR",
1553
- "SIX_HOURS"
1554
- ]
1555
- },
1556
- "FindingStatisticType":{
1557
- "type":"string",
1558
- "enum":["COUNT_BY_SEVERITY"]
1559
- },
1560
- "FindingStatisticTypes":{
1561
- "type":"list",
1562
- "member":{"shape":"FindingStatisticType"},
1563
- "max":10,
1564
- "min":0
1565
- },
1566
- "FindingStatistics":{
1567
- "type":"structure",
1568
- "members":{
1569
- "CountBySeverity":{
1570
- "shape":"CountBySeverity",
1571
- "locationName":"countBySeverity"
1572
- }
1573
- }
1574
- },
1575
- "FindingType":{
1576
- "type":"string",
1577
- "max":50,
1578
- "min":1
1579
- },
1580
- "FindingTypes":{
1581
- "type":"list",
1582
- "member":{"shape":"FindingType"},
1583
- "max":50,
1584
- "min":0
1585
- },
1586
- "Findings":{
1587
- "type":"list",
1588
- "member":{"shape":"Finding"},
1589
- "max":50,
1590
- "min":0
1591
- },
1592
- "GeoLocation":{
1593
- "type":"structure",
1594
- "members":{
1595
- "Lat":{
1596
- "shape":"Double",
1597
- "locationName":"lat"
1598
- },
1599
- "Lon":{
1600
- "shape":"Double",
1601
- "locationName":"lon"
1602
- }
1603
- }
1604
- },
1605
- "GetDetectorRequest":{
1606
- "type":"structure",
1607
- "required":["DetectorId"],
1608
- "members":{
1609
- "DetectorId":{
1610
- "shape":"DetectorId",
1611
- "location":"uri",
1612
- "locationName":"detectorId"
1613
- }
1614
- }
1615
- },
1616
- "GetDetectorResponse":{
1617
- "type":"structure",
1618
- "required":[
1619
- "ServiceRole",
1620
- "Status"
1621
- ],
1622
- "members":{
1623
- "CreatedAt":{
1624
- "shape":"String",
1625
- "locationName":"createdAt"
1626
- },
1627
- "FindingPublishingFrequency":{
1628
- "shape":"FindingPublishingFrequency",
1629
- "locationName":"findingPublishingFrequency"
1630
- },
1631
- "ServiceRole":{
1632
- "shape":"String",
1633
- "locationName":"serviceRole"
1634
- },
1635
- "Status":{
1636
- "shape":"DetectorStatus",
1637
- "locationName":"status"
1638
- },
1639
- "UpdatedAt":{
1640
- "shape":"String",
1641
- "locationName":"updatedAt"
1642
- },
1643
- "Tags":{
1644
- "shape":"TagMap",
1645
- "locationName":"tags"
1646
- }
1647
- }
1648
- },
1649
- "GetFilterRequest":{
1650
- "type":"structure",
1651
- "required":[
1652
- "DetectorId",
1653
- "FilterName"
1654
- ],
1655
- "members":{
1656
- "DetectorId":{
1657
- "shape":"DetectorId",
1658
- "location":"uri",
1659
- "locationName":"detectorId"
1660
- },
1661
- "FilterName":{
1662
- "shape":"String",
1663
- "location":"uri",
1664
- "locationName":"filterName"
1665
- }
1666
- }
1667
- },
1668
- "GetFilterResponse":{
1669
- "type":"structure",
1670
- "required":[
1671
- "Name",
1672
- "Action",
1673
- "FindingCriteria"
1674
- ],
1675
- "members":{
1676
- "Name":{
1677
- "shape":"FilterName",
1678
- "locationName":"name"
1679
- },
1680
- "Description":{
1681
- "shape":"FilterDescription",
1682
- "locationName":"description"
1683
- },
1684
- "Action":{
1685
- "shape":"FilterAction",
1686
- "locationName":"action"
1687
- },
1688
- "Rank":{
1689
- "shape":"FilterRank",
1690
- "locationName":"rank"
1691
- },
1692
- "FindingCriteria":{
1693
- "shape":"FindingCriteria",
1694
- "locationName":"findingCriteria"
1695
- },
1696
- "Tags":{
1697
- "shape":"TagMap",
1698
- "locationName":"tags"
1699
- }
1700
- }
1701
- },
1702
- "GetFindingsRequest":{
1703
- "type":"structure",
1704
- "required":[
1705
- "DetectorId",
1706
- "FindingIds"
1707
- ],
1708
- "members":{
1709
- "DetectorId":{
1710
- "shape":"DetectorId",
1711
- "location":"uri",
1712
- "locationName":"detectorId"
1713
- },
1714
- "FindingIds":{
1715
- "shape":"FindingIds",
1716
- "locationName":"findingIds"
1717
- },
1718
- "SortCriteria":{
1719
- "shape":"SortCriteria",
1720
- "locationName":"sortCriteria"
1721
- }
1722
- }
1723
- },
1724
- "GetFindingsResponse":{
1725
- "type":"structure",
1726
- "required":["Findings"],
1727
- "members":{
1728
- "Findings":{
1729
- "shape":"Findings",
1730
- "locationName":"findings"
1731
- }
1732
- }
1733
- },
1734
- "GetFindingsStatisticsRequest":{
1735
- "type":"structure",
1736
- "required":[
1737
- "DetectorId",
1738
- "FindingStatisticTypes"
1739
- ],
1740
- "members":{
1741
- "DetectorId":{
1742
- "shape":"DetectorId",
1743
- "location":"uri",
1744
- "locationName":"detectorId"
1745
- },
1746
- "FindingStatisticTypes":{
1747
- "shape":"FindingStatisticTypes",
1748
- "locationName":"findingStatisticTypes"
1749
- },
1750
- "FindingCriteria":{
1751
- "shape":"FindingCriteria",
1752
- "locationName":"findingCriteria"
1753
- }
1754
- }
1755
- },
1756
- "GetFindingsStatisticsResponse":{
1757
- "type":"structure",
1758
- "required":["FindingStatistics"],
1759
- "members":{
1760
- "FindingStatistics":{
1761
- "shape":"FindingStatistics",
1762
- "locationName":"findingStatistics"
1763
- }
1764
- }
1765
- },
1766
- "GetIPSetRequest":{
1767
- "type":"structure",
1768
- "required":[
1769
- "DetectorId",
1770
- "IpSetId"
1771
- ],
1772
- "members":{
1773
- "DetectorId":{
1774
- "shape":"DetectorId",
1775
- "location":"uri",
1776
- "locationName":"detectorId"
1777
- },
1778
- "IpSetId":{
1779
- "shape":"String",
1780
- "location":"uri",
1781
- "locationName":"ipSetId"
1782
- }
1783
- }
1784
- },
1785
- "GetIPSetResponse":{
1786
- "type":"structure",
1787
- "required":[
1788
- "Name",
1789
- "Format",
1790
- "Location",
1791
- "Status"
1792
- ],
1793
- "members":{
1794
- "Name":{
1795
- "shape":"Name",
1796
- "locationName":"name"
1797
- },
1798
- "Format":{
1799
- "shape":"IpSetFormat",
1800
- "locationName":"format"
1801
- },
1802
- "Location":{
1803
- "shape":"Location",
1804
- "locationName":"location"
1805
- },
1806
- "Status":{
1807
- "shape":"IpSetStatus",
1808
- "locationName":"status"
1809
- },
1810
- "Tags":{
1811
- "shape":"TagMap",
1812
- "locationName":"tags"
1813
- }
1814
- }
1815
- },
1816
- "GetInvitationsCountRequest":{
1817
- "type":"structure",
1818
- "members":{
1819
- }
1820
- },
1821
- "GetInvitationsCountResponse":{
1822
- "type":"structure",
1823
- "members":{
1824
- "InvitationsCount":{
1825
- "shape":"Integer",
1826
- "locationName":"invitationsCount"
1827
- }
1828
- }
1829
- },
1830
- "GetMasterAccountRequest":{
1831
- "type":"structure",
1832
- "required":["DetectorId"],
1833
- "members":{
1834
- "DetectorId":{
1835
- "shape":"DetectorId",
1836
- "location":"uri",
1837
- "locationName":"detectorId"
1838
- }
1839
- }
1840
- },
1841
- "GetMasterAccountResponse":{
1842
- "type":"structure",
1843
- "required":["Master"],
1844
- "members":{
1845
- "Master":{
1846
- "shape":"Master",
1847
- "locationName":"master"
1848
- }
1849
- }
1850
- },
1851
- "GetMembersRequest":{
1852
- "type":"structure",
1853
- "required":[
1854
- "DetectorId",
1855
- "AccountIds"
1856
- ],
1857
- "members":{
1858
- "DetectorId":{
1859
- "shape":"DetectorId",
1860
- "location":"uri",
1861
- "locationName":"detectorId"
1862
- },
1863
- "AccountIds":{
1864
- "shape":"AccountIds",
1865
- "locationName":"accountIds"
1866
- }
1867
- }
1868
- },
1869
- "GetMembersResponse":{
1870
- "type":"structure",
1871
- "required":[
1872
- "Members",
1873
- "UnprocessedAccounts"
1874
- ],
1875
- "members":{
1876
- "Members":{
1877
- "shape":"Members",
1878
- "locationName":"members"
1879
- },
1880
- "UnprocessedAccounts":{
1881
- "shape":"UnprocessedAccounts",
1882
- "locationName":"unprocessedAccounts"
1883
- }
1884
- }
1885
- },
1886
- "GetThreatIntelSetRequest":{
1887
- "type":"structure",
1888
- "required":[
1889
- "DetectorId",
1890
- "ThreatIntelSetId"
1891
- ],
1892
- "members":{
1893
- "DetectorId":{
1894
- "shape":"DetectorId",
1895
- "location":"uri",
1896
- "locationName":"detectorId"
1897
- },
1898
- "ThreatIntelSetId":{
1899
- "shape":"String",
1900
- "location":"uri",
1901
- "locationName":"threatIntelSetId"
1902
- }
1903
- }
1904
- },
1905
- "GetThreatIntelSetResponse":{
1906
- "type":"structure",
1907
- "required":[
1908
- "Name",
1909
- "Format",
1910
- "Location",
1911
- "Status"
1912
- ],
1913
- "members":{
1914
- "Name":{
1915
- "shape":"Name",
1916
- "locationName":"name"
1917
- },
1918
- "Format":{
1919
- "shape":"ThreatIntelSetFormat",
1920
- "locationName":"format"
1921
- },
1922
- "Location":{
1923
- "shape":"Location",
1924
- "locationName":"location"
1925
- },
1926
- "Status":{
1927
- "shape":"ThreatIntelSetStatus",
1928
- "locationName":"status"
1929
- },
1930
- "Tags":{
1931
- "shape":"TagMap",
1932
- "locationName":"tags"
1933
- }
1934
- }
1935
- },
1936
- "GuardDutyArn":{
1937
- "type":"string",
1938
- "pattern":"^arn:[A-Za-z_.-]{1,20}:guardduty:[A-Za-z0-9_/.-]{0,63}:\\d+:detector/[A-Za-z0-9_/.-]{32,264}$"
1939
- },
1940
- "IamInstanceProfile":{
1941
- "type":"structure",
1942
- "members":{
1943
- "Arn":{
1944
- "shape":"String",
1945
- "locationName":"arn"
1946
- },
1947
- "Id":{
1948
- "shape":"String",
1949
- "locationName":"id"
1950
- }
1951
- }
1952
- },
1953
- "InstanceDetails":{
1954
- "type":"structure",
1955
- "members":{
1956
- "AvailabilityZone":{
1957
- "shape":"String",
1958
- "locationName":"availabilityZone"
1959
- },
1960
- "IamInstanceProfile":{
1961
- "shape":"IamInstanceProfile",
1962
- "locationName":"iamInstanceProfile"
1963
- },
1964
- "ImageDescription":{
1965
- "shape":"String",
1966
- "locationName":"imageDescription"
1967
- },
1968
- "ImageId":{
1969
- "shape":"String",
1970
- "locationName":"imageId"
1971
- },
1972
- "InstanceId":{
1973
- "shape":"String",
1974
- "locationName":"instanceId"
1975
- },
1976
- "InstanceState":{
1977
- "shape":"String",
1978
- "locationName":"instanceState"
1979
- },
1980
- "InstanceType":{
1981
- "shape":"String",
1982
- "locationName":"instanceType"
1983
- },
1984
- "LaunchTime":{
1985
- "shape":"String",
1986
- "locationName":"launchTime"
1987
- },
1988
- "NetworkInterfaces":{
1989
- "shape":"NetworkInterfaces",
1990
- "locationName":"networkInterfaces"
1991
- },
1992
- "Platform":{
1993
- "shape":"String",
1994
- "locationName":"platform"
1995
- },
1996
- "ProductCodes":{
1997
- "shape":"ProductCodes",
1998
- "locationName":"productCodes"
1999
- },
2000
- "Tags":{
2001
- "shape":"Tags",
2002
- "locationName":"tags"
2003
- }
2004
- }
2005
- },
2006
- "Integer":{"type":"integer"},
2007
- "InternalServerErrorException":{
2008
- "type":"structure",
2009
- "members":{
2010
- "Message":{
2011
- "shape":"String",
2012
- "locationName":"message"
2013
- },
2014
- "Type":{
2015
- "shape":"String",
2016
- "locationName":"__type"
2017
- }
2018
- },
2019
- "error":{"httpStatusCode":500},
2020
- "exception":true
2021
- },
2022
- "Invitation":{
2023
- "type":"structure",
2024
- "members":{
2025
- "AccountId":{
2026
- "shape":"AccountId",
2027
- "locationName":"accountId"
2028
- },
2029
- "InvitationId":{
2030
- "shape":"String",
2031
- "locationName":"invitationId"
2032
- },
2033
- "RelationshipStatus":{
2034
- "shape":"String",
2035
- "locationName":"relationshipStatus"
2036
- },
2037
- "InvitedAt":{
2038
- "shape":"String",
2039
- "locationName":"invitedAt"
2040
- }
2041
- }
2042
- },
2043
- "Invitations":{
2044
- "type":"list",
2045
- "member":{"shape":"Invitation"},
2046
- "max":50,
2047
- "min":0
2048
- },
2049
- "InviteMembersRequest":{
2050
- "type":"structure",
2051
- "required":[
2052
- "DetectorId",
2053
- "AccountIds"
2054
- ],
2055
- "members":{
2056
- "DetectorId":{
2057
- "shape":"DetectorId",
2058
- "location":"uri",
2059
- "locationName":"detectorId"
2060
- },
2061
- "AccountIds":{
2062
- "shape":"AccountIds",
2063
- "locationName":"accountIds"
2064
- },
2065
- "DisableEmailNotification":{
2066
- "shape":"Boolean",
2067
- "locationName":"disableEmailNotification"
2068
- },
2069
- "Message":{
2070
- "shape":"String",
2071
- "locationName":"message"
2072
- }
2073
- }
2074
- },
2075
- "InviteMembersResponse":{
2076
- "type":"structure",
2077
- "required":["UnprocessedAccounts"],
2078
- "members":{
2079
- "UnprocessedAccounts":{
2080
- "shape":"UnprocessedAccounts",
2081
- "locationName":"unprocessedAccounts"
2082
- }
2083
- }
2084
- },
2085
- "IpSetFormat":{
2086
- "type":"string",
2087
- "enum":[
2088
- "TXT",
2089
- "STIX",
2090
- "OTX_CSV",
2091
- "ALIEN_VAULT",
2092
- "PROOF_POINT",
2093
- "FIRE_EYE"
2094
- ],
2095
- "max":300,
2096
- "min":1
2097
- },
2098
- "IpSetIds":{
2099
- "type":"list",
2100
- "member":{"shape":"String"},
2101
- "max":50,
2102
- "min":0
2103
- },
2104
- "IpSetStatus":{
2105
- "type":"string",
2106
- "enum":[
2107
- "INACTIVE",
2108
- "ACTIVATING",
2109
- "ACTIVE",
2110
- "DEACTIVATING",
2111
- "ERROR",
2112
- "DELETE_PENDING",
2113
- "DELETED"
2114
- ],
2115
- "max":300,
2116
- "min":1
2117
- },
2118
- "Ipv6Addresses":{
2119
- "type":"list",
2120
- "member":{"shape":"String"}
2121
- },
2122
- "ListDetectorsRequest":{
2123
- "type":"structure",
2124
- "members":{
2125
- "MaxResults":{
2126
- "shape":"MaxResults",
2127
- "location":"querystring",
2128
- "locationName":"maxResults"
2129
- },
2130
- "NextToken":{
2131
- "shape":"String",
2132
- "location":"querystring",
2133
- "locationName":"nextToken"
2134
- }
2135
- }
2136
- },
2137
- "ListDetectorsResponse":{
2138
- "type":"structure",
2139
- "required":["DetectorIds"],
2140
- "members":{
2141
- "DetectorIds":{
2142
- "shape":"DetectorIds",
2143
- "locationName":"detectorIds"
2144
- },
2145
- "NextToken":{
2146
- "shape":"String",
2147
- "locationName":"nextToken"
2148
- }
2149
- }
2150
- },
2151
- "ListFiltersRequest":{
2152
- "type":"structure",
2153
- "required":["DetectorId"],
2154
- "members":{
2155
- "DetectorId":{
2156
- "shape":"DetectorId",
2157
- "location":"uri",
2158
- "locationName":"detectorId"
2159
- },
2160
- "MaxResults":{
2161
- "shape":"MaxResults",
2162
- "location":"querystring",
2163
- "locationName":"maxResults"
2164
- },
2165
- "NextToken":{
2166
- "shape":"String",
2167
- "location":"querystring",
2168
- "locationName":"nextToken"
2169
- }
2170
- }
2171
- },
2172
- "ListFiltersResponse":{
2173
- "type":"structure",
2174
- "required":["FilterNames"],
2175
- "members":{
2176
- "FilterNames":{
2177
- "shape":"FilterNames",
2178
- "locationName":"filterNames"
2179
- },
2180
- "NextToken":{
2181
- "shape":"String",
2182
- "locationName":"nextToken"
2183
- }
2184
- }
2185
- },
2186
- "ListFindingsRequest":{
2187
- "type":"structure",
2188
- "required":["DetectorId"],
2189
- "members":{
2190
- "DetectorId":{
2191
- "shape":"DetectorId",
2192
- "location":"uri",
2193
- "locationName":"detectorId"
2194
- },
2195
- "FindingCriteria":{
2196
- "shape":"FindingCriteria",
2197
- "locationName":"findingCriteria"
2198
- },
2199
- "SortCriteria":{
2200
- "shape":"SortCriteria",
2201
- "locationName":"sortCriteria"
2202
- },
2203
- "MaxResults":{
2204
- "shape":"MaxResults",
2205
- "locationName":"maxResults"
2206
- },
2207
- "NextToken":{
2208
- "shape":"String",
2209
- "locationName":"nextToken"
2210
- }
2211
- }
2212
- },
2213
- "ListFindingsResponse":{
2214
- "type":"structure",
2215
- "required":["FindingIds"],
2216
- "members":{
2217
- "FindingIds":{
2218
- "shape":"FindingIds",
2219
- "locationName":"findingIds"
2220
- },
2221
- "NextToken":{
2222
- "shape":"String",
2223
- "locationName":"nextToken"
2224
- }
2225
- }
2226
- },
2227
- "ListIPSetsRequest":{
2228
- "type":"structure",
2229
- "required":["DetectorId"],
2230
- "members":{
2231
- "DetectorId":{
2232
- "shape":"DetectorId",
2233
- "location":"uri",
2234
- "locationName":"detectorId"
2235
- },
2236
- "MaxResults":{
2237
- "shape":"MaxResults",
2238
- "location":"querystring",
2239
- "locationName":"maxResults"
2240
- },
2241
- "NextToken":{
2242
- "shape":"String",
2243
- "location":"querystring",
2244
- "locationName":"nextToken"
2245
- }
2246
- }
2247
- },
2248
- "ListIPSetsResponse":{
2249
- "type":"structure",
2250
- "required":["IpSetIds"],
2251
- "members":{
2252
- "IpSetIds":{
2253
- "shape":"IpSetIds",
2254
- "locationName":"ipSetIds"
2255
- },
2256
- "NextToken":{
2257
- "shape":"String",
2258
- "locationName":"nextToken"
2259
- }
2260
- }
2261
- },
2262
- "ListInvitationsRequest":{
2263
- "type":"structure",
2264
- "members":{
2265
- "MaxResults":{
2266
- "shape":"MaxResults",
2267
- "location":"querystring",
2268
- "locationName":"maxResults"
2269
- },
2270
- "NextToken":{
2271
- "shape":"String",
2272
- "location":"querystring",
2273
- "locationName":"nextToken"
2274
- }
2275
- }
2276
- },
2277
- "ListInvitationsResponse":{
2278
- "type":"structure",
2279
- "members":{
2280
- "Invitations":{
2281
- "shape":"Invitations",
2282
- "locationName":"invitations"
2283
- },
2284
- "NextToken":{
2285
- "shape":"String",
2286
- "locationName":"nextToken"
2287
- }
2288
- }
2289
- },
2290
- "ListMembersRequest":{
2291
- "type":"structure",
2292
- "required":["DetectorId"],
2293
- "members":{
2294
- "DetectorId":{
2295
- "shape":"DetectorId",
2296
- "location":"uri",
2297
- "locationName":"detectorId"
2298
- },
2299
- "MaxResults":{
2300
- "shape":"MaxResults",
2301
- "location":"querystring",
2302
- "locationName":"maxResults"
2303
- },
2304
- "NextToken":{
2305
- "shape":"String",
2306
- "location":"querystring",
2307
- "locationName":"nextToken"
2308
- },
2309
- "OnlyAssociated":{
2310
- "shape":"String",
2311
- "location":"querystring",
2312
- "locationName":"onlyAssociated"
2313
- }
2314
- }
2315
- },
2316
- "ListMembersResponse":{
2317
- "type":"structure",
2318
- "members":{
2319
- "Members":{
2320
- "shape":"Members",
2321
- "locationName":"members"
2322
- },
2323
- "NextToken":{
2324
- "shape":"String",
2325
- "locationName":"nextToken"
2326
- }
2327
- }
2328
- },
2329
- "ListTagsForResourceRequest":{
2330
- "type":"structure",
2331
- "required":["ResourceArn"],
2332
- "members":{
2333
- "ResourceArn":{
2334
- "shape":"GuardDutyArn",
2335
- "location":"uri",
2336
- "locationName":"resourceArn"
2337
- }
2338
- }
2339
- },
2340
- "ListTagsForResourceResponse":{
2341
- "type":"structure",
2342
- "members":{
2343
- "Tags":{
2344
- "shape":"TagMap",
2345
- "locationName":"tags"
2346
- }
2347
- }
2348
- },
2349
- "ListThreatIntelSetsRequest":{
2350
- "type":"structure",
2351
- "required":["DetectorId"],
2352
- "members":{
2353
- "DetectorId":{
2354
- "shape":"DetectorId",
2355
- "location":"uri",
2356
- "locationName":"detectorId"
2357
- },
2358
- "MaxResults":{
2359
- "shape":"MaxResults",
2360
- "location":"querystring",
2361
- "locationName":"maxResults"
2362
- },
2363
- "NextToken":{
2364
- "shape":"String",
2365
- "location":"querystring",
2366
- "locationName":"nextToken"
2367
- }
2368
- }
2369
- },
2370
- "ListThreatIntelSetsResponse":{
2371
- "type":"structure",
2372
- "required":["ThreatIntelSetIds"],
2373
- "members":{
2374
- "ThreatIntelSetIds":{
2375
- "shape":"ThreatIntelSetIds",
2376
- "locationName":"threatIntelSetIds"
2377
- },
2378
- "NextToken":{
2379
- "shape":"String",
2380
- "locationName":"nextToken"
2381
- }
2382
- }
2383
- },
2384
- "LocalPortDetails":{
2385
- "type":"structure",
2386
- "members":{
2387
- "Port":{
2388
- "shape":"Integer",
2389
- "locationName":"port"
2390
- },
2391
- "PortName":{
2392
- "shape":"String",
2393
- "locationName":"portName"
2394
- }
2395
- }
2396
- },
2397
- "Location":{
2398
- "type":"string",
2399
- "max":300,
2400
- "min":1
2401
- },
2402
- "Long":{"type":"long"},
2403
- "Master":{
2404
- "type":"structure",
2405
- "members":{
2406
- "AccountId":{
2407
- "shape":"AccountId",
2408
- "locationName":"accountId"
2409
- },
2410
- "InvitationId":{
2411
- "shape":"String",
2412
- "locationName":"invitationId"
2413
- },
2414
- "RelationshipStatus":{
2415
- "shape":"String",
2416
- "locationName":"relationshipStatus"
2417
- },
2418
- "InvitedAt":{
2419
- "shape":"String",
2420
- "locationName":"invitedAt"
2421
- }
2422
- }
2423
- },
2424
- "MaxResults":{
2425
- "type":"integer",
2426
- "max":50,
2427
- "min":1
2428
- },
2429
- "Member":{
2430
- "type":"structure",
2431
- "required":[
2432
- "AccountId",
2433
- "MasterId",
2434
- "Email",
2435
- "RelationshipStatus",
2436
- "UpdatedAt"
2437
- ],
2438
- "members":{
2439
- "AccountId":{
2440
- "shape":"AccountId",
2441
- "locationName":"accountId"
2442
- },
2443
- "DetectorId":{
2444
- "shape":"DetectorId",
2445
- "locationName":"detectorId"
2446
- },
2447
- "MasterId":{
2448
- "shape":"String",
2449
- "locationName":"masterId"
2450
- },
2451
- "Email":{
2452
- "shape":"Email",
2453
- "locationName":"email"
2454
- },
2455
- "RelationshipStatus":{
2456
- "shape":"String",
2457
- "locationName":"relationshipStatus"
2458
- },
2459
- "InvitedAt":{
2460
- "shape":"String",
2461
- "locationName":"invitedAt"
2462
- },
2463
- "UpdatedAt":{
2464
- "shape":"String",
2465
- "locationName":"updatedAt"
2466
- }
2467
- }
2468
- },
2469
- "Members":{
2470
- "type":"list",
2471
- "member":{"shape":"Member"},
2472
- "max":50,
2473
- "min":0
2474
- },
2475
- "Name":{
2476
- "type":"string",
2477
- "max":300,
2478
- "min":1
2479
- },
2480
- "Neq":{
2481
- "type":"list",
2482
- "member":{"shape":"String"}
2483
- },
2484
- "NetworkConnectionAction":{
2485
- "type":"structure",
2486
- "members":{
2487
- "Blocked":{
2488
- "shape":"Boolean",
2489
- "locationName":"blocked"
2490
- },
2491
- "ConnectionDirection":{
2492
- "shape":"String",
2493
- "locationName":"connectionDirection"
2494
- },
2495
- "LocalPortDetails":{
2496
- "shape":"LocalPortDetails",
2497
- "locationName":"localPortDetails"
2498
- },
2499
- "Protocol":{
2500
- "shape":"String",
2501
- "locationName":"protocol"
2502
- },
2503
- "RemoteIpDetails":{
2504
- "shape":"RemoteIpDetails",
2505
- "locationName":"remoteIpDetails"
2506
- },
2507
- "RemotePortDetails":{
2508
- "shape":"RemotePortDetails",
2509
- "locationName":"remotePortDetails"
2510
- }
2511
- }
2512
- },
2513
- "NetworkInterface":{
2514
- "type":"structure",
2515
- "members":{
2516
- "Ipv6Addresses":{
2517
- "shape":"Ipv6Addresses",
2518
- "locationName":"ipv6Addresses"
2519
- },
2520
- "NetworkInterfaceId":{
2521
- "shape":"String",
2522
- "locationName":"networkInterfaceId"
2523
- },
2524
- "PrivateDnsName":{
2525
- "shape":"String",
2526
- "locationName":"privateDnsName"
2527
- },
2528
- "PrivateIpAddress":{
2529
- "shape":"String",
2530
- "locationName":"privateIpAddress"
2531
- },
2532
- "PrivateIpAddresses":{
2533
- "shape":"PrivateIpAddresses",
2534
- "locationName":"privateIpAddresses"
2535
- },
2536
- "PublicDnsName":{
2537
- "shape":"String",
2538
- "locationName":"publicDnsName"
2539
- },
2540
- "PublicIp":{
2541
- "shape":"String",
2542
- "locationName":"publicIp"
2543
- },
2544
- "SecurityGroups":{
2545
- "shape":"SecurityGroups",
2546
- "locationName":"securityGroups"
2547
- },
2548
- "SubnetId":{
2549
- "shape":"String",
2550
- "locationName":"subnetId"
2551
- },
2552
- "VpcId":{
2553
- "shape":"String",
2554
- "locationName":"vpcId"
2555
- }
2556
- }
2557
- },
2558
- "NetworkInterfaces":{
2559
- "type":"list",
2560
- "member":{"shape":"NetworkInterface"}
2561
- },
2562
- "NotEquals":{
2563
- "type":"list",
2564
- "member":{"shape":"String"}
2565
- },
2566
- "OrderBy":{
2567
- "type":"string",
2568
- "enum":[
2569
- "ASC",
2570
- "DESC"
2571
- ]
2572
- },
2573
- "Organization":{
2574
- "type":"structure",
2575
- "members":{
2576
- "Asn":{
2577
- "shape":"String",
2578
- "locationName":"asn"
2579
- },
2580
- "AsnOrg":{
2581
- "shape":"String",
2582
- "locationName":"asnOrg"
2583
- },
2584
- "Isp":{
2585
- "shape":"String",
2586
- "locationName":"isp"
2587
- },
2588
- "Org":{
2589
- "shape":"String",
2590
- "locationName":"org"
2591
- }
2592
- }
2593
- },
2594
- "PortProbeAction":{
2595
- "type":"structure",
2596
- "members":{
2597
- "Blocked":{
2598
- "shape":"Boolean",
2599
- "locationName":"blocked"
2600
- },
2601
- "PortProbeDetails":{
2602
- "shape":"PortProbeDetails",
2603
- "locationName":"portProbeDetails"
2604
- }
2605
- }
2606
- },
2607
- "PortProbeDetail":{
2608
- "type":"structure",
2609
- "members":{
2610
- "LocalPortDetails":{
2611
- "shape":"LocalPortDetails",
2612
- "locationName":"localPortDetails"
2613
- },
2614
- "RemoteIpDetails":{
2615
- "shape":"RemoteIpDetails",
2616
- "locationName":"remoteIpDetails"
2617
- }
2618
- }
2619
- },
2620
- "PortProbeDetails":{
2621
- "type":"list",
2622
- "member":{"shape":"PortProbeDetail"}
2623
- },
2624
- "PrivateIpAddressDetails":{
2625
- "type":"structure",
2626
- "members":{
2627
- "PrivateDnsName":{
2628
- "shape":"String",
2629
- "locationName":"privateDnsName"
2630
- },
2631
- "PrivateIpAddress":{
2632
- "shape":"String",
2633
- "locationName":"privateIpAddress"
2634
- }
2635
- }
2636
- },
2637
- "PrivateIpAddresses":{
2638
- "type":"list",
2639
- "member":{"shape":"PrivateIpAddressDetails"}
2640
- },
2641
- "ProductCode":{
2642
- "type":"structure",
2643
- "members":{
2644
- "Code":{
2645
- "shape":"String",
2646
- "locationName":"code"
2647
- },
2648
- "ProductType":{
2649
- "shape":"String",
2650
- "locationName":"productType"
2651
- }
2652
- }
2653
- },
2654
- "ProductCodes":{
2655
- "type":"list",
2656
- "member":{"shape":"ProductCode"}
2657
- },
2658
- "RemoteIpDetails":{
2659
- "type":"structure",
2660
- "members":{
2661
- "City":{
2662
- "shape":"City",
2663
- "locationName":"city"
2664
- },
2665
- "Country":{
2666
- "shape":"Country",
2667
- "locationName":"country"
2668
- },
2669
- "GeoLocation":{
2670
- "shape":"GeoLocation",
2671
- "locationName":"geoLocation"
2672
- },
2673
- "IpAddressV4":{
2674
- "shape":"String",
2675
- "locationName":"ipAddressV4"
2676
- },
2677
- "Organization":{
2678
- "shape":"Organization",
2679
- "locationName":"organization"
2680
- }
2681
- }
2682
- },
2683
- "RemotePortDetails":{
2684
- "type":"structure",
2685
- "members":{
2686
- "Port":{
2687
- "shape":"Integer",
2688
- "locationName":"port"
2689
- },
2690
- "PortName":{
2691
- "shape":"String",
2692
- "locationName":"portName"
2693
- }
2694
- }
2695
- },
2696
- "Resource":{
2697
- "type":"structure",
2698
- "members":{
2699
- "AccessKeyDetails":{
2700
- "shape":"AccessKeyDetails",
2701
- "locationName":"accessKeyDetails"
2702
- },
2703
- "InstanceDetails":{
2704
- "shape":"InstanceDetails",
2705
- "locationName":"instanceDetails"
2706
- },
2707
- "ResourceType":{
2708
- "shape":"String",
2709
- "locationName":"resourceType"
2710
- }
2711
- }
2712
- },
2713
- "SecurityGroup":{
2714
- "type":"structure",
2715
- "members":{
2716
- "GroupId":{
2717
- "shape":"String",
2718
- "locationName":"groupId"
2719
- },
2720
- "GroupName":{
2721
- "shape":"String",
2722
- "locationName":"groupName"
2723
- }
2724
- }
2725
- },
2726
- "SecurityGroups":{
2727
- "type":"list",
2728
- "member":{"shape":"SecurityGroup"}
2729
- },
2730
- "Service":{
2731
- "type":"structure",
2732
- "members":{
2733
- "Action":{
2734
- "shape":"Action",
2735
- "locationName":"action"
2736
- },
2737
- "Evidence":{
2738
- "shape":"Evidence",
2739
- "locationName":"evidence"
2740
- },
2741
- "Archived":{
2742
- "shape":"Boolean",
2743
- "locationName":"archived"
2744
- },
2745
- "Count":{
2746
- "shape":"Integer",
2747
- "locationName":"count"
2748
- },
2749
- "DetectorId":{
2750
- "shape":"DetectorId",
2751
- "locationName":"detectorId"
2752
- },
2753
- "EventFirstSeen":{
2754
- "shape":"String",
2755
- "locationName":"eventFirstSeen"
2756
- },
2757
- "EventLastSeen":{
2758
- "shape":"String",
2759
- "locationName":"eventLastSeen"
2760
- },
2761
- "ResourceRole":{
2762
- "shape":"String",
2763
- "locationName":"resourceRole"
2764
- },
2765
- "ServiceName":{
2766
- "shape":"String",
2767
- "locationName":"serviceName"
2768
- },
2769
- "UserFeedback":{
2770
- "shape":"String",
2771
- "locationName":"userFeedback"
2772
- }
2773
- }
2774
- },
2775
- "SortCriteria":{
2776
- "type":"structure",
2777
- "members":{
2778
- "AttributeName":{
2779
- "shape":"String",
2780
- "locationName":"attributeName"
2781
- },
2782
- "OrderBy":{
2783
- "shape":"OrderBy",
2784
- "locationName":"orderBy"
2785
- }
2786
- }
2787
- },
2788
- "StartMonitoringMembersRequest":{
2789
- "type":"structure",
2790
- "required":[
2791
- "DetectorId",
2792
- "AccountIds"
2793
- ],
2794
- "members":{
2795
- "DetectorId":{
2796
- "shape":"DetectorId",
2797
- "location":"uri",
2798
- "locationName":"detectorId"
2799
- },
2800
- "AccountIds":{
2801
- "shape":"AccountIds",
2802
- "locationName":"accountIds"
2803
- }
2804
- }
2805
- },
2806
- "StartMonitoringMembersResponse":{
2807
- "type":"structure",
2808
- "required":["UnprocessedAccounts"],
2809
- "members":{
2810
- "UnprocessedAccounts":{
2811
- "shape":"UnprocessedAccounts",
2812
- "locationName":"unprocessedAccounts"
2813
- }
2814
- }
2815
- },
2816
- "StopMonitoringMembersRequest":{
2817
- "type":"structure",
2818
- "required":[
2819
- "DetectorId",
2820
- "AccountIds"
2821
- ],
2822
- "members":{
2823
- "DetectorId":{
2824
- "shape":"DetectorId",
2825
- "location":"uri",
2826
- "locationName":"detectorId"
2827
- },
2828
- "AccountIds":{
2829
- "shape":"AccountIds",
2830
- "locationName":"accountIds"
2831
- }
2832
- }
2833
- },
2834
- "StopMonitoringMembersResponse":{
2835
- "type":"structure",
2836
- "required":["UnprocessedAccounts"],
2837
- "members":{
2838
- "UnprocessedAccounts":{
2839
- "shape":"UnprocessedAccounts",
2840
- "locationName":"unprocessedAccounts"
2841
- }
2842
- }
2843
- },
2844
- "String":{"type":"string"},
2845
- "Tag":{
2846
- "type":"structure",
2847
- "members":{
2848
- "Key":{
2849
- "shape":"String",
2850
- "locationName":"key"
2851
- },
2852
- "Value":{
2853
- "shape":"String",
2854
- "locationName":"value"
2855
- }
2856
- }
2857
- },
2858
- "TagKey":{
2859
- "type":"string",
2860
- "max":128,
2861
- "min":1,
2862
- "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
2863
- },
2864
- "TagKeyList":{
2865
- "type":"list",
2866
- "member":{"shape":"TagKey"},
2867
- "max":200,
2868
- "min":1
2869
- },
2870
- "TagMap":{
2871
- "type":"map",
2872
- "key":{"shape":"TagKey"},
2873
- "value":{"shape":"TagValue"},
2874
- "max":200,
2875
- "min":1
2876
- },
2877
- "TagResourceRequest":{
2878
- "type":"structure",
2879
- "required":[
2880
- "ResourceArn",
2881
- "Tags"
2882
- ],
2883
- "members":{
2884
- "ResourceArn":{
2885
- "shape":"GuardDutyArn",
2886
- "location":"uri",
2887
- "locationName":"resourceArn"
2888
- },
2889
- "Tags":{
2890
- "shape":"TagMap",
2891
- "locationName":"tags"
2892
- }
2893
- }
2894
- },
2895
- "TagResourceResponse":{
2896
- "type":"structure",
2897
- "members":{
2898
- }
2899
- },
2900
- "TagValue":{
2901
- "type":"string",
2902
- "max":256
2903
- },
2904
- "Tags":{
2905
- "type":"list",
2906
- "member":{"shape":"Tag"}
2907
- },
2908
- "ThreatIntelSetFormat":{
2909
- "type":"string",
2910
- "enum":[
2911
- "TXT",
2912
- "STIX",
2913
- "OTX_CSV",
2914
- "ALIEN_VAULT",
2915
- "PROOF_POINT",
2916
- "FIRE_EYE"
2917
- ],
2918
- "max":300,
2919
- "min":1
2920
- },
2921
- "ThreatIntelSetIds":{
2922
- "type":"list",
2923
- "member":{"shape":"String"},
2924
- "max":50,
2925
- "min":0
2926
- },
2927
- "ThreatIntelSetStatus":{
2928
- "type":"string",
2929
- "enum":[
2930
- "INACTIVE",
2931
- "ACTIVATING",
2932
- "ACTIVE",
2933
- "DEACTIVATING",
2934
- "ERROR",
2935
- "DELETE_PENDING",
2936
- "DELETED"
2937
- ],
2938
- "max":300,
2939
- "min":1
2940
- },
2941
- "ThreatIntelligenceDetail":{
2942
- "type":"structure",
2943
- "members":{
2944
- "ThreatListName":{
2945
- "shape":"String",
2946
- "locationName":"threatListName"
2947
- },
2948
- "ThreatNames":{
2949
- "shape":"ThreatNames",
2950
- "locationName":"threatNames"
2951
- }
2952
- }
2953
- },
2954
- "ThreatIntelligenceDetails":{
2955
- "type":"list",
2956
- "member":{"shape":"ThreatIntelligenceDetail"}
2957
- },
2958
- "ThreatNames":{
2959
- "type":"list",
2960
- "member":{"shape":"String"}
2961
- },
2962
- "UnarchiveFindingsRequest":{
2963
- "type":"structure",
2964
- "required":[
2965
- "DetectorId",
2966
- "FindingIds"
2967
- ],
2968
- "members":{
2969
- "DetectorId":{
2970
- "shape":"DetectorId",
2971
- "location":"uri",
2972
- "locationName":"detectorId"
2973
- },
2974
- "FindingIds":{
2975
- "shape":"FindingIds",
2976
- "locationName":"findingIds"
2977
- }
2978
- }
2979
- },
2980
- "UnarchiveFindingsResponse":{
2981
- "type":"structure",
2982
- "members":{
2983
- }
2984
- },
2985
- "UnprocessedAccount":{
2986
- "type":"structure",
2987
- "required":[
2988
- "AccountId",
2989
- "Result"
2990
- ],
2991
- "members":{
2992
- "AccountId":{
2993
- "shape":"AccountId",
2994
- "locationName":"accountId"
2995
- },
2996
- "Result":{
2997
- "shape":"String",
2998
- "locationName":"result"
2999
- }
3000
- }
3001
- },
3002
- "UnprocessedAccounts":{
3003
- "type":"list",
3004
- "member":{"shape":"UnprocessedAccount"},
3005
- "max":50,
3006
- "min":0
3007
- },
3008
- "UntagResourceRequest":{
3009
- "type":"structure",
3010
- "required":[
3011
- "ResourceArn",
3012
- "TagKeys"
3013
- ],
3014
- "members":{
3015
- "ResourceArn":{
3016
- "shape":"GuardDutyArn",
3017
- "location":"uri",
3018
- "locationName":"resourceArn"
3019
- },
3020
- "TagKeys":{
3021
- "shape":"TagKeyList",
3022
- "location":"querystring",
3023
- "locationName":"tagKeys"
3024
- }
3025
- }
3026
- },
3027
- "UntagResourceResponse":{
3028
- "type":"structure",
3029
- "members":{
3030
- }
3031
- },
3032
- "UpdateDetectorRequest":{
3033
- "type":"structure",
3034
- "required":["DetectorId"],
3035
- "members":{
3036
- "DetectorId":{
3037
- "shape":"DetectorId",
3038
- "location":"uri",
3039
- "locationName":"detectorId"
3040
- },
3041
- "Enable":{
3042
- "shape":"Boolean",
3043
- "locationName":"enable"
3044
- },
3045
- "FindingPublishingFrequency":{
3046
- "shape":"FindingPublishingFrequency",
3047
- "locationName":"findingPublishingFrequency"
3048
- }
3049
- }
3050
- },
3051
- "UpdateDetectorResponse":{
3052
- "type":"structure",
3053
- "members":{
3054
- }
3055
- },
3056
- "UpdateFilterRequest":{
3057
- "type":"structure",
3058
- "required":[
3059
- "DetectorId",
3060
- "FilterName"
3061
- ],
3062
- "members":{
3063
- "DetectorId":{
3064
- "shape":"DetectorId",
3065
- "location":"uri",
3066
- "locationName":"detectorId"
3067
- },
3068
- "FilterName":{
3069
- "shape":"String",
3070
- "location":"uri",
3071
- "locationName":"filterName"
3072
- },
3073
- "Description":{
3074
- "shape":"FilterDescription",
3075
- "locationName":"description"
3076
- },
3077
- "Action":{
3078
- "shape":"FilterAction",
3079
- "locationName":"action"
3080
- },
3081
- "Rank":{
3082
- "shape":"FilterRank",
3083
- "locationName":"rank"
3084
- },
3085
- "FindingCriteria":{
3086
- "shape":"FindingCriteria",
3087
- "locationName":"findingCriteria"
3088
- }
3089
- }
3090
- },
3091
- "UpdateFilterResponse":{
3092
- "type":"structure",
3093
- "required":["Name"],
3094
- "members":{
3095
- "Name":{
3096
- "shape":"FilterName",
3097
- "locationName":"name"
3098
- }
3099
- }
3100
- },
3101
- "UpdateFindingsFeedbackRequest":{
3102
- "type":"structure",
3103
- "required":[
3104
- "DetectorId",
3105
- "FindingIds",
3106
- "Feedback"
3107
- ],
3108
- "members":{
3109
- "DetectorId":{
3110
- "shape":"DetectorId",
3111
- "location":"uri",
3112
- "locationName":"detectorId"
3113
- },
3114
- "FindingIds":{
3115
- "shape":"FindingIds",
3116
- "locationName":"findingIds"
3117
- },
3118
- "Feedback":{
3119
- "shape":"Feedback",
3120
- "locationName":"feedback"
3121
- },
3122
- "Comments":{
3123
- "shape":"String",
3124
- "locationName":"comments"
3125
- }
3126
- }
3127
- },
3128
- "UpdateFindingsFeedbackResponse":{
3129
- "type":"structure",
3130
- "members":{
3131
- }
3132
- },
3133
- "UpdateIPSetRequest":{
3134
- "type":"structure",
3135
- "required":[
3136
- "DetectorId",
3137
- "IpSetId"
3138
- ],
3139
- "members":{
3140
- "DetectorId":{
3141
- "shape":"DetectorId",
3142
- "location":"uri",
3143
- "locationName":"detectorId"
3144
- },
3145
- "IpSetId":{
3146
- "shape":"String",
3147
- "location":"uri",
3148
- "locationName":"ipSetId"
3149
- },
3150
- "Name":{
3151
- "shape":"Name",
3152
- "locationName":"name"
3153
- },
3154
- "Location":{
3155
- "shape":"Location",
3156
- "locationName":"location"
3157
- },
3158
- "Activate":{
3159
- "shape":"Boolean",
3160
- "locationName":"activate"
3161
- }
3162
- }
3163
- },
3164
- "UpdateIPSetResponse":{
3165
- "type":"structure",
3166
- "members":{
3167
- }
3168
- },
3169
- "UpdateThreatIntelSetRequest":{
3170
- "type":"structure",
3171
- "required":[
3172
- "DetectorId",
3173
- "ThreatIntelSetId"
3174
- ],
3175
- "members":{
3176
- "DetectorId":{
3177
- "shape":"DetectorId",
3178
- "location":"uri",
3179
- "locationName":"detectorId"
3180
- },
3181
- "ThreatIntelSetId":{
3182
- "shape":"String",
3183
- "location":"uri",
3184
- "locationName":"threatIntelSetId"
3185
- },
3186
- "Name":{
3187
- "shape":"Name",
3188
- "locationName":"name"
3189
- },
3190
- "Location":{
3191
- "shape":"Location",
3192
- "locationName":"location"
3193
- },
3194
- "Activate":{
3195
- "shape":"Boolean",
3196
- "locationName":"activate"
3197
- }
3198
- }
3199
- },
3200
- "UpdateThreatIntelSetResponse":{
3201
- "type":"structure",
3202
- "members":{
3203
- }
3204
- }
3205
- }
3206
- }