aws-sdk-core 2.11.410 → 3.78.0

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