aws-sdk-core 2.11.502 → 3.94.0

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