aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,16 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListEventSourceMappings": {
4
- "input_token": "Marker",
5
- "output_token": "NextMarker",
6
- "limit_key": "MaxItems",
7
- "result_key": "EventSourceMappings"
8
- },
9
- "ListFunctions": {
10
- "input_token": "Marker",
11
- "output_token": "NextMarker",
12
- "limit_key": "MaxItems",
13
- "result_key": "Functions"
14
- }
15
- }
16
- }
@@ -1,1138 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-03-28",
5
- "endpointPrefix":"logs",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Amazon CloudWatch Logs",
9
- "signatureVersion":"v4",
10
- "targetPrefix":"Logs_20140328"
11
- },
12
- "operations":{
13
- "CancelExportTask":{
14
- "name":"CancelExportTask",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"CancelExportTaskRequest"},
20
- "errors":[
21
- {"shape":"InvalidParameterException"},
22
- {"shape":"ResourceNotFoundException"},
23
- {"shape":"InvalidOperationException"},
24
- {"shape":"ServiceUnavailableException"}
25
- ]
26
- },
27
- "CreateExportTask":{
28
- "name":"CreateExportTask",
29
- "http":{
30
- "method":"POST",
31
- "requestUri":"/"
32
- },
33
- "input":{"shape":"CreateExportTaskRequest"},
34
- "output":{"shape":"CreateExportTaskResponse"},
35
- "errors":[
36
- {"shape":"InvalidParameterException"},
37
- {"shape":"LimitExceededException"},
38
- {"shape":"OperationAbortedException"},
39
- {"shape":"ServiceUnavailableException"},
40
- {"shape":"ResourceNotFoundException"},
41
- {"shape":"ResourceAlreadyExistsException"}
42
- ]
43
- },
44
- "CreateLogGroup":{
45
- "name":"CreateLogGroup",
46
- "http":{
47
- "method":"POST",
48
- "requestUri":"/"
49
- },
50
- "input":{"shape":"CreateLogGroupRequest"},
51
- "errors":[
52
- {"shape":"InvalidParameterException"},
53
- {"shape":"ResourceAlreadyExistsException"},
54
- {"shape":"LimitExceededException"},
55
- {"shape":"OperationAbortedException"},
56
- {"shape":"ServiceUnavailableException"}
57
- ]
58
- },
59
- "CreateLogStream":{
60
- "name":"CreateLogStream",
61
- "http":{
62
- "method":"POST",
63
- "requestUri":"/"
64
- },
65
- "input":{"shape":"CreateLogStreamRequest"},
66
- "errors":[
67
- {"shape":"InvalidParameterException"},
68
- {"shape":"ResourceAlreadyExistsException"},
69
- {"shape":"ResourceNotFoundException"},
70
- {"shape":"ServiceUnavailableException"}
71
- ]
72
- },
73
- "DeleteDestination":{
74
- "name":"DeleteDestination",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/"
78
- },
79
- "input":{"shape":"DeleteDestinationRequest"},
80
- "errors":[
81
- {"shape":"InvalidParameterException"},
82
- {"shape":"ResourceNotFoundException"},
83
- {"shape":"OperationAbortedException"},
84
- {"shape":"ServiceUnavailableException"}
85
- ]
86
- },
87
- "DeleteLogGroup":{
88
- "name":"DeleteLogGroup",
89
- "http":{
90
- "method":"POST",
91
- "requestUri":"/"
92
- },
93
- "input":{"shape":"DeleteLogGroupRequest"},
94
- "errors":[
95
- {"shape":"InvalidParameterException"},
96
- {"shape":"ResourceNotFoundException"},
97
- {"shape":"OperationAbortedException"},
98
- {"shape":"ServiceUnavailableException"}
99
- ]
100
- },
101
- "DeleteLogStream":{
102
- "name":"DeleteLogStream",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"DeleteLogStreamRequest"},
108
- "errors":[
109
- {"shape":"InvalidParameterException"},
110
- {"shape":"ResourceNotFoundException"},
111
- {"shape":"OperationAbortedException"},
112
- {"shape":"ServiceUnavailableException"}
113
- ]
114
- },
115
- "DeleteMetricFilter":{
116
- "name":"DeleteMetricFilter",
117
- "http":{
118
- "method":"POST",
119
- "requestUri":"/"
120
- },
121
- "input":{"shape":"DeleteMetricFilterRequest"},
122
- "errors":[
123
- {"shape":"InvalidParameterException"},
124
- {"shape":"ResourceNotFoundException"},
125
- {"shape":"OperationAbortedException"},
126
- {"shape":"ServiceUnavailableException"}
127
- ]
128
- },
129
- "DeleteRetentionPolicy":{
130
- "name":"DeleteRetentionPolicy",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"DeleteRetentionPolicyRequest"},
136
- "errors":[
137
- {"shape":"InvalidParameterException"},
138
- {"shape":"ResourceNotFoundException"},
139
- {"shape":"OperationAbortedException"},
140
- {"shape":"ServiceUnavailableException"}
141
- ]
142
- },
143
- "DeleteSubscriptionFilter":{
144
- "name":"DeleteSubscriptionFilter",
145
- "http":{
146
- "method":"POST",
147
- "requestUri":"/"
148
- },
149
- "input":{"shape":"DeleteSubscriptionFilterRequest"},
150
- "errors":[
151
- {"shape":"InvalidParameterException"},
152
- {"shape":"ResourceNotFoundException"},
153
- {"shape":"OperationAbortedException"},
154
- {"shape":"ServiceUnavailableException"}
155
- ]
156
- },
157
- "DescribeDestinations":{
158
- "name":"DescribeDestinations",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"DescribeDestinationsRequest"},
164
- "output":{"shape":"DescribeDestinationsResponse"},
165
- "errors":[
166
- {"shape":"InvalidParameterException"},
167
- {"shape":"ServiceUnavailableException"}
168
- ]
169
- },
170
- "DescribeExportTasks":{
171
- "name":"DescribeExportTasks",
172
- "http":{
173
- "method":"POST",
174
- "requestUri":"/"
175
- },
176
- "input":{"shape":"DescribeExportTasksRequest"},
177
- "output":{"shape":"DescribeExportTasksResponse"},
178
- "errors":[
179
- {"shape":"InvalidParameterException"},
180
- {"shape":"ServiceUnavailableException"}
181
- ]
182
- },
183
- "DescribeLogGroups":{
184
- "name":"DescribeLogGroups",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"DescribeLogGroupsRequest"},
190
- "output":{"shape":"DescribeLogGroupsResponse"},
191
- "errors":[
192
- {"shape":"InvalidParameterException"},
193
- {"shape":"ServiceUnavailableException"}
194
- ]
195
- },
196
- "DescribeLogStreams":{
197
- "name":"DescribeLogStreams",
198
- "http":{
199
- "method":"POST",
200
- "requestUri":"/"
201
- },
202
- "input":{"shape":"DescribeLogStreamsRequest"},
203
- "output":{"shape":"DescribeLogStreamsResponse"},
204
- "errors":[
205
- {"shape":"InvalidParameterException"},
206
- {"shape":"ResourceNotFoundException"},
207
- {"shape":"ServiceUnavailableException"}
208
- ]
209
- },
210
- "DescribeMetricFilters":{
211
- "name":"DescribeMetricFilters",
212
- "http":{
213
- "method":"POST",
214
- "requestUri":"/"
215
- },
216
- "input":{"shape":"DescribeMetricFiltersRequest"},
217
- "output":{"shape":"DescribeMetricFiltersResponse"},
218
- "errors":[
219
- {"shape":"InvalidParameterException"},
220
- {"shape":"ResourceNotFoundException"},
221
- {"shape":"ServiceUnavailableException"}
222
- ]
223
- },
224
- "DescribeSubscriptionFilters":{
225
- "name":"DescribeSubscriptionFilters",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"DescribeSubscriptionFiltersRequest"},
231
- "output":{"shape":"DescribeSubscriptionFiltersResponse"},
232
- "errors":[
233
- {"shape":"InvalidParameterException"},
234
- {"shape":"ResourceNotFoundException"},
235
- {"shape":"ServiceUnavailableException"}
236
- ]
237
- },
238
- "FilterLogEvents":{
239
- "name":"FilterLogEvents",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"FilterLogEventsRequest"},
245
- "output":{"shape":"FilterLogEventsResponse"},
246
- "errors":[
247
- {"shape":"InvalidParameterException"},
248
- {"shape":"ResourceNotFoundException"},
249
- {"shape":"ServiceUnavailableException"}
250
- ]
251
- },
252
- "GetLogEvents":{
253
- "name":"GetLogEvents",
254
- "http":{
255
- "method":"POST",
256
- "requestUri":"/"
257
- },
258
- "input":{"shape":"GetLogEventsRequest"},
259
- "output":{"shape":"GetLogEventsResponse"},
260
- "errors":[
261
- {"shape":"InvalidParameterException"},
262
- {"shape":"ResourceNotFoundException"},
263
- {"shape":"ServiceUnavailableException"}
264
- ]
265
- },
266
- "PutDestination":{
267
- "name":"PutDestination",
268
- "http":{
269
- "method":"POST",
270
- "requestUri":"/"
271
- },
272
- "input":{"shape":"PutDestinationRequest"},
273
- "output":{"shape":"PutDestinationResponse"},
274
- "errors":[
275
- {"shape":"InvalidParameterException"},
276
- {"shape":"OperationAbortedException"},
277
- {"shape":"ServiceUnavailableException"}
278
- ]
279
- },
280
- "PutDestinationPolicy":{
281
- "name":"PutDestinationPolicy",
282
- "http":{
283
- "method":"POST",
284
- "requestUri":"/"
285
- },
286
- "input":{"shape":"PutDestinationPolicyRequest"},
287
- "errors":[
288
- {"shape":"InvalidParameterException"},
289
- {"shape":"OperationAbortedException"},
290
- {"shape":"ServiceUnavailableException"}
291
- ]
292
- },
293
- "PutLogEvents":{
294
- "name":"PutLogEvents",
295
- "http":{
296
- "method":"POST",
297
- "requestUri":"/"
298
- },
299
- "input":{"shape":"PutLogEventsRequest"},
300
- "output":{"shape":"PutLogEventsResponse"},
301
- "errors":[
302
- {"shape":"InvalidParameterException"},
303
- {"shape":"InvalidSequenceTokenException"},
304
- {"shape":"DataAlreadyAcceptedException"},
305
- {"shape":"ResourceNotFoundException"},
306
- {"shape":"OperationAbortedException"},
307
- {"shape":"ServiceUnavailableException"}
308
- ]
309
- },
310
- "PutMetricFilter":{
311
- "name":"PutMetricFilter",
312
- "http":{
313
- "method":"POST",
314
- "requestUri":"/"
315
- },
316
- "input":{"shape":"PutMetricFilterRequest"},
317
- "errors":[
318
- {"shape":"InvalidParameterException"},
319
- {"shape":"ResourceNotFoundException"},
320
- {"shape":"OperationAbortedException"},
321
- {"shape":"LimitExceededException"},
322
- {"shape":"ServiceUnavailableException"}
323
- ]
324
- },
325
- "PutRetentionPolicy":{
326
- "name":"PutRetentionPolicy",
327
- "http":{
328
- "method":"POST",
329
- "requestUri":"/"
330
- },
331
- "input":{"shape":"PutRetentionPolicyRequest"},
332
- "errors":[
333
- {"shape":"InvalidParameterException"},
334
- {"shape":"ResourceNotFoundException"},
335
- {"shape":"OperationAbortedException"},
336
- {"shape":"ServiceUnavailableException"}
337
- ]
338
- },
339
- "PutSubscriptionFilter":{
340
- "name":"PutSubscriptionFilter",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"PutSubscriptionFilterRequest"},
346
- "errors":[
347
- {"shape":"InvalidParameterException"},
348
- {"shape":"ResourceNotFoundException"},
349
- {"shape":"OperationAbortedException"},
350
- {"shape":"LimitExceededException"},
351
- {"shape":"ServiceUnavailableException"}
352
- ]
353
- },
354
- "TestMetricFilter":{
355
- "name":"TestMetricFilter",
356
- "http":{
357
- "method":"POST",
358
- "requestUri":"/"
359
- },
360
- "input":{"shape":"TestMetricFilterRequest"},
361
- "output":{"shape":"TestMetricFilterResponse"},
362
- "errors":[
363
- {"shape":"InvalidParameterException"},
364
- {"shape":"ServiceUnavailableException"}
365
- ]
366
- }
367
- },
368
- "shapes":{
369
- "AccessPolicy":{
370
- "type":"string",
371
- "min":1
372
- },
373
- "Arn":{"type":"string"},
374
- "CancelExportTaskRequest":{
375
- "type":"structure",
376
- "required":["taskId"],
377
- "members":{
378
- "taskId":{"shape":"ExportTaskId"}
379
- }
380
- },
381
- "CreateExportTaskRequest":{
382
- "type":"structure",
383
- "required":[
384
- "logGroupName",
385
- "from",
386
- "to",
387
- "destination"
388
- ],
389
- "members":{
390
- "taskName":{"shape":"ExportTaskName"},
391
- "logGroupName":{"shape":"LogGroupName"},
392
- "logStreamNamePrefix":{"shape":"LogStreamName"},
393
- "from":{"shape":"Timestamp"},
394
- "to":{"shape":"Timestamp"},
395
- "destination":{"shape":"ExportDestinationBucket"},
396
- "destinationPrefix":{"shape":"ExportDestinationPrefix"}
397
- }
398
- },
399
- "CreateExportTaskResponse":{
400
- "type":"structure",
401
- "members":{
402
- "taskId":{"shape":"ExportTaskId"}
403
- }
404
- },
405
- "CreateLogGroupRequest":{
406
- "type":"structure",
407
- "required":["logGroupName"],
408
- "members":{
409
- "logGroupName":{"shape":"LogGroupName"}
410
- }
411
- },
412
- "CreateLogStreamRequest":{
413
- "type":"structure",
414
- "required":[
415
- "logGroupName",
416
- "logStreamName"
417
- ],
418
- "members":{
419
- "logGroupName":{"shape":"LogGroupName"},
420
- "logStreamName":{"shape":"LogStreamName"}
421
- }
422
- },
423
- "DataAlreadyAcceptedException":{
424
- "type":"structure",
425
- "members":{
426
- "expectedSequenceToken":{"shape":"SequenceToken"}
427
- },
428
- "exception":true
429
- },
430
- "Days":{"type":"integer"},
431
- "DeleteDestinationRequest":{
432
- "type":"structure",
433
- "required":["destinationName"],
434
- "members":{
435
- "destinationName":{"shape":"DestinationName"}
436
- }
437
- },
438
- "DeleteLogGroupRequest":{
439
- "type":"structure",
440
- "required":["logGroupName"],
441
- "members":{
442
- "logGroupName":{"shape":"LogGroupName"}
443
- }
444
- },
445
- "DeleteLogStreamRequest":{
446
- "type":"structure",
447
- "required":[
448
- "logGroupName",
449
- "logStreamName"
450
- ],
451
- "members":{
452
- "logGroupName":{"shape":"LogGroupName"},
453
- "logStreamName":{"shape":"LogStreamName"}
454
- }
455
- },
456
- "DeleteMetricFilterRequest":{
457
- "type":"structure",
458
- "required":[
459
- "logGroupName",
460
- "filterName"
461
- ],
462
- "members":{
463
- "logGroupName":{"shape":"LogGroupName"},
464
- "filterName":{"shape":"FilterName"}
465
- }
466
- },
467
- "DeleteRetentionPolicyRequest":{
468
- "type":"structure",
469
- "required":["logGroupName"],
470
- "members":{
471
- "logGroupName":{"shape":"LogGroupName"}
472
- }
473
- },
474
- "DeleteSubscriptionFilterRequest":{
475
- "type":"structure",
476
- "required":[
477
- "logGroupName",
478
- "filterName"
479
- ],
480
- "members":{
481
- "logGroupName":{"shape":"LogGroupName"},
482
- "filterName":{"shape":"FilterName"}
483
- }
484
- },
485
- "Descending":{"type":"boolean"},
486
- "DescribeDestinationsRequest":{
487
- "type":"structure",
488
- "members":{
489
- "DestinationNamePrefix":{"shape":"DestinationName"},
490
- "nextToken":{"shape":"NextToken"},
491
- "limit":{"shape":"DescribeLimit"}
492
- }
493
- },
494
- "DescribeDestinationsResponse":{
495
- "type":"structure",
496
- "members":{
497
- "destinations":{"shape":"Destinations"},
498
- "nextToken":{"shape":"NextToken"}
499
- }
500
- },
501
- "DescribeExportTasksRequest":{
502
- "type":"structure",
503
- "members":{
504
- "taskId":{"shape":"ExportTaskId"},
505
- "statusCode":{"shape":"ExportTaskStatusCode"},
506
- "nextToken":{"shape":"NextToken"},
507
- "limit":{"shape":"DescribeLimit"}
508
- }
509
- },
510
- "DescribeExportTasksResponse":{
511
- "type":"structure",
512
- "members":{
513
- "exportTasks":{"shape":"ExportTasks"},
514
- "nextToken":{"shape":"NextToken"}
515
- }
516
- },
517
- "DescribeLimit":{
518
- "type":"integer",
519
- "max":50,
520
- "min":1
521
- },
522
- "DescribeLogGroupsRequest":{
523
- "type":"structure",
524
- "members":{
525
- "logGroupNamePrefix":{"shape":"LogGroupName"},
526
- "nextToken":{"shape":"NextToken"},
527
- "limit":{"shape":"DescribeLimit"}
528
- }
529
- },
530
- "DescribeLogGroupsResponse":{
531
- "type":"structure",
532
- "members":{
533
- "logGroups":{"shape":"LogGroups"},
534
- "nextToken":{"shape":"NextToken"}
535
- }
536
- },
537
- "DescribeLogStreamsRequest":{
538
- "type":"structure",
539
- "required":["logGroupName"],
540
- "members":{
541
- "logGroupName":{"shape":"LogGroupName"},
542
- "logStreamNamePrefix":{"shape":"LogStreamName"},
543
- "orderBy":{"shape":"OrderBy"},
544
- "descending":{"shape":"Descending"},
545
- "nextToken":{"shape":"NextToken"},
546
- "limit":{"shape":"DescribeLimit"}
547
- }
548
- },
549
- "DescribeLogStreamsResponse":{
550
- "type":"structure",
551
- "members":{
552
- "logStreams":{"shape":"LogStreams"},
553
- "nextToken":{"shape":"NextToken"}
554
- }
555
- },
556
- "DescribeMetricFiltersRequest":{
557
- "type":"structure",
558
- "required":["logGroupName"],
559
- "members":{
560
- "logGroupName":{"shape":"LogGroupName"},
561
- "filterNamePrefix":{"shape":"FilterName"},
562
- "nextToken":{"shape":"NextToken"},
563
- "limit":{"shape":"DescribeLimit"}
564
- }
565
- },
566
- "DescribeMetricFiltersResponse":{
567
- "type":"structure",
568
- "members":{
569
- "metricFilters":{"shape":"MetricFilters"},
570
- "nextToken":{"shape":"NextToken"}
571
- }
572
- },
573
- "DescribeSubscriptionFiltersRequest":{
574
- "type":"structure",
575
- "required":["logGroupName"],
576
- "members":{
577
- "logGroupName":{"shape":"LogGroupName"},
578
- "filterNamePrefix":{"shape":"FilterName"},
579
- "nextToken":{"shape":"NextToken"},
580
- "limit":{"shape":"DescribeLimit"}
581
- }
582
- },
583
- "DescribeSubscriptionFiltersResponse":{
584
- "type":"structure",
585
- "members":{
586
- "subscriptionFilters":{"shape":"SubscriptionFilters"},
587
- "nextToken":{"shape":"NextToken"}
588
- }
589
- },
590
- "Destination":{
591
- "type":"structure",
592
- "members":{
593
- "destinationName":{"shape":"DestinationName"},
594
- "targetArn":{"shape":"TargetArn"},
595
- "roleArn":{"shape":"RoleArn"},
596
- "accessPolicy":{"shape":"AccessPolicy"},
597
- "arn":{"shape":"Arn"},
598
- "creationTime":{"shape":"Timestamp"}
599
- }
600
- },
601
- "DestinationArn":{
602
- "type":"string",
603
- "min":1
604
- },
605
- "DestinationName":{
606
- "type":"string",
607
- "max":512,
608
- "min":1,
609
- "pattern":"[^:*]*"
610
- },
611
- "Destinations":{
612
- "type":"list",
613
- "member":{"shape":"Destination"}
614
- },
615
- "EventId":{"type":"string"},
616
- "EventMessage":{
617
- "type":"string",
618
- "min":1
619
- },
620
- "EventNumber":{"type":"long"},
621
- "EventsLimit":{
622
- "type":"integer",
623
- "max":10000,
624
- "min":1
625
- },
626
- "ExportDestinationBucket":{
627
- "type":"string",
628
- "max":512,
629
- "min":1
630
- },
631
- "ExportDestinationPrefix":{"type":"string"},
632
- "ExportTask":{
633
- "type":"structure",
634
- "members":{
635
- "taskId":{"shape":"ExportTaskId"},
636
- "taskName":{"shape":"ExportTaskName"},
637
- "logGroupName":{"shape":"LogGroupName"},
638
- "from":{"shape":"Timestamp"},
639
- "to":{"shape":"Timestamp"},
640
- "destination":{"shape":"ExportDestinationBucket"},
641
- "destinationPrefix":{"shape":"ExportDestinationPrefix"},
642
- "status":{"shape":"ExportTaskStatus"},
643
- "executionInfo":{"shape":"ExportTaskExecutionInfo"}
644
- }
645
- },
646
- "ExportTaskExecutionInfo":{
647
- "type":"structure",
648
- "members":{
649
- "creationTime":{"shape":"Timestamp"},
650
- "completionTime":{"shape":"Timestamp"}
651
- }
652
- },
653
- "ExportTaskId":{
654
- "type":"string",
655
- "max":512,
656
- "min":1
657
- },
658
- "ExportTaskName":{
659
- "type":"string",
660
- "max":512,
661
- "min":1
662
- },
663
- "ExportTaskStatus":{
664
- "type":"structure",
665
- "members":{
666
- "code":{"shape":"ExportTaskStatusCode"},
667
- "message":{"shape":"ExportTaskStatusMessage"}
668
- }
669
- },
670
- "ExportTaskStatusCode":{
671
- "type":"string",
672
- "enum":[
673
- "CANCELLED",
674
- "COMPLETED",
675
- "FAILED",
676
- "PENDING",
677
- "PENDING_CANCEL",
678
- "RUNNING"
679
- ]
680
- },
681
- "ExportTaskStatusMessage":{"type":"string"},
682
- "ExportTasks":{
683
- "type":"list",
684
- "member":{"shape":"ExportTask"}
685
- },
686
- "ExtractedValues":{
687
- "type":"map",
688
- "key":{"shape":"Token"},
689
- "value":{"shape":"Value"}
690
- },
691
- "FilterCount":{"type":"integer"},
692
- "FilterLogEventsRequest":{
693
- "type":"structure",
694
- "required":["logGroupName"],
695
- "members":{
696
- "logGroupName":{"shape":"LogGroupName"},
697
- "logStreamNames":{"shape":"InputLogStreamNames"},
698
- "startTime":{"shape":"Timestamp"},
699
- "endTime":{"shape":"Timestamp"},
700
- "filterPattern":{"shape":"FilterPattern"},
701
- "nextToken":{"shape":"NextToken"},
702
- "limit":{"shape":"EventsLimit"},
703
- "interleaved":{"shape":"Interleaved"}
704
- }
705
- },
706
- "FilterLogEventsResponse":{
707
- "type":"structure",
708
- "members":{
709
- "events":{"shape":"FilteredLogEvents"},
710
- "searchedLogStreams":{"shape":"SearchedLogStreams"},
711
- "nextToken":{"shape":"NextToken"}
712
- }
713
- },
714
- "FilterName":{
715
- "type":"string",
716
- "max":512,
717
- "min":1,
718
- "pattern":"[^:*]*"
719
- },
720
- "FilterPattern":{
721
- "type":"string",
722
- "max":1024,
723
- "min":0
724
- },
725
- "FilteredLogEvent":{
726
- "type":"structure",
727
- "members":{
728
- "logStreamName":{"shape":"LogStreamName"},
729
- "timestamp":{"shape":"Timestamp"},
730
- "message":{"shape":"EventMessage"},
731
- "ingestionTime":{"shape":"Timestamp"},
732
- "eventId":{"shape":"EventId"}
733
- }
734
- },
735
- "FilteredLogEvents":{
736
- "type":"list",
737
- "member":{"shape":"FilteredLogEvent"}
738
- },
739
- "GetLogEventsRequest":{
740
- "type":"structure",
741
- "required":[
742
- "logGroupName",
743
- "logStreamName"
744
- ],
745
- "members":{
746
- "logGroupName":{"shape":"LogGroupName"},
747
- "logStreamName":{"shape":"LogStreamName"},
748
- "startTime":{"shape":"Timestamp"},
749
- "endTime":{"shape":"Timestamp"},
750
- "nextToken":{"shape":"NextToken"},
751
- "limit":{"shape":"EventsLimit"},
752
- "startFromHead":{"shape":"StartFromHead"}
753
- }
754
- },
755
- "GetLogEventsResponse":{
756
- "type":"structure",
757
- "members":{
758
- "events":{"shape":"OutputLogEvents"},
759
- "nextForwardToken":{"shape":"NextToken"},
760
- "nextBackwardToken":{"shape":"NextToken"}
761
- }
762
- },
763
- "InputLogEvent":{
764
- "type":"structure",
765
- "required":[
766
- "timestamp",
767
- "message"
768
- ],
769
- "members":{
770
- "timestamp":{"shape":"Timestamp"},
771
- "message":{"shape":"EventMessage"}
772
- }
773
- },
774
- "InputLogEvents":{
775
- "type":"list",
776
- "member":{"shape":"InputLogEvent"},
777
- "max":10000,
778
- "min":1
779
- },
780
- "InputLogStreamNames":{
781
- "type":"list",
782
- "member":{"shape":"LogStreamName"},
783
- "max":100,
784
- "min":1
785
- },
786
- "Interleaved":{"type":"boolean"},
787
- "InvalidOperationException":{
788
- "type":"structure",
789
- "members":{
790
- },
791
- "exception":true
792
- },
793
- "InvalidParameterException":{
794
- "type":"structure",
795
- "members":{
796
- },
797
- "exception":true
798
- },
799
- "InvalidSequenceTokenException":{
800
- "type":"structure",
801
- "members":{
802
- "expectedSequenceToken":{"shape":"SequenceToken"}
803
- },
804
- "exception":true
805
- },
806
- "LimitExceededException":{
807
- "type":"structure",
808
- "members":{
809
- },
810
- "exception":true
811
- },
812
- "LogEventIndex":{"type":"integer"},
813
- "LogGroup":{
814
- "type":"structure",
815
- "members":{
816
- "logGroupName":{"shape":"LogGroupName"},
817
- "creationTime":{"shape":"Timestamp"},
818
- "retentionInDays":{"shape":"Days"},
819
- "metricFilterCount":{"shape":"FilterCount"},
820
- "arn":{"shape":"Arn"},
821
- "storedBytes":{"shape":"StoredBytes"}
822
- }
823
- },
824
- "LogGroupName":{
825
- "type":"string",
826
- "max":512,
827
- "min":1,
828
- "pattern":"[\\.\\-_/#A-Za-z0-9]+"
829
- },
830
- "LogGroups":{
831
- "type":"list",
832
- "member":{"shape":"LogGroup"}
833
- },
834
- "LogStream":{
835
- "type":"structure",
836
- "members":{
837
- "logStreamName":{"shape":"LogStreamName"},
838
- "creationTime":{"shape":"Timestamp"},
839
- "firstEventTimestamp":{"shape":"Timestamp"},
840
- "lastEventTimestamp":{"shape":"Timestamp"},
841
- "lastIngestionTime":{"shape":"Timestamp"},
842
- "uploadSequenceToken":{"shape":"SequenceToken"},
843
- "arn":{"shape":"Arn"},
844
- "storedBytes":{"shape":"StoredBytes"}
845
- }
846
- },
847
- "LogStreamName":{
848
- "type":"string",
849
- "max":512,
850
- "min":1,
851
- "pattern":"[^:*]*"
852
- },
853
- "LogStreamSearchedCompletely":{"type":"boolean"},
854
- "LogStreams":{
855
- "type":"list",
856
- "member":{"shape":"LogStream"}
857
- },
858
- "MetricFilter":{
859
- "type":"structure",
860
- "members":{
861
- "filterName":{"shape":"FilterName"},
862
- "filterPattern":{"shape":"FilterPattern"},
863
- "metricTransformations":{"shape":"MetricTransformations"},
864
- "creationTime":{"shape":"Timestamp"}
865
- }
866
- },
867
- "MetricFilterMatchRecord":{
868
- "type":"structure",
869
- "members":{
870
- "eventNumber":{"shape":"EventNumber"},
871
- "eventMessage":{"shape":"EventMessage"},
872
- "extractedValues":{"shape":"ExtractedValues"}
873
- }
874
- },
875
- "MetricFilterMatches":{
876
- "type":"list",
877
- "member":{"shape":"MetricFilterMatchRecord"}
878
- },
879
- "MetricFilters":{
880
- "type":"list",
881
- "member":{"shape":"MetricFilter"}
882
- },
883
- "MetricName":{
884
- "type":"string",
885
- "max":255,
886
- "pattern":"[^:*$]*"
887
- },
888
- "MetricNamespace":{
889
- "type":"string",
890
- "max":255,
891
- "pattern":"[^:*$]*"
892
- },
893
- "MetricTransformation":{
894
- "type":"structure",
895
- "required":[
896
- "metricName",
897
- "metricNamespace",
898
- "metricValue"
899
- ],
900
- "members":{
901
- "metricName":{"shape":"MetricName"},
902
- "metricNamespace":{"shape":"MetricNamespace"},
903
- "metricValue":{"shape":"MetricValue"}
904
- }
905
- },
906
- "MetricTransformations":{
907
- "type":"list",
908
- "member":{"shape":"MetricTransformation"},
909
- "max":1,
910
- "min":1
911
- },
912
- "MetricValue":{
913
- "type":"string",
914
- "max":100
915
- },
916
- "NextToken":{
917
- "type":"string",
918
- "min":1
919
- },
920
- "OperationAbortedException":{
921
- "type":"structure",
922
- "members":{
923
- },
924
- "exception":true
925
- },
926
- "OrderBy":{
927
- "type":"string",
928
- "enum":[
929
- "LogStreamName",
930
- "LastEventTime"
931
- ]
932
- },
933
- "OutputLogEvent":{
934
- "type":"structure",
935
- "members":{
936
- "timestamp":{"shape":"Timestamp"},
937
- "message":{"shape":"EventMessage"},
938
- "ingestionTime":{"shape":"Timestamp"}
939
- }
940
- },
941
- "OutputLogEvents":{
942
- "type":"list",
943
- "member":{"shape":"OutputLogEvent"}
944
- },
945
- "PutDestinationPolicyRequest":{
946
- "type":"structure",
947
- "required":[
948
- "destinationName",
949
- "accessPolicy"
950
- ],
951
- "members":{
952
- "destinationName":{"shape":"DestinationName"},
953
- "accessPolicy":{"shape":"AccessPolicy"}
954
- }
955
- },
956
- "PutDestinationRequest":{
957
- "type":"structure",
958
- "required":[
959
- "destinationName",
960
- "targetArn",
961
- "roleArn"
962
- ],
963
- "members":{
964
- "destinationName":{"shape":"DestinationName"},
965
- "targetArn":{"shape":"TargetArn"},
966
- "roleArn":{"shape":"RoleArn"}
967
- }
968
- },
969
- "PutDestinationResponse":{
970
- "type":"structure",
971
- "members":{
972
- "destination":{"shape":"Destination"}
973
- }
974
- },
975
- "PutLogEventsRequest":{
976
- "type":"structure",
977
- "required":[
978
- "logGroupName",
979
- "logStreamName",
980
- "logEvents"
981
- ],
982
- "members":{
983
- "logGroupName":{"shape":"LogGroupName"},
984
- "logStreamName":{"shape":"LogStreamName"},
985
- "logEvents":{"shape":"InputLogEvents"},
986
- "sequenceToken":{"shape":"SequenceToken"}
987
- }
988
- },
989
- "PutLogEventsResponse":{
990
- "type":"structure",
991
- "members":{
992
- "nextSequenceToken":{"shape":"SequenceToken"},
993
- "rejectedLogEventsInfo":{"shape":"RejectedLogEventsInfo"}
994
- }
995
- },
996
- "PutMetricFilterRequest":{
997
- "type":"structure",
998
- "required":[
999
- "logGroupName",
1000
- "filterName",
1001
- "filterPattern",
1002
- "metricTransformations"
1003
- ],
1004
- "members":{
1005
- "logGroupName":{"shape":"LogGroupName"},
1006
- "filterName":{"shape":"FilterName"},
1007
- "filterPattern":{"shape":"FilterPattern"},
1008
- "metricTransformations":{"shape":"MetricTransformations"}
1009
- }
1010
- },
1011
- "PutRetentionPolicyRequest":{
1012
- "type":"structure",
1013
- "required":[
1014
- "logGroupName",
1015
- "retentionInDays"
1016
- ],
1017
- "members":{
1018
- "logGroupName":{"shape":"LogGroupName"},
1019
- "retentionInDays":{"shape":"Days"}
1020
- }
1021
- },
1022
- "PutSubscriptionFilterRequest":{
1023
- "type":"structure",
1024
- "required":[
1025
- "logGroupName",
1026
- "filterName",
1027
- "filterPattern",
1028
- "destinationArn"
1029
- ],
1030
- "members":{
1031
- "logGroupName":{"shape":"LogGroupName"},
1032
- "filterName":{"shape":"FilterName"},
1033
- "filterPattern":{"shape":"FilterPattern"},
1034
- "destinationArn":{"shape":"DestinationArn"},
1035
- "roleArn":{"shape":"RoleArn"}
1036
- }
1037
- },
1038
- "RejectedLogEventsInfo":{
1039
- "type":"structure",
1040
- "members":{
1041
- "tooNewLogEventStartIndex":{"shape":"LogEventIndex"},
1042
- "tooOldLogEventEndIndex":{"shape":"LogEventIndex"},
1043
- "expiredLogEventEndIndex":{"shape":"LogEventIndex"}
1044
- }
1045
- },
1046
- "ResourceAlreadyExistsException":{
1047
- "type":"structure",
1048
- "members":{
1049
- },
1050
- "exception":true
1051
- },
1052
- "ResourceNotFoundException":{
1053
- "type":"structure",
1054
- "members":{
1055
- },
1056
- "exception":true
1057
- },
1058
- "RoleArn":{
1059
- "type":"string",
1060
- "min":1
1061
- },
1062
- "SearchedLogStream":{
1063
- "type":"structure",
1064
- "members":{
1065
- "logStreamName":{"shape":"LogStreamName"},
1066
- "searchedCompletely":{"shape":"LogStreamSearchedCompletely"}
1067
- }
1068
- },
1069
- "SearchedLogStreams":{
1070
- "type":"list",
1071
- "member":{"shape":"SearchedLogStream"}
1072
- },
1073
- "SequenceToken":{
1074
- "type":"string",
1075
- "min":1
1076
- },
1077
- "ServiceUnavailableException":{
1078
- "type":"structure",
1079
- "members":{
1080
- },
1081
- "exception":true,
1082
- "fault":true
1083
- },
1084
- "StartFromHead":{"type":"boolean"},
1085
- "StoredBytes":{
1086
- "type":"long",
1087
- "min":0
1088
- },
1089
- "SubscriptionFilter":{
1090
- "type":"structure",
1091
- "members":{
1092
- "filterName":{"shape":"FilterName"},
1093
- "logGroupName":{"shape":"LogGroupName"},
1094
- "filterPattern":{"shape":"FilterPattern"},
1095
- "destinationArn":{"shape":"DestinationArn"},
1096
- "roleArn":{"shape":"RoleArn"},
1097
- "creationTime":{"shape":"Timestamp"}
1098
- }
1099
- },
1100
- "SubscriptionFilters":{
1101
- "type":"list",
1102
- "member":{"shape":"SubscriptionFilter"}
1103
- },
1104
- "TargetArn":{
1105
- "type":"string",
1106
- "min":1
1107
- },
1108
- "TestEventMessages":{
1109
- "type":"list",
1110
- "member":{"shape":"EventMessage"},
1111
- "max":50,
1112
- "min":1
1113
- },
1114
- "TestMetricFilterRequest":{
1115
- "type":"structure",
1116
- "required":[
1117
- "filterPattern",
1118
- "logEventMessages"
1119
- ],
1120
- "members":{
1121
- "filterPattern":{"shape":"FilterPattern"},
1122
- "logEventMessages":{"shape":"TestEventMessages"}
1123
- }
1124
- },
1125
- "TestMetricFilterResponse":{
1126
- "type":"structure",
1127
- "members":{
1128
- "matches":{"shape":"MetricFilterMatches"}
1129
- }
1130
- },
1131
- "Timestamp":{
1132
- "type":"long",
1133
- "min":0
1134
- },
1135
- "Token":{"type":"string"},
1136
- "Value":{"type":"string"}
1137
- }
1138
- }