aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  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 -498
  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-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,40 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListConfigs": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults",
7
- "result_key": "configList"
8
- },
9
- "ListContacts": {
10
- "input_token": "nextToken",
11
- "output_token": "nextToken",
12
- "limit_key": "maxResults",
13
- "result_key": "contactList"
14
- },
15
- "ListDataflowEndpointGroups": {
16
- "input_token": "nextToken",
17
- "output_token": "nextToken",
18
- "limit_key": "maxResults",
19
- "result_key": "dataflowEndpointGroupList"
20
- },
21
- "ListGroundStations": {
22
- "input_token": "nextToken",
23
- "output_token": "nextToken",
24
- "limit_key": "maxResults",
25
- "result_key": "groundStationList"
26
- },
27
- "ListMissionProfiles": {
28
- "input_token": "nextToken",
29
- "output_token": "nextToken",
30
- "limit_key": "maxResults",
31
- "result_key": "missionProfileList"
32
- },
33
- "ListSatellites": {
34
- "input_token": "nextToken",
35
- "output_token": "nextToken",
36
- "limit_key": "maxResults",
37
- "result_key": "satellites"
38
- }
39
- }
40
- }
@@ -1,4370 +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
- "DescribeOrganizationConfiguration":{
254
- "name":"DescribeOrganizationConfiguration",
255
- "http":{
256
- "method":"GET",
257
- "requestUri":"/detector/{detectorId}/admin",
258
- "responseCode":200
259
- },
260
- "input":{"shape":"DescribeOrganizationConfigurationRequest"},
261
- "output":{"shape":"DescribeOrganizationConfigurationResponse"},
262
- "errors":[
263
- {"shape":"BadRequestException"},
264
- {"shape":"InternalServerErrorException"}
265
- ]
266
- },
267
- "DescribePublishingDestination":{
268
- "name":"DescribePublishingDestination",
269
- "http":{
270
- "method":"GET",
271
- "requestUri":"/detector/{detectorId}/publishingDestination/{destinationId}",
272
- "responseCode":200
273
- },
274
- "input":{"shape":"DescribePublishingDestinationRequest"},
275
- "output":{"shape":"DescribePublishingDestinationResponse"},
276
- "errors":[
277
- {"shape":"BadRequestException"},
278
- {"shape":"InternalServerErrorException"}
279
- ]
280
- },
281
- "DisableOrganizationAdminAccount":{
282
- "name":"DisableOrganizationAdminAccount",
283
- "http":{
284
- "method":"POST",
285
- "requestUri":"/admin/disable",
286
- "responseCode":200
287
- },
288
- "input":{"shape":"DisableOrganizationAdminAccountRequest"},
289
- "output":{"shape":"DisableOrganizationAdminAccountResponse"},
290
- "errors":[
291
- {"shape":"BadRequestException"},
292
- {"shape":"InternalServerErrorException"}
293
- ]
294
- },
295
- "DisassociateFromMasterAccount":{
296
- "name":"DisassociateFromMasterAccount",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/detector/{detectorId}/master/disassociate",
300
- "responseCode":200
301
- },
302
- "input":{"shape":"DisassociateFromMasterAccountRequest"},
303
- "output":{"shape":"DisassociateFromMasterAccountResponse"},
304
- "errors":[
305
- {"shape":"BadRequestException"},
306
- {"shape":"InternalServerErrorException"}
307
- ]
308
- },
309
- "DisassociateMembers":{
310
- "name":"DisassociateMembers",
311
- "http":{
312
- "method":"POST",
313
- "requestUri":"/detector/{detectorId}/member/disassociate",
314
- "responseCode":200
315
- },
316
- "input":{"shape":"DisassociateMembersRequest"},
317
- "output":{"shape":"DisassociateMembersResponse"},
318
- "errors":[
319
- {"shape":"BadRequestException"},
320
- {"shape":"InternalServerErrorException"}
321
- ]
322
- },
323
- "EnableOrganizationAdminAccount":{
324
- "name":"EnableOrganizationAdminAccount",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/admin/enable",
328
- "responseCode":200
329
- },
330
- "input":{"shape":"EnableOrganizationAdminAccountRequest"},
331
- "output":{"shape":"EnableOrganizationAdminAccountResponse"},
332
- "errors":[
333
- {"shape":"BadRequestException"},
334
- {"shape":"InternalServerErrorException"}
335
- ]
336
- },
337
- "GetDetector":{
338
- "name":"GetDetector",
339
- "http":{
340
- "method":"GET",
341
- "requestUri":"/detector/{detectorId}",
342
- "responseCode":200
343
- },
344
- "input":{"shape":"GetDetectorRequest"},
345
- "output":{"shape":"GetDetectorResponse"},
346
- "errors":[
347
- {"shape":"BadRequestException"},
348
- {"shape":"InternalServerErrorException"}
349
- ]
350
- },
351
- "GetFilter":{
352
- "name":"GetFilter",
353
- "http":{
354
- "method":"GET",
355
- "requestUri":"/detector/{detectorId}/filter/{filterName}",
356
- "responseCode":200
357
- },
358
- "input":{"shape":"GetFilterRequest"},
359
- "output":{"shape":"GetFilterResponse"},
360
- "errors":[
361
- {"shape":"BadRequestException"},
362
- {"shape":"InternalServerErrorException"}
363
- ]
364
- },
365
- "GetFindings":{
366
- "name":"GetFindings",
367
- "http":{
368
- "method":"POST",
369
- "requestUri":"/detector/{detectorId}/findings/get",
370
- "responseCode":200
371
- },
372
- "input":{"shape":"GetFindingsRequest"},
373
- "output":{"shape":"GetFindingsResponse"},
374
- "errors":[
375
- {"shape":"BadRequestException"},
376
- {"shape":"InternalServerErrorException"}
377
- ]
378
- },
379
- "GetFindingsStatistics":{
380
- "name":"GetFindingsStatistics",
381
- "http":{
382
- "method":"POST",
383
- "requestUri":"/detector/{detectorId}/findings/statistics",
384
- "responseCode":200
385
- },
386
- "input":{"shape":"GetFindingsStatisticsRequest"},
387
- "output":{"shape":"GetFindingsStatisticsResponse"},
388
- "errors":[
389
- {"shape":"BadRequestException"},
390
- {"shape":"InternalServerErrorException"}
391
- ]
392
- },
393
- "GetIPSet":{
394
- "name":"GetIPSet",
395
- "http":{
396
- "method":"GET",
397
- "requestUri":"/detector/{detectorId}/ipset/{ipSetId}",
398
- "responseCode":200
399
- },
400
- "input":{"shape":"GetIPSetRequest"},
401
- "output":{"shape":"GetIPSetResponse"},
402
- "errors":[
403
- {"shape":"BadRequestException"},
404
- {"shape":"InternalServerErrorException"}
405
- ]
406
- },
407
- "GetInvitationsCount":{
408
- "name":"GetInvitationsCount",
409
- "http":{
410
- "method":"GET",
411
- "requestUri":"/invitation/count",
412
- "responseCode":200
413
- },
414
- "input":{"shape":"GetInvitationsCountRequest"},
415
- "output":{"shape":"GetInvitationsCountResponse"},
416
- "errors":[
417
- {"shape":"BadRequestException"},
418
- {"shape":"InternalServerErrorException"}
419
- ]
420
- },
421
- "GetMasterAccount":{
422
- "name":"GetMasterAccount",
423
- "http":{
424
- "method":"GET",
425
- "requestUri":"/detector/{detectorId}/master",
426
- "responseCode":200
427
- },
428
- "input":{"shape":"GetMasterAccountRequest"},
429
- "output":{"shape":"GetMasterAccountResponse"},
430
- "errors":[
431
- {"shape":"BadRequestException"},
432
- {"shape":"InternalServerErrorException"}
433
- ]
434
- },
435
- "GetMemberDetectors":{
436
- "name":"GetMemberDetectors",
437
- "http":{
438
- "method":"POST",
439
- "requestUri":"/detector/{detectorId}/member/detector/get",
440
- "responseCode":200
441
- },
442
- "input":{"shape":"GetMemberDetectorsRequest"},
443
- "output":{"shape":"GetMemberDetectorsResponse"},
444
- "errors":[
445
- {"shape":"BadRequestException"},
446
- {"shape":"InternalServerErrorException"}
447
- ]
448
- },
449
- "GetMembers":{
450
- "name":"GetMembers",
451
- "http":{
452
- "method":"POST",
453
- "requestUri":"/detector/{detectorId}/member/get",
454
- "responseCode":200
455
- },
456
- "input":{"shape":"GetMembersRequest"},
457
- "output":{"shape":"GetMembersResponse"},
458
- "errors":[
459
- {"shape":"BadRequestException"},
460
- {"shape":"InternalServerErrorException"}
461
- ]
462
- },
463
- "GetThreatIntelSet":{
464
- "name":"GetThreatIntelSet",
465
- "http":{
466
- "method":"GET",
467
- "requestUri":"/detector/{detectorId}/threatintelset/{threatIntelSetId}",
468
- "responseCode":200
469
- },
470
- "input":{"shape":"GetThreatIntelSetRequest"},
471
- "output":{"shape":"GetThreatIntelSetResponse"},
472
- "errors":[
473
- {"shape":"BadRequestException"},
474
- {"shape":"InternalServerErrorException"}
475
- ]
476
- },
477
- "GetUsageStatistics":{
478
- "name":"GetUsageStatistics",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/detector/{detectorId}/usage/statistics",
482
- "responseCode":200
483
- },
484
- "input":{"shape":"GetUsageStatisticsRequest"},
485
- "output":{"shape":"GetUsageStatisticsResponse"},
486
- "errors":[
487
- {"shape":"BadRequestException"},
488
- {"shape":"InternalServerErrorException"}
489
- ]
490
- },
491
- "InviteMembers":{
492
- "name":"InviteMembers",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/detector/{detectorId}/member/invite",
496
- "responseCode":200
497
- },
498
- "input":{"shape":"InviteMembersRequest"},
499
- "output":{"shape":"InviteMembersResponse"},
500
- "errors":[
501
- {"shape":"BadRequestException"},
502
- {"shape":"InternalServerErrorException"}
503
- ]
504
- },
505
- "ListDetectors":{
506
- "name":"ListDetectors",
507
- "http":{
508
- "method":"GET",
509
- "requestUri":"/detector",
510
- "responseCode":200
511
- },
512
- "input":{"shape":"ListDetectorsRequest"},
513
- "output":{"shape":"ListDetectorsResponse"},
514
- "errors":[
515
- {"shape":"BadRequestException"},
516
- {"shape":"InternalServerErrorException"}
517
- ]
518
- },
519
- "ListFilters":{
520
- "name":"ListFilters",
521
- "http":{
522
- "method":"GET",
523
- "requestUri":"/detector/{detectorId}/filter",
524
- "responseCode":200
525
- },
526
- "input":{"shape":"ListFiltersRequest"},
527
- "output":{"shape":"ListFiltersResponse"},
528
- "errors":[
529
- {"shape":"BadRequestException"},
530
- {"shape":"InternalServerErrorException"}
531
- ]
532
- },
533
- "ListFindings":{
534
- "name":"ListFindings",
535
- "http":{
536
- "method":"POST",
537
- "requestUri":"/detector/{detectorId}/findings",
538
- "responseCode":200
539
- },
540
- "input":{"shape":"ListFindingsRequest"},
541
- "output":{"shape":"ListFindingsResponse"},
542
- "errors":[
543
- {"shape":"BadRequestException"},
544
- {"shape":"InternalServerErrorException"}
545
- ]
546
- },
547
- "ListIPSets":{
548
- "name":"ListIPSets",
549
- "http":{
550
- "method":"GET",
551
- "requestUri":"/detector/{detectorId}/ipset",
552
- "responseCode":200
553
- },
554
- "input":{"shape":"ListIPSetsRequest"},
555
- "output":{"shape":"ListIPSetsResponse"},
556
- "errors":[
557
- {"shape":"BadRequestException"},
558
- {"shape":"InternalServerErrorException"}
559
- ]
560
- },
561
- "ListInvitations":{
562
- "name":"ListInvitations",
563
- "http":{
564
- "method":"GET",
565
- "requestUri":"/invitation",
566
- "responseCode":200
567
- },
568
- "input":{"shape":"ListInvitationsRequest"},
569
- "output":{"shape":"ListInvitationsResponse"},
570
- "errors":[
571
- {"shape":"BadRequestException"},
572
- {"shape":"InternalServerErrorException"}
573
- ]
574
- },
575
- "ListMembers":{
576
- "name":"ListMembers",
577
- "http":{
578
- "method":"GET",
579
- "requestUri":"/detector/{detectorId}/member",
580
- "responseCode":200
581
- },
582
- "input":{"shape":"ListMembersRequest"},
583
- "output":{"shape":"ListMembersResponse"},
584
- "errors":[
585
- {"shape":"BadRequestException"},
586
- {"shape":"InternalServerErrorException"}
587
- ]
588
- },
589
- "ListOrganizationAdminAccounts":{
590
- "name":"ListOrganizationAdminAccounts",
591
- "http":{
592
- "method":"GET",
593
- "requestUri":"/admin",
594
- "responseCode":200
595
- },
596
- "input":{"shape":"ListOrganizationAdminAccountsRequest"},
597
- "output":{"shape":"ListOrganizationAdminAccountsResponse"},
598
- "errors":[
599
- {"shape":"BadRequestException"},
600
- {"shape":"InternalServerErrorException"}
601
- ]
602
- },
603
- "ListPublishingDestinations":{
604
- "name":"ListPublishingDestinations",
605
- "http":{
606
- "method":"GET",
607
- "requestUri":"/detector/{detectorId}/publishingDestination",
608
- "responseCode":200
609
- },
610
- "input":{"shape":"ListPublishingDestinationsRequest"},
611
- "output":{"shape":"ListPublishingDestinationsResponse"},
612
- "errors":[
613
- {"shape":"BadRequestException"},
614
- {"shape":"InternalServerErrorException"}
615
- ]
616
- },
617
- "ListTagsForResource":{
618
- "name":"ListTagsForResource",
619
- "http":{
620
- "method":"GET",
621
- "requestUri":"/tags/{resourceArn}",
622
- "responseCode":200
623
- },
624
- "input":{"shape":"ListTagsForResourceRequest"},
625
- "output":{"shape":"ListTagsForResourceResponse"},
626
- "errors":[
627
- {"shape":"BadRequestException"},
628
- {"shape":"InternalServerErrorException"}
629
- ]
630
- },
631
- "ListThreatIntelSets":{
632
- "name":"ListThreatIntelSets",
633
- "http":{
634
- "method":"GET",
635
- "requestUri":"/detector/{detectorId}/threatintelset",
636
- "responseCode":200
637
- },
638
- "input":{"shape":"ListThreatIntelSetsRequest"},
639
- "output":{"shape":"ListThreatIntelSetsResponse"},
640
- "errors":[
641
- {"shape":"BadRequestException"},
642
- {"shape":"InternalServerErrorException"}
643
- ]
644
- },
645
- "StartMonitoringMembers":{
646
- "name":"StartMonitoringMembers",
647
- "http":{
648
- "method":"POST",
649
- "requestUri":"/detector/{detectorId}/member/start",
650
- "responseCode":200
651
- },
652
- "input":{"shape":"StartMonitoringMembersRequest"},
653
- "output":{"shape":"StartMonitoringMembersResponse"},
654
- "errors":[
655
- {"shape":"BadRequestException"},
656
- {"shape":"InternalServerErrorException"}
657
- ]
658
- },
659
- "StopMonitoringMembers":{
660
- "name":"StopMonitoringMembers",
661
- "http":{
662
- "method":"POST",
663
- "requestUri":"/detector/{detectorId}/member/stop",
664
- "responseCode":200
665
- },
666
- "input":{"shape":"StopMonitoringMembersRequest"},
667
- "output":{"shape":"StopMonitoringMembersResponse"},
668
- "errors":[
669
- {"shape":"BadRequestException"},
670
- {"shape":"InternalServerErrorException"}
671
- ]
672
- },
673
- "TagResource":{
674
- "name":"TagResource",
675
- "http":{
676
- "method":"POST",
677
- "requestUri":"/tags/{resourceArn}",
678
- "responseCode":204
679
- },
680
- "input":{"shape":"TagResourceRequest"},
681
- "output":{"shape":"TagResourceResponse"},
682
- "errors":[
683
- {"shape":"BadRequestException"},
684
- {"shape":"InternalServerErrorException"}
685
- ]
686
- },
687
- "UnarchiveFindings":{
688
- "name":"UnarchiveFindings",
689
- "http":{
690
- "method":"POST",
691
- "requestUri":"/detector/{detectorId}/findings/unarchive",
692
- "responseCode":200
693
- },
694
- "input":{"shape":"UnarchiveFindingsRequest"},
695
- "output":{"shape":"UnarchiveFindingsResponse"},
696
- "errors":[
697
- {"shape":"BadRequestException"},
698
- {"shape":"InternalServerErrorException"}
699
- ]
700
- },
701
- "UntagResource":{
702
- "name":"UntagResource",
703
- "http":{
704
- "method":"DELETE",
705
- "requestUri":"/tags/{resourceArn}",
706
- "responseCode":204
707
- },
708
- "input":{"shape":"UntagResourceRequest"},
709
- "output":{"shape":"UntagResourceResponse"},
710
- "errors":[
711
- {"shape":"BadRequestException"},
712
- {"shape":"InternalServerErrorException"}
713
- ]
714
- },
715
- "UpdateDetector":{
716
- "name":"UpdateDetector",
717
- "http":{
718
- "method":"POST",
719
- "requestUri":"/detector/{detectorId}",
720
- "responseCode":200
721
- },
722
- "input":{"shape":"UpdateDetectorRequest"},
723
- "output":{"shape":"UpdateDetectorResponse"},
724
- "errors":[
725
- {"shape":"BadRequestException"},
726
- {"shape":"InternalServerErrorException"}
727
- ]
728
- },
729
- "UpdateFilter":{
730
- "name":"UpdateFilter",
731
- "http":{
732
- "method":"POST",
733
- "requestUri":"/detector/{detectorId}/filter/{filterName}",
734
- "responseCode":200
735
- },
736
- "input":{"shape":"UpdateFilterRequest"},
737
- "output":{"shape":"UpdateFilterResponse"},
738
- "errors":[
739
- {"shape":"BadRequestException"},
740
- {"shape":"InternalServerErrorException"}
741
- ]
742
- },
743
- "UpdateFindingsFeedback":{
744
- "name":"UpdateFindingsFeedback",
745
- "http":{
746
- "method":"POST",
747
- "requestUri":"/detector/{detectorId}/findings/feedback",
748
- "responseCode":200
749
- },
750
- "input":{"shape":"UpdateFindingsFeedbackRequest"},
751
- "output":{"shape":"UpdateFindingsFeedbackResponse"},
752
- "errors":[
753
- {"shape":"BadRequestException"},
754
- {"shape":"InternalServerErrorException"}
755
- ]
756
- },
757
- "UpdateIPSet":{
758
- "name":"UpdateIPSet",
759
- "http":{
760
- "method":"POST",
761
- "requestUri":"/detector/{detectorId}/ipset/{ipSetId}",
762
- "responseCode":200
763
- },
764
- "input":{"shape":"UpdateIPSetRequest"},
765
- "output":{"shape":"UpdateIPSetResponse"},
766
- "errors":[
767
- {"shape":"BadRequestException"},
768
- {"shape":"InternalServerErrorException"}
769
- ]
770
- },
771
- "UpdateMemberDetectors":{
772
- "name":"UpdateMemberDetectors",
773
- "http":{
774
- "method":"POST",
775
- "requestUri":"/detector/{detectorId}/member/detector/update",
776
- "responseCode":200
777
- },
778
- "input":{"shape":"UpdateMemberDetectorsRequest"},
779
- "output":{"shape":"UpdateMemberDetectorsResponse"},
780
- "errors":[
781
- {"shape":"BadRequestException"},
782
- {"shape":"InternalServerErrorException"}
783
- ]
784
- },
785
- "UpdateOrganizationConfiguration":{
786
- "name":"UpdateOrganizationConfiguration",
787
- "http":{
788
- "method":"POST",
789
- "requestUri":"/detector/{detectorId}/admin",
790
- "responseCode":200
791
- },
792
- "input":{"shape":"UpdateOrganizationConfigurationRequest"},
793
- "output":{"shape":"UpdateOrganizationConfigurationResponse"},
794
- "errors":[
795
- {"shape":"BadRequestException"},
796
- {"shape":"InternalServerErrorException"}
797
- ]
798
- },
799
- "UpdatePublishingDestination":{
800
- "name":"UpdatePublishingDestination",
801
- "http":{
802
- "method":"POST",
803
- "requestUri":"/detector/{detectorId}/publishingDestination/{destinationId}",
804
- "responseCode":200
805
- },
806
- "input":{"shape":"UpdatePublishingDestinationRequest"},
807
- "output":{"shape":"UpdatePublishingDestinationResponse"},
808
- "errors":[
809
- {"shape":"BadRequestException"},
810
- {"shape":"InternalServerErrorException"}
811
- ]
812
- },
813
- "UpdateThreatIntelSet":{
814
- "name":"UpdateThreatIntelSet",
815
- "http":{
816
- "method":"POST",
817
- "requestUri":"/detector/{detectorId}/threatintelset/{threatIntelSetId}",
818
- "responseCode":200
819
- },
820
- "input":{"shape":"UpdateThreatIntelSetRequest"},
821
- "output":{"shape":"UpdateThreatIntelSetResponse"},
822
- "errors":[
823
- {"shape":"BadRequestException"},
824
- {"shape":"InternalServerErrorException"}
825
- ]
826
- }
827
- },
828
- "shapes":{
829
- "AcceptInvitationRequest":{
830
- "type":"structure",
831
- "required":[
832
- "DetectorId",
833
- "MasterId",
834
- "InvitationId"
835
- ],
836
- "members":{
837
- "DetectorId":{
838
- "shape":"DetectorId",
839
- "location":"uri",
840
- "locationName":"detectorId"
841
- },
842
- "MasterId":{
843
- "shape":"String",
844
- "locationName":"masterId"
845
- },
846
- "InvitationId":{
847
- "shape":"String",
848
- "locationName":"invitationId"
849
- }
850
- }
851
- },
852
- "AcceptInvitationResponse":{
853
- "type":"structure",
854
- "members":{
855
- }
856
- },
857
- "AccessControlList":{
858
- "type":"structure",
859
- "members":{
860
- "AllowsPublicReadAccess":{
861
- "shape":"Boolean",
862
- "locationName":"allowsPublicReadAccess"
863
- },
864
- "AllowsPublicWriteAccess":{
865
- "shape":"Boolean",
866
- "locationName":"allowsPublicWriteAccess"
867
- }
868
- }
869
- },
870
- "AccessKeyDetails":{
871
- "type":"structure",
872
- "members":{
873
- "AccessKeyId":{
874
- "shape":"String",
875
- "locationName":"accessKeyId"
876
- },
877
- "PrincipalId":{
878
- "shape":"String",
879
- "locationName":"principalId"
880
- },
881
- "UserName":{
882
- "shape":"String",
883
- "locationName":"userName"
884
- },
885
- "UserType":{
886
- "shape":"String",
887
- "locationName":"userType"
888
- }
889
- }
890
- },
891
- "AccountDetail":{
892
- "type":"structure",
893
- "required":[
894
- "AccountId",
895
- "Email"
896
- ],
897
- "members":{
898
- "AccountId":{
899
- "shape":"AccountId",
900
- "locationName":"accountId"
901
- },
902
- "Email":{
903
- "shape":"Email",
904
- "locationName":"email"
905
- }
906
- }
907
- },
908
- "AccountDetails":{
909
- "type":"list",
910
- "member":{"shape":"AccountDetail"},
911
- "max":50,
912
- "min":1
913
- },
914
- "AccountId":{
915
- "type":"string",
916
- "max":12,
917
- "min":12
918
- },
919
- "AccountIds":{
920
- "type":"list",
921
- "member":{"shape":"AccountId"},
922
- "max":50,
923
- "min":1
924
- },
925
- "AccountLevelPermissions":{
926
- "type":"structure",
927
- "members":{
928
- "BlockPublicAccess":{
929
- "shape":"BlockPublicAccess",
930
- "locationName":"blockPublicAccess"
931
- }
932
- }
933
- },
934
- "Action":{
935
- "type":"structure",
936
- "members":{
937
- "ActionType":{
938
- "shape":"String",
939
- "locationName":"actionType"
940
- },
941
- "AwsApiCallAction":{
942
- "shape":"AwsApiCallAction",
943
- "locationName":"awsApiCallAction"
944
- },
945
- "DnsRequestAction":{
946
- "shape":"DnsRequestAction",
947
- "locationName":"dnsRequestAction"
948
- },
949
- "NetworkConnectionAction":{
950
- "shape":"NetworkConnectionAction",
951
- "locationName":"networkConnectionAction"
952
- },
953
- "PortProbeAction":{
954
- "shape":"PortProbeAction",
955
- "locationName":"portProbeAction"
956
- }
957
- }
958
- },
959
- "AdminAccount":{
960
- "type":"structure",
961
- "members":{
962
- "AdminAccountId":{
963
- "shape":"String",
964
- "locationName":"adminAccountId"
965
- },
966
- "AdminStatus":{
967
- "shape":"AdminStatus",
968
- "locationName":"adminStatus"
969
- }
970
- }
971
- },
972
- "AdminAccounts":{
973
- "type":"list",
974
- "member":{"shape":"AdminAccount"},
975
- "max":1,
976
- "min":0
977
- },
978
- "AdminStatus":{
979
- "type":"string",
980
- "enum":[
981
- "ENABLED",
982
- "DISABLE_IN_PROGRESS"
983
- ],
984
- "max":300,
985
- "min":1
986
- },
987
- "ArchiveFindingsRequest":{
988
- "type":"structure",
989
- "required":[
990
- "DetectorId",
991
- "FindingIds"
992
- ],
993
- "members":{
994
- "DetectorId":{
995
- "shape":"DetectorId",
996
- "location":"uri",
997
- "locationName":"detectorId"
998
- },
999
- "FindingIds":{
1000
- "shape":"FindingIds",
1001
- "locationName":"findingIds"
1002
- }
1003
- }
1004
- },
1005
- "ArchiveFindingsResponse":{
1006
- "type":"structure",
1007
- "members":{
1008
- }
1009
- },
1010
- "AwsApiCallAction":{
1011
- "type":"structure",
1012
- "members":{
1013
- "Api":{
1014
- "shape":"String",
1015
- "locationName":"api"
1016
- },
1017
- "CallerType":{
1018
- "shape":"String",
1019
- "locationName":"callerType"
1020
- },
1021
- "DomainDetails":{
1022
- "shape":"DomainDetails",
1023
- "locationName":"domainDetails"
1024
- },
1025
- "ErrorCode":{
1026
- "shape":"String",
1027
- "locationName":"errorCode"
1028
- },
1029
- "RemoteIpDetails":{
1030
- "shape":"RemoteIpDetails",
1031
- "locationName":"remoteIpDetails"
1032
- },
1033
- "ServiceName":{
1034
- "shape":"String",
1035
- "locationName":"serviceName"
1036
- }
1037
- }
1038
- },
1039
- "BadRequestException":{
1040
- "type":"structure",
1041
- "members":{
1042
- "Message":{
1043
- "shape":"String",
1044
- "locationName":"message"
1045
- },
1046
- "Type":{
1047
- "shape":"String",
1048
- "locationName":"__type"
1049
- }
1050
- },
1051
- "error":{"httpStatusCode":400},
1052
- "exception":true
1053
- },
1054
- "BlockPublicAccess":{
1055
- "type":"structure",
1056
- "members":{
1057
- "IgnorePublicAcls":{
1058
- "shape":"Boolean",
1059
- "locationName":"ignorePublicAcls"
1060
- },
1061
- "RestrictPublicBuckets":{
1062
- "shape":"Boolean",
1063
- "locationName":"restrictPublicBuckets"
1064
- },
1065
- "BlockPublicAcls":{
1066
- "shape":"Boolean",
1067
- "locationName":"blockPublicAcls"
1068
- },
1069
- "BlockPublicPolicy":{
1070
- "shape":"Boolean",
1071
- "locationName":"blockPublicPolicy"
1072
- }
1073
- }
1074
- },
1075
- "Boolean":{"type":"boolean"},
1076
- "BucketLevelPermissions":{
1077
- "type":"structure",
1078
- "members":{
1079
- "AccessControlList":{
1080
- "shape":"AccessControlList",
1081
- "locationName":"accessControlList"
1082
- },
1083
- "BucketPolicy":{
1084
- "shape":"BucketPolicy",
1085
- "locationName":"bucketPolicy"
1086
- },
1087
- "BlockPublicAccess":{
1088
- "shape":"BlockPublicAccess",
1089
- "locationName":"blockPublicAccess"
1090
- }
1091
- }
1092
- },
1093
- "BucketPolicy":{
1094
- "type":"structure",
1095
- "members":{
1096
- "AllowsPublicReadAccess":{
1097
- "shape":"Boolean",
1098
- "locationName":"allowsPublicReadAccess"
1099
- },
1100
- "AllowsPublicWriteAccess":{
1101
- "shape":"Boolean",
1102
- "locationName":"allowsPublicWriteAccess"
1103
- }
1104
- }
1105
- },
1106
- "City":{
1107
- "type":"structure",
1108
- "members":{
1109
- "CityName":{
1110
- "shape":"String",
1111
- "locationName":"cityName"
1112
- }
1113
- }
1114
- },
1115
- "ClientToken":{
1116
- "type":"string",
1117
- "max":64,
1118
- "min":0
1119
- },
1120
- "CloudTrailConfigurationResult":{
1121
- "type":"structure",
1122
- "required":["Status"],
1123
- "members":{
1124
- "Status":{
1125
- "shape":"DataSourceStatus",
1126
- "locationName":"status"
1127
- }
1128
- }
1129
- },
1130
- "Condition":{
1131
- "type":"structure",
1132
- "members":{
1133
- "Eq":{
1134
- "shape":"Eq",
1135
- "deprecated":true,
1136
- "locationName":"eq"
1137
- },
1138
- "Neq":{
1139
- "shape":"Neq",
1140
- "deprecated":true,
1141
- "locationName":"neq"
1142
- },
1143
- "Gt":{
1144
- "shape":"Integer",
1145
- "deprecated":true,
1146
- "locationName":"gt"
1147
- },
1148
- "Gte":{
1149
- "shape":"Integer",
1150
- "deprecated":true,
1151
- "locationName":"gte"
1152
- },
1153
- "Lt":{
1154
- "shape":"Integer",
1155
- "deprecated":true,
1156
- "locationName":"lt"
1157
- },
1158
- "Lte":{
1159
- "shape":"Integer",
1160
- "deprecated":true,
1161
- "locationName":"lte"
1162
- },
1163
- "Equals":{
1164
- "shape":"Equals",
1165
- "locationName":"equals"
1166
- },
1167
- "NotEquals":{
1168
- "shape":"NotEquals",
1169
- "locationName":"notEquals"
1170
- },
1171
- "GreaterThan":{
1172
- "shape":"Long",
1173
- "locationName":"greaterThan"
1174
- },
1175
- "GreaterThanOrEqual":{
1176
- "shape":"Long",
1177
- "locationName":"greaterThanOrEqual"
1178
- },
1179
- "LessThan":{
1180
- "shape":"Long",
1181
- "locationName":"lessThan"
1182
- },
1183
- "LessThanOrEqual":{
1184
- "shape":"Long",
1185
- "locationName":"lessThanOrEqual"
1186
- }
1187
- }
1188
- },
1189
- "CountBySeverity":{
1190
- "type":"map",
1191
- "key":{"shape":"String"},
1192
- "value":{"shape":"Integer"}
1193
- },
1194
- "Country":{
1195
- "type":"structure",
1196
- "members":{
1197
- "CountryCode":{
1198
- "shape":"String",
1199
- "locationName":"countryCode"
1200
- },
1201
- "CountryName":{
1202
- "shape":"String",
1203
- "locationName":"countryName"
1204
- }
1205
- }
1206
- },
1207
- "CreateDetectorRequest":{
1208
- "type":"structure",
1209
- "required":["Enable"],
1210
- "members":{
1211
- "Enable":{
1212
- "shape":"Boolean",
1213
- "locationName":"enable"
1214
- },
1215
- "ClientToken":{
1216
- "shape":"ClientToken",
1217
- "idempotencyToken":true,
1218
- "locationName":"clientToken"
1219
- },
1220
- "FindingPublishingFrequency":{
1221
- "shape":"FindingPublishingFrequency",
1222
- "locationName":"findingPublishingFrequency"
1223
- },
1224
- "DataSources":{
1225
- "shape":"DataSourceConfigurations",
1226
- "locationName":"dataSources"
1227
- },
1228
- "Tags":{
1229
- "shape":"TagMap",
1230
- "locationName":"tags"
1231
- }
1232
- }
1233
- },
1234
- "CreateDetectorResponse":{
1235
- "type":"structure",
1236
- "members":{
1237
- "DetectorId":{
1238
- "shape":"DetectorId",
1239
- "locationName":"detectorId"
1240
- }
1241
- }
1242
- },
1243
- "CreateFilterRequest":{
1244
- "type":"structure",
1245
- "required":[
1246
- "DetectorId",
1247
- "Name",
1248
- "FindingCriteria"
1249
- ],
1250
- "members":{
1251
- "DetectorId":{
1252
- "shape":"DetectorId",
1253
- "location":"uri",
1254
- "locationName":"detectorId"
1255
- },
1256
- "Name":{
1257
- "shape":"FilterName",
1258
- "locationName":"name"
1259
- },
1260
- "Description":{
1261
- "shape":"FilterDescription",
1262
- "locationName":"description"
1263
- },
1264
- "Action":{
1265
- "shape":"FilterAction",
1266
- "locationName":"action"
1267
- },
1268
- "Rank":{
1269
- "shape":"FilterRank",
1270
- "locationName":"rank"
1271
- },
1272
- "FindingCriteria":{
1273
- "shape":"FindingCriteria",
1274
- "locationName":"findingCriteria"
1275
- },
1276
- "ClientToken":{
1277
- "shape":"ClientToken",
1278
- "idempotencyToken":true,
1279
- "locationName":"clientToken"
1280
- },
1281
- "Tags":{
1282
- "shape":"TagMap",
1283
- "locationName":"tags"
1284
- }
1285
- }
1286
- },
1287
- "CreateFilterResponse":{
1288
- "type":"structure",
1289
- "required":["Name"],
1290
- "members":{
1291
- "Name":{
1292
- "shape":"FilterName",
1293
- "locationName":"name"
1294
- }
1295
- }
1296
- },
1297
- "CreateIPSetRequest":{
1298
- "type":"structure",
1299
- "required":[
1300
- "DetectorId",
1301
- "Name",
1302
- "Format",
1303
- "Location",
1304
- "Activate"
1305
- ],
1306
- "members":{
1307
- "DetectorId":{
1308
- "shape":"DetectorId",
1309
- "location":"uri",
1310
- "locationName":"detectorId"
1311
- },
1312
- "Name":{
1313
- "shape":"Name",
1314
- "locationName":"name"
1315
- },
1316
- "Format":{
1317
- "shape":"IpSetFormat",
1318
- "locationName":"format"
1319
- },
1320
- "Location":{
1321
- "shape":"Location",
1322
- "locationName":"location"
1323
- },
1324
- "Activate":{
1325
- "shape":"Boolean",
1326
- "locationName":"activate"
1327
- },
1328
- "ClientToken":{
1329
- "shape":"ClientToken",
1330
- "idempotencyToken":true,
1331
- "locationName":"clientToken"
1332
- },
1333
- "Tags":{
1334
- "shape":"TagMap",
1335
- "locationName":"tags"
1336
- }
1337
- }
1338
- },
1339
- "CreateIPSetResponse":{
1340
- "type":"structure",
1341
- "required":["IpSetId"],
1342
- "members":{
1343
- "IpSetId":{
1344
- "shape":"String",
1345
- "locationName":"ipSetId"
1346
- }
1347
- }
1348
- },
1349
- "CreateMembersRequest":{
1350
- "type":"structure",
1351
- "required":[
1352
- "DetectorId",
1353
- "AccountDetails"
1354
- ],
1355
- "members":{
1356
- "DetectorId":{
1357
- "shape":"DetectorId",
1358
- "location":"uri",
1359
- "locationName":"detectorId"
1360
- },
1361
- "AccountDetails":{
1362
- "shape":"AccountDetails",
1363
- "locationName":"accountDetails"
1364
- }
1365
- }
1366
- },
1367
- "CreateMembersResponse":{
1368
- "type":"structure",
1369
- "required":["UnprocessedAccounts"],
1370
- "members":{
1371
- "UnprocessedAccounts":{
1372
- "shape":"UnprocessedAccounts",
1373
- "locationName":"unprocessedAccounts"
1374
- }
1375
- }
1376
- },
1377
- "CreatePublishingDestinationRequest":{
1378
- "type":"structure",
1379
- "required":[
1380
- "DetectorId",
1381
- "DestinationType",
1382
- "DestinationProperties"
1383
- ],
1384
- "members":{
1385
- "DetectorId":{
1386
- "shape":"DetectorId",
1387
- "location":"uri",
1388
- "locationName":"detectorId"
1389
- },
1390
- "DestinationType":{
1391
- "shape":"DestinationType",
1392
- "locationName":"destinationType"
1393
- },
1394
- "DestinationProperties":{
1395
- "shape":"DestinationProperties",
1396
- "locationName":"destinationProperties"
1397
- },
1398
- "ClientToken":{
1399
- "shape":"ClientToken",
1400
- "idempotencyToken":true,
1401
- "locationName":"clientToken"
1402
- }
1403
- }
1404
- },
1405
- "CreatePublishingDestinationResponse":{
1406
- "type":"structure",
1407
- "required":["DestinationId"],
1408
- "members":{
1409
- "DestinationId":{
1410
- "shape":"String",
1411
- "locationName":"destinationId"
1412
- }
1413
- }
1414
- },
1415
- "CreateSampleFindingsRequest":{
1416
- "type":"structure",
1417
- "required":["DetectorId"],
1418
- "members":{
1419
- "DetectorId":{
1420
- "shape":"DetectorId",
1421
- "location":"uri",
1422
- "locationName":"detectorId"
1423
- },
1424
- "FindingTypes":{
1425
- "shape":"FindingTypes",
1426
- "locationName":"findingTypes"
1427
- }
1428
- }
1429
- },
1430
- "CreateSampleFindingsResponse":{
1431
- "type":"structure",
1432
- "members":{
1433
- }
1434
- },
1435
- "CreateThreatIntelSetRequest":{
1436
- "type":"structure",
1437
- "required":[
1438
- "DetectorId",
1439
- "Name",
1440
- "Format",
1441
- "Location",
1442
- "Activate"
1443
- ],
1444
- "members":{
1445
- "DetectorId":{
1446
- "shape":"DetectorId",
1447
- "location":"uri",
1448
- "locationName":"detectorId"
1449
- },
1450
- "Name":{
1451
- "shape":"Name",
1452
- "locationName":"name"
1453
- },
1454
- "Format":{
1455
- "shape":"ThreatIntelSetFormat",
1456
- "locationName":"format"
1457
- },
1458
- "Location":{
1459
- "shape":"Location",
1460
- "locationName":"location"
1461
- },
1462
- "Activate":{
1463
- "shape":"Boolean",
1464
- "locationName":"activate"
1465
- },
1466
- "ClientToken":{
1467
- "shape":"ClientToken",
1468
- "idempotencyToken":true,
1469
- "locationName":"clientToken"
1470
- },
1471
- "Tags":{
1472
- "shape":"TagMap",
1473
- "locationName":"tags"
1474
- }
1475
- }
1476
- },
1477
- "CreateThreatIntelSetResponse":{
1478
- "type":"structure",
1479
- "required":["ThreatIntelSetId"],
1480
- "members":{
1481
- "ThreatIntelSetId":{
1482
- "shape":"String",
1483
- "locationName":"threatIntelSetId"
1484
- }
1485
- }
1486
- },
1487
- "Criterion":{
1488
- "type":"map",
1489
- "key":{"shape":"String"},
1490
- "value":{"shape":"Condition"}
1491
- },
1492
- "DNSLogsConfigurationResult":{
1493
- "type":"structure",
1494
- "required":["Status"],
1495
- "members":{
1496
- "Status":{
1497
- "shape":"DataSourceStatus",
1498
- "locationName":"status"
1499
- }
1500
- }
1501
- },
1502
- "DataSource":{
1503
- "type":"string",
1504
- "enum":[
1505
- "FLOW_LOGS",
1506
- "CLOUD_TRAIL",
1507
- "DNS_LOGS",
1508
- "S3_LOGS"
1509
- ]
1510
- },
1511
- "DataSourceConfigurations":{
1512
- "type":"structure",
1513
- "members":{
1514
- "S3Logs":{
1515
- "shape":"S3LogsConfiguration",
1516
- "locationName":"s3Logs"
1517
- }
1518
- }
1519
- },
1520
- "DataSourceConfigurationsResult":{
1521
- "type":"structure",
1522
- "required":[
1523
- "CloudTrail",
1524
- "DNSLogs",
1525
- "FlowLogs",
1526
- "S3Logs"
1527
- ],
1528
- "members":{
1529
- "CloudTrail":{
1530
- "shape":"CloudTrailConfigurationResult",
1531
- "locationName":"cloudTrail"
1532
- },
1533
- "DNSLogs":{
1534
- "shape":"DNSLogsConfigurationResult",
1535
- "locationName":"dnsLogs"
1536
- },
1537
- "FlowLogs":{
1538
- "shape":"FlowLogsConfigurationResult",
1539
- "locationName":"flowLogs"
1540
- },
1541
- "S3Logs":{
1542
- "shape":"S3LogsConfigurationResult",
1543
- "locationName":"s3Logs"
1544
- }
1545
- }
1546
- },
1547
- "DataSourceList":{
1548
- "type":"list",
1549
- "member":{"shape":"DataSource"}
1550
- },
1551
- "DataSourceStatus":{
1552
- "type":"string",
1553
- "enum":[
1554
- "ENABLED",
1555
- "DISABLED"
1556
- ],
1557
- "max":300,
1558
- "min":1
1559
- },
1560
- "DeclineInvitationsRequest":{
1561
- "type":"structure",
1562
- "required":["AccountIds"],
1563
- "members":{
1564
- "AccountIds":{
1565
- "shape":"AccountIds",
1566
- "locationName":"accountIds"
1567
- }
1568
- }
1569
- },
1570
- "DeclineInvitationsResponse":{
1571
- "type":"structure",
1572
- "required":["UnprocessedAccounts"],
1573
- "members":{
1574
- "UnprocessedAccounts":{
1575
- "shape":"UnprocessedAccounts",
1576
- "locationName":"unprocessedAccounts"
1577
- }
1578
- }
1579
- },
1580
- "DefaultServerSideEncryption":{
1581
- "type":"structure",
1582
- "members":{
1583
- "EncryptionType":{
1584
- "shape":"String",
1585
- "locationName":"encryptionType"
1586
- },
1587
- "KmsMasterKeyArn":{
1588
- "shape":"String",
1589
- "locationName":"kmsMasterKeyArn"
1590
- }
1591
- }
1592
- },
1593
- "DeleteDetectorRequest":{
1594
- "type":"structure",
1595
- "required":["DetectorId"],
1596
- "members":{
1597
- "DetectorId":{
1598
- "shape":"DetectorId",
1599
- "location":"uri",
1600
- "locationName":"detectorId"
1601
- }
1602
- }
1603
- },
1604
- "DeleteDetectorResponse":{
1605
- "type":"structure",
1606
- "members":{
1607
- }
1608
- },
1609
- "DeleteFilterRequest":{
1610
- "type":"structure",
1611
- "required":[
1612
- "DetectorId",
1613
- "FilterName"
1614
- ],
1615
- "members":{
1616
- "DetectorId":{
1617
- "shape":"DetectorId",
1618
- "location":"uri",
1619
- "locationName":"detectorId"
1620
- },
1621
- "FilterName":{
1622
- "shape":"String",
1623
- "location":"uri",
1624
- "locationName":"filterName"
1625
- }
1626
- }
1627
- },
1628
- "DeleteFilterResponse":{
1629
- "type":"structure",
1630
- "members":{
1631
- }
1632
- },
1633
- "DeleteIPSetRequest":{
1634
- "type":"structure",
1635
- "required":[
1636
- "DetectorId",
1637
- "IpSetId"
1638
- ],
1639
- "members":{
1640
- "DetectorId":{
1641
- "shape":"DetectorId",
1642
- "location":"uri",
1643
- "locationName":"detectorId"
1644
- },
1645
- "IpSetId":{
1646
- "shape":"String",
1647
- "location":"uri",
1648
- "locationName":"ipSetId"
1649
- }
1650
- }
1651
- },
1652
- "DeleteIPSetResponse":{
1653
- "type":"structure",
1654
- "members":{
1655
- }
1656
- },
1657
- "DeleteInvitationsRequest":{
1658
- "type":"structure",
1659
- "required":["AccountIds"],
1660
- "members":{
1661
- "AccountIds":{
1662
- "shape":"AccountIds",
1663
- "locationName":"accountIds"
1664
- }
1665
- }
1666
- },
1667
- "DeleteInvitationsResponse":{
1668
- "type":"structure",
1669
- "required":["UnprocessedAccounts"],
1670
- "members":{
1671
- "UnprocessedAccounts":{
1672
- "shape":"UnprocessedAccounts",
1673
- "locationName":"unprocessedAccounts"
1674
- }
1675
- }
1676
- },
1677
- "DeleteMembersRequest":{
1678
- "type":"structure",
1679
- "required":[
1680
- "DetectorId",
1681
- "AccountIds"
1682
- ],
1683
- "members":{
1684
- "DetectorId":{
1685
- "shape":"DetectorId",
1686
- "location":"uri",
1687
- "locationName":"detectorId"
1688
- },
1689
- "AccountIds":{
1690
- "shape":"AccountIds",
1691
- "locationName":"accountIds"
1692
- }
1693
- }
1694
- },
1695
- "DeleteMembersResponse":{
1696
- "type":"structure",
1697
- "required":["UnprocessedAccounts"],
1698
- "members":{
1699
- "UnprocessedAccounts":{
1700
- "shape":"UnprocessedAccounts",
1701
- "locationName":"unprocessedAccounts"
1702
- }
1703
- }
1704
- },
1705
- "DeletePublishingDestinationRequest":{
1706
- "type":"structure",
1707
- "required":[
1708
- "DetectorId",
1709
- "DestinationId"
1710
- ],
1711
- "members":{
1712
- "DetectorId":{
1713
- "shape":"DetectorId",
1714
- "location":"uri",
1715
- "locationName":"detectorId"
1716
- },
1717
- "DestinationId":{
1718
- "shape":"String",
1719
- "location":"uri",
1720
- "locationName":"destinationId"
1721
- }
1722
- }
1723
- },
1724
- "DeletePublishingDestinationResponse":{
1725
- "type":"structure",
1726
- "members":{
1727
- }
1728
- },
1729
- "DeleteThreatIntelSetRequest":{
1730
- "type":"structure",
1731
- "required":[
1732
- "DetectorId",
1733
- "ThreatIntelSetId"
1734
- ],
1735
- "members":{
1736
- "DetectorId":{
1737
- "shape":"DetectorId",
1738
- "location":"uri",
1739
- "locationName":"detectorId"
1740
- },
1741
- "ThreatIntelSetId":{
1742
- "shape":"String",
1743
- "location":"uri",
1744
- "locationName":"threatIntelSetId"
1745
- }
1746
- }
1747
- },
1748
- "DeleteThreatIntelSetResponse":{
1749
- "type":"structure",
1750
- "members":{
1751
- }
1752
- },
1753
- "DescribeOrganizationConfigurationRequest":{
1754
- "type":"structure",
1755
- "required":["DetectorId"],
1756
- "members":{
1757
- "DetectorId":{
1758
- "shape":"DetectorId",
1759
- "location":"uri",
1760
- "locationName":"detectorId"
1761
- }
1762
- }
1763
- },
1764
- "DescribeOrganizationConfigurationResponse":{
1765
- "type":"structure",
1766
- "required":[
1767
- "AutoEnable",
1768
- "MemberAccountLimitReached"
1769
- ],
1770
- "members":{
1771
- "AutoEnable":{
1772
- "shape":"Boolean",
1773
- "locationName":"autoEnable"
1774
- },
1775
- "MemberAccountLimitReached":{
1776
- "shape":"Boolean",
1777
- "locationName":"memberAccountLimitReached"
1778
- },
1779
- "DataSources":{
1780
- "shape":"OrganizationDataSourceConfigurationsResult",
1781
- "locationName":"dataSources"
1782
- }
1783
- }
1784
- },
1785
- "DescribePublishingDestinationRequest":{
1786
- "type":"structure",
1787
- "required":[
1788
- "DetectorId",
1789
- "DestinationId"
1790
- ],
1791
- "members":{
1792
- "DetectorId":{
1793
- "shape":"DetectorId",
1794
- "location":"uri",
1795
- "locationName":"detectorId"
1796
- },
1797
- "DestinationId":{
1798
- "shape":"String",
1799
- "location":"uri",
1800
- "locationName":"destinationId"
1801
- }
1802
- }
1803
- },
1804
- "DescribePublishingDestinationResponse":{
1805
- "type":"structure",
1806
- "required":[
1807
- "DestinationId",
1808
- "DestinationType",
1809
- "Status",
1810
- "PublishingFailureStartTimestamp",
1811
- "DestinationProperties"
1812
- ],
1813
- "members":{
1814
- "DestinationId":{
1815
- "shape":"String",
1816
- "locationName":"destinationId"
1817
- },
1818
- "DestinationType":{
1819
- "shape":"DestinationType",
1820
- "locationName":"destinationType"
1821
- },
1822
- "Status":{
1823
- "shape":"PublishingStatus",
1824
- "locationName":"status"
1825
- },
1826
- "PublishingFailureStartTimestamp":{
1827
- "shape":"Long",
1828
- "locationName":"publishingFailureStartTimestamp"
1829
- },
1830
- "DestinationProperties":{
1831
- "shape":"DestinationProperties",
1832
- "locationName":"destinationProperties"
1833
- }
1834
- }
1835
- },
1836
- "Destination":{
1837
- "type":"structure",
1838
- "required":[
1839
- "DestinationId",
1840
- "DestinationType",
1841
- "Status"
1842
- ],
1843
- "members":{
1844
- "DestinationId":{
1845
- "shape":"String",
1846
- "locationName":"destinationId"
1847
- },
1848
- "DestinationType":{
1849
- "shape":"DestinationType",
1850
- "locationName":"destinationType"
1851
- },
1852
- "Status":{
1853
- "shape":"PublishingStatus",
1854
- "locationName":"status"
1855
- }
1856
- }
1857
- },
1858
- "DestinationProperties":{
1859
- "type":"structure",
1860
- "members":{
1861
- "DestinationArn":{
1862
- "shape":"String",
1863
- "locationName":"destinationArn"
1864
- },
1865
- "KmsKeyArn":{
1866
- "shape":"String",
1867
- "locationName":"kmsKeyArn"
1868
- }
1869
- }
1870
- },
1871
- "DestinationType":{
1872
- "type":"string",
1873
- "enum":["S3"],
1874
- "max":300,
1875
- "min":1
1876
- },
1877
- "Destinations":{
1878
- "type":"list",
1879
- "member":{"shape":"Destination"}
1880
- },
1881
- "DetectorId":{
1882
- "type":"string",
1883
- "max":300,
1884
- "min":1
1885
- },
1886
- "DetectorIds":{
1887
- "type":"list",
1888
- "member":{"shape":"DetectorId"},
1889
- "max":50,
1890
- "min":0
1891
- },
1892
- "DetectorStatus":{
1893
- "type":"string",
1894
- "enum":[
1895
- "ENABLED",
1896
- "DISABLED"
1897
- ],
1898
- "max":300,
1899
- "min":1
1900
- },
1901
- "DisableOrganizationAdminAccountRequest":{
1902
- "type":"structure",
1903
- "required":["AdminAccountId"],
1904
- "members":{
1905
- "AdminAccountId":{
1906
- "shape":"String",
1907
- "locationName":"adminAccountId"
1908
- }
1909
- }
1910
- },
1911
- "DisableOrganizationAdminAccountResponse":{
1912
- "type":"structure",
1913
- "members":{
1914
- }
1915
- },
1916
- "DisassociateFromMasterAccountRequest":{
1917
- "type":"structure",
1918
- "required":["DetectorId"],
1919
- "members":{
1920
- "DetectorId":{
1921
- "shape":"DetectorId",
1922
- "location":"uri",
1923
- "locationName":"detectorId"
1924
- }
1925
- }
1926
- },
1927
- "DisassociateFromMasterAccountResponse":{
1928
- "type":"structure",
1929
- "members":{
1930
- }
1931
- },
1932
- "DisassociateMembersRequest":{
1933
- "type":"structure",
1934
- "required":[
1935
- "DetectorId",
1936
- "AccountIds"
1937
- ],
1938
- "members":{
1939
- "DetectorId":{
1940
- "shape":"DetectorId",
1941
- "location":"uri",
1942
- "locationName":"detectorId"
1943
- },
1944
- "AccountIds":{
1945
- "shape":"AccountIds",
1946
- "locationName":"accountIds"
1947
- }
1948
- }
1949
- },
1950
- "DisassociateMembersResponse":{
1951
- "type":"structure",
1952
- "required":["UnprocessedAccounts"],
1953
- "members":{
1954
- "UnprocessedAccounts":{
1955
- "shape":"UnprocessedAccounts",
1956
- "locationName":"unprocessedAccounts"
1957
- }
1958
- }
1959
- },
1960
- "DnsRequestAction":{
1961
- "type":"structure",
1962
- "members":{
1963
- "Domain":{
1964
- "shape":"String",
1965
- "locationName":"domain"
1966
- }
1967
- }
1968
- },
1969
- "DomainDetails":{
1970
- "type":"structure",
1971
- "members":{
1972
- "Domain":{
1973
- "shape":"String",
1974
- "locationName":"domain"
1975
- }
1976
- }
1977
- },
1978
- "Double":{"type":"double"},
1979
- "Email":{
1980
- "type":"string",
1981
- "max":64,
1982
- "min":1
1983
- },
1984
- "EnableOrganizationAdminAccountRequest":{
1985
- "type":"structure",
1986
- "required":["AdminAccountId"],
1987
- "members":{
1988
- "AdminAccountId":{
1989
- "shape":"String",
1990
- "locationName":"adminAccountId"
1991
- }
1992
- }
1993
- },
1994
- "EnableOrganizationAdminAccountResponse":{
1995
- "type":"structure",
1996
- "members":{
1997
- }
1998
- },
1999
- "Eq":{
2000
- "type":"list",
2001
- "member":{"shape":"String"}
2002
- },
2003
- "Equals":{
2004
- "type":"list",
2005
- "member":{"shape":"String"}
2006
- },
2007
- "Evidence":{
2008
- "type":"structure",
2009
- "members":{
2010
- "ThreatIntelligenceDetails":{
2011
- "shape":"ThreatIntelligenceDetails",
2012
- "locationName":"threatIntelligenceDetails"
2013
- }
2014
- }
2015
- },
2016
- "Feedback":{
2017
- "type":"string",
2018
- "enum":[
2019
- "USEFUL",
2020
- "NOT_USEFUL"
2021
- ]
2022
- },
2023
- "FilterAction":{
2024
- "type":"string",
2025
- "enum":[
2026
- "NOOP",
2027
- "ARCHIVE"
2028
- ],
2029
- "max":300,
2030
- "min":1
2031
- },
2032
- "FilterDescription":{
2033
- "type":"string",
2034
- "max":512,
2035
- "min":0
2036
- },
2037
- "FilterName":{
2038
- "type":"string",
2039
- "max":64,
2040
- "min":3
2041
- },
2042
- "FilterNames":{
2043
- "type":"list",
2044
- "member":{"shape":"FilterName"},
2045
- "max":50,
2046
- "min":0
2047
- },
2048
- "FilterRank":{
2049
- "type":"integer",
2050
- "max":100,
2051
- "min":1
2052
- },
2053
- "Finding":{
2054
- "type":"structure",
2055
- "required":[
2056
- "AccountId",
2057
- "Arn",
2058
- "CreatedAt",
2059
- "Id",
2060
- "Region",
2061
- "Resource",
2062
- "SchemaVersion",
2063
- "Severity",
2064
- "Type",
2065
- "UpdatedAt"
2066
- ],
2067
- "members":{
2068
- "AccountId":{
2069
- "shape":"String",
2070
- "locationName":"accountId"
2071
- },
2072
- "Arn":{
2073
- "shape":"String",
2074
- "locationName":"arn"
2075
- },
2076
- "Confidence":{
2077
- "shape":"Double",
2078
- "locationName":"confidence"
2079
- },
2080
- "CreatedAt":{
2081
- "shape":"String",
2082
- "locationName":"createdAt"
2083
- },
2084
- "Description":{
2085
- "shape":"String",
2086
- "locationName":"description"
2087
- },
2088
- "Id":{
2089
- "shape":"String",
2090
- "locationName":"id"
2091
- },
2092
- "Partition":{
2093
- "shape":"String",
2094
- "locationName":"partition"
2095
- },
2096
- "Region":{
2097
- "shape":"String",
2098
- "locationName":"region"
2099
- },
2100
- "Resource":{
2101
- "shape":"Resource",
2102
- "locationName":"resource"
2103
- },
2104
- "SchemaVersion":{
2105
- "shape":"String",
2106
- "locationName":"schemaVersion"
2107
- },
2108
- "Service":{
2109
- "shape":"Service",
2110
- "locationName":"service"
2111
- },
2112
- "Severity":{
2113
- "shape":"Double",
2114
- "locationName":"severity"
2115
- },
2116
- "Title":{
2117
- "shape":"String",
2118
- "locationName":"title"
2119
- },
2120
- "Type":{
2121
- "shape":"FindingType",
2122
- "locationName":"type"
2123
- },
2124
- "UpdatedAt":{
2125
- "shape":"String",
2126
- "locationName":"updatedAt"
2127
- }
2128
- }
2129
- },
2130
- "FindingCriteria":{
2131
- "type":"structure",
2132
- "members":{
2133
- "Criterion":{
2134
- "shape":"Criterion",
2135
- "locationName":"criterion"
2136
- }
2137
- }
2138
- },
2139
- "FindingId":{
2140
- "type":"string",
2141
- "max":300,
2142
- "min":1
2143
- },
2144
- "FindingIds":{
2145
- "type":"list",
2146
- "member":{"shape":"FindingId"},
2147
- "max":50,
2148
- "min":0
2149
- },
2150
- "FindingPublishingFrequency":{
2151
- "type":"string",
2152
- "enum":[
2153
- "FIFTEEN_MINUTES",
2154
- "ONE_HOUR",
2155
- "SIX_HOURS"
2156
- ]
2157
- },
2158
- "FindingStatisticType":{
2159
- "type":"string",
2160
- "enum":["COUNT_BY_SEVERITY"]
2161
- },
2162
- "FindingStatisticTypes":{
2163
- "type":"list",
2164
- "member":{"shape":"FindingStatisticType"},
2165
- "max":10,
2166
- "min":0
2167
- },
2168
- "FindingStatistics":{
2169
- "type":"structure",
2170
- "members":{
2171
- "CountBySeverity":{
2172
- "shape":"CountBySeverity",
2173
- "locationName":"countBySeverity"
2174
- }
2175
- }
2176
- },
2177
- "FindingType":{
2178
- "type":"string",
2179
- "max":50,
2180
- "min":1
2181
- },
2182
- "FindingTypes":{
2183
- "type":"list",
2184
- "member":{"shape":"FindingType"},
2185
- "max":50,
2186
- "min":0
2187
- },
2188
- "Findings":{
2189
- "type":"list",
2190
- "member":{"shape":"Finding"},
2191
- "max":50,
2192
- "min":0
2193
- },
2194
- "FlowLogsConfigurationResult":{
2195
- "type":"structure",
2196
- "required":["Status"],
2197
- "members":{
2198
- "Status":{
2199
- "shape":"DataSourceStatus",
2200
- "locationName":"status"
2201
- }
2202
- }
2203
- },
2204
- "GeoLocation":{
2205
- "type":"structure",
2206
- "members":{
2207
- "Lat":{
2208
- "shape":"Double",
2209
- "locationName":"lat"
2210
- },
2211
- "Lon":{
2212
- "shape":"Double",
2213
- "locationName":"lon"
2214
- }
2215
- }
2216
- },
2217
- "GetDetectorRequest":{
2218
- "type":"structure",
2219
- "required":["DetectorId"],
2220
- "members":{
2221
- "DetectorId":{
2222
- "shape":"DetectorId",
2223
- "location":"uri",
2224
- "locationName":"detectorId"
2225
- }
2226
- }
2227
- },
2228
- "GetDetectorResponse":{
2229
- "type":"structure",
2230
- "required":[
2231
- "ServiceRole",
2232
- "Status"
2233
- ],
2234
- "members":{
2235
- "CreatedAt":{
2236
- "shape":"String",
2237
- "locationName":"createdAt"
2238
- },
2239
- "FindingPublishingFrequency":{
2240
- "shape":"FindingPublishingFrequency",
2241
- "locationName":"findingPublishingFrequency"
2242
- },
2243
- "ServiceRole":{
2244
- "shape":"String",
2245
- "locationName":"serviceRole"
2246
- },
2247
- "Status":{
2248
- "shape":"DetectorStatus",
2249
- "locationName":"status"
2250
- },
2251
- "UpdatedAt":{
2252
- "shape":"String",
2253
- "locationName":"updatedAt"
2254
- },
2255
- "DataSources":{
2256
- "shape":"DataSourceConfigurationsResult",
2257
- "locationName":"dataSources"
2258
- },
2259
- "Tags":{
2260
- "shape":"TagMap",
2261
- "locationName":"tags"
2262
- }
2263
- }
2264
- },
2265
- "GetFilterRequest":{
2266
- "type":"structure",
2267
- "required":[
2268
- "DetectorId",
2269
- "FilterName"
2270
- ],
2271
- "members":{
2272
- "DetectorId":{
2273
- "shape":"DetectorId",
2274
- "location":"uri",
2275
- "locationName":"detectorId"
2276
- },
2277
- "FilterName":{
2278
- "shape":"String",
2279
- "location":"uri",
2280
- "locationName":"filterName"
2281
- }
2282
- }
2283
- },
2284
- "GetFilterResponse":{
2285
- "type":"structure",
2286
- "required":[
2287
- "Name",
2288
- "Action",
2289
- "FindingCriteria"
2290
- ],
2291
- "members":{
2292
- "Name":{
2293
- "shape":"FilterName",
2294
- "locationName":"name"
2295
- },
2296
- "Description":{
2297
- "shape":"FilterDescription",
2298
- "locationName":"description"
2299
- },
2300
- "Action":{
2301
- "shape":"FilterAction",
2302
- "locationName":"action"
2303
- },
2304
- "Rank":{
2305
- "shape":"FilterRank",
2306
- "locationName":"rank"
2307
- },
2308
- "FindingCriteria":{
2309
- "shape":"FindingCriteria",
2310
- "locationName":"findingCriteria"
2311
- },
2312
- "Tags":{
2313
- "shape":"TagMap",
2314
- "locationName":"tags"
2315
- }
2316
- }
2317
- },
2318
- "GetFindingsRequest":{
2319
- "type":"structure",
2320
- "required":[
2321
- "DetectorId",
2322
- "FindingIds"
2323
- ],
2324
- "members":{
2325
- "DetectorId":{
2326
- "shape":"DetectorId",
2327
- "location":"uri",
2328
- "locationName":"detectorId"
2329
- },
2330
- "FindingIds":{
2331
- "shape":"FindingIds",
2332
- "locationName":"findingIds"
2333
- },
2334
- "SortCriteria":{
2335
- "shape":"SortCriteria",
2336
- "locationName":"sortCriteria"
2337
- }
2338
- }
2339
- },
2340
- "GetFindingsResponse":{
2341
- "type":"structure",
2342
- "required":["Findings"],
2343
- "members":{
2344
- "Findings":{
2345
- "shape":"Findings",
2346
- "locationName":"findings"
2347
- }
2348
- }
2349
- },
2350
- "GetFindingsStatisticsRequest":{
2351
- "type":"structure",
2352
- "required":[
2353
- "DetectorId",
2354
- "FindingStatisticTypes"
2355
- ],
2356
- "members":{
2357
- "DetectorId":{
2358
- "shape":"DetectorId",
2359
- "location":"uri",
2360
- "locationName":"detectorId"
2361
- },
2362
- "FindingStatisticTypes":{
2363
- "shape":"FindingStatisticTypes",
2364
- "locationName":"findingStatisticTypes"
2365
- },
2366
- "FindingCriteria":{
2367
- "shape":"FindingCriteria",
2368
- "locationName":"findingCriteria"
2369
- }
2370
- }
2371
- },
2372
- "GetFindingsStatisticsResponse":{
2373
- "type":"structure",
2374
- "required":["FindingStatistics"],
2375
- "members":{
2376
- "FindingStatistics":{
2377
- "shape":"FindingStatistics",
2378
- "locationName":"findingStatistics"
2379
- }
2380
- }
2381
- },
2382
- "GetIPSetRequest":{
2383
- "type":"structure",
2384
- "required":[
2385
- "DetectorId",
2386
- "IpSetId"
2387
- ],
2388
- "members":{
2389
- "DetectorId":{
2390
- "shape":"DetectorId",
2391
- "location":"uri",
2392
- "locationName":"detectorId"
2393
- },
2394
- "IpSetId":{
2395
- "shape":"String",
2396
- "location":"uri",
2397
- "locationName":"ipSetId"
2398
- }
2399
- }
2400
- },
2401
- "GetIPSetResponse":{
2402
- "type":"structure",
2403
- "required":[
2404
- "Name",
2405
- "Format",
2406
- "Location",
2407
- "Status"
2408
- ],
2409
- "members":{
2410
- "Name":{
2411
- "shape":"Name",
2412
- "locationName":"name"
2413
- },
2414
- "Format":{
2415
- "shape":"IpSetFormat",
2416
- "locationName":"format"
2417
- },
2418
- "Location":{
2419
- "shape":"Location",
2420
- "locationName":"location"
2421
- },
2422
- "Status":{
2423
- "shape":"IpSetStatus",
2424
- "locationName":"status"
2425
- },
2426
- "Tags":{
2427
- "shape":"TagMap",
2428
- "locationName":"tags"
2429
- }
2430
- }
2431
- },
2432
- "GetInvitationsCountRequest":{
2433
- "type":"structure",
2434
- "members":{
2435
- }
2436
- },
2437
- "GetInvitationsCountResponse":{
2438
- "type":"structure",
2439
- "members":{
2440
- "InvitationsCount":{
2441
- "shape":"Integer",
2442
- "locationName":"invitationsCount"
2443
- }
2444
- }
2445
- },
2446
- "GetMasterAccountRequest":{
2447
- "type":"structure",
2448
- "required":["DetectorId"],
2449
- "members":{
2450
- "DetectorId":{
2451
- "shape":"DetectorId",
2452
- "location":"uri",
2453
- "locationName":"detectorId"
2454
- }
2455
- }
2456
- },
2457
- "GetMasterAccountResponse":{
2458
- "type":"structure",
2459
- "required":["Master"],
2460
- "members":{
2461
- "Master":{
2462
- "shape":"Master",
2463
- "locationName":"master"
2464
- }
2465
- }
2466
- },
2467
- "GetMemberDetectorsRequest":{
2468
- "type":"structure",
2469
- "required":[
2470
- "DetectorId",
2471
- "AccountIds"
2472
- ],
2473
- "members":{
2474
- "DetectorId":{
2475
- "shape":"DetectorId",
2476
- "location":"uri",
2477
- "locationName":"detectorId"
2478
- },
2479
- "AccountIds":{
2480
- "shape":"AccountIds",
2481
- "locationName":"accountIds"
2482
- }
2483
- }
2484
- },
2485
- "GetMemberDetectorsResponse":{
2486
- "type":"structure",
2487
- "required":[
2488
- "MemberDataSourceConfigurations",
2489
- "UnprocessedAccounts"
2490
- ],
2491
- "members":{
2492
- "MemberDataSourceConfigurations":{
2493
- "shape":"MemberDataSourceConfigurations",
2494
- "locationName":"members"
2495
- },
2496
- "UnprocessedAccounts":{
2497
- "shape":"UnprocessedAccounts",
2498
- "locationName":"unprocessedAccounts"
2499
- }
2500
- }
2501
- },
2502
- "GetMembersRequest":{
2503
- "type":"structure",
2504
- "required":[
2505
- "DetectorId",
2506
- "AccountIds"
2507
- ],
2508
- "members":{
2509
- "DetectorId":{
2510
- "shape":"DetectorId",
2511
- "location":"uri",
2512
- "locationName":"detectorId"
2513
- },
2514
- "AccountIds":{
2515
- "shape":"AccountIds",
2516
- "locationName":"accountIds"
2517
- }
2518
- }
2519
- },
2520
- "GetMembersResponse":{
2521
- "type":"structure",
2522
- "required":[
2523
- "Members",
2524
- "UnprocessedAccounts"
2525
- ],
2526
- "members":{
2527
- "Members":{
2528
- "shape":"Members",
2529
- "locationName":"members"
2530
- },
2531
- "UnprocessedAccounts":{
2532
- "shape":"UnprocessedAccounts",
2533
- "locationName":"unprocessedAccounts"
2534
- }
2535
- }
2536
- },
2537
- "GetThreatIntelSetRequest":{
2538
- "type":"structure",
2539
- "required":[
2540
- "DetectorId",
2541
- "ThreatIntelSetId"
2542
- ],
2543
- "members":{
2544
- "DetectorId":{
2545
- "shape":"DetectorId",
2546
- "location":"uri",
2547
- "locationName":"detectorId"
2548
- },
2549
- "ThreatIntelSetId":{
2550
- "shape":"String",
2551
- "location":"uri",
2552
- "locationName":"threatIntelSetId"
2553
- }
2554
- }
2555
- },
2556
- "GetThreatIntelSetResponse":{
2557
- "type":"structure",
2558
- "required":[
2559
- "Name",
2560
- "Format",
2561
- "Location",
2562
- "Status"
2563
- ],
2564
- "members":{
2565
- "Name":{
2566
- "shape":"Name",
2567
- "locationName":"name"
2568
- },
2569
- "Format":{
2570
- "shape":"ThreatIntelSetFormat",
2571
- "locationName":"format"
2572
- },
2573
- "Location":{
2574
- "shape":"Location",
2575
- "locationName":"location"
2576
- },
2577
- "Status":{
2578
- "shape":"ThreatIntelSetStatus",
2579
- "locationName":"status"
2580
- },
2581
- "Tags":{
2582
- "shape":"TagMap",
2583
- "locationName":"tags"
2584
- }
2585
- }
2586
- },
2587
- "GetUsageStatisticsRequest":{
2588
- "type":"structure",
2589
- "required":[
2590
- "DetectorId",
2591
- "UsageStatisticType",
2592
- "UsageCriteria"
2593
- ],
2594
- "members":{
2595
- "DetectorId":{
2596
- "shape":"DetectorId",
2597
- "location":"uri",
2598
- "locationName":"detectorId"
2599
- },
2600
- "UsageStatisticType":{
2601
- "shape":"UsageStatisticType",
2602
- "locationName":"usageStatisticsType"
2603
- },
2604
- "UsageCriteria":{
2605
- "shape":"UsageCriteria",
2606
- "locationName":"usageCriteria"
2607
- },
2608
- "Unit":{
2609
- "shape":"String",
2610
- "locationName":"unit"
2611
- },
2612
- "MaxResults":{
2613
- "shape":"MaxResults",
2614
- "locationName":"maxResults"
2615
- },
2616
- "NextToken":{
2617
- "shape":"String",
2618
- "locationName":"nextToken"
2619
- }
2620
- }
2621
- },
2622
- "GetUsageStatisticsResponse":{
2623
- "type":"structure",
2624
- "members":{
2625
- "UsageStatistics":{
2626
- "shape":"UsageStatistics",
2627
- "locationName":"usageStatistics"
2628
- },
2629
- "NextToken":{
2630
- "shape":"String",
2631
- "locationName":"nextToken"
2632
- }
2633
- }
2634
- },
2635
- "GuardDutyArn":{
2636
- "type":"string",
2637
- "pattern":"^arn:[A-Za-z_.-]{1,20}:guardduty:[A-Za-z0-9_/.-]{0,63}:\\d+:detector/[A-Za-z0-9_/.-]{32,264}$"
2638
- },
2639
- "IamInstanceProfile":{
2640
- "type":"structure",
2641
- "members":{
2642
- "Arn":{
2643
- "shape":"String",
2644
- "locationName":"arn"
2645
- },
2646
- "Id":{
2647
- "shape":"String",
2648
- "locationName":"id"
2649
- }
2650
- }
2651
- },
2652
- "InstanceDetails":{
2653
- "type":"structure",
2654
- "members":{
2655
- "AvailabilityZone":{
2656
- "shape":"String",
2657
- "locationName":"availabilityZone"
2658
- },
2659
- "IamInstanceProfile":{
2660
- "shape":"IamInstanceProfile",
2661
- "locationName":"iamInstanceProfile"
2662
- },
2663
- "ImageDescription":{
2664
- "shape":"String",
2665
- "locationName":"imageDescription"
2666
- },
2667
- "ImageId":{
2668
- "shape":"String",
2669
- "locationName":"imageId"
2670
- },
2671
- "InstanceId":{
2672
- "shape":"String",
2673
- "locationName":"instanceId"
2674
- },
2675
- "InstanceState":{
2676
- "shape":"String",
2677
- "locationName":"instanceState"
2678
- },
2679
- "InstanceType":{
2680
- "shape":"String",
2681
- "locationName":"instanceType"
2682
- },
2683
- "OutpostArn":{
2684
- "shape":"String",
2685
- "locationName":"outpostArn"
2686
- },
2687
- "LaunchTime":{
2688
- "shape":"String",
2689
- "locationName":"launchTime"
2690
- },
2691
- "NetworkInterfaces":{
2692
- "shape":"NetworkInterfaces",
2693
- "locationName":"networkInterfaces"
2694
- },
2695
- "Platform":{
2696
- "shape":"String",
2697
- "locationName":"platform"
2698
- },
2699
- "ProductCodes":{
2700
- "shape":"ProductCodes",
2701
- "locationName":"productCodes"
2702
- },
2703
- "Tags":{
2704
- "shape":"Tags",
2705
- "locationName":"tags"
2706
- }
2707
- }
2708
- },
2709
- "Integer":{"type":"integer"},
2710
- "InternalServerErrorException":{
2711
- "type":"structure",
2712
- "members":{
2713
- "Message":{
2714
- "shape":"String",
2715
- "locationName":"message"
2716
- },
2717
- "Type":{
2718
- "shape":"String",
2719
- "locationName":"__type"
2720
- }
2721
- },
2722
- "error":{"httpStatusCode":500},
2723
- "exception":true
2724
- },
2725
- "Invitation":{
2726
- "type":"structure",
2727
- "members":{
2728
- "AccountId":{
2729
- "shape":"AccountId",
2730
- "locationName":"accountId"
2731
- },
2732
- "InvitationId":{
2733
- "shape":"String",
2734
- "locationName":"invitationId"
2735
- },
2736
- "RelationshipStatus":{
2737
- "shape":"String",
2738
- "locationName":"relationshipStatus"
2739
- },
2740
- "InvitedAt":{
2741
- "shape":"String",
2742
- "locationName":"invitedAt"
2743
- }
2744
- }
2745
- },
2746
- "Invitations":{
2747
- "type":"list",
2748
- "member":{"shape":"Invitation"},
2749
- "max":50,
2750
- "min":0
2751
- },
2752
- "InviteMembersRequest":{
2753
- "type":"structure",
2754
- "required":[
2755
- "DetectorId",
2756
- "AccountIds"
2757
- ],
2758
- "members":{
2759
- "DetectorId":{
2760
- "shape":"DetectorId",
2761
- "location":"uri",
2762
- "locationName":"detectorId"
2763
- },
2764
- "AccountIds":{
2765
- "shape":"AccountIds",
2766
- "locationName":"accountIds"
2767
- },
2768
- "DisableEmailNotification":{
2769
- "shape":"Boolean",
2770
- "locationName":"disableEmailNotification"
2771
- },
2772
- "Message":{
2773
- "shape":"String",
2774
- "locationName":"message"
2775
- }
2776
- }
2777
- },
2778
- "InviteMembersResponse":{
2779
- "type":"structure",
2780
- "required":["UnprocessedAccounts"],
2781
- "members":{
2782
- "UnprocessedAccounts":{
2783
- "shape":"UnprocessedAccounts",
2784
- "locationName":"unprocessedAccounts"
2785
- }
2786
- }
2787
- },
2788
- "IpSetFormat":{
2789
- "type":"string",
2790
- "enum":[
2791
- "TXT",
2792
- "STIX",
2793
- "OTX_CSV",
2794
- "ALIEN_VAULT",
2795
- "PROOF_POINT",
2796
- "FIRE_EYE"
2797
- ],
2798
- "max":300,
2799
- "min":1
2800
- },
2801
- "IpSetIds":{
2802
- "type":"list",
2803
- "member":{"shape":"String"},
2804
- "max":50,
2805
- "min":0
2806
- },
2807
- "IpSetStatus":{
2808
- "type":"string",
2809
- "enum":[
2810
- "INACTIVE",
2811
- "ACTIVATING",
2812
- "ACTIVE",
2813
- "DEACTIVATING",
2814
- "ERROR",
2815
- "DELETE_PENDING",
2816
- "DELETED"
2817
- ],
2818
- "max":300,
2819
- "min":1
2820
- },
2821
- "Ipv6Addresses":{
2822
- "type":"list",
2823
- "member":{"shape":"String"}
2824
- },
2825
- "ListDetectorsRequest":{
2826
- "type":"structure",
2827
- "members":{
2828
- "MaxResults":{
2829
- "shape":"MaxResults",
2830
- "location":"querystring",
2831
- "locationName":"maxResults"
2832
- },
2833
- "NextToken":{
2834
- "shape":"String",
2835
- "location":"querystring",
2836
- "locationName":"nextToken"
2837
- }
2838
- }
2839
- },
2840
- "ListDetectorsResponse":{
2841
- "type":"structure",
2842
- "required":["DetectorIds"],
2843
- "members":{
2844
- "DetectorIds":{
2845
- "shape":"DetectorIds",
2846
- "locationName":"detectorIds"
2847
- },
2848
- "NextToken":{
2849
- "shape":"String",
2850
- "locationName":"nextToken"
2851
- }
2852
- }
2853
- },
2854
- "ListFiltersRequest":{
2855
- "type":"structure",
2856
- "required":["DetectorId"],
2857
- "members":{
2858
- "DetectorId":{
2859
- "shape":"DetectorId",
2860
- "location":"uri",
2861
- "locationName":"detectorId"
2862
- },
2863
- "MaxResults":{
2864
- "shape":"MaxResults",
2865
- "location":"querystring",
2866
- "locationName":"maxResults"
2867
- },
2868
- "NextToken":{
2869
- "shape":"String",
2870
- "location":"querystring",
2871
- "locationName":"nextToken"
2872
- }
2873
- }
2874
- },
2875
- "ListFiltersResponse":{
2876
- "type":"structure",
2877
- "required":["FilterNames"],
2878
- "members":{
2879
- "FilterNames":{
2880
- "shape":"FilterNames",
2881
- "locationName":"filterNames"
2882
- },
2883
- "NextToken":{
2884
- "shape":"String",
2885
- "locationName":"nextToken"
2886
- }
2887
- }
2888
- },
2889
- "ListFindingsRequest":{
2890
- "type":"structure",
2891
- "required":["DetectorId"],
2892
- "members":{
2893
- "DetectorId":{
2894
- "shape":"DetectorId",
2895
- "location":"uri",
2896
- "locationName":"detectorId"
2897
- },
2898
- "FindingCriteria":{
2899
- "shape":"FindingCriteria",
2900
- "locationName":"findingCriteria"
2901
- },
2902
- "SortCriteria":{
2903
- "shape":"SortCriteria",
2904
- "locationName":"sortCriteria"
2905
- },
2906
- "MaxResults":{
2907
- "shape":"MaxResults",
2908
- "locationName":"maxResults"
2909
- },
2910
- "NextToken":{
2911
- "shape":"String",
2912
- "locationName":"nextToken"
2913
- }
2914
- }
2915
- },
2916
- "ListFindingsResponse":{
2917
- "type":"structure",
2918
- "required":["FindingIds"],
2919
- "members":{
2920
- "FindingIds":{
2921
- "shape":"FindingIds",
2922
- "locationName":"findingIds"
2923
- },
2924
- "NextToken":{
2925
- "shape":"String",
2926
- "locationName":"nextToken"
2927
- }
2928
- }
2929
- },
2930
- "ListIPSetsRequest":{
2931
- "type":"structure",
2932
- "required":["DetectorId"],
2933
- "members":{
2934
- "DetectorId":{
2935
- "shape":"DetectorId",
2936
- "location":"uri",
2937
- "locationName":"detectorId"
2938
- },
2939
- "MaxResults":{
2940
- "shape":"MaxResults",
2941
- "location":"querystring",
2942
- "locationName":"maxResults"
2943
- },
2944
- "NextToken":{
2945
- "shape":"String",
2946
- "location":"querystring",
2947
- "locationName":"nextToken"
2948
- }
2949
- }
2950
- },
2951
- "ListIPSetsResponse":{
2952
- "type":"structure",
2953
- "required":["IpSetIds"],
2954
- "members":{
2955
- "IpSetIds":{
2956
- "shape":"IpSetIds",
2957
- "locationName":"ipSetIds"
2958
- },
2959
- "NextToken":{
2960
- "shape":"String",
2961
- "locationName":"nextToken"
2962
- }
2963
- }
2964
- },
2965
- "ListInvitationsRequest":{
2966
- "type":"structure",
2967
- "members":{
2968
- "MaxResults":{
2969
- "shape":"MaxResults",
2970
- "location":"querystring",
2971
- "locationName":"maxResults"
2972
- },
2973
- "NextToken":{
2974
- "shape":"String",
2975
- "location":"querystring",
2976
- "locationName":"nextToken"
2977
- }
2978
- }
2979
- },
2980
- "ListInvitationsResponse":{
2981
- "type":"structure",
2982
- "members":{
2983
- "Invitations":{
2984
- "shape":"Invitations",
2985
- "locationName":"invitations"
2986
- },
2987
- "NextToken":{
2988
- "shape":"String",
2989
- "locationName":"nextToken"
2990
- }
2991
- }
2992
- },
2993
- "ListMembersRequest":{
2994
- "type":"structure",
2995
- "required":["DetectorId"],
2996
- "members":{
2997
- "DetectorId":{
2998
- "shape":"DetectorId",
2999
- "location":"uri",
3000
- "locationName":"detectorId"
3001
- },
3002
- "MaxResults":{
3003
- "shape":"MaxResults",
3004
- "location":"querystring",
3005
- "locationName":"maxResults"
3006
- },
3007
- "NextToken":{
3008
- "shape":"String",
3009
- "location":"querystring",
3010
- "locationName":"nextToken"
3011
- },
3012
- "OnlyAssociated":{
3013
- "shape":"String",
3014
- "location":"querystring",
3015
- "locationName":"onlyAssociated"
3016
- }
3017
- }
3018
- },
3019
- "ListMembersResponse":{
3020
- "type":"structure",
3021
- "members":{
3022
- "Members":{
3023
- "shape":"Members",
3024
- "locationName":"members"
3025
- },
3026
- "NextToken":{
3027
- "shape":"String",
3028
- "locationName":"nextToken"
3029
- }
3030
- }
3031
- },
3032
- "ListOrganizationAdminAccountsRequest":{
3033
- "type":"structure",
3034
- "members":{
3035
- "MaxResults":{
3036
- "shape":"MaxResults",
3037
- "location":"querystring",
3038
- "locationName":"maxResults"
3039
- },
3040
- "NextToken":{
3041
- "shape":"String",
3042
- "location":"querystring",
3043
- "locationName":"nextToken"
3044
- }
3045
- }
3046
- },
3047
- "ListOrganizationAdminAccountsResponse":{
3048
- "type":"structure",
3049
- "members":{
3050
- "AdminAccounts":{
3051
- "shape":"AdminAccounts",
3052
- "locationName":"adminAccounts"
3053
- },
3054
- "NextToken":{
3055
- "shape":"String",
3056
- "locationName":"nextToken"
3057
- }
3058
- }
3059
- },
3060
- "ListPublishingDestinationsRequest":{
3061
- "type":"structure",
3062
- "required":["DetectorId"],
3063
- "members":{
3064
- "DetectorId":{
3065
- "shape":"DetectorId",
3066
- "location":"uri",
3067
- "locationName":"detectorId"
3068
- },
3069
- "MaxResults":{
3070
- "shape":"MaxResults",
3071
- "location":"querystring",
3072
- "locationName":"maxResults"
3073
- },
3074
- "NextToken":{
3075
- "shape":"String",
3076
- "location":"querystring",
3077
- "locationName":"nextToken"
3078
- }
3079
- }
3080
- },
3081
- "ListPublishingDestinationsResponse":{
3082
- "type":"structure",
3083
- "required":["Destinations"],
3084
- "members":{
3085
- "Destinations":{
3086
- "shape":"Destinations",
3087
- "locationName":"destinations"
3088
- },
3089
- "NextToken":{
3090
- "shape":"String",
3091
- "locationName":"nextToken"
3092
- }
3093
- }
3094
- },
3095
- "ListTagsForResourceRequest":{
3096
- "type":"structure",
3097
- "required":["ResourceArn"],
3098
- "members":{
3099
- "ResourceArn":{
3100
- "shape":"GuardDutyArn",
3101
- "location":"uri",
3102
- "locationName":"resourceArn"
3103
- }
3104
- }
3105
- },
3106
- "ListTagsForResourceResponse":{
3107
- "type":"structure",
3108
- "members":{
3109
- "Tags":{
3110
- "shape":"TagMap",
3111
- "locationName":"tags"
3112
- }
3113
- }
3114
- },
3115
- "ListThreatIntelSetsRequest":{
3116
- "type":"structure",
3117
- "required":["DetectorId"],
3118
- "members":{
3119
- "DetectorId":{
3120
- "shape":"DetectorId",
3121
- "location":"uri",
3122
- "locationName":"detectorId"
3123
- },
3124
- "MaxResults":{
3125
- "shape":"MaxResults",
3126
- "location":"querystring",
3127
- "locationName":"maxResults"
3128
- },
3129
- "NextToken":{
3130
- "shape":"String",
3131
- "location":"querystring",
3132
- "locationName":"nextToken"
3133
- }
3134
- }
3135
- },
3136
- "ListThreatIntelSetsResponse":{
3137
- "type":"structure",
3138
- "required":["ThreatIntelSetIds"],
3139
- "members":{
3140
- "ThreatIntelSetIds":{
3141
- "shape":"ThreatIntelSetIds",
3142
- "locationName":"threatIntelSetIds"
3143
- },
3144
- "NextToken":{
3145
- "shape":"String",
3146
- "locationName":"nextToken"
3147
- }
3148
- }
3149
- },
3150
- "LocalIpDetails":{
3151
- "type":"structure",
3152
- "members":{
3153
- "IpAddressV4":{
3154
- "shape":"String",
3155
- "locationName":"ipAddressV4"
3156
- }
3157
- }
3158
- },
3159
- "LocalPortDetails":{
3160
- "type":"structure",
3161
- "members":{
3162
- "Port":{
3163
- "shape":"Integer",
3164
- "locationName":"port"
3165
- },
3166
- "PortName":{
3167
- "shape":"String",
3168
- "locationName":"portName"
3169
- }
3170
- }
3171
- },
3172
- "Location":{
3173
- "type":"string",
3174
- "max":300,
3175
- "min":1
3176
- },
3177
- "Long":{"type":"long"},
3178
- "Master":{
3179
- "type":"structure",
3180
- "members":{
3181
- "AccountId":{
3182
- "shape":"AccountId",
3183
- "locationName":"accountId"
3184
- },
3185
- "InvitationId":{
3186
- "shape":"String",
3187
- "locationName":"invitationId"
3188
- },
3189
- "RelationshipStatus":{
3190
- "shape":"String",
3191
- "locationName":"relationshipStatus"
3192
- },
3193
- "InvitedAt":{
3194
- "shape":"String",
3195
- "locationName":"invitedAt"
3196
- }
3197
- }
3198
- },
3199
- "MaxResults":{
3200
- "type":"integer",
3201
- "max":50,
3202
- "min":1
3203
- },
3204
- "Member":{
3205
- "type":"structure",
3206
- "required":[
3207
- "AccountId",
3208
- "MasterId",
3209
- "Email",
3210
- "RelationshipStatus",
3211
- "UpdatedAt"
3212
- ],
3213
- "members":{
3214
- "AccountId":{
3215
- "shape":"AccountId",
3216
- "locationName":"accountId"
3217
- },
3218
- "DetectorId":{
3219
- "shape":"DetectorId",
3220
- "locationName":"detectorId"
3221
- },
3222
- "MasterId":{
3223
- "shape":"String",
3224
- "locationName":"masterId"
3225
- },
3226
- "Email":{
3227
- "shape":"Email",
3228
- "locationName":"email"
3229
- },
3230
- "RelationshipStatus":{
3231
- "shape":"String",
3232
- "locationName":"relationshipStatus"
3233
- },
3234
- "InvitedAt":{
3235
- "shape":"String",
3236
- "locationName":"invitedAt"
3237
- },
3238
- "UpdatedAt":{
3239
- "shape":"String",
3240
- "locationName":"updatedAt"
3241
- }
3242
- }
3243
- },
3244
- "MemberDataSourceConfiguration":{
3245
- "type":"structure",
3246
- "required":[
3247
- "AccountId",
3248
- "DataSources"
3249
- ],
3250
- "members":{
3251
- "AccountId":{
3252
- "shape":"AccountId",
3253
- "locationName":"accountId"
3254
- },
3255
- "DataSources":{
3256
- "shape":"DataSourceConfigurationsResult",
3257
- "locationName":"dataSources"
3258
- }
3259
- }
3260
- },
3261
- "MemberDataSourceConfigurations":{
3262
- "type":"list",
3263
- "member":{"shape":"MemberDataSourceConfiguration"},
3264
- "max":50,
3265
- "min":1
3266
- },
3267
- "Members":{
3268
- "type":"list",
3269
- "member":{"shape":"Member"},
3270
- "max":50,
3271
- "min":0
3272
- },
3273
- "Name":{
3274
- "type":"string",
3275
- "max":300,
3276
- "min":1
3277
- },
3278
- "Neq":{
3279
- "type":"list",
3280
- "member":{"shape":"String"}
3281
- },
3282
- "NetworkConnectionAction":{
3283
- "type":"structure",
3284
- "members":{
3285
- "Blocked":{
3286
- "shape":"Boolean",
3287
- "locationName":"blocked"
3288
- },
3289
- "ConnectionDirection":{
3290
- "shape":"String",
3291
- "locationName":"connectionDirection"
3292
- },
3293
- "LocalPortDetails":{
3294
- "shape":"LocalPortDetails",
3295
- "locationName":"localPortDetails"
3296
- },
3297
- "Protocol":{
3298
- "shape":"String",
3299
- "locationName":"protocol"
3300
- },
3301
- "LocalIpDetails":{
3302
- "shape":"LocalIpDetails",
3303
- "locationName":"localIpDetails"
3304
- },
3305
- "RemoteIpDetails":{
3306
- "shape":"RemoteIpDetails",
3307
- "locationName":"remoteIpDetails"
3308
- },
3309
- "RemotePortDetails":{
3310
- "shape":"RemotePortDetails",
3311
- "locationName":"remotePortDetails"
3312
- }
3313
- }
3314
- },
3315
- "NetworkInterface":{
3316
- "type":"structure",
3317
- "members":{
3318
- "Ipv6Addresses":{
3319
- "shape":"Ipv6Addresses",
3320
- "locationName":"ipv6Addresses"
3321
- },
3322
- "NetworkInterfaceId":{
3323
- "shape":"String",
3324
- "locationName":"networkInterfaceId"
3325
- },
3326
- "PrivateDnsName":{
3327
- "shape":"String",
3328
- "locationName":"privateDnsName"
3329
- },
3330
- "PrivateIpAddress":{
3331
- "shape":"String",
3332
- "locationName":"privateIpAddress"
3333
- },
3334
- "PrivateIpAddresses":{
3335
- "shape":"PrivateIpAddresses",
3336
- "locationName":"privateIpAddresses"
3337
- },
3338
- "PublicDnsName":{
3339
- "shape":"String",
3340
- "locationName":"publicDnsName"
3341
- },
3342
- "PublicIp":{
3343
- "shape":"String",
3344
- "locationName":"publicIp"
3345
- },
3346
- "SecurityGroups":{
3347
- "shape":"SecurityGroups",
3348
- "locationName":"securityGroups"
3349
- },
3350
- "SubnetId":{
3351
- "shape":"String",
3352
- "locationName":"subnetId"
3353
- },
3354
- "VpcId":{
3355
- "shape":"String",
3356
- "locationName":"vpcId"
3357
- }
3358
- }
3359
- },
3360
- "NetworkInterfaces":{
3361
- "type":"list",
3362
- "member":{"shape":"NetworkInterface"}
3363
- },
3364
- "NotEquals":{
3365
- "type":"list",
3366
- "member":{"shape":"String"}
3367
- },
3368
- "OrderBy":{
3369
- "type":"string",
3370
- "enum":[
3371
- "ASC",
3372
- "DESC"
3373
- ]
3374
- },
3375
- "Organization":{
3376
- "type":"structure",
3377
- "members":{
3378
- "Asn":{
3379
- "shape":"String",
3380
- "locationName":"asn"
3381
- },
3382
- "AsnOrg":{
3383
- "shape":"String",
3384
- "locationName":"asnOrg"
3385
- },
3386
- "Isp":{
3387
- "shape":"String",
3388
- "locationName":"isp"
3389
- },
3390
- "Org":{
3391
- "shape":"String",
3392
- "locationName":"org"
3393
- }
3394
- }
3395
- },
3396
- "OrganizationDataSourceConfigurations":{
3397
- "type":"structure",
3398
- "members":{
3399
- "S3Logs":{
3400
- "shape":"OrganizationS3LogsConfiguration",
3401
- "locationName":"s3Logs"
3402
- }
3403
- }
3404
- },
3405
- "OrganizationDataSourceConfigurationsResult":{
3406
- "type":"structure",
3407
- "required":["S3Logs"],
3408
- "members":{
3409
- "S3Logs":{
3410
- "shape":"OrganizationS3LogsConfigurationResult",
3411
- "locationName":"s3Logs"
3412
- }
3413
- }
3414
- },
3415
- "OrganizationS3LogsConfiguration":{
3416
- "type":"structure",
3417
- "required":["AutoEnable"],
3418
- "members":{
3419
- "AutoEnable":{
3420
- "shape":"Boolean",
3421
- "locationName":"autoEnable"
3422
- }
3423
- }
3424
- },
3425
- "OrganizationS3LogsConfigurationResult":{
3426
- "type":"structure",
3427
- "required":["AutoEnable"],
3428
- "members":{
3429
- "AutoEnable":{
3430
- "shape":"Boolean",
3431
- "locationName":"autoEnable"
3432
- }
3433
- }
3434
- },
3435
- "Owner":{
3436
- "type":"structure",
3437
- "members":{
3438
- "Id":{
3439
- "shape":"String",
3440
- "locationName":"id"
3441
- }
3442
- }
3443
- },
3444
- "PermissionConfiguration":{
3445
- "type":"structure",
3446
- "members":{
3447
- "BucketLevelPermissions":{
3448
- "shape":"BucketLevelPermissions",
3449
- "locationName":"bucketLevelPermissions"
3450
- },
3451
- "AccountLevelPermissions":{
3452
- "shape":"AccountLevelPermissions",
3453
- "locationName":"accountLevelPermissions"
3454
- }
3455
- }
3456
- },
3457
- "PortProbeAction":{
3458
- "type":"structure",
3459
- "members":{
3460
- "Blocked":{
3461
- "shape":"Boolean",
3462
- "locationName":"blocked"
3463
- },
3464
- "PortProbeDetails":{
3465
- "shape":"PortProbeDetails",
3466
- "locationName":"portProbeDetails"
3467
- }
3468
- }
3469
- },
3470
- "PortProbeDetail":{
3471
- "type":"structure",
3472
- "members":{
3473
- "LocalPortDetails":{
3474
- "shape":"LocalPortDetails",
3475
- "locationName":"localPortDetails"
3476
- },
3477
- "LocalIpDetails":{
3478
- "shape":"LocalIpDetails",
3479
- "locationName":"localIpDetails"
3480
- },
3481
- "RemoteIpDetails":{
3482
- "shape":"RemoteIpDetails",
3483
- "locationName":"remoteIpDetails"
3484
- }
3485
- }
3486
- },
3487
- "PortProbeDetails":{
3488
- "type":"list",
3489
- "member":{"shape":"PortProbeDetail"}
3490
- },
3491
- "PrivateIpAddressDetails":{
3492
- "type":"structure",
3493
- "members":{
3494
- "PrivateDnsName":{
3495
- "shape":"String",
3496
- "locationName":"privateDnsName"
3497
- },
3498
- "PrivateIpAddress":{
3499
- "shape":"String",
3500
- "locationName":"privateIpAddress"
3501
- }
3502
- }
3503
- },
3504
- "PrivateIpAddresses":{
3505
- "type":"list",
3506
- "member":{"shape":"PrivateIpAddressDetails"}
3507
- },
3508
- "ProductCode":{
3509
- "type":"structure",
3510
- "members":{
3511
- "Code":{
3512
- "shape":"String",
3513
- "locationName":"code"
3514
- },
3515
- "ProductType":{
3516
- "shape":"String",
3517
- "locationName":"productType"
3518
- }
3519
- }
3520
- },
3521
- "ProductCodes":{
3522
- "type":"list",
3523
- "member":{"shape":"ProductCode"}
3524
- },
3525
- "PublicAccess":{
3526
- "type":"structure",
3527
- "members":{
3528
- "PermissionConfiguration":{
3529
- "shape":"PermissionConfiguration",
3530
- "locationName":"permissionConfiguration"
3531
- },
3532
- "EffectivePermission":{
3533
- "shape":"String",
3534
- "locationName":"effectivePermission"
3535
- }
3536
- }
3537
- },
3538
- "PublishingStatus":{
3539
- "type":"string",
3540
- "enum":[
3541
- "PENDING_VERIFICATION",
3542
- "PUBLISHING",
3543
- "UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY",
3544
- "STOPPED"
3545
- ],
3546
- "max":300,
3547
- "min":1
3548
- },
3549
- "RemoteIpDetails":{
3550
- "type":"structure",
3551
- "members":{
3552
- "City":{
3553
- "shape":"City",
3554
- "locationName":"city"
3555
- },
3556
- "Country":{
3557
- "shape":"Country",
3558
- "locationName":"country"
3559
- },
3560
- "GeoLocation":{
3561
- "shape":"GeoLocation",
3562
- "locationName":"geoLocation"
3563
- },
3564
- "IpAddressV4":{
3565
- "shape":"String",
3566
- "locationName":"ipAddressV4"
3567
- },
3568
- "Organization":{
3569
- "shape":"Organization",
3570
- "locationName":"organization"
3571
- }
3572
- }
3573
- },
3574
- "RemotePortDetails":{
3575
- "type":"structure",
3576
- "members":{
3577
- "Port":{
3578
- "shape":"Integer",
3579
- "locationName":"port"
3580
- },
3581
- "PortName":{
3582
- "shape":"String",
3583
- "locationName":"portName"
3584
- }
3585
- }
3586
- },
3587
- "Resource":{
3588
- "type":"structure",
3589
- "members":{
3590
- "AccessKeyDetails":{
3591
- "shape":"AccessKeyDetails",
3592
- "locationName":"accessKeyDetails"
3593
- },
3594
- "S3BucketDetails":{
3595
- "shape":"S3BucketDetails",
3596
- "locationName":"s3BucketDetails"
3597
- },
3598
- "InstanceDetails":{
3599
- "shape":"InstanceDetails",
3600
- "locationName":"instanceDetails"
3601
- },
3602
- "ResourceType":{
3603
- "shape":"String",
3604
- "locationName":"resourceType"
3605
- }
3606
- }
3607
- },
3608
- "ResourceList":{
3609
- "type":"list",
3610
- "member":{"shape":"String"}
3611
- },
3612
- "S3BucketDetail":{
3613
- "type":"structure",
3614
- "members":{
3615
- "Arn":{
3616
- "shape":"String",
3617
- "locationName":"arn"
3618
- },
3619
- "Name":{
3620
- "shape":"String",
3621
- "locationName":"name"
3622
- },
3623
- "Type":{
3624
- "shape":"String",
3625
- "locationName":"type"
3626
- },
3627
- "CreatedAt":{
3628
- "shape":"Timestamp",
3629
- "locationName":"createdAt"
3630
- },
3631
- "Owner":{
3632
- "shape":"Owner",
3633
- "locationName":"owner"
3634
- },
3635
- "Tags":{
3636
- "shape":"Tags",
3637
- "locationName":"tags"
3638
- },
3639
- "DefaultServerSideEncryption":{
3640
- "shape":"DefaultServerSideEncryption",
3641
- "locationName":"defaultServerSideEncryption"
3642
- },
3643
- "PublicAccess":{
3644
- "shape":"PublicAccess",
3645
- "locationName":"publicAccess"
3646
- }
3647
- }
3648
- },
3649
- "S3BucketDetails":{
3650
- "type":"list",
3651
- "member":{"shape":"S3BucketDetail"}
3652
- },
3653
- "S3LogsConfiguration":{
3654
- "type":"structure",
3655
- "required":["Enable"],
3656
- "members":{
3657
- "Enable":{
3658
- "shape":"Boolean",
3659
- "locationName":"enable"
3660
- }
3661
- }
3662
- },
3663
- "S3LogsConfigurationResult":{
3664
- "type":"structure",
3665
- "required":["Status"],
3666
- "members":{
3667
- "Status":{
3668
- "shape":"DataSourceStatus",
3669
- "locationName":"status"
3670
- }
3671
- }
3672
- },
3673
- "SecurityGroup":{
3674
- "type":"structure",
3675
- "members":{
3676
- "GroupId":{
3677
- "shape":"String",
3678
- "locationName":"groupId"
3679
- },
3680
- "GroupName":{
3681
- "shape":"String",
3682
- "locationName":"groupName"
3683
- }
3684
- }
3685
- },
3686
- "SecurityGroups":{
3687
- "type":"list",
3688
- "member":{"shape":"SecurityGroup"}
3689
- },
3690
- "Service":{
3691
- "type":"structure",
3692
- "members":{
3693
- "Action":{
3694
- "shape":"Action",
3695
- "locationName":"action"
3696
- },
3697
- "Evidence":{
3698
- "shape":"Evidence",
3699
- "locationName":"evidence"
3700
- },
3701
- "Archived":{
3702
- "shape":"Boolean",
3703
- "locationName":"archived"
3704
- },
3705
- "Count":{
3706
- "shape":"Integer",
3707
- "locationName":"count"
3708
- },
3709
- "DetectorId":{
3710
- "shape":"DetectorId",
3711
- "locationName":"detectorId"
3712
- },
3713
- "EventFirstSeen":{
3714
- "shape":"String",
3715
- "locationName":"eventFirstSeen"
3716
- },
3717
- "EventLastSeen":{
3718
- "shape":"String",
3719
- "locationName":"eventLastSeen"
3720
- },
3721
- "ResourceRole":{
3722
- "shape":"String",
3723
- "locationName":"resourceRole"
3724
- },
3725
- "ServiceName":{
3726
- "shape":"String",
3727
- "locationName":"serviceName"
3728
- },
3729
- "UserFeedback":{
3730
- "shape":"String",
3731
- "locationName":"userFeedback"
3732
- }
3733
- }
3734
- },
3735
- "SortCriteria":{
3736
- "type":"structure",
3737
- "members":{
3738
- "AttributeName":{
3739
- "shape":"String",
3740
- "locationName":"attributeName"
3741
- },
3742
- "OrderBy":{
3743
- "shape":"OrderBy",
3744
- "locationName":"orderBy"
3745
- }
3746
- }
3747
- },
3748
- "StartMonitoringMembersRequest":{
3749
- "type":"structure",
3750
- "required":[
3751
- "DetectorId",
3752
- "AccountIds"
3753
- ],
3754
- "members":{
3755
- "DetectorId":{
3756
- "shape":"DetectorId",
3757
- "location":"uri",
3758
- "locationName":"detectorId"
3759
- },
3760
- "AccountIds":{
3761
- "shape":"AccountIds",
3762
- "locationName":"accountIds"
3763
- }
3764
- }
3765
- },
3766
- "StartMonitoringMembersResponse":{
3767
- "type":"structure",
3768
- "required":["UnprocessedAccounts"],
3769
- "members":{
3770
- "UnprocessedAccounts":{
3771
- "shape":"UnprocessedAccounts",
3772
- "locationName":"unprocessedAccounts"
3773
- }
3774
- }
3775
- },
3776
- "StopMonitoringMembersRequest":{
3777
- "type":"structure",
3778
- "required":[
3779
- "DetectorId",
3780
- "AccountIds"
3781
- ],
3782
- "members":{
3783
- "DetectorId":{
3784
- "shape":"DetectorId",
3785
- "location":"uri",
3786
- "locationName":"detectorId"
3787
- },
3788
- "AccountIds":{
3789
- "shape":"AccountIds",
3790
- "locationName":"accountIds"
3791
- }
3792
- }
3793
- },
3794
- "StopMonitoringMembersResponse":{
3795
- "type":"structure",
3796
- "required":["UnprocessedAccounts"],
3797
- "members":{
3798
- "UnprocessedAccounts":{
3799
- "shape":"UnprocessedAccounts",
3800
- "locationName":"unprocessedAccounts"
3801
- }
3802
- }
3803
- },
3804
- "String":{"type":"string"},
3805
- "Tag":{
3806
- "type":"structure",
3807
- "members":{
3808
- "Key":{
3809
- "shape":"String",
3810
- "locationName":"key"
3811
- },
3812
- "Value":{
3813
- "shape":"String",
3814
- "locationName":"value"
3815
- }
3816
- }
3817
- },
3818
- "TagKey":{
3819
- "type":"string",
3820
- "max":128,
3821
- "min":1,
3822
- "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
3823
- },
3824
- "TagKeyList":{
3825
- "type":"list",
3826
- "member":{"shape":"TagKey"},
3827
- "max":200,
3828
- "min":1
3829
- },
3830
- "TagMap":{
3831
- "type":"map",
3832
- "key":{"shape":"TagKey"},
3833
- "value":{"shape":"TagValue"},
3834
- "max":200,
3835
- "min":1
3836
- },
3837
- "TagResourceRequest":{
3838
- "type":"structure",
3839
- "required":[
3840
- "ResourceArn",
3841
- "Tags"
3842
- ],
3843
- "members":{
3844
- "ResourceArn":{
3845
- "shape":"GuardDutyArn",
3846
- "location":"uri",
3847
- "locationName":"resourceArn"
3848
- },
3849
- "Tags":{
3850
- "shape":"TagMap",
3851
- "locationName":"tags"
3852
- }
3853
- }
3854
- },
3855
- "TagResourceResponse":{
3856
- "type":"structure",
3857
- "members":{
3858
- }
3859
- },
3860
- "TagValue":{
3861
- "type":"string",
3862
- "max":256
3863
- },
3864
- "Tags":{
3865
- "type":"list",
3866
- "member":{"shape":"Tag"}
3867
- },
3868
- "ThreatIntelSetFormat":{
3869
- "type":"string",
3870
- "enum":[
3871
- "TXT",
3872
- "STIX",
3873
- "OTX_CSV",
3874
- "ALIEN_VAULT",
3875
- "PROOF_POINT",
3876
- "FIRE_EYE"
3877
- ],
3878
- "max":300,
3879
- "min":1
3880
- },
3881
- "ThreatIntelSetIds":{
3882
- "type":"list",
3883
- "member":{"shape":"String"},
3884
- "max":50,
3885
- "min":0
3886
- },
3887
- "ThreatIntelSetStatus":{
3888
- "type":"string",
3889
- "enum":[
3890
- "INACTIVE",
3891
- "ACTIVATING",
3892
- "ACTIVE",
3893
- "DEACTIVATING",
3894
- "ERROR",
3895
- "DELETE_PENDING",
3896
- "DELETED"
3897
- ],
3898
- "max":300,
3899
- "min":1
3900
- },
3901
- "ThreatIntelligenceDetail":{
3902
- "type":"structure",
3903
- "members":{
3904
- "ThreatListName":{
3905
- "shape":"String",
3906
- "locationName":"threatListName"
3907
- },
3908
- "ThreatNames":{
3909
- "shape":"ThreatNames",
3910
- "locationName":"threatNames"
3911
- }
3912
- }
3913
- },
3914
- "ThreatIntelligenceDetails":{
3915
- "type":"list",
3916
- "member":{"shape":"ThreatIntelligenceDetail"}
3917
- },
3918
- "ThreatNames":{
3919
- "type":"list",
3920
- "member":{"shape":"String"}
3921
- },
3922
- "Timestamp":{"type":"timestamp"},
3923
- "Total":{
3924
- "type":"structure",
3925
- "members":{
3926
- "Amount":{
3927
- "shape":"String",
3928
- "locationName":"amount"
3929
- },
3930
- "Unit":{
3931
- "shape":"String",
3932
- "locationName":"unit"
3933
- }
3934
- }
3935
- },
3936
- "UnarchiveFindingsRequest":{
3937
- "type":"structure",
3938
- "required":[
3939
- "DetectorId",
3940
- "FindingIds"
3941
- ],
3942
- "members":{
3943
- "DetectorId":{
3944
- "shape":"DetectorId",
3945
- "location":"uri",
3946
- "locationName":"detectorId"
3947
- },
3948
- "FindingIds":{
3949
- "shape":"FindingIds",
3950
- "locationName":"findingIds"
3951
- }
3952
- }
3953
- },
3954
- "UnarchiveFindingsResponse":{
3955
- "type":"structure",
3956
- "members":{
3957
- }
3958
- },
3959
- "UnprocessedAccount":{
3960
- "type":"structure",
3961
- "required":[
3962
- "AccountId",
3963
- "Result"
3964
- ],
3965
- "members":{
3966
- "AccountId":{
3967
- "shape":"AccountId",
3968
- "locationName":"accountId"
3969
- },
3970
- "Result":{
3971
- "shape":"String",
3972
- "locationName":"result"
3973
- }
3974
- }
3975
- },
3976
- "UnprocessedAccounts":{
3977
- "type":"list",
3978
- "member":{"shape":"UnprocessedAccount"},
3979
- "max":50,
3980
- "min":0
3981
- },
3982
- "UntagResourceRequest":{
3983
- "type":"structure",
3984
- "required":[
3985
- "ResourceArn",
3986
- "TagKeys"
3987
- ],
3988
- "members":{
3989
- "ResourceArn":{
3990
- "shape":"GuardDutyArn",
3991
- "location":"uri",
3992
- "locationName":"resourceArn"
3993
- },
3994
- "TagKeys":{
3995
- "shape":"TagKeyList",
3996
- "location":"querystring",
3997
- "locationName":"tagKeys"
3998
- }
3999
- }
4000
- },
4001
- "UntagResourceResponse":{
4002
- "type":"structure",
4003
- "members":{
4004
- }
4005
- },
4006
- "UpdateDetectorRequest":{
4007
- "type":"structure",
4008
- "required":["DetectorId"],
4009
- "members":{
4010
- "DetectorId":{
4011
- "shape":"DetectorId",
4012
- "location":"uri",
4013
- "locationName":"detectorId"
4014
- },
4015
- "Enable":{
4016
- "shape":"Boolean",
4017
- "locationName":"enable"
4018
- },
4019
- "FindingPublishingFrequency":{
4020
- "shape":"FindingPublishingFrequency",
4021
- "locationName":"findingPublishingFrequency"
4022
- },
4023
- "DataSources":{
4024
- "shape":"DataSourceConfigurations",
4025
- "locationName":"dataSources"
4026
- }
4027
- }
4028
- },
4029
- "UpdateDetectorResponse":{
4030
- "type":"structure",
4031
- "members":{
4032
- }
4033
- },
4034
- "UpdateFilterRequest":{
4035
- "type":"structure",
4036
- "required":[
4037
- "DetectorId",
4038
- "FilterName"
4039
- ],
4040
- "members":{
4041
- "DetectorId":{
4042
- "shape":"DetectorId",
4043
- "location":"uri",
4044
- "locationName":"detectorId"
4045
- },
4046
- "FilterName":{
4047
- "shape":"String",
4048
- "location":"uri",
4049
- "locationName":"filterName"
4050
- },
4051
- "Description":{
4052
- "shape":"FilterDescription",
4053
- "locationName":"description"
4054
- },
4055
- "Action":{
4056
- "shape":"FilterAction",
4057
- "locationName":"action"
4058
- },
4059
- "Rank":{
4060
- "shape":"FilterRank",
4061
- "locationName":"rank"
4062
- },
4063
- "FindingCriteria":{
4064
- "shape":"FindingCriteria",
4065
- "locationName":"findingCriteria"
4066
- }
4067
- }
4068
- },
4069
- "UpdateFilterResponse":{
4070
- "type":"structure",
4071
- "required":["Name"],
4072
- "members":{
4073
- "Name":{
4074
- "shape":"FilterName",
4075
- "locationName":"name"
4076
- }
4077
- }
4078
- },
4079
- "UpdateFindingsFeedbackRequest":{
4080
- "type":"structure",
4081
- "required":[
4082
- "DetectorId",
4083
- "FindingIds",
4084
- "Feedback"
4085
- ],
4086
- "members":{
4087
- "DetectorId":{
4088
- "shape":"DetectorId",
4089
- "location":"uri",
4090
- "locationName":"detectorId"
4091
- },
4092
- "FindingIds":{
4093
- "shape":"FindingIds",
4094
- "locationName":"findingIds"
4095
- },
4096
- "Feedback":{
4097
- "shape":"Feedback",
4098
- "locationName":"feedback"
4099
- },
4100
- "Comments":{
4101
- "shape":"String",
4102
- "locationName":"comments"
4103
- }
4104
- }
4105
- },
4106
- "UpdateFindingsFeedbackResponse":{
4107
- "type":"structure",
4108
- "members":{
4109
- }
4110
- },
4111
- "UpdateIPSetRequest":{
4112
- "type":"structure",
4113
- "required":[
4114
- "DetectorId",
4115
- "IpSetId"
4116
- ],
4117
- "members":{
4118
- "DetectorId":{
4119
- "shape":"DetectorId",
4120
- "location":"uri",
4121
- "locationName":"detectorId"
4122
- },
4123
- "IpSetId":{
4124
- "shape":"String",
4125
- "location":"uri",
4126
- "locationName":"ipSetId"
4127
- },
4128
- "Name":{
4129
- "shape":"Name",
4130
- "locationName":"name"
4131
- },
4132
- "Location":{
4133
- "shape":"Location",
4134
- "locationName":"location"
4135
- },
4136
- "Activate":{
4137
- "shape":"Boolean",
4138
- "locationName":"activate"
4139
- }
4140
- }
4141
- },
4142
- "UpdateIPSetResponse":{
4143
- "type":"structure",
4144
- "members":{
4145
- }
4146
- },
4147
- "UpdateMemberDetectorsRequest":{
4148
- "type":"structure",
4149
- "required":[
4150
- "DetectorId",
4151
- "AccountIds"
4152
- ],
4153
- "members":{
4154
- "DetectorId":{
4155
- "shape":"DetectorId",
4156
- "location":"uri",
4157
- "locationName":"detectorId"
4158
- },
4159
- "AccountIds":{
4160
- "shape":"AccountIds",
4161
- "locationName":"accountIds"
4162
- },
4163
- "DataSources":{
4164
- "shape":"DataSourceConfigurations",
4165
- "locationName":"dataSources"
4166
- }
4167
- }
4168
- },
4169
- "UpdateMemberDetectorsResponse":{
4170
- "type":"structure",
4171
- "required":["UnprocessedAccounts"],
4172
- "members":{
4173
- "UnprocessedAccounts":{
4174
- "shape":"UnprocessedAccounts",
4175
- "locationName":"unprocessedAccounts"
4176
- }
4177
- }
4178
- },
4179
- "UpdateOrganizationConfigurationRequest":{
4180
- "type":"structure",
4181
- "required":[
4182
- "DetectorId",
4183
- "AutoEnable"
4184
- ],
4185
- "members":{
4186
- "DetectorId":{
4187
- "shape":"DetectorId",
4188
- "location":"uri",
4189
- "locationName":"detectorId"
4190
- },
4191
- "AutoEnable":{
4192
- "shape":"Boolean",
4193
- "locationName":"autoEnable"
4194
- },
4195
- "DataSources":{
4196
- "shape":"OrganizationDataSourceConfigurations",
4197
- "locationName":"dataSources"
4198
- }
4199
- }
4200
- },
4201
- "UpdateOrganizationConfigurationResponse":{
4202
- "type":"structure",
4203
- "members":{
4204
- }
4205
- },
4206
- "UpdatePublishingDestinationRequest":{
4207
- "type":"structure",
4208
- "required":[
4209
- "DetectorId",
4210
- "DestinationId"
4211
- ],
4212
- "members":{
4213
- "DetectorId":{
4214
- "shape":"DetectorId",
4215
- "location":"uri",
4216
- "locationName":"detectorId"
4217
- },
4218
- "DestinationId":{
4219
- "shape":"String",
4220
- "location":"uri",
4221
- "locationName":"destinationId"
4222
- },
4223
- "DestinationProperties":{
4224
- "shape":"DestinationProperties",
4225
- "locationName":"destinationProperties"
4226
- }
4227
- }
4228
- },
4229
- "UpdatePublishingDestinationResponse":{
4230
- "type":"structure",
4231
- "members":{
4232
- }
4233
- },
4234
- "UpdateThreatIntelSetRequest":{
4235
- "type":"structure",
4236
- "required":[
4237
- "DetectorId",
4238
- "ThreatIntelSetId"
4239
- ],
4240
- "members":{
4241
- "DetectorId":{
4242
- "shape":"DetectorId",
4243
- "location":"uri",
4244
- "locationName":"detectorId"
4245
- },
4246
- "ThreatIntelSetId":{
4247
- "shape":"String",
4248
- "location":"uri",
4249
- "locationName":"threatIntelSetId"
4250
- },
4251
- "Name":{
4252
- "shape":"Name",
4253
- "locationName":"name"
4254
- },
4255
- "Location":{
4256
- "shape":"Location",
4257
- "locationName":"location"
4258
- },
4259
- "Activate":{
4260
- "shape":"Boolean",
4261
- "locationName":"activate"
4262
- }
4263
- }
4264
- },
4265
- "UpdateThreatIntelSetResponse":{
4266
- "type":"structure",
4267
- "members":{
4268
- }
4269
- },
4270
- "UsageAccountResult":{
4271
- "type":"structure",
4272
- "members":{
4273
- "AccountId":{
4274
- "shape":"AccountId",
4275
- "locationName":"accountId"
4276
- },
4277
- "Total":{
4278
- "shape":"Total",
4279
- "locationName":"total"
4280
- }
4281
- }
4282
- },
4283
- "UsageAccountResultList":{
4284
- "type":"list",
4285
- "member":{"shape":"UsageAccountResult"}
4286
- },
4287
- "UsageCriteria":{
4288
- "type":"structure",
4289
- "required":["DataSources"],
4290
- "members":{
4291
- "AccountIds":{
4292
- "shape":"AccountIds",
4293
- "locationName":"accountIds"
4294
- },
4295
- "DataSources":{
4296
- "shape":"DataSourceList",
4297
- "locationName":"dataSources"
4298
- },
4299
- "Resources":{
4300
- "shape":"ResourceList",
4301
- "locationName":"resources"
4302
- }
4303
- }
4304
- },
4305
- "UsageDataSourceResult":{
4306
- "type":"structure",
4307
- "members":{
4308
- "DataSource":{
4309
- "shape":"DataSource",
4310
- "locationName":"dataSource"
4311
- },
4312
- "Total":{
4313
- "shape":"Total",
4314
- "locationName":"total"
4315
- }
4316
- }
4317
- },
4318
- "UsageDataSourceResultList":{
4319
- "type":"list",
4320
- "member":{"shape":"UsageDataSourceResult"}
4321
- },
4322
- "UsageResourceResult":{
4323
- "type":"structure",
4324
- "members":{
4325
- "Resource":{
4326
- "shape":"String",
4327
- "locationName":"resource"
4328
- },
4329
- "Total":{
4330
- "shape":"Total",
4331
- "locationName":"total"
4332
- }
4333
- }
4334
- },
4335
- "UsageResourceResultList":{
4336
- "type":"list",
4337
- "member":{"shape":"UsageResourceResult"}
4338
- },
4339
- "UsageStatisticType":{
4340
- "type":"string",
4341
- "enum":[
4342
- "SUM_BY_ACCOUNT",
4343
- "SUM_BY_DATA_SOURCE",
4344
- "SUM_BY_RESOURCE",
4345
- "TOP_RESOURCES"
4346
- ]
4347
- },
4348
- "UsageStatistics":{
4349
- "type":"structure",
4350
- "members":{
4351
- "SumByAccount":{
4352
- "shape":"UsageAccountResultList",
4353
- "locationName":"sumByAccount"
4354
- },
4355
- "SumByDataSource":{
4356
- "shape":"UsageDataSourceResultList",
4357
- "locationName":"sumByDataSource"
4358
- },
4359
- "SumByResource":{
4360
- "shape":"UsageResourceResultList",
4361
- "locationName":"sumByResource"
4362
- },
4363
- "TopResources":{
4364
- "shape":"UsageResourceResultList",
4365
- "locationName":"topResources"
4366
- }
4367
- }
4368
- }
4369
- }
4370
- }