aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,4410 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2017-03-31",
5
- "endpointPrefix":"glue",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS Glue",
9
- "serviceId":"Glue",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AWSGlue",
12
- "uid":"glue-2017-03-31"
13
- },
14
- "operations":{
15
- "BatchCreatePartition":{
16
- "name":"BatchCreatePartition",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"BatchCreatePartitionRequest"},
22
- "output":{"shape":"BatchCreatePartitionResponse"},
23
- "errors":[
24
- {"shape":"InvalidInputException"},
25
- {"shape":"AlreadyExistsException"},
26
- {"shape":"ResourceNumberLimitExceededException"},
27
- {"shape":"InternalServiceException"},
28
- {"shape":"EntityNotFoundException"},
29
- {"shape":"OperationTimeoutException"},
30
- {"shape":"GlueEncryptionException"}
31
- ]
32
- },
33
- "BatchDeleteConnection":{
34
- "name":"BatchDeleteConnection",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/"
38
- },
39
- "input":{"shape":"BatchDeleteConnectionRequest"},
40
- "output":{"shape":"BatchDeleteConnectionResponse"},
41
- "errors":[
42
- {"shape":"InternalServiceException"},
43
- {"shape":"OperationTimeoutException"}
44
- ]
45
- },
46
- "BatchDeletePartition":{
47
- "name":"BatchDeletePartition",
48
- "http":{
49
- "method":"POST",
50
- "requestUri":"/"
51
- },
52
- "input":{"shape":"BatchDeletePartitionRequest"},
53
- "output":{"shape":"BatchDeletePartitionResponse"},
54
- "errors":[
55
- {"shape":"InvalidInputException"},
56
- {"shape":"EntityNotFoundException"},
57
- {"shape":"InternalServiceException"},
58
- {"shape":"OperationTimeoutException"}
59
- ]
60
- },
61
- "BatchDeleteTable":{
62
- "name":"BatchDeleteTable",
63
- "http":{
64
- "method":"POST",
65
- "requestUri":"/"
66
- },
67
- "input":{"shape":"BatchDeleteTableRequest"},
68
- "output":{"shape":"BatchDeleteTableResponse"},
69
- "errors":[
70
- {"shape":"InvalidInputException"},
71
- {"shape":"EntityNotFoundException"},
72
- {"shape":"InternalServiceException"},
73
- {"shape":"OperationTimeoutException"}
74
- ]
75
- },
76
- "BatchDeleteTableVersion":{
77
- "name":"BatchDeleteTableVersion",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/"
81
- },
82
- "input":{"shape":"BatchDeleteTableVersionRequest"},
83
- "output":{"shape":"BatchDeleteTableVersionResponse"},
84
- "errors":[
85
- {"shape":"EntityNotFoundException"},
86
- {"shape":"InvalidInputException"},
87
- {"shape":"InternalServiceException"},
88
- {"shape":"OperationTimeoutException"}
89
- ]
90
- },
91
- "BatchGetPartition":{
92
- "name":"BatchGetPartition",
93
- "http":{
94
- "method":"POST",
95
- "requestUri":"/"
96
- },
97
- "input":{"shape":"BatchGetPartitionRequest"},
98
- "output":{"shape":"BatchGetPartitionResponse"},
99
- "errors":[
100
- {"shape":"InvalidInputException"},
101
- {"shape":"EntityNotFoundException"},
102
- {"shape":"OperationTimeoutException"},
103
- {"shape":"InternalServiceException"},
104
- {"shape":"GlueEncryptionException"}
105
- ]
106
- },
107
- "BatchStopJobRun":{
108
- "name":"BatchStopJobRun",
109
- "http":{
110
- "method":"POST",
111
- "requestUri":"/"
112
- },
113
- "input":{"shape":"BatchStopJobRunRequest"},
114
- "output":{"shape":"BatchStopJobRunResponse"},
115
- "errors":[
116
- {"shape":"InvalidInputException"},
117
- {"shape":"InternalServiceException"},
118
- {"shape":"OperationTimeoutException"}
119
- ]
120
- },
121
- "CreateClassifier":{
122
- "name":"CreateClassifier",
123
- "http":{
124
- "method":"POST",
125
- "requestUri":"/"
126
- },
127
- "input":{"shape":"CreateClassifierRequest"},
128
- "output":{"shape":"CreateClassifierResponse"},
129
- "errors":[
130
- {"shape":"AlreadyExistsException"},
131
- {"shape":"InvalidInputException"},
132
- {"shape":"OperationTimeoutException"}
133
- ]
134
- },
135
- "CreateConnection":{
136
- "name":"CreateConnection",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"CreateConnectionRequest"},
142
- "output":{"shape":"CreateConnectionResponse"},
143
- "errors":[
144
- {"shape":"AlreadyExistsException"},
145
- {"shape":"InvalidInputException"},
146
- {"shape":"OperationTimeoutException"},
147
- {"shape":"ResourceNumberLimitExceededException"},
148
- {"shape":"GlueEncryptionException"}
149
- ]
150
- },
151
- "CreateCrawler":{
152
- "name":"CreateCrawler",
153
- "http":{
154
- "method":"POST",
155
- "requestUri":"/"
156
- },
157
- "input":{"shape":"CreateCrawlerRequest"},
158
- "output":{"shape":"CreateCrawlerResponse"},
159
- "errors":[
160
- {"shape":"InvalidInputException"},
161
- {"shape":"AlreadyExistsException"},
162
- {"shape":"OperationTimeoutException"},
163
- {"shape":"ResourceNumberLimitExceededException"}
164
- ]
165
- },
166
- "CreateDatabase":{
167
- "name":"CreateDatabase",
168
- "http":{
169
- "method":"POST",
170
- "requestUri":"/"
171
- },
172
- "input":{"shape":"CreateDatabaseRequest"},
173
- "output":{"shape":"CreateDatabaseResponse"},
174
- "errors":[
175
- {"shape":"InvalidInputException"},
176
- {"shape":"AlreadyExistsException"},
177
- {"shape":"ResourceNumberLimitExceededException"},
178
- {"shape":"InternalServiceException"},
179
- {"shape":"OperationTimeoutException"},
180
- {"shape":"GlueEncryptionException"}
181
- ]
182
- },
183
- "CreateDevEndpoint":{
184
- "name":"CreateDevEndpoint",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"CreateDevEndpointRequest"},
190
- "output":{"shape":"CreateDevEndpointResponse"},
191
- "errors":[
192
- {"shape":"AccessDeniedException"},
193
- {"shape":"AlreadyExistsException"},
194
- {"shape":"IdempotentParameterMismatchException"},
195
- {"shape":"InternalServiceException"},
196
- {"shape":"OperationTimeoutException"},
197
- {"shape":"InvalidInputException"},
198
- {"shape":"ValidationException"},
199
- {"shape":"ResourceNumberLimitExceededException"}
200
- ]
201
- },
202
- "CreateJob":{
203
- "name":"CreateJob",
204
- "http":{
205
- "method":"POST",
206
- "requestUri":"/"
207
- },
208
- "input":{"shape":"CreateJobRequest"},
209
- "output":{"shape":"CreateJobResponse"},
210
- "errors":[
211
- {"shape":"InvalidInputException"},
212
- {"shape":"IdempotentParameterMismatchException"},
213
- {"shape":"AlreadyExistsException"},
214
- {"shape":"InternalServiceException"},
215
- {"shape":"OperationTimeoutException"},
216
- {"shape":"ResourceNumberLimitExceededException"},
217
- {"shape":"ConcurrentModificationException"}
218
- ]
219
- },
220
- "CreatePartition":{
221
- "name":"CreatePartition",
222
- "http":{
223
- "method":"POST",
224
- "requestUri":"/"
225
- },
226
- "input":{"shape":"CreatePartitionRequest"},
227
- "output":{"shape":"CreatePartitionResponse"},
228
- "errors":[
229
- {"shape":"InvalidInputException"},
230
- {"shape":"AlreadyExistsException"},
231
- {"shape":"ResourceNumberLimitExceededException"},
232
- {"shape":"InternalServiceException"},
233
- {"shape":"EntityNotFoundException"},
234
- {"shape":"OperationTimeoutException"},
235
- {"shape":"GlueEncryptionException"}
236
- ]
237
- },
238
- "CreateScript":{
239
- "name":"CreateScript",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"CreateScriptRequest"},
245
- "output":{"shape":"CreateScriptResponse"},
246
- "errors":[
247
- {"shape":"InvalidInputException"},
248
- {"shape":"InternalServiceException"},
249
- {"shape":"OperationTimeoutException"}
250
- ]
251
- },
252
- "CreateSecurityConfiguration":{
253
- "name":"CreateSecurityConfiguration",
254
- "http":{
255
- "method":"POST",
256
- "requestUri":"/"
257
- },
258
- "input":{"shape":"CreateSecurityConfigurationRequest"},
259
- "output":{"shape":"CreateSecurityConfigurationResponse"},
260
- "errors":[
261
- {"shape":"AlreadyExistsException"},
262
- {"shape":"InvalidInputException"},
263
- {"shape":"InternalServiceException"},
264
- {"shape":"OperationTimeoutException"},
265
- {"shape":"ResourceNumberLimitExceededException"}
266
- ]
267
- },
268
- "CreateTable":{
269
- "name":"CreateTable",
270
- "http":{
271
- "method":"POST",
272
- "requestUri":"/"
273
- },
274
- "input":{"shape":"CreateTableRequest"},
275
- "output":{"shape":"CreateTableResponse"},
276
- "errors":[
277
- {"shape":"AlreadyExistsException"},
278
- {"shape":"InvalidInputException"},
279
- {"shape":"EntityNotFoundException"},
280
- {"shape":"ResourceNumberLimitExceededException"},
281
- {"shape":"InternalServiceException"},
282
- {"shape":"OperationTimeoutException"},
283
- {"shape":"GlueEncryptionException"}
284
- ]
285
- },
286
- "CreateTrigger":{
287
- "name":"CreateTrigger",
288
- "http":{
289
- "method":"POST",
290
- "requestUri":"/"
291
- },
292
- "input":{"shape":"CreateTriggerRequest"},
293
- "output":{"shape":"CreateTriggerResponse"},
294
- "errors":[
295
- {"shape":"AlreadyExistsException"},
296
- {"shape":"InvalidInputException"},
297
- {"shape":"IdempotentParameterMismatchException"},
298
- {"shape":"InternalServiceException"},
299
- {"shape":"OperationTimeoutException"},
300
- {"shape":"ResourceNumberLimitExceededException"},
301
- {"shape":"ConcurrentModificationException"}
302
- ]
303
- },
304
- "CreateUserDefinedFunction":{
305
- "name":"CreateUserDefinedFunction",
306
- "http":{
307
- "method":"POST",
308
- "requestUri":"/"
309
- },
310
- "input":{"shape":"CreateUserDefinedFunctionRequest"},
311
- "output":{"shape":"CreateUserDefinedFunctionResponse"},
312
- "errors":[
313
- {"shape":"AlreadyExistsException"},
314
- {"shape":"InvalidInputException"},
315
- {"shape":"InternalServiceException"},
316
- {"shape":"EntityNotFoundException"},
317
- {"shape":"OperationTimeoutException"},
318
- {"shape":"ResourceNumberLimitExceededException"},
319
- {"shape":"GlueEncryptionException"}
320
- ]
321
- },
322
- "DeleteClassifier":{
323
- "name":"DeleteClassifier",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DeleteClassifierRequest"},
329
- "output":{"shape":"DeleteClassifierResponse"},
330
- "errors":[
331
- {"shape":"EntityNotFoundException"},
332
- {"shape":"OperationTimeoutException"}
333
- ]
334
- },
335
- "DeleteConnection":{
336
- "name":"DeleteConnection",
337
- "http":{
338
- "method":"POST",
339
- "requestUri":"/"
340
- },
341
- "input":{"shape":"DeleteConnectionRequest"},
342
- "output":{"shape":"DeleteConnectionResponse"},
343
- "errors":[
344
- {"shape":"EntityNotFoundException"},
345
- {"shape":"OperationTimeoutException"}
346
- ]
347
- },
348
- "DeleteCrawler":{
349
- "name":"DeleteCrawler",
350
- "http":{
351
- "method":"POST",
352
- "requestUri":"/"
353
- },
354
- "input":{"shape":"DeleteCrawlerRequest"},
355
- "output":{"shape":"DeleteCrawlerResponse"},
356
- "errors":[
357
- {"shape":"EntityNotFoundException"},
358
- {"shape":"CrawlerRunningException"},
359
- {"shape":"SchedulerTransitioningException"},
360
- {"shape":"OperationTimeoutException"}
361
- ]
362
- },
363
- "DeleteDatabase":{
364
- "name":"DeleteDatabase",
365
- "http":{
366
- "method":"POST",
367
- "requestUri":"/"
368
- },
369
- "input":{"shape":"DeleteDatabaseRequest"},
370
- "output":{"shape":"DeleteDatabaseResponse"},
371
- "errors":[
372
- {"shape":"EntityNotFoundException"},
373
- {"shape":"InvalidInputException"},
374
- {"shape":"InternalServiceException"},
375
- {"shape":"OperationTimeoutException"}
376
- ]
377
- },
378
- "DeleteDevEndpoint":{
379
- "name":"DeleteDevEndpoint",
380
- "http":{
381
- "method":"POST",
382
- "requestUri":"/"
383
- },
384
- "input":{"shape":"DeleteDevEndpointRequest"},
385
- "output":{"shape":"DeleteDevEndpointResponse"},
386
- "errors":[
387
- {"shape":"EntityNotFoundException"},
388
- {"shape":"InternalServiceException"},
389
- {"shape":"OperationTimeoutException"},
390
- {"shape":"InvalidInputException"}
391
- ]
392
- },
393
- "DeleteJob":{
394
- "name":"DeleteJob",
395
- "http":{
396
- "method":"POST",
397
- "requestUri":"/"
398
- },
399
- "input":{"shape":"DeleteJobRequest"},
400
- "output":{"shape":"DeleteJobResponse"},
401
- "errors":[
402
- {"shape":"InvalidInputException"},
403
- {"shape":"InternalServiceException"},
404
- {"shape":"OperationTimeoutException"}
405
- ]
406
- },
407
- "DeletePartition":{
408
- "name":"DeletePartition",
409
- "http":{
410
- "method":"POST",
411
- "requestUri":"/"
412
- },
413
- "input":{"shape":"DeletePartitionRequest"},
414
- "output":{"shape":"DeletePartitionResponse"},
415
- "errors":[
416
- {"shape":"EntityNotFoundException"},
417
- {"shape":"InvalidInputException"},
418
- {"shape":"InternalServiceException"},
419
- {"shape":"OperationTimeoutException"}
420
- ]
421
- },
422
- "DeleteResourcePolicy":{
423
- "name":"DeleteResourcePolicy",
424
- "http":{
425
- "method":"POST",
426
- "requestUri":"/"
427
- },
428
- "input":{"shape":"DeleteResourcePolicyRequest"},
429
- "output":{"shape":"DeleteResourcePolicyResponse"},
430
- "errors":[
431
- {"shape":"EntityNotFoundException"},
432
- {"shape":"InternalServiceException"},
433
- {"shape":"OperationTimeoutException"},
434
- {"shape":"InvalidInputException"},
435
- {"shape":"ConditionCheckFailureException"}
436
- ]
437
- },
438
- "DeleteSecurityConfiguration":{
439
- "name":"DeleteSecurityConfiguration",
440
- "http":{
441
- "method":"POST",
442
- "requestUri":"/"
443
- },
444
- "input":{"shape":"DeleteSecurityConfigurationRequest"},
445
- "output":{"shape":"DeleteSecurityConfigurationResponse"},
446
- "errors":[
447
- {"shape":"EntityNotFoundException"},
448
- {"shape":"InvalidInputException"},
449
- {"shape":"InternalServiceException"},
450
- {"shape":"OperationTimeoutException"}
451
- ]
452
- },
453
- "DeleteTable":{
454
- "name":"DeleteTable",
455
- "http":{
456
- "method":"POST",
457
- "requestUri":"/"
458
- },
459
- "input":{"shape":"DeleteTableRequest"},
460
- "output":{"shape":"DeleteTableResponse"},
461
- "errors":[
462
- {"shape":"EntityNotFoundException"},
463
- {"shape":"InvalidInputException"},
464
- {"shape":"InternalServiceException"},
465
- {"shape":"OperationTimeoutException"}
466
- ]
467
- },
468
- "DeleteTableVersion":{
469
- "name":"DeleteTableVersion",
470
- "http":{
471
- "method":"POST",
472
- "requestUri":"/"
473
- },
474
- "input":{"shape":"DeleteTableVersionRequest"},
475
- "output":{"shape":"DeleteTableVersionResponse"},
476
- "errors":[
477
- {"shape":"EntityNotFoundException"},
478
- {"shape":"InvalidInputException"},
479
- {"shape":"InternalServiceException"},
480
- {"shape":"OperationTimeoutException"}
481
- ]
482
- },
483
- "DeleteTrigger":{
484
- "name":"DeleteTrigger",
485
- "http":{
486
- "method":"POST",
487
- "requestUri":"/"
488
- },
489
- "input":{"shape":"DeleteTriggerRequest"},
490
- "output":{"shape":"DeleteTriggerResponse"},
491
- "errors":[
492
- {"shape":"InvalidInputException"},
493
- {"shape":"InternalServiceException"},
494
- {"shape":"OperationTimeoutException"},
495
- {"shape":"ConcurrentModificationException"}
496
- ]
497
- },
498
- "DeleteUserDefinedFunction":{
499
- "name":"DeleteUserDefinedFunction",
500
- "http":{
501
- "method":"POST",
502
- "requestUri":"/"
503
- },
504
- "input":{"shape":"DeleteUserDefinedFunctionRequest"},
505
- "output":{"shape":"DeleteUserDefinedFunctionResponse"},
506
- "errors":[
507
- {"shape":"EntityNotFoundException"},
508
- {"shape":"InvalidInputException"},
509
- {"shape":"InternalServiceException"},
510
- {"shape":"OperationTimeoutException"}
511
- ]
512
- },
513
- "GetCatalogImportStatus":{
514
- "name":"GetCatalogImportStatus",
515
- "http":{
516
- "method":"POST",
517
- "requestUri":"/"
518
- },
519
- "input":{"shape":"GetCatalogImportStatusRequest"},
520
- "output":{"shape":"GetCatalogImportStatusResponse"},
521
- "errors":[
522
- {"shape":"InternalServiceException"},
523
- {"shape":"OperationTimeoutException"}
524
- ]
525
- },
526
- "GetClassifier":{
527
- "name":"GetClassifier",
528
- "http":{
529
- "method":"POST",
530
- "requestUri":"/"
531
- },
532
- "input":{"shape":"GetClassifierRequest"},
533
- "output":{"shape":"GetClassifierResponse"},
534
- "errors":[
535
- {"shape":"EntityNotFoundException"},
536
- {"shape":"OperationTimeoutException"}
537
- ]
538
- },
539
- "GetClassifiers":{
540
- "name":"GetClassifiers",
541
- "http":{
542
- "method":"POST",
543
- "requestUri":"/"
544
- },
545
- "input":{"shape":"GetClassifiersRequest"},
546
- "output":{"shape":"GetClassifiersResponse"},
547
- "errors":[
548
- {"shape":"OperationTimeoutException"}
549
- ]
550
- },
551
- "GetConnection":{
552
- "name":"GetConnection",
553
- "http":{
554
- "method":"POST",
555
- "requestUri":"/"
556
- },
557
- "input":{"shape":"GetConnectionRequest"},
558
- "output":{"shape":"GetConnectionResponse"},
559
- "errors":[
560
- {"shape":"EntityNotFoundException"},
561
- {"shape":"OperationTimeoutException"},
562
- {"shape":"InvalidInputException"},
563
- {"shape":"GlueEncryptionException"}
564
- ]
565
- },
566
- "GetConnections":{
567
- "name":"GetConnections",
568
- "http":{
569
- "method":"POST",
570
- "requestUri":"/"
571
- },
572
- "input":{"shape":"GetConnectionsRequest"},
573
- "output":{"shape":"GetConnectionsResponse"},
574
- "errors":[
575
- {"shape":"EntityNotFoundException"},
576
- {"shape":"OperationTimeoutException"},
577
- {"shape":"InvalidInputException"},
578
- {"shape":"GlueEncryptionException"}
579
- ]
580
- },
581
- "GetCrawler":{
582
- "name":"GetCrawler",
583
- "http":{
584
- "method":"POST",
585
- "requestUri":"/"
586
- },
587
- "input":{"shape":"GetCrawlerRequest"},
588
- "output":{"shape":"GetCrawlerResponse"},
589
- "errors":[
590
- {"shape":"EntityNotFoundException"},
591
- {"shape":"OperationTimeoutException"}
592
- ]
593
- },
594
- "GetCrawlerMetrics":{
595
- "name":"GetCrawlerMetrics",
596
- "http":{
597
- "method":"POST",
598
- "requestUri":"/"
599
- },
600
- "input":{"shape":"GetCrawlerMetricsRequest"},
601
- "output":{"shape":"GetCrawlerMetricsResponse"},
602
- "errors":[
603
- {"shape":"OperationTimeoutException"}
604
- ]
605
- },
606
- "GetCrawlers":{
607
- "name":"GetCrawlers",
608
- "http":{
609
- "method":"POST",
610
- "requestUri":"/"
611
- },
612
- "input":{"shape":"GetCrawlersRequest"},
613
- "output":{"shape":"GetCrawlersResponse"},
614
- "errors":[
615
- {"shape":"OperationTimeoutException"}
616
- ]
617
- },
618
- "GetDataCatalogEncryptionSettings":{
619
- "name":"GetDataCatalogEncryptionSettings",
620
- "http":{
621
- "method":"POST",
622
- "requestUri":"/"
623
- },
624
- "input":{"shape":"GetDataCatalogEncryptionSettingsRequest"},
625
- "output":{"shape":"GetDataCatalogEncryptionSettingsResponse"},
626
- "errors":[
627
- {"shape":"InternalServiceException"},
628
- {"shape":"InvalidInputException"},
629
- {"shape":"OperationTimeoutException"}
630
- ]
631
- },
632
- "GetDatabase":{
633
- "name":"GetDatabase",
634
- "http":{
635
- "method":"POST",
636
- "requestUri":"/"
637
- },
638
- "input":{"shape":"GetDatabaseRequest"},
639
- "output":{"shape":"GetDatabaseResponse"},
640
- "errors":[
641
- {"shape":"InvalidInputException"},
642
- {"shape":"EntityNotFoundException"},
643
- {"shape":"InternalServiceException"},
644
- {"shape":"OperationTimeoutException"},
645
- {"shape":"GlueEncryptionException"}
646
- ]
647
- },
648
- "GetDatabases":{
649
- "name":"GetDatabases",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/"
653
- },
654
- "input":{"shape":"GetDatabasesRequest"},
655
- "output":{"shape":"GetDatabasesResponse"},
656
- "errors":[
657
- {"shape":"InvalidInputException"},
658
- {"shape":"InternalServiceException"},
659
- {"shape":"OperationTimeoutException"},
660
- {"shape":"GlueEncryptionException"}
661
- ]
662
- },
663
- "GetDataflowGraph":{
664
- "name":"GetDataflowGraph",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"GetDataflowGraphRequest"},
670
- "output":{"shape":"GetDataflowGraphResponse"},
671
- "errors":[
672
- {"shape":"InvalidInputException"},
673
- {"shape":"InternalServiceException"},
674
- {"shape":"OperationTimeoutException"}
675
- ]
676
- },
677
- "GetDevEndpoint":{
678
- "name":"GetDevEndpoint",
679
- "http":{
680
- "method":"POST",
681
- "requestUri":"/"
682
- },
683
- "input":{"shape":"GetDevEndpointRequest"},
684
- "output":{"shape":"GetDevEndpointResponse"},
685
- "errors":[
686
- {"shape":"EntityNotFoundException"},
687
- {"shape":"InternalServiceException"},
688
- {"shape":"OperationTimeoutException"},
689
- {"shape":"InvalidInputException"}
690
- ]
691
- },
692
- "GetDevEndpoints":{
693
- "name":"GetDevEndpoints",
694
- "http":{
695
- "method":"POST",
696
- "requestUri":"/"
697
- },
698
- "input":{"shape":"GetDevEndpointsRequest"},
699
- "output":{"shape":"GetDevEndpointsResponse"},
700
- "errors":[
701
- {"shape":"EntityNotFoundException"},
702
- {"shape":"InternalServiceException"},
703
- {"shape":"OperationTimeoutException"},
704
- {"shape":"InvalidInputException"}
705
- ]
706
- },
707
- "GetJob":{
708
- "name":"GetJob",
709
- "http":{
710
- "method":"POST",
711
- "requestUri":"/"
712
- },
713
- "input":{"shape":"GetJobRequest"},
714
- "output":{"shape":"GetJobResponse"},
715
- "errors":[
716
- {"shape":"InvalidInputException"},
717
- {"shape":"EntityNotFoundException"},
718
- {"shape":"InternalServiceException"},
719
- {"shape":"OperationTimeoutException"}
720
- ]
721
- },
722
- "GetJobRun":{
723
- "name":"GetJobRun",
724
- "http":{
725
- "method":"POST",
726
- "requestUri":"/"
727
- },
728
- "input":{"shape":"GetJobRunRequest"},
729
- "output":{"shape":"GetJobRunResponse"},
730
- "errors":[
731
- {"shape":"InvalidInputException"},
732
- {"shape":"EntityNotFoundException"},
733
- {"shape":"InternalServiceException"},
734
- {"shape":"OperationTimeoutException"}
735
- ]
736
- },
737
- "GetJobRuns":{
738
- "name":"GetJobRuns",
739
- "http":{
740
- "method":"POST",
741
- "requestUri":"/"
742
- },
743
- "input":{"shape":"GetJobRunsRequest"},
744
- "output":{"shape":"GetJobRunsResponse"},
745
- "errors":[
746
- {"shape":"InvalidInputException"},
747
- {"shape":"EntityNotFoundException"},
748
- {"shape":"InternalServiceException"},
749
- {"shape":"OperationTimeoutException"}
750
- ]
751
- },
752
- "GetJobs":{
753
- "name":"GetJobs",
754
- "http":{
755
- "method":"POST",
756
- "requestUri":"/"
757
- },
758
- "input":{"shape":"GetJobsRequest"},
759
- "output":{"shape":"GetJobsResponse"},
760
- "errors":[
761
- {"shape":"InvalidInputException"},
762
- {"shape":"EntityNotFoundException"},
763
- {"shape":"InternalServiceException"},
764
- {"shape":"OperationTimeoutException"}
765
- ]
766
- },
767
- "GetMapping":{
768
- "name":"GetMapping",
769
- "http":{
770
- "method":"POST",
771
- "requestUri":"/"
772
- },
773
- "input":{"shape":"GetMappingRequest"},
774
- "output":{"shape":"GetMappingResponse"},
775
- "errors":[
776
- {"shape":"InvalidInputException"},
777
- {"shape":"InternalServiceException"},
778
- {"shape":"OperationTimeoutException"},
779
- {"shape":"EntityNotFoundException"}
780
- ]
781
- },
782
- "GetPartition":{
783
- "name":"GetPartition",
784
- "http":{
785
- "method":"POST",
786
- "requestUri":"/"
787
- },
788
- "input":{"shape":"GetPartitionRequest"},
789
- "output":{"shape":"GetPartitionResponse"},
790
- "errors":[
791
- {"shape":"EntityNotFoundException"},
792
- {"shape":"InvalidInputException"},
793
- {"shape":"InternalServiceException"},
794
- {"shape":"OperationTimeoutException"},
795
- {"shape":"GlueEncryptionException"}
796
- ]
797
- },
798
- "GetPartitions":{
799
- "name":"GetPartitions",
800
- "http":{
801
- "method":"POST",
802
- "requestUri":"/"
803
- },
804
- "input":{"shape":"GetPartitionsRequest"},
805
- "output":{"shape":"GetPartitionsResponse"},
806
- "errors":[
807
- {"shape":"EntityNotFoundException"},
808
- {"shape":"InvalidInputException"},
809
- {"shape":"OperationTimeoutException"},
810
- {"shape":"InternalServiceException"},
811
- {"shape":"GlueEncryptionException"}
812
- ]
813
- },
814
- "GetPlan":{
815
- "name":"GetPlan",
816
- "http":{
817
- "method":"POST",
818
- "requestUri":"/"
819
- },
820
- "input":{"shape":"GetPlanRequest"},
821
- "output":{"shape":"GetPlanResponse"},
822
- "errors":[
823
- {"shape":"InvalidInputException"},
824
- {"shape":"InternalServiceException"},
825
- {"shape":"OperationTimeoutException"}
826
- ]
827
- },
828
- "GetResourcePolicy":{
829
- "name":"GetResourcePolicy",
830
- "http":{
831
- "method":"POST",
832
- "requestUri":"/"
833
- },
834
- "input":{"shape":"GetResourcePolicyRequest"},
835
- "output":{"shape":"GetResourcePolicyResponse"},
836
- "errors":[
837
- {"shape":"EntityNotFoundException"},
838
- {"shape":"InternalServiceException"},
839
- {"shape":"OperationTimeoutException"},
840
- {"shape":"InvalidInputException"}
841
- ]
842
- },
843
- "GetSecurityConfiguration":{
844
- "name":"GetSecurityConfiguration",
845
- "http":{
846
- "method":"POST",
847
- "requestUri":"/"
848
- },
849
- "input":{"shape":"GetSecurityConfigurationRequest"},
850
- "output":{"shape":"GetSecurityConfigurationResponse"},
851
- "errors":[
852
- {"shape":"EntityNotFoundException"},
853
- {"shape":"InvalidInputException"},
854
- {"shape":"InternalServiceException"},
855
- {"shape":"OperationTimeoutException"}
856
- ]
857
- },
858
- "GetSecurityConfigurations":{
859
- "name":"GetSecurityConfigurations",
860
- "http":{
861
- "method":"POST",
862
- "requestUri":"/"
863
- },
864
- "input":{"shape":"GetSecurityConfigurationsRequest"},
865
- "output":{"shape":"GetSecurityConfigurationsResponse"},
866
- "errors":[
867
- {"shape":"EntityNotFoundException"},
868
- {"shape":"InvalidInputException"},
869
- {"shape":"InternalServiceException"},
870
- {"shape":"OperationTimeoutException"}
871
- ]
872
- },
873
- "GetTable":{
874
- "name":"GetTable",
875
- "http":{
876
- "method":"POST",
877
- "requestUri":"/"
878
- },
879
- "input":{"shape":"GetTableRequest"},
880
- "output":{"shape":"GetTableResponse"},
881
- "errors":[
882
- {"shape":"EntityNotFoundException"},
883
- {"shape":"InvalidInputException"},
884
- {"shape":"InternalServiceException"},
885
- {"shape":"OperationTimeoutException"},
886
- {"shape":"GlueEncryptionException"}
887
- ]
888
- },
889
- "GetTableVersion":{
890
- "name":"GetTableVersion",
891
- "http":{
892
- "method":"POST",
893
- "requestUri":"/"
894
- },
895
- "input":{"shape":"GetTableVersionRequest"},
896
- "output":{"shape":"GetTableVersionResponse"},
897
- "errors":[
898
- {"shape":"EntityNotFoundException"},
899
- {"shape":"InvalidInputException"},
900
- {"shape":"InternalServiceException"},
901
- {"shape":"OperationTimeoutException"},
902
- {"shape":"GlueEncryptionException"}
903
- ]
904
- },
905
- "GetTableVersions":{
906
- "name":"GetTableVersions",
907
- "http":{
908
- "method":"POST",
909
- "requestUri":"/"
910
- },
911
- "input":{"shape":"GetTableVersionsRequest"},
912
- "output":{"shape":"GetTableVersionsResponse"},
913
- "errors":[
914
- {"shape":"EntityNotFoundException"},
915
- {"shape":"InvalidInputException"},
916
- {"shape":"InternalServiceException"},
917
- {"shape":"OperationTimeoutException"},
918
- {"shape":"GlueEncryptionException"}
919
- ]
920
- },
921
- "GetTables":{
922
- "name":"GetTables",
923
- "http":{
924
- "method":"POST",
925
- "requestUri":"/"
926
- },
927
- "input":{"shape":"GetTablesRequest"},
928
- "output":{"shape":"GetTablesResponse"},
929
- "errors":[
930
- {"shape":"EntityNotFoundException"},
931
- {"shape":"InvalidInputException"},
932
- {"shape":"OperationTimeoutException"},
933
- {"shape":"InternalServiceException"},
934
- {"shape":"GlueEncryptionException"}
935
- ]
936
- },
937
- "GetTrigger":{
938
- "name":"GetTrigger",
939
- "http":{
940
- "method":"POST",
941
- "requestUri":"/"
942
- },
943
- "input":{"shape":"GetTriggerRequest"},
944
- "output":{"shape":"GetTriggerResponse"},
945
- "errors":[
946
- {"shape":"EntityNotFoundException"},
947
- {"shape":"InvalidInputException"},
948
- {"shape":"InternalServiceException"},
949
- {"shape":"OperationTimeoutException"}
950
- ]
951
- },
952
- "GetTriggers":{
953
- "name":"GetTriggers",
954
- "http":{
955
- "method":"POST",
956
- "requestUri":"/"
957
- },
958
- "input":{"shape":"GetTriggersRequest"},
959
- "output":{"shape":"GetTriggersResponse"},
960
- "errors":[
961
- {"shape":"EntityNotFoundException"},
962
- {"shape":"InvalidInputException"},
963
- {"shape":"InternalServiceException"},
964
- {"shape":"OperationTimeoutException"}
965
- ]
966
- },
967
- "GetUserDefinedFunction":{
968
- "name":"GetUserDefinedFunction",
969
- "http":{
970
- "method":"POST",
971
- "requestUri":"/"
972
- },
973
- "input":{"shape":"GetUserDefinedFunctionRequest"},
974
- "output":{"shape":"GetUserDefinedFunctionResponse"},
975
- "errors":[
976
- {"shape":"EntityNotFoundException"},
977
- {"shape":"InvalidInputException"},
978
- {"shape":"InternalServiceException"},
979
- {"shape":"OperationTimeoutException"},
980
- {"shape":"GlueEncryptionException"}
981
- ]
982
- },
983
- "GetUserDefinedFunctions":{
984
- "name":"GetUserDefinedFunctions",
985
- "http":{
986
- "method":"POST",
987
- "requestUri":"/"
988
- },
989
- "input":{"shape":"GetUserDefinedFunctionsRequest"},
990
- "output":{"shape":"GetUserDefinedFunctionsResponse"},
991
- "errors":[
992
- {"shape":"EntityNotFoundException"},
993
- {"shape":"InvalidInputException"},
994
- {"shape":"OperationTimeoutException"},
995
- {"shape":"InternalServiceException"},
996
- {"shape":"GlueEncryptionException"}
997
- ]
998
- },
999
- "ImportCatalogToGlue":{
1000
- "name":"ImportCatalogToGlue",
1001
- "http":{
1002
- "method":"POST",
1003
- "requestUri":"/"
1004
- },
1005
- "input":{"shape":"ImportCatalogToGlueRequest"},
1006
- "output":{"shape":"ImportCatalogToGlueResponse"},
1007
- "errors":[
1008
- {"shape":"InternalServiceException"},
1009
- {"shape":"OperationTimeoutException"}
1010
- ]
1011
- },
1012
- "PutDataCatalogEncryptionSettings":{
1013
- "name":"PutDataCatalogEncryptionSettings",
1014
- "http":{
1015
- "method":"POST",
1016
- "requestUri":"/"
1017
- },
1018
- "input":{"shape":"PutDataCatalogEncryptionSettingsRequest"},
1019
- "output":{"shape":"PutDataCatalogEncryptionSettingsResponse"},
1020
- "errors":[
1021
- {"shape":"InternalServiceException"},
1022
- {"shape":"InvalidInputException"},
1023
- {"shape":"OperationTimeoutException"}
1024
- ]
1025
- },
1026
- "PutResourcePolicy":{
1027
- "name":"PutResourcePolicy",
1028
- "http":{
1029
- "method":"POST",
1030
- "requestUri":"/"
1031
- },
1032
- "input":{"shape":"PutResourcePolicyRequest"},
1033
- "output":{"shape":"PutResourcePolicyResponse"},
1034
- "errors":[
1035
- {"shape":"EntityNotFoundException"},
1036
- {"shape":"InternalServiceException"},
1037
- {"shape":"OperationTimeoutException"},
1038
- {"shape":"InvalidInputException"},
1039
- {"shape":"ConditionCheckFailureException"}
1040
- ]
1041
- },
1042
- "ResetJobBookmark":{
1043
- "name":"ResetJobBookmark",
1044
- "http":{
1045
- "method":"POST",
1046
- "requestUri":"/"
1047
- },
1048
- "input":{"shape":"ResetJobBookmarkRequest"},
1049
- "output":{"shape":"ResetJobBookmarkResponse"},
1050
- "errors":[
1051
- {"shape":"EntityNotFoundException"},
1052
- {"shape":"InvalidInputException"},
1053
- {"shape":"InternalServiceException"},
1054
- {"shape":"OperationTimeoutException"}
1055
- ]
1056
- },
1057
- "StartCrawler":{
1058
- "name":"StartCrawler",
1059
- "http":{
1060
- "method":"POST",
1061
- "requestUri":"/"
1062
- },
1063
- "input":{"shape":"StartCrawlerRequest"},
1064
- "output":{"shape":"StartCrawlerResponse"},
1065
- "errors":[
1066
- {"shape":"EntityNotFoundException"},
1067
- {"shape":"CrawlerRunningException"},
1068
- {"shape":"OperationTimeoutException"}
1069
- ]
1070
- },
1071
- "StartCrawlerSchedule":{
1072
- "name":"StartCrawlerSchedule",
1073
- "http":{
1074
- "method":"POST",
1075
- "requestUri":"/"
1076
- },
1077
- "input":{"shape":"StartCrawlerScheduleRequest"},
1078
- "output":{"shape":"StartCrawlerScheduleResponse"},
1079
- "errors":[
1080
- {"shape":"EntityNotFoundException"},
1081
- {"shape":"SchedulerRunningException"},
1082
- {"shape":"SchedulerTransitioningException"},
1083
- {"shape":"NoScheduleException"},
1084
- {"shape":"OperationTimeoutException"}
1085
- ]
1086
- },
1087
- "StartJobRun":{
1088
- "name":"StartJobRun",
1089
- "http":{
1090
- "method":"POST",
1091
- "requestUri":"/"
1092
- },
1093
- "input":{"shape":"StartJobRunRequest"},
1094
- "output":{"shape":"StartJobRunResponse"},
1095
- "errors":[
1096
- {"shape":"InvalidInputException"},
1097
- {"shape":"EntityNotFoundException"},
1098
- {"shape":"InternalServiceException"},
1099
- {"shape":"OperationTimeoutException"},
1100
- {"shape":"ResourceNumberLimitExceededException"},
1101
- {"shape":"ConcurrentRunsExceededException"}
1102
- ]
1103
- },
1104
- "StartTrigger":{
1105
- "name":"StartTrigger",
1106
- "http":{
1107
- "method":"POST",
1108
- "requestUri":"/"
1109
- },
1110
- "input":{"shape":"StartTriggerRequest"},
1111
- "output":{"shape":"StartTriggerResponse"},
1112
- "errors":[
1113
- {"shape":"InvalidInputException"},
1114
- {"shape":"InternalServiceException"},
1115
- {"shape":"EntityNotFoundException"},
1116
- {"shape":"OperationTimeoutException"},
1117
- {"shape":"ResourceNumberLimitExceededException"},
1118
- {"shape":"ConcurrentRunsExceededException"}
1119
- ]
1120
- },
1121
- "StopCrawler":{
1122
- "name":"StopCrawler",
1123
- "http":{
1124
- "method":"POST",
1125
- "requestUri":"/"
1126
- },
1127
- "input":{"shape":"StopCrawlerRequest"},
1128
- "output":{"shape":"StopCrawlerResponse"},
1129
- "errors":[
1130
- {"shape":"EntityNotFoundException"},
1131
- {"shape":"CrawlerNotRunningException"},
1132
- {"shape":"CrawlerStoppingException"},
1133
- {"shape":"OperationTimeoutException"}
1134
- ]
1135
- },
1136
- "StopCrawlerSchedule":{
1137
- "name":"StopCrawlerSchedule",
1138
- "http":{
1139
- "method":"POST",
1140
- "requestUri":"/"
1141
- },
1142
- "input":{"shape":"StopCrawlerScheduleRequest"},
1143
- "output":{"shape":"StopCrawlerScheduleResponse"},
1144
- "errors":[
1145
- {"shape":"EntityNotFoundException"},
1146
- {"shape":"SchedulerNotRunningException"},
1147
- {"shape":"SchedulerTransitioningException"},
1148
- {"shape":"OperationTimeoutException"}
1149
- ]
1150
- },
1151
- "StopTrigger":{
1152
- "name":"StopTrigger",
1153
- "http":{
1154
- "method":"POST",
1155
- "requestUri":"/"
1156
- },
1157
- "input":{"shape":"StopTriggerRequest"},
1158
- "output":{"shape":"StopTriggerResponse"},
1159
- "errors":[
1160
- {"shape":"InvalidInputException"},
1161
- {"shape":"InternalServiceException"},
1162
- {"shape":"EntityNotFoundException"},
1163
- {"shape":"OperationTimeoutException"},
1164
- {"shape":"ConcurrentModificationException"}
1165
- ]
1166
- },
1167
- "UpdateClassifier":{
1168
- "name":"UpdateClassifier",
1169
- "http":{
1170
- "method":"POST",
1171
- "requestUri":"/"
1172
- },
1173
- "input":{"shape":"UpdateClassifierRequest"},
1174
- "output":{"shape":"UpdateClassifierResponse"},
1175
- "errors":[
1176
- {"shape":"InvalidInputException"},
1177
- {"shape":"VersionMismatchException"},
1178
- {"shape":"EntityNotFoundException"},
1179
- {"shape":"OperationTimeoutException"}
1180
- ]
1181
- },
1182
- "UpdateConnection":{
1183
- "name":"UpdateConnection",
1184
- "http":{
1185
- "method":"POST",
1186
- "requestUri":"/"
1187
- },
1188
- "input":{"shape":"UpdateConnectionRequest"},
1189
- "output":{"shape":"UpdateConnectionResponse"},
1190
- "errors":[
1191
- {"shape":"InvalidInputException"},
1192
- {"shape":"EntityNotFoundException"},
1193
- {"shape":"OperationTimeoutException"},
1194
- {"shape":"InvalidInputException"},
1195
- {"shape":"GlueEncryptionException"}
1196
- ]
1197
- },
1198
- "UpdateCrawler":{
1199
- "name":"UpdateCrawler",
1200
- "http":{
1201
- "method":"POST",
1202
- "requestUri":"/"
1203
- },
1204
- "input":{"shape":"UpdateCrawlerRequest"},
1205
- "output":{"shape":"UpdateCrawlerResponse"},
1206
- "errors":[
1207
- {"shape":"InvalidInputException"},
1208
- {"shape":"VersionMismatchException"},
1209
- {"shape":"EntityNotFoundException"},
1210
- {"shape":"CrawlerRunningException"},
1211
- {"shape":"OperationTimeoutException"}
1212
- ]
1213
- },
1214
- "UpdateCrawlerSchedule":{
1215
- "name":"UpdateCrawlerSchedule",
1216
- "http":{
1217
- "method":"POST",
1218
- "requestUri":"/"
1219
- },
1220
- "input":{"shape":"UpdateCrawlerScheduleRequest"},
1221
- "output":{"shape":"UpdateCrawlerScheduleResponse"},
1222
- "errors":[
1223
- {"shape":"EntityNotFoundException"},
1224
- {"shape":"InvalidInputException"},
1225
- {"shape":"VersionMismatchException"},
1226
- {"shape":"SchedulerTransitioningException"},
1227
- {"shape":"OperationTimeoutException"}
1228
- ]
1229
- },
1230
- "UpdateDatabase":{
1231
- "name":"UpdateDatabase",
1232
- "http":{
1233
- "method":"POST",
1234
- "requestUri":"/"
1235
- },
1236
- "input":{"shape":"UpdateDatabaseRequest"},
1237
- "output":{"shape":"UpdateDatabaseResponse"},
1238
- "errors":[
1239
- {"shape":"EntityNotFoundException"},
1240
- {"shape":"InvalidInputException"},
1241
- {"shape":"InternalServiceException"},
1242
- {"shape":"OperationTimeoutException"},
1243
- {"shape":"GlueEncryptionException"}
1244
- ]
1245
- },
1246
- "UpdateDevEndpoint":{
1247
- "name":"UpdateDevEndpoint",
1248
- "http":{
1249
- "method":"POST",
1250
- "requestUri":"/"
1251
- },
1252
- "input":{"shape":"UpdateDevEndpointRequest"},
1253
- "output":{"shape":"UpdateDevEndpointResponse"},
1254
- "errors":[
1255
- {"shape":"EntityNotFoundException"},
1256
- {"shape":"InternalServiceException"},
1257
- {"shape":"OperationTimeoutException"},
1258
- {"shape":"InvalidInputException"},
1259
- {"shape":"ValidationException"}
1260
- ]
1261
- },
1262
- "UpdateJob":{
1263
- "name":"UpdateJob",
1264
- "http":{
1265
- "method":"POST",
1266
- "requestUri":"/"
1267
- },
1268
- "input":{"shape":"UpdateJobRequest"},
1269
- "output":{"shape":"UpdateJobResponse"},
1270
- "errors":[
1271
- {"shape":"InvalidInputException"},
1272
- {"shape":"EntityNotFoundException"},
1273
- {"shape":"InternalServiceException"},
1274
- {"shape":"OperationTimeoutException"},
1275
- {"shape":"ConcurrentModificationException"}
1276
- ]
1277
- },
1278
- "UpdatePartition":{
1279
- "name":"UpdatePartition",
1280
- "http":{
1281
- "method":"POST",
1282
- "requestUri":"/"
1283
- },
1284
- "input":{"shape":"UpdatePartitionRequest"},
1285
- "output":{"shape":"UpdatePartitionResponse"},
1286
- "errors":[
1287
- {"shape":"EntityNotFoundException"},
1288
- {"shape":"InvalidInputException"},
1289
- {"shape":"InternalServiceException"},
1290
- {"shape":"OperationTimeoutException"},
1291
- {"shape":"GlueEncryptionException"}
1292
- ]
1293
- },
1294
- "UpdateTable":{
1295
- "name":"UpdateTable",
1296
- "http":{
1297
- "method":"POST",
1298
- "requestUri":"/"
1299
- },
1300
- "input":{"shape":"UpdateTableRequest"},
1301
- "output":{"shape":"UpdateTableResponse"},
1302
- "errors":[
1303
- {"shape":"EntityNotFoundException"},
1304
- {"shape":"InvalidInputException"},
1305
- {"shape":"InternalServiceException"},
1306
- {"shape":"OperationTimeoutException"},
1307
- {"shape":"ConcurrentModificationException"},
1308
- {"shape":"ResourceNumberLimitExceededException"},
1309
- {"shape":"GlueEncryptionException"}
1310
- ]
1311
- },
1312
- "UpdateTrigger":{
1313
- "name":"UpdateTrigger",
1314
- "http":{
1315
- "method":"POST",
1316
- "requestUri":"/"
1317
- },
1318
- "input":{"shape":"UpdateTriggerRequest"},
1319
- "output":{"shape":"UpdateTriggerResponse"},
1320
- "errors":[
1321
- {"shape":"InvalidInputException"},
1322
- {"shape":"InternalServiceException"},
1323
- {"shape":"EntityNotFoundException"},
1324
- {"shape":"OperationTimeoutException"},
1325
- {"shape":"ConcurrentModificationException"}
1326
- ]
1327
- },
1328
- "UpdateUserDefinedFunction":{
1329
- "name":"UpdateUserDefinedFunction",
1330
- "http":{
1331
- "method":"POST",
1332
- "requestUri":"/"
1333
- },
1334
- "input":{"shape":"UpdateUserDefinedFunctionRequest"},
1335
- "output":{"shape":"UpdateUserDefinedFunctionResponse"},
1336
- "errors":[
1337
- {"shape":"EntityNotFoundException"},
1338
- {"shape":"InvalidInputException"},
1339
- {"shape":"InternalServiceException"},
1340
- {"shape":"OperationTimeoutException"},
1341
- {"shape":"GlueEncryptionException"}
1342
- ]
1343
- }
1344
- },
1345
- "shapes":{
1346
- "AccessDeniedException":{
1347
- "type":"structure",
1348
- "members":{
1349
- "Message":{"shape":"MessageString"}
1350
- },
1351
- "exception":true
1352
- },
1353
- "Action":{
1354
- "type":"structure",
1355
- "members":{
1356
- "JobName":{"shape":"NameString"},
1357
- "Arguments":{"shape":"GenericMap"},
1358
- "Timeout":{"shape":"Timeout"},
1359
- "NotificationProperty":{"shape":"NotificationProperty"},
1360
- "SecurityConfiguration":{"shape":"NameString"}
1361
- }
1362
- },
1363
- "ActionList":{
1364
- "type":"list",
1365
- "member":{"shape":"Action"}
1366
- },
1367
- "AlreadyExistsException":{
1368
- "type":"structure",
1369
- "members":{
1370
- "Message":{"shape":"MessageString"}
1371
- },
1372
- "exception":true
1373
- },
1374
- "AttemptCount":{"type":"integer"},
1375
- "BatchCreatePartitionRequest":{
1376
- "type":"structure",
1377
- "required":[
1378
- "DatabaseName",
1379
- "TableName",
1380
- "PartitionInputList"
1381
- ],
1382
- "members":{
1383
- "CatalogId":{"shape":"CatalogIdString"},
1384
- "DatabaseName":{"shape":"NameString"},
1385
- "TableName":{"shape":"NameString"},
1386
- "PartitionInputList":{"shape":"PartitionInputList"}
1387
- }
1388
- },
1389
- "BatchCreatePartitionResponse":{
1390
- "type":"structure",
1391
- "members":{
1392
- "Errors":{"shape":"PartitionErrors"}
1393
- }
1394
- },
1395
- "BatchDeleteConnectionRequest":{
1396
- "type":"structure",
1397
- "required":["ConnectionNameList"],
1398
- "members":{
1399
- "CatalogId":{"shape":"CatalogIdString"},
1400
- "ConnectionNameList":{"shape":"DeleteConnectionNameList"}
1401
- }
1402
- },
1403
- "BatchDeleteConnectionResponse":{
1404
- "type":"structure",
1405
- "members":{
1406
- "Succeeded":{"shape":"NameStringList"},
1407
- "Errors":{"shape":"ErrorByName"}
1408
- }
1409
- },
1410
- "BatchDeletePartitionRequest":{
1411
- "type":"structure",
1412
- "required":[
1413
- "DatabaseName",
1414
- "TableName",
1415
- "PartitionsToDelete"
1416
- ],
1417
- "members":{
1418
- "CatalogId":{"shape":"CatalogIdString"},
1419
- "DatabaseName":{"shape":"NameString"},
1420
- "TableName":{"shape":"NameString"},
1421
- "PartitionsToDelete":{"shape":"BatchDeletePartitionValueList"}
1422
- }
1423
- },
1424
- "BatchDeletePartitionResponse":{
1425
- "type":"structure",
1426
- "members":{
1427
- "Errors":{"shape":"PartitionErrors"}
1428
- }
1429
- },
1430
- "BatchDeletePartitionValueList":{
1431
- "type":"list",
1432
- "member":{"shape":"PartitionValueList"},
1433
- "max":25,
1434
- "min":0
1435
- },
1436
- "BatchDeleteTableNameList":{
1437
- "type":"list",
1438
- "member":{"shape":"NameString"},
1439
- "max":100,
1440
- "min":0
1441
- },
1442
- "BatchDeleteTableRequest":{
1443
- "type":"structure",
1444
- "required":[
1445
- "DatabaseName",
1446
- "TablesToDelete"
1447
- ],
1448
- "members":{
1449
- "CatalogId":{"shape":"CatalogIdString"},
1450
- "DatabaseName":{"shape":"NameString"},
1451
- "TablesToDelete":{"shape":"BatchDeleteTableNameList"}
1452
- }
1453
- },
1454
- "BatchDeleteTableResponse":{
1455
- "type":"structure",
1456
- "members":{
1457
- "Errors":{"shape":"TableErrors"}
1458
- }
1459
- },
1460
- "BatchDeleteTableVersionList":{
1461
- "type":"list",
1462
- "member":{"shape":"VersionString"},
1463
- "max":100,
1464
- "min":0
1465
- },
1466
- "BatchDeleteTableVersionRequest":{
1467
- "type":"structure",
1468
- "required":[
1469
- "DatabaseName",
1470
- "TableName",
1471
- "VersionIds"
1472
- ],
1473
- "members":{
1474
- "CatalogId":{"shape":"CatalogIdString"},
1475
- "DatabaseName":{"shape":"NameString"},
1476
- "TableName":{"shape":"NameString"},
1477
- "VersionIds":{"shape":"BatchDeleteTableVersionList"}
1478
- }
1479
- },
1480
- "BatchDeleteTableVersionResponse":{
1481
- "type":"structure",
1482
- "members":{
1483
- "Errors":{"shape":"TableVersionErrors"}
1484
- }
1485
- },
1486
- "BatchGetPartitionRequest":{
1487
- "type":"structure",
1488
- "required":[
1489
- "DatabaseName",
1490
- "TableName",
1491
- "PartitionsToGet"
1492
- ],
1493
- "members":{
1494
- "CatalogId":{"shape":"CatalogIdString"},
1495
- "DatabaseName":{"shape":"NameString"},
1496
- "TableName":{"shape":"NameString"},
1497
- "PartitionsToGet":{"shape":"BatchGetPartitionValueList"}
1498
- }
1499
- },
1500
- "BatchGetPartitionResponse":{
1501
- "type":"structure",
1502
- "members":{
1503
- "Partitions":{"shape":"PartitionList"},
1504
- "UnprocessedKeys":{"shape":"BatchGetPartitionValueList"}
1505
- }
1506
- },
1507
- "BatchGetPartitionValueList":{
1508
- "type":"list",
1509
- "member":{"shape":"PartitionValueList"},
1510
- "max":1000,
1511
- "min":0
1512
- },
1513
- "BatchStopJobRunError":{
1514
- "type":"structure",
1515
- "members":{
1516
- "JobName":{"shape":"NameString"},
1517
- "JobRunId":{"shape":"IdString"},
1518
- "ErrorDetail":{"shape":"ErrorDetail"}
1519
- }
1520
- },
1521
- "BatchStopJobRunErrorList":{
1522
- "type":"list",
1523
- "member":{"shape":"BatchStopJobRunError"}
1524
- },
1525
- "BatchStopJobRunJobRunIdList":{
1526
- "type":"list",
1527
- "member":{"shape":"IdString"},
1528
- "max":25,
1529
- "min":1
1530
- },
1531
- "BatchStopJobRunRequest":{
1532
- "type":"structure",
1533
- "required":[
1534
- "JobName",
1535
- "JobRunIds"
1536
- ],
1537
- "members":{
1538
- "JobName":{"shape":"NameString"},
1539
- "JobRunIds":{"shape":"BatchStopJobRunJobRunIdList"}
1540
- }
1541
- },
1542
- "BatchStopJobRunResponse":{
1543
- "type":"structure",
1544
- "members":{
1545
- "SuccessfulSubmissions":{"shape":"BatchStopJobRunSuccessfulSubmissionList"},
1546
- "Errors":{"shape":"BatchStopJobRunErrorList"}
1547
- }
1548
- },
1549
- "BatchStopJobRunSuccessfulSubmission":{
1550
- "type":"structure",
1551
- "members":{
1552
- "JobName":{"shape":"NameString"},
1553
- "JobRunId":{"shape":"IdString"}
1554
- }
1555
- },
1556
- "BatchStopJobRunSuccessfulSubmissionList":{
1557
- "type":"list",
1558
- "member":{"shape":"BatchStopJobRunSuccessfulSubmission"}
1559
- },
1560
- "Boolean":{"type":"boolean"},
1561
- "BooleanNullable":{"type":"boolean"},
1562
- "BooleanValue":{"type":"boolean"},
1563
- "BoundedPartitionValueList":{
1564
- "type":"list",
1565
- "member":{"shape":"ValueString"},
1566
- "max":100,
1567
- "min":0
1568
- },
1569
- "CatalogEncryptionMode":{
1570
- "type":"string",
1571
- "enum":[
1572
- "DISABLED",
1573
- "SSE-KMS"
1574
- ]
1575
- },
1576
- "CatalogEntries":{
1577
- "type":"list",
1578
- "member":{"shape":"CatalogEntry"}
1579
- },
1580
- "CatalogEntry":{
1581
- "type":"structure",
1582
- "required":[
1583
- "DatabaseName",
1584
- "TableName"
1585
- ],
1586
- "members":{
1587
- "DatabaseName":{"shape":"NameString"},
1588
- "TableName":{"shape":"NameString"}
1589
- }
1590
- },
1591
- "CatalogIdString":{
1592
- "type":"string",
1593
- "max":255,
1594
- "min":1,
1595
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
1596
- },
1597
- "CatalogImportStatus":{
1598
- "type":"structure",
1599
- "members":{
1600
- "ImportCompleted":{"shape":"Boolean"},
1601
- "ImportTime":{"shape":"Timestamp"},
1602
- "ImportedBy":{"shape":"NameString"}
1603
- }
1604
- },
1605
- "Classification":{"type":"string"},
1606
- "Classifier":{
1607
- "type":"structure",
1608
- "members":{
1609
- "GrokClassifier":{"shape":"GrokClassifier"},
1610
- "XMLClassifier":{"shape":"XMLClassifier"},
1611
- "JsonClassifier":{"shape":"JsonClassifier"}
1612
- }
1613
- },
1614
- "ClassifierList":{
1615
- "type":"list",
1616
- "member":{"shape":"Classifier"}
1617
- },
1618
- "ClassifierNameList":{
1619
- "type":"list",
1620
- "member":{"shape":"NameString"}
1621
- },
1622
- "CloudWatchEncryption":{
1623
- "type":"structure",
1624
- "members":{
1625
- "CloudWatchEncryptionMode":{"shape":"CloudWatchEncryptionMode"},
1626
- "KmsKeyArn":{"shape":"KmsKeyArn"}
1627
- }
1628
- },
1629
- "CloudWatchEncryptionMode":{
1630
- "type":"string",
1631
- "enum":[
1632
- "DISABLED",
1633
- "SSE-KMS"
1634
- ]
1635
- },
1636
- "CodeGenArgName":{"type":"string"},
1637
- "CodeGenArgValue":{"type":"string"},
1638
- "CodeGenEdge":{
1639
- "type":"structure",
1640
- "required":[
1641
- "Source",
1642
- "Target"
1643
- ],
1644
- "members":{
1645
- "Source":{"shape":"CodeGenIdentifier"},
1646
- "Target":{"shape":"CodeGenIdentifier"},
1647
- "TargetParameter":{"shape":"CodeGenArgName"}
1648
- }
1649
- },
1650
- "CodeGenIdentifier":{
1651
- "type":"string",
1652
- "max":255,
1653
- "min":1,
1654
- "pattern":"[A-Za-z_][A-Za-z0-9_]*"
1655
- },
1656
- "CodeGenNode":{
1657
- "type":"structure",
1658
- "required":[
1659
- "Id",
1660
- "NodeType",
1661
- "Args"
1662
- ],
1663
- "members":{
1664
- "Id":{"shape":"CodeGenIdentifier"},
1665
- "NodeType":{"shape":"CodeGenNodeType"},
1666
- "Args":{"shape":"CodeGenNodeArgs"},
1667
- "LineNumber":{"shape":"Integer"}
1668
- }
1669
- },
1670
- "CodeGenNodeArg":{
1671
- "type":"structure",
1672
- "required":[
1673
- "Name",
1674
- "Value"
1675
- ],
1676
- "members":{
1677
- "Name":{"shape":"CodeGenArgName"},
1678
- "Value":{"shape":"CodeGenArgValue"},
1679
- "Param":{"shape":"Boolean"}
1680
- }
1681
- },
1682
- "CodeGenNodeArgs":{
1683
- "type":"list",
1684
- "member":{"shape":"CodeGenNodeArg"},
1685
- "max":50,
1686
- "min":0
1687
- },
1688
- "CodeGenNodeType":{"type":"string"},
1689
- "Column":{
1690
- "type":"structure",
1691
- "required":["Name"],
1692
- "members":{
1693
- "Name":{"shape":"NameString"},
1694
- "Type":{"shape":"ColumnTypeString"},
1695
- "Comment":{"shape":"CommentString"}
1696
- }
1697
- },
1698
- "ColumnList":{
1699
- "type":"list",
1700
- "member":{"shape":"Column"}
1701
- },
1702
- "ColumnTypeString":{
1703
- "type":"string",
1704
- "max":131072,
1705
- "min":0,
1706
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
1707
- },
1708
- "ColumnValueStringList":{
1709
- "type":"list",
1710
- "member":{"shape":"ColumnValuesString"}
1711
- },
1712
- "ColumnValuesString":{"type":"string"},
1713
- "CommentString":{
1714
- "type":"string",
1715
- "max":255,
1716
- "min":0,
1717
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
1718
- },
1719
- "ConcurrentModificationException":{
1720
- "type":"structure",
1721
- "members":{
1722
- "Message":{"shape":"MessageString"}
1723
- },
1724
- "exception":true
1725
- },
1726
- "ConcurrentRunsExceededException":{
1727
- "type":"structure",
1728
- "members":{
1729
- "Message":{"shape":"MessageString"}
1730
- },
1731
- "exception":true
1732
- },
1733
- "Condition":{
1734
- "type":"structure",
1735
- "members":{
1736
- "LogicalOperator":{"shape":"LogicalOperator"},
1737
- "JobName":{"shape":"NameString"},
1738
- "State":{"shape":"JobRunState"}
1739
- }
1740
- },
1741
- "ConditionCheckFailureException":{
1742
- "type":"structure",
1743
- "members":{
1744
- "Message":{"shape":"MessageString"}
1745
- },
1746
- "exception":true
1747
- },
1748
- "ConditionList":{
1749
- "type":"list",
1750
- "member":{"shape":"Condition"}
1751
- },
1752
- "Connection":{
1753
- "type":"structure",
1754
- "members":{
1755
- "Name":{"shape":"NameString"},
1756
- "Description":{"shape":"DescriptionString"},
1757
- "ConnectionType":{"shape":"ConnectionType"},
1758
- "MatchCriteria":{"shape":"MatchCriteria"},
1759
- "ConnectionProperties":{"shape":"ConnectionProperties"},
1760
- "PhysicalConnectionRequirements":{"shape":"PhysicalConnectionRequirements"},
1761
- "CreationTime":{"shape":"Timestamp"},
1762
- "LastUpdatedTime":{"shape":"Timestamp"},
1763
- "LastUpdatedBy":{"shape":"NameString"}
1764
- }
1765
- },
1766
- "ConnectionInput":{
1767
- "type":"structure",
1768
- "required":[
1769
- "Name",
1770
- "ConnectionType",
1771
- "ConnectionProperties"
1772
- ],
1773
- "members":{
1774
- "Name":{"shape":"NameString"},
1775
- "Description":{"shape":"DescriptionString"},
1776
- "ConnectionType":{"shape":"ConnectionType"},
1777
- "MatchCriteria":{"shape":"MatchCriteria"},
1778
- "ConnectionProperties":{"shape":"ConnectionProperties"},
1779
- "PhysicalConnectionRequirements":{"shape":"PhysicalConnectionRequirements"}
1780
- }
1781
- },
1782
- "ConnectionList":{
1783
- "type":"list",
1784
- "member":{"shape":"Connection"}
1785
- },
1786
- "ConnectionName":{"type":"string"},
1787
- "ConnectionPasswordEncryption":{
1788
- "type":"structure",
1789
- "required":["ReturnConnectionPasswordEncrypted"],
1790
- "members":{
1791
- "ReturnConnectionPasswordEncrypted":{"shape":"Boolean"},
1792
- "AwsKmsKeyId":{"shape":"NameString"}
1793
- }
1794
- },
1795
- "ConnectionProperties":{
1796
- "type":"map",
1797
- "key":{"shape":"ConnectionPropertyKey"},
1798
- "value":{"shape":"ValueString"},
1799
- "max":100,
1800
- "min":0
1801
- },
1802
- "ConnectionPropertyKey":{
1803
- "type":"string",
1804
- "enum":[
1805
- "HOST",
1806
- "PORT",
1807
- "USERNAME",
1808
- "PASSWORD",
1809
- "ENCRYPTED_PASSWORD",
1810
- "JDBC_DRIVER_JAR_URI",
1811
- "JDBC_DRIVER_CLASS_NAME",
1812
- "JDBC_ENGINE",
1813
- "JDBC_ENGINE_VERSION",
1814
- "CONFIG_FILES",
1815
- "INSTANCE_ID",
1816
- "JDBC_CONNECTION_URL",
1817
- "JDBC_ENFORCE_SSL"
1818
- ]
1819
- },
1820
- "ConnectionType":{
1821
- "type":"string",
1822
- "enum":[
1823
- "JDBC",
1824
- "SFTP"
1825
- ]
1826
- },
1827
- "ConnectionsList":{
1828
- "type":"structure",
1829
- "members":{
1830
- "Connections":{"shape":"StringList"}
1831
- }
1832
- },
1833
- "Crawler":{
1834
- "type":"structure",
1835
- "members":{
1836
- "Name":{"shape":"NameString"},
1837
- "Role":{"shape":"Role"},
1838
- "Targets":{"shape":"CrawlerTargets"},
1839
- "DatabaseName":{"shape":"DatabaseName"},
1840
- "Description":{"shape":"DescriptionString"},
1841
- "Classifiers":{"shape":"ClassifierNameList"},
1842
- "SchemaChangePolicy":{"shape":"SchemaChangePolicy"},
1843
- "State":{"shape":"CrawlerState"},
1844
- "TablePrefix":{"shape":"TablePrefix"},
1845
- "Schedule":{"shape":"Schedule"},
1846
- "CrawlElapsedTime":{"shape":"MillisecondsCount"},
1847
- "CreationTime":{"shape":"Timestamp"},
1848
- "LastUpdated":{"shape":"Timestamp"},
1849
- "LastCrawl":{"shape":"LastCrawlInfo"},
1850
- "Version":{"shape":"VersionId"},
1851
- "Configuration":{"shape":"CrawlerConfiguration"},
1852
- "CrawlerSecurityConfiguration":{"shape":"CrawlerSecurityConfiguration"}
1853
- }
1854
- },
1855
- "CrawlerConfiguration":{"type":"string"},
1856
- "CrawlerList":{
1857
- "type":"list",
1858
- "member":{"shape":"Crawler"}
1859
- },
1860
- "CrawlerMetrics":{
1861
- "type":"structure",
1862
- "members":{
1863
- "CrawlerName":{"shape":"NameString"},
1864
- "TimeLeftSeconds":{"shape":"NonNegativeDouble"},
1865
- "StillEstimating":{"shape":"Boolean"},
1866
- "LastRuntimeSeconds":{"shape":"NonNegativeDouble"},
1867
- "MedianRuntimeSeconds":{"shape":"NonNegativeDouble"},
1868
- "TablesCreated":{"shape":"NonNegativeInteger"},
1869
- "TablesUpdated":{"shape":"NonNegativeInteger"},
1870
- "TablesDeleted":{"shape":"NonNegativeInteger"}
1871
- }
1872
- },
1873
- "CrawlerMetricsList":{
1874
- "type":"list",
1875
- "member":{"shape":"CrawlerMetrics"}
1876
- },
1877
- "CrawlerNameList":{
1878
- "type":"list",
1879
- "member":{"shape":"NameString"},
1880
- "max":100,
1881
- "min":0
1882
- },
1883
- "CrawlerNotRunningException":{
1884
- "type":"structure",
1885
- "members":{
1886
- "Message":{"shape":"MessageString"}
1887
- },
1888
- "exception":true
1889
- },
1890
- "CrawlerRunningException":{
1891
- "type":"structure",
1892
- "members":{
1893
- "Message":{"shape":"MessageString"}
1894
- },
1895
- "exception":true
1896
- },
1897
- "CrawlerSecurityConfiguration":{
1898
- "type":"string",
1899
- "max":128,
1900
- "min":0
1901
- },
1902
- "CrawlerState":{
1903
- "type":"string",
1904
- "enum":[
1905
- "READY",
1906
- "RUNNING",
1907
- "STOPPING"
1908
- ]
1909
- },
1910
- "CrawlerStoppingException":{
1911
- "type":"structure",
1912
- "members":{
1913
- "Message":{"shape":"MessageString"}
1914
- },
1915
- "exception":true
1916
- },
1917
- "CrawlerTargets":{
1918
- "type":"structure",
1919
- "members":{
1920
- "S3Targets":{"shape":"S3TargetList"},
1921
- "JdbcTargets":{"shape":"JdbcTargetList"},
1922
- "DynamoDBTargets":{"shape":"DynamoDBTargetList"}
1923
- }
1924
- },
1925
- "CreateClassifierRequest":{
1926
- "type":"structure",
1927
- "members":{
1928
- "GrokClassifier":{"shape":"CreateGrokClassifierRequest"},
1929
- "XMLClassifier":{"shape":"CreateXMLClassifierRequest"},
1930
- "JsonClassifier":{"shape":"CreateJsonClassifierRequest"}
1931
- }
1932
- },
1933
- "CreateClassifierResponse":{
1934
- "type":"structure",
1935
- "members":{
1936
- }
1937
- },
1938
- "CreateConnectionRequest":{
1939
- "type":"structure",
1940
- "required":["ConnectionInput"],
1941
- "members":{
1942
- "CatalogId":{"shape":"CatalogIdString"},
1943
- "ConnectionInput":{"shape":"ConnectionInput"}
1944
- }
1945
- },
1946
- "CreateConnectionResponse":{
1947
- "type":"structure",
1948
- "members":{
1949
- }
1950
- },
1951
- "CreateCrawlerRequest":{
1952
- "type":"structure",
1953
- "required":[
1954
- "Name",
1955
- "Role",
1956
- "DatabaseName",
1957
- "Targets"
1958
- ],
1959
- "members":{
1960
- "Name":{"shape":"NameString"},
1961
- "Role":{"shape":"Role"},
1962
- "DatabaseName":{"shape":"DatabaseName"},
1963
- "Description":{"shape":"DescriptionString"},
1964
- "Targets":{"shape":"CrawlerTargets"},
1965
- "Schedule":{"shape":"CronExpression"},
1966
- "Classifiers":{"shape":"ClassifierNameList"},
1967
- "TablePrefix":{"shape":"TablePrefix"},
1968
- "SchemaChangePolicy":{"shape":"SchemaChangePolicy"},
1969
- "Configuration":{"shape":"CrawlerConfiguration"},
1970
- "CrawlerSecurityConfiguration":{"shape":"CrawlerSecurityConfiguration"}
1971
- }
1972
- },
1973
- "CreateCrawlerResponse":{
1974
- "type":"structure",
1975
- "members":{
1976
- }
1977
- },
1978
- "CreateDatabaseRequest":{
1979
- "type":"structure",
1980
- "required":["DatabaseInput"],
1981
- "members":{
1982
- "CatalogId":{"shape":"CatalogIdString"},
1983
- "DatabaseInput":{"shape":"DatabaseInput"}
1984
- }
1985
- },
1986
- "CreateDatabaseResponse":{
1987
- "type":"structure",
1988
- "members":{
1989
- }
1990
- },
1991
- "CreateDevEndpointRequest":{
1992
- "type":"structure",
1993
- "required":[
1994
- "EndpointName",
1995
- "RoleArn"
1996
- ],
1997
- "members":{
1998
- "EndpointName":{"shape":"GenericString"},
1999
- "RoleArn":{"shape":"RoleArn"},
2000
- "SecurityGroupIds":{"shape":"StringList"},
2001
- "SubnetId":{"shape":"GenericString"},
2002
- "PublicKey":{"shape":"GenericString"},
2003
- "PublicKeys":{"shape":"PublicKeysList"},
2004
- "NumberOfNodes":{"shape":"IntegerValue"},
2005
- "ExtraPythonLibsS3Path":{"shape":"GenericString"},
2006
- "ExtraJarsS3Path":{"shape":"GenericString"},
2007
- "SecurityConfiguration":{"shape":"NameString"}
2008
- }
2009
- },
2010
- "CreateDevEndpointResponse":{
2011
- "type":"structure",
2012
- "members":{
2013
- "EndpointName":{"shape":"GenericString"},
2014
- "Status":{"shape":"GenericString"},
2015
- "SecurityGroupIds":{"shape":"StringList"},
2016
- "SubnetId":{"shape":"GenericString"},
2017
- "RoleArn":{"shape":"RoleArn"},
2018
- "YarnEndpointAddress":{"shape":"GenericString"},
2019
- "ZeppelinRemoteSparkInterpreterPort":{"shape":"IntegerValue"},
2020
- "NumberOfNodes":{"shape":"IntegerValue"},
2021
- "AvailabilityZone":{"shape":"GenericString"},
2022
- "VpcId":{"shape":"GenericString"},
2023
- "ExtraPythonLibsS3Path":{"shape":"GenericString"},
2024
- "ExtraJarsS3Path":{"shape":"GenericString"},
2025
- "FailureReason":{"shape":"GenericString"},
2026
- "SecurityConfiguration":{"shape":"NameString"},
2027
- "CreatedTimestamp":{"shape":"TimestampValue"}
2028
- }
2029
- },
2030
- "CreateGrokClassifierRequest":{
2031
- "type":"structure",
2032
- "required":[
2033
- "Classification",
2034
- "Name",
2035
- "GrokPattern"
2036
- ],
2037
- "members":{
2038
- "Classification":{"shape":"Classification"},
2039
- "Name":{"shape":"NameString"},
2040
- "GrokPattern":{"shape":"GrokPattern"},
2041
- "CustomPatterns":{"shape":"CustomPatterns"}
2042
- }
2043
- },
2044
- "CreateJobRequest":{
2045
- "type":"structure",
2046
- "required":[
2047
- "Name",
2048
- "Role",
2049
- "Command"
2050
- ],
2051
- "members":{
2052
- "Name":{"shape":"NameString"},
2053
- "Description":{"shape":"DescriptionString"},
2054
- "LogUri":{"shape":"UriString"},
2055
- "Role":{"shape":"RoleString"},
2056
- "ExecutionProperty":{"shape":"ExecutionProperty"},
2057
- "Command":{"shape":"JobCommand"},
2058
- "DefaultArguments":{"shape":"GenericMap"},
2059
- "Connections":{"shape":"ConnectionsList"},
2060
- "MaxRetries":{"shape":"MaxRetries"},
2061
- "AllocatedCapacity":{
2062
- "shape":"IntegerValue",
2063
- "deprecated":true,
2064
- "deprecatedMessage":"This property is deprecated, use MaxCapacity instead."
2065
- },
2066
- "Timeout":{"shape":"Timeout"},
2067
- "MaxCapacity":{"shape":"NullableDouble"},
2068
- "NotificationProperty":{"shape":"NotificationProperty"},
2069
- "SecurityConfiguration":{"shape":"NameString"}
2070
- }
2071
- },
2072
- "CreateJobResponse":{
2073
- "type":"structure",
2074
- "members":{
2075
- "Name":{"shape":"NameString"}
2076
- }
2077
- },
2078
- "CreateJsonClassifierRequest":{
2079
- "type":"structure",
2080
- "required":[
2081
- "Name",
2082
- "JsonPath"
2083
- ],
2084
- "members":{
2085
- "Name":{"shape":"NameString"},
2086
- "JsonPath":{"shape":"JsonPath"}
2087
- }
2088
- },
2089
- "CreatePartitionRequest":{
2090
- "type":"structure",
2091
- "required":[
2092
- "DatabaseName",
2093
- "TableName",
2094
- "PartitionInput"
2095
- ],
2096
- "members":{
2097
- "CatalogId":{"shape":"CatalogIdString"},
2098
- "DatabaseName":{"shape":"NameString"},
2099
- "TableName":{"shape":"NameString"},
2100
- "PartitionInput":{"shape":"PartitionInput"}
2101
- }
2102
- },
2103
- "CreatePartitionResponse":{
2104
- "type":"structure",
2105
- "members":{
2106
- }
2107
- },
2108
- "CreateScriptRequest":{
2109
- "type":"structure",
2110
- "members":{
2111
- "DagNodes":{"shape":"DagNodes"},
2112
- "DagEdges":{"shape":"DagEdges"},
2113
- "Language":{"shape":"Language"}
2114
- }
2115
- },
2116
- "CreateScriptResponse":{
2117
- "type":"structure",
2118
- "members":{
2119
- "PythonScript":{"shape":"PythonScript"},
2120
- "ScalaCode":{"shape":"ScalaCode"}
2121
- }
2122
- },
2123
- "CreateSecurityConfigurationRequest":{
2124
- "type":"structure",
2125
- "required":[
2126
- "Name",
2127
- "EncryptionConfiguration"
2128
- ],
2129
- "members":{
2130
- "Name":{"shape":"NameString"},
2131
- "EncryptionConfiguration":{"shape":"EncryptionConfiguration"}
2132
- }
2133
- },
2134
- "CreateSecurityConfigurationResponse":{
2135
- "type":"structure",
2136
- "members":{
2137
- "Name":{"shape":"NameString"},
2138
- "CreatedTimestamp":{"shape":"TimestampValue"}
2139
- }
2140
- },
2141
- "CreateTableRequest":{
2142
- "type":"structure",
2143
- "required":[
2144
- "DatabaseName",
2145
- "TableInput"
2146
- ],
2147
- "members":{
2148
- "CatalogId":{"shape":"CatalogIdString"},
2149
- "DatabaseName":{"shape":"NameString"},
2150
- "TableInput":{"shape":"TableInput"}
2151
- }
2152
- },
2153
- "CreateTableResponse":{
2154
- "type":"structure",
2155
- "members":{
2156
- }
2157
- },
2158
- "CreateTriggerRequest":{
2159
- "type":"structure",
2160
- "required":[
2161
- "Name",
2162
- "Type",
2163
- "Actions"
2164
- ],
2165
- "members":{
2166
- "Name":{"shape":"NameString"},
2167
- "Type":{"shape":"TriggerType"},
2168
- "Schedule":{"shape":"GenericString"},
2169
- "Predicate":{"shape":"Predicate"},
2170
- "Actions":{"shape":"ActionList"},
2171
- "Description":{"shape":"DescriptionString"},
2172
- "StartOnCreation":{"shape":"BooleanValue"}
2173
- }
2174
- },
2175
- "CreateTriggerResponse":{
2176
- "type":"structure",
2177
- "members":{
2178
- "Name":{"shape":"NameString"}
2179
- }
2180
- },
2181
- "CreateUserDefinedFunctionRequest":{
2182
- "type":"structure",
2183
- "required":[
2184
- "DatabaseName",
2185
- "FunctionInput"
2186
- ],
2187
- "members":{
2188
- "CatalogId":{"shape":"CatalogIdString"},
2189
- "DatabaseName":{"shape":"NameString"},
2190
- "FunctionInput":{"shape":"UserDefinedFunctionInput"}
2191
- }
2192
- },
2193
- "CreateUserDefinedFunctionResponse":{
2194
- "type":"structure",
2195
- "members":{
2196
- }
2197
- },
2198
- "CreateXMLClassifierRequest":{
2199
- "type":"structure",
2200
- "required":[
2201
- "Classification",
2202
- "Name"
2203
- ],
2204
- "members":{
2205
- "Classification":{"shape":"Classification"},
2206
- "Name":{"shape":"NameString"},
2207
- "RowTag":{"shape":"RowTag"}
2208
- }
2209
- },
2210
- "CronExpression":{"type":"string"},
2211
- "CustomPatterns":{
2212
- "type":"string",
2213
- "max":16000,
2214
- "min":0,
2215
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
2216
- },
2217
- "DagEdges":{
2218
- "type":"list",
2219
- "member":{"shape":"CodeGenEdge"}
2220
- },
2221
- "DagNodes":{
2222
- "type":"list",
2223
- "member":{"shape":"CodeGenNode"}
2224
- },
2225
- "DataCatalogEncryptionSettings":{
2226
- "type":"structure",
2227
- "members":{
2228
- "EncryptionAtRest":{"shape":"EncryptionAtRest"},
2229
- "ConnectionPasswordEncryption":{"shape":"ConnectionPasswordEncryption"}
2230
- }
2231
- },
2232
- "Database":{
2233
- "type":"structure",
2234
- "required":["Name"],
2235
- "members":{
2236
- "Name":{"shape":"NameString"},
2237
- "Description":{"shape":"DescriptionString"},
2238
- "LocationUri":{"shape":"URI"},
2239
- "Parameters":{"shape":"ParametersMap"},
2240
- "CreateTime":{"shape":"Timestamp"}
2241
- }
2242
- },
2243
- "DatabaseInput":{
2244
- "type":"structure",
2245
- "required":["Name"],
2246
- "members":{
2247
- "Name":{"shape":"NameString"},
2248
- "Description":{"shape":"DescriptionString"},
2249
- "LocationUri":{"shape":"URI"},
2250
- "Parameters":{"shape":"ParametersMap"}
2251
- }
2252
- },
2253
- "DatabaseList":{
2254
- "type":"list",
2255
- "member":{"shape":"Database"}
2256
- },
2257
- "DatabaseName":{"type":"string"},
2258
- "DeleteBehavior":{
2259
- "type":"string",
2260
- "enum":[
2261
- "LOG",
2262
- "DELETE_FROM_DATABASE",
2263
- "DEPRECATE_IN_DATABASE"
2264
- ]
2265
- },
2266
- "DeleteClassifierRequest":{
2267
- "type":"structure",
2268
- "required":["Name"],
2269
- "members":{
2270
- "Name":{"shape":"NameString"}
2271
- }
2272
- },
2273
- "DeleteClassifierResponse":{
2274
- "type":"structure",
2275
- "members":{
2276
- }
2277
- },
2278
- "DeleteConnectionNameList":{
2279
- "type":"list",
2280
- "member":{"shape":"NameString"},
2281
- "max":25,
2282
- "min":0
2283
- },
2284
- "DeleteConnectionRequest":{
2285
- "type":"structure",
2286
- "required":["ConnectionName"],
2287
- "members":{
2288
- "CatalogId":{"shape":"CatalogIdString"},
2289
- "ConnectionName":{"shape":"NameString"}
2290
- }
2291
- },
2292
- "DeleteConnectionResponse":{
2293
- "type":"structure",
2294
- "members":{
2295
- }
2296
- },
2297
- "DeleteCrawlerRequest":{
2298
- "type":"structure",
2299
- "required":["Name"],
2300
- "members":{
2301
- "Name":{"shape":"NameString"}
2302
- }
2303
- },
2304
- "DeleteCrawlerResponse":{
2305
- "type":"structure",
2306
- "members":{
2307
- }
2308
- },
2309
- "DeleteDatabaseRequest":{
2310
- "type":"structure",
2311
- "required":["Name"],
2312
- "members":{
2313
- "CatalogId":{"shape":"CatalogIdString"},
2314
- "Name":{"shape":"NameString"}
2315
- }
2316
- },
2317
- "DeleteDatabaseResponse":{
2318
- "type":"structure",
2319
- "members":{
2320
- }
2321
- },
2322
- "DeleteDevEndpointRequest":{
2323
- "type":"structure",
2324
- "required":["EndpointName"],
2325
- "members":{
2326
- "EndpointName":{"shape":"GenericString"}
2327
- }
2328
- },
2329
- "DeleteDevEndpointResponse":{
2330
- "type":"structure",
2331
- "members":{
2332
- }
2333
- },
2334
- "DeleteJobRequest":{
2335
- "type":"structure",
2336
- "required":["JobName"],
2337
- "members":{
2338
- "JobName":{"shape":"NameString"}
2339
- }
2340
- },
2341
- "DeleteJobResponse":{
2342
- "type":"structure",
2343
- "members":{
2344
- "JobName":{"shape":"NameString"}
2345
- }
2346
- },
2347
- "DeletePartitionRequest":{
2348
- "type":"structure",
2349
- "required":[
2350
- "DatabaseName",
2351
- "TableName",
2352
- "PartitionValues"
2353
- ],
2354
- "members":{
2355
- "CatalogId":{"shape":"CatalogIdString"},
2356
- "DatabaseName":{"shape":"NameString"},
2357
- "TableName":{"shape":"NameString"},
2358
- "PartitionValues":{"shape":"ValueStringList"}
2359
- }
2360
- },
2361
- "DeletePartitionResponse":{
2362
- "type":"structure",
2363
- "members":{
2364
- }
2365
- },
2366
- "DeleteResourcePolicyRequest":{
2367
- "type":"structure",
2368
- "members":{
2369
- "PolicyHashCondition":{"shape":"HashString"}
2370
- }
2371
- },
2372
- "DeleteResourcePolicyResponse":{
2373
- "type":"structure",
2374
- "members":{
2375
- }
2376
- },
2377
- "DeleteSecurityConfigurationRequest":{
2378
- "type":"structure",
2379
- "required":["Name"],
2380
- "members":{
2381
- "Name":{"shape":"NameString"}
2382
- }
2383
- },
2384
- "DeleteSecurityConfigurationResponse":{
2385
- "type":"structure",
2386
- "members":{
2387
- }
2388
- },
2389
- "DeleteTableRequest":{
2390
- "type":"structure",
2391
- "required":[
2392
- "DatabaseName",
2393
- "Name"
2394
- ],
2395
- "members":{
2396
- "CatalogId":{"shape":"CatalogIdString"},
2397
- "DatabaseName":{"shape":"NameString"},
2398
- "Name":{"shape":"NameString"}
2399
- }
2400
- },
2401
- "DeleteTableResponse":{
2402
- "type":"structure",
2403
- "members":{
2404
- }
2405
- },
2406
- "DeleteTableVersionRequest":{
2407
- "type":"structure",
2408
- "required":[
2409
- "DatabaseName",
2410
- "TableName",
2411
- "VersionId"
2412
- ],
2413
- "members":{
2414
- "CatalogId":{"shape":"CatalogIdString"},
2415
- "DatabaseName":{"shape":"NameString"},
2416
- "TableName":{"shape":"NameString"},
2417
- "VersionId":{"shape":"VersionString"}
2418
- }
2419
- },
2420
- "DeleteTableVersionResponse":{
2421
- "type":"structure",
2422
- "members":{
2423
- }
2424
- },
2425
- "DeleteTriggerRequest":{
2426
- "type":"structure",
2427
- "required":["Name"],
2428
- "members":{
2429
- "Name":{"shape":"NameString"}
2430
- }
2431
- },
2432
- "DeleteTriggerResponse":{
2433
- "type":"structure",
2434
- "members":{
2435
- "Name":{"shape":"NameString"}
2436
- }
2437
- },
2438
- "DeleteUserDefinedFunctionRequest":{
2439
- "type":"structure",
2440
- "required":[
2441
- "DatabaseName",
2442
- "FunctionName"
2443
- ],
2444
- "members":{
2445
- "CatalogId":{"shape":"CatalogIdString"},
2446
- "DatabaseName":{"shape":"NameString"},
2447
- "FunctionName":{"shape":"NameString"}
2448
- }
2449
- },
2450
- "DeleteUserDefinedFunctionResponse":{
2451
- "type":"structure",
2452
- "members":{
2453
- }
2454
- },
2455
- "DescriptionString":{
2456
- "type":"string",
2457
- "max":2048,
2458
- "min":0,
2459
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
2460
- },
2461
- "DescriptionStringRemovable":{
2462
- "type":"string",
2463
- "max":2048,
2464
- "min":0,
2465
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
2466
- },
2467
- "DevEndpoint":{
2468
- "type":"structure",
2469
- "members":{
2470
- "EndpointName":{"shape":"GenericString"},
2471
- "RoleArn":{"shape":"RoleArn"},
2472
- "SecurityGroupIds":{"shape":"StringList"},
2473
- "SubnetId":{"shape":"GenericString"},
2474
- "YarnEndpointAddress":{"shape":"GenericString"},
2475
- "PrivateAddress":{"shape":"GenericString"},
2476
- "ZeppelinRemoteSparkInterpreterPort":{"shape":"IntegerValue"},
2477
- "PublicAddress":{"shape":"GenericString"},
2478
- "Status":{"shape":"GenericString"},
2479
- "NumberOfNodes":{"shape":"IntegerValue"},
2480
- "AvailabilityZone":{"shape":"GenericString"},
2481
- "VpcId":{"shape":"GenericString"},
2482
- "ExtraPythonLibsS3Path":{"shape":"GenericString"},
2483
- "ExtraJarsS3Path":{"shape":"GenericString"},
2484
- "FailureReason":{"shape":"GenericString"},
2485
- "LastUpdateStatus":{"shape":"GenericString"},
2486
- "CreatedTimestamp":{"shape":"TimestampValue"},
2487
- "LastModifiedTimestamp":{"shape":"TimestampValue"},
2488
- "PublicKey":{"shape":"GenericString"},
2489
- "PublicKeys":{"shape":"PublicKeysList"},
2490
- "SecurityConfiguration":{"shape":"NameString"}
2491
- }
2492
- },
2493
- "DevEndpointCustomLibraries":{
2494
- "type":"structure",
2495
- "members":{
2496
- "ExtraPythonLibsS3Path":{"shape":"GenericString"},
2497
- "ExtraJarsS3Path":{"shape":"GenericString"}
2498
- }
2499
- },
2500
- "DevEndpointList":{
2501
- "type":"list",
2502
- "member":{"shape":"DevEndpoint"}
2503
- },
2504
- "DynamoDBTarget":{
2505
- "type":"structure",
2506
- "members":{
2507
- "Path":{"shape":"Path"}
2508
- }
2509
- },
2510
- "DynamoDBTargetList":{
2511
- "type":"list",
2512
- "member":{"shape":"DynamoDBTarget"}
2513
- },
2514
- "EncryptionAtRest":{
2515
- "type":"structure",
2516
- "required":["CatalogEncryptionMode"],
2517
- "members":{
2518
- "CatalogEncryptionMode":{"shape":"CatalogEncryptionMode"},
2519
- "SseAwsKmsKeyId":{"shape":"NameString"}
2520
- }
2521
- },
2522
- "EncryptionConfiguration":{
2523
- "type":"structure",
2524
- "members":{
2525
- "S3Encryption":{"shape":"S3EncryptionList"},
2526
- "CloudWatchEncryption":{"shape":"CloudWatchEncryption"},
2527
- "JobBookmarksEncryption":{"shape":"JobBookmarksEncryption"}
2528
- }
2529
- },
2530
- "EntityNotFoundException":{
2531
- "type":"structure",
2532
- "members":{
2533
- "Message":{"shape":"MessageString"}
2534
- },
2535
- "exception":true
2536
- },
2537
- "ErrorByName":{
2538
- "type":"map",
2539
- "key":{"shape":"NameString"},
2540
- "value":{"shape":"ErrorDetail"}
2541
- },
2542
- "ErrorDetail":{
2543
- "type":"structure",
2544
- "members":{
2545
- "ErrorCode":{"shape":"NameString"},
2546
- "ErrorMessage":{"shape":"DescriptionString"}
2547
- }
2548
- },
2549
- "ErrorString":{"type":"string"},
2550
- "ExecutionProperty":{
2551
- "type":"structure",
2552
- "members":{
2553
- "MaxConcurrentRuns":{"shape":"MaxConcurrentRuns"}
2554
- }
2555
- },
2556
- "ExecutionTime":{"type":"integer"},
2557
- "ExistCondition":{
2558
- "type":"string",
2559
- "enum":[
2560
- "MUST_EXIST",
2561
- "NOT_EXIST",
2562
- "NONE"
2563
- ]
2564
- },
2565
- "FieldType":{"type":"string"},
2566
- "FilterString":{
2567
- "type":"string",
2568
- "max":2048,
2569
- "min":0,
2570
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
2571
- },
2572
- "FormatString":{
2573
- "type":"string",
2574
- "max":128,
2575
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
2576
- },
2577
- "GenericMap":{
2578
- "type":"map",
2579
- "key":{"shape":"GenericString"},
2580
- "value":{"shape":"GenericString"}
2581
- },
2582
- "GenericString":{"type":"string"},
2583
- "GetCatalogImportStatusRequest":{
2584
- "type":"structure",
2585
- "members":{
2586
- "CatalogId":{"shape":"CatalogIdString"}
2587
- }
2588
- },
2589
- "GetCatalogImportStatusResponse":{
2590
- "type":"structure",
2591
- "members":{
2592
- "ImportStatus":{"shape":"CatalogImportStatus"}
2593
- }
2594
- },
2595
- "GetClassifierRequest":{
2596
- "type":"structure",
2597
- "required":["Name"],
2598
- "members":{
2599
- "Name":{"shape":"NameString"}
2600
- }
2601
- },
2602
- "GetClassifierResponse":{
2603
- "type":"structure",
2604
- "members":{
2605
- "Classifier":{"shape":"Classifier"}
2606
- }
2607
- },
2608
- "GetClassifiersRequest":{
2609
- "type":"structure",
2610
- "members":{
2611
- "MaxResults":{"shape":"PageSize"},
2612
- "NextToken":{"shape":"Token"}
2613
- }
2614
- },
2615
- "GetClassifiersResponse":{
2616
- "type":"structure",
2617
- "members":{
2618
- "Classifiers":{"shape":"ClassifierList"},
2619
- "NextToken":{"shape":"Token"}
2620
- }
2621
- },
2622
- "GetConnectionRequest":{
2623
- "type":"structure",
2624
- "required":["Name"],
2625
- "members":{
2626
- "CatalogId":{"shape":"CatalogIdString"},
2627
- "Name":{"shape":"NameString"},
2628
- "HidePassword":{"shape":"Boolean"}
2629
- }
2630
- },
2631
- "GetConnectionResponse":{
2632
- "type":"structure",
2633
- "members":{
2634
- "Connection":{"shape":"Connection"}
2635
- }
2636
- },
2637
- "GetConnectionsFilter":{
2638
- "type":"structure",
2639
- "members":{
2640
- "MatchCriteria":{"shape":"MatchCriteria"},
2641
- "ConnectionType":{"shape":"ConnectionType"}
2642
- }
2643
- },
2644
- "GetConnectionsRequest":{
2645
- "type":"structure",
2646
- "members":{
2647
- "CatalogId":{"shape":"CatalogIdString"},
2648
- "Filter":{"shape":"GetConnectionsFilter"},
2649
- "HidePassword":{"shape":"Boolean"},
2650
- "NextToken":{"shape":"Token"},
2651
- "MaxResults":{"shape":"PageSize"}
2652
- }
2653
- },
2654
- "GetConnectionsResponse":{
2655
- "type":"structure",
2656
- "members":{
2657
- "ConnectionList":{"shape":"ConnectionList"},
2658
- "NextToken":{"shape":"Token"}
2659
- }
2660
- },
2661
- "GetCrawlerMetricsRequest":{
2662
- "type":"structure",
2663
- "members":{
2664
- "CrawlerNameList":{"shape":"CrawlerNameList"},
2665
- "MaxResults":{"shape":"PageSize"},
2666
- "NextToken":{"shape":"Token"}
2667
- }
2668
- },
2669
- "GetCrawlerMetricsResponse":{
2670
- "type":"structure",
2671
- "members":{
2672
- "CrawlerMetricsList":{"shape":"CrawlerMetricsList"},
2673
- "NextToken":{"shape":"Token"}
2674
- }
2675
- },
2676
- "GetCrawlerRequest":{
2677
- "type":"structure",
2678
- "required":["Name"],
2679
- "members":{
2680
- "Name":{"shape":"NameString"}
2681
- }
2682
- },
2683
- "GetCrawlerResponse":{
2684
- "type":"structure",
2685
- "members":{
2686
- "Crawler":{"shape":"Crawler"}
2687
- }
2688
- },
2689
- "GetCrawlersRequest":{
2690
- "type":"structure",
2691
- "members":{
2692
- "MaxResults":{"shape":"PageSize"},
2693
- "NextToken":{"shape":"Token"}
2694
- }
2695
- },
2696
- "GetCrawlersResponse":{
2697
- "type":"structure",
2698
- "members":{
2699
- "Crawlers":{"shape":"CrawlerList"},
2700
- "NextToken":{"shape":"Token"}
2701
- }
2702
- },
2703
- "GetDataCatalogEncryptionSettingsRequest":{
2704
- "type":"structure",
2705
- "members":{
2706
- "CatalogId":{"shape":"CatalogIdString"}
2707
- }
2708
- },
2709
- "GetDataCatalogEncryptionSettingsResponse":{
2710
- "type":"structure",
2711
- "members":{
2712
- "DataCatalogEncryptionSettings":{"shape":"DataCatalogEncryptionSettings"}
2713
- }
2714
- },
2715
- "GetDatabaseRequest":{
2716
- "type":"structure",
2717
- "required":["Name"],
2718
- "members":{
2719
- "CatalogId":{"shape":"CatalogIdString"},
2720
- "Name":{"shape":"NameString"}
2721
- }
2722
- },
2723
- "GetDatabaseResponse":{
2724
- "type":"structure",
2725
- "members":{
2726
- "Database":{"shape":"Database"}
2727
- }
2728
- },
2729
- "GetDatabasesRequest":{
2730
- "type":"structure",
2731
- "members":{
2732
- "CatalogId":{"shape":"CatalogIdString"},
2733
- "NextToken":{"shape":"Token"},
2734
- "MaxResults":{"shape":"PageSize"}
2735
- }
2736
- },
2737
- "GetDatabasesResponse":{
2738
- "type":"structure",
2739
- "required":["DatabaseList"],
2740
- "members":{
2741
- "DatabaseList":{"shape":"DatabaseList"},
2742
- "NextToken":{"shape":"Token"}
2743
- }
2744
- },
2745
- "GetDataflowGraphRequest":{
2746
- "type":"structure",
2747
- "members":{
2748
- "PythonScript":{"shape":"PythonScript"}
2749
- }
2750
- },
2751
- "GetDataflowGraphResponse":{
2752
- "type":"structure",
2753
- "members":{
2754
- "DagNodes":{"shape":"DagNodes"},
2755
- "DagEdges":{"shape":"DagEdges"}
2756
- }
2757
- },
2758
- "GetDevEndpointRequest":{
2759
- "type":"structure",
2760
- "required":["EndpointName"],
2761
- "members":{
2762
- "EndpointName":{"shape":"GenericString"}
2763
- }
2764
- },
2765
- "GetDevEndpointResponse":{
2766
- "type":"structure",
2767
- "members":{
2768
- "DevEndpoint":{"shape":"DevEndpoint"}
2769
- }
2770
- },
2771
- "GetDevEndpointsRequest":{
2772
- "type":"structure",
2773
- "members":{
2774
- "MaxResults":{"shape":"PageSize"},
2775
- "NextToken":{"shape":"GenericString"}
2776
- }
2777
- },
2778
- "GetDevEndpointsResponse":{
2779
- "type":"structure",
2780
- "members":{
2781
- "DevEndpoints":{"shape":"DevEndpointList"},
2782
- "NextToken":{"shape":"GenericString"}
2783
- }
2784
- },
2785
- "GetJobRequest":{
2786
- "type":"structure",
2787
- "required":["JobName"],
2788
- "members":{
2789
- "JobName":{"shape":"NameString"}
2790
- }
2791
- },
2792
- "GetJobResponse":{
2793
- "type":"structure",
2794
- "members":{
2795
- "Job":{"shape":"Job"}
2796
- }
2797
- },
2798
- "GetJobRunRequest":{
2799
- "type":"structure",
2800
- "required":[
2801
- "JobName",
2802
- "RunId"
2803
- ],
2804
- "members":{
2805
- "JobName":{"shape":"NameString"},
2806
- "RunId":{"shape":"IdString"},
2807
- "PredecessorsIncluded":{"shape":"BooleanValue"}
2808
- }
2809
- },
2810
- "GetJobRunResponse":{
2811
- "type":"structure",
2812
- "members":{
2813
- "JobRun":{"shape":"JobRun"}
2814
- }
2815
- },
2816
- "GetJobRunsRequest":{
2817
- "type":"structure",
2818
- "required":["JobName"],
2819
- "members":{
2820
- "JobName":{"shape":"NameString"},
2821
- "NextToken":{"shape":"GenericString"},
2822
- "MaxResults":{"shape":"PageSize"}
2823
- }
2824
- },
2825
- "GetJobRunsResponse":{
2826
- "type":"structure",
2827
- "members":{
2828
- "JobRuns":{"shape":"JobRunList"},
2829
- "NextToken":{"shape":"GenericString"}
2830
- }
2831
- },
2832
- "GetJobsRequest":{
2833
- "type":"structure",
2834
- "members":{
2835
- "NextToken":{"shape":"GenericString"},
2836
- "MaxResults":{"shape":"PageSize"}
2837
- }
2838
- },
2839
- "GetJobsResponse":{
2840
- "type":"structure",
2841
- "members":{
2842
- "Jobs":{"shape":"JobList"},
2843
- "NextToken":{"shape":"GenericString"}
2844
- }
2845
- },
2846
- "GetMappingRequest":{
2847
- "type":"structure",
2848
- "required":["Source"],
2849
- "members":{
2850
- "Source":{"shape":"CatalogEntry"},
2851
- "Sinks":{"shape":"CatalogEntries"},
2852
- "Location":{"shape":"Location"}
2853
- }
2854
- },
2855
- "GetMappingResponse":{
2856
- "type":"structure",
2857
- "required":["Mapping"],
2858
- "members":{
2859
- "Mapping":{"shape":"MappingList"}
2860
- }
2861
- },
2862
- "GetPartitionRequest":{
2863
- "type":"structure",
2864
- "required":[
2865
- "DatabaseName",
2866
- "TableName",
2867
- "PartitionValues"
2868
- ],
2869
- "members":{
2870
- "CatalogId":{"shape":"CatalogIdString"},
2871
- "DatabaseName":{"shape":"NameString"},
2872
- "TableName":{"shape":"NameString"},
2873
- "PartitionValues":{"shape":"ValueStringList"}
2874
- }
2875
- },
2876
- "GetPartitionResponse":{
2877
- "type":"structure",
2878
- "members":{
2879
- "Partition":{"shape":"Partition"}
2880
- }
2881
- },
2882
- "GetPartitionsRequest":{
2883
- "type":"structure",
2884
- "required":[
2885
- "DatabaseName",
2886
- "TableName"
2887
- ],
2888
- "members":{
2889
- "CatalogId":{"shape":"CatalogIdString"},
2890
- "DatabaseName":{"shape":"NameString"},
2891
- "TableName":{"shape":"NameString"},
2892
- "Expression":{"shape":"PredicateString"},
2893
- "NextToken":{"shape":"Token"},
2894
- "Segment":{"shape":"Segment"},
2895
- "MaxResults":{"shape":"PageSize"}
2896
- }
2897
- },
2898
- "GetPartitionsResponse":{
2899
- "type":"structure",
2900
- "members":{
2901
- "Partitions":{"shape":"PartitionList"},
2902
- "NextToken":{"shape":"Token"}
2903
- }
2904
- },
2905
- "GetPlanRequest":{
2906
- "type":"structure",
2907
- "required":[
2908
- "Mapping",
2909
- "Source"
2910
- ],
2911
- "members":{
2912
- "Mapping":{"shape":"MappingList"},
2913
- "Source":{"shape":"CatalogEntry"},
2914
- "Sinks":{"shape":"CatalogEntries"},
2915
- "Location":{"shape":"Location"},
2916
- "Language":{"shape":"Language"}
2917
- }
2918
- },
2919
- "GetPlanResponse":{
2920
- "type":"structure",
2921
- "members":{
2922
- "PythonScript":{"shape":"PythonScript"},
2923
- "ScalaCode":{"shape":"ScalaCode"}
2924
- }
2925
- },
2926
- "GetResourcePolicyRequest":{
2927
- "type":"structure",
2928
- "members":{
2929
- }
2930
- },
2931
- "GetResourcePolicyResponse":{
2932
- "type":"structure",
2933
- "members":{
2934
- "PolicyInJson":{"shape":"PolicyJsonString"},
2935
- "PolicyHash":{"shape":"HashString"},
2936
- "CreateTime":{"shape":"Timestamp"},
2937
- "UpdateTime":{"shape":"Timestamp"}
2938
- }
2939
- },
2940
- "GetSecurityConfigurationRequest":{
2941
- "type":"structure",
2942
- "required":["Name"],
2943
- "members":{
2944
- "Name":{"shape":"NameString"}
2945
- }
2946
- },
2947
- "GetSecurityConfigurationResponse":{
2948
- "type":"structure",
2949
- "members":{
2950
- "SecurityConfiguration":{"shape":"SecurityConfiguration"}
2951
- }
2952
- },
2953
- "GetSecurityConfigurationsRequest":{
2954
- "type":"structure",
2955
- "members":{
2956
- "MaxResults":{"shape":"PageSize"},
2957
- "NextToken":{"shape":"GenericString"}
2958
- }
2959
- },
2960
- "GetSecurityConfigurationsResponse":{
2961
- "type":"structure",
2962
- "members":{
2963
- "SecurityConfigurations":{"shape":"SecurityConfigurationList"},
2964
- "NextToken":{"shape":"GenericString"}
2965
- }
2966
- },
2967
- "GetTableRequest":{
2968
- "type":"structure",
2969
- "required":[
2970
- "DatabaseName",
2971
- "Name"
2972
- ],
2973
- "members":{
2974
- "CatalogId":{"shape":"CatalogIdString"},
2975
- "DatabaseName":{"shape":"NameString"},
2976
- "Name":{"shape":"NameString"}
2977
- }
2978
- },
2979
- "GetTableResponse":{
2980
- "type":"structure",
2981
- "members":{
2982
- "Table":{"shape":"Table"}
2983
- }
2984
- },
2985
- "GetTableVersionRequest":{
2986
- "type":"structure",
2987
- "required":[
2988
- "DatabaseName",
2989
- "TableName"
2990
- ],
2991
- "members":{
2992
- "CatalogId":{"shape":"CatalogIdString"},
2993
- "DatabaseName":{"shape":"NameString"},
2994
- "TableName":{"shape":"NameString"},
2995
- "VersionId":{"shape":"VersionString"}
2996
- }
2997
- },
2998
- "GetTableVersionResponse":{
2999
- "type":"structure",
3000
- "members":{
3001
- "TableVersion":{"shape":"TableVersion"}
3002
- }
3003
- },
3004
- "GetTableVersionsList":{
3005
- "type":"list",
3006
- "member":{"shape":"TableVersion"}
3007
- },
3008
- "GetTableVersionsRequest":{
3009
- "type":"structure",
3010
- "required":[
3011
- "DatabaseName",
3012
- "TableName"
3013
- ],
3014
- "members":{
3015
- "CatalogId":{"shape":"CatalogIdString"},
3016
- "DatabaseName":{"shape":"NameString"},
3017
- "TableName":{"shape":"NameString"},
3018
- "NextToken":{"shape":"Token"},
3019
- "MaxResults":{"shape":"PageSize"}
3020
- }
3021
- },
3022
- "GetTableVersionsResponse":{
3023
- "type":"structure",
3024
- "members":{
3025
- "TableVersions":{"shape":"GetTableVersionsList"},
3026
- "NextToken":{"shape":"Token"}
3027
- }
3028
- },
3029
- "GetTablesRequest":{
3030
- "type":"structure",
3031
- "required":["DatabaseName"],
3032
- "members":{
3033
- "CatalogId":{"shape":"CatalogIdString"},
3034
- "DatabaseName":{"shape":"NameString"},
3035
- "Expression":{"shape":"FilterString"},
3036
- "NextToken":{"shape":"Token"},
3037
- "MaxResults":{"shape":"PageSize"}
3038
- }
3039
- },
3040
- "GetTablesResponse":{
3041
- "type":"structure",
3042
- "members":{
3043
- "TableList":{"shape":"TableList"},
3044
- "NextToken":{"shape":"Token"}
3045
- }
3046
- },
3047
- "GetTriggerRequest":{
3048
- "type":"structure",
3049
- "required":["Name"],
3050
- "members":{
3051
- "Name":{"shape":"NameString"}
3052
- }
3053
- },
3054
- "GetTriggerResponse":{
3055
- "type":"structure",
3056
- "members":{
3057
- "Trigger":{"shape":"Trigger"}
3058
- }
3059
- },
3060
- "GetTriggersRequest":{
3061
- "type":"structure",
3062
- "members":{
3063
- "NextToken":{"shape":"GenericString"},
3064
- "DependentJobName":{"shape":"NameString"},
3065
- "MaxResults":{"shape":"PageSize"}
3066
- }
3067
- },
3068
- "GetTriggersResponse":{
3069
- "type":"structure",
3070
- "members":{
3071
- "Triggers":{"shape":"TriggerList"},
3072
- "NextToken":{"shape":"GenericString"}
3073
- }
3074
- },
3075
- "GetUserDefinedFunctionRequest":{
3076
- "type":"structure",
3077
- "required":[
3078
- "DatabaseName",
3079
- "FunctionName"
3080
- ],
3081
- "members":{
3082
- "CatalogId":{"shape":"CatalogIdString"},
3083
- "DatabaseName":{"shape":"NameString"},
3084
- "FunctionName":{"shape":"NameString"}
3085
- }
3086
- },
3087
- "GetUserDefinedFunctionResponse":{
3088
- "type":"structure",
3089
- "members":{
3090
- "UserDefinedFunction":{"shape":"UserDefinedFunction"}
3091
- }
3092
- },
3093
- "GetUserDefinedFunctionsRequest":{
3094
- "type":"structure",
3095
- "required":[
3096
- "DatabaseName",
3097
- "Pattern"
3098
- ],
3099
- "members":{
3100
- "CatalogId":{"shape":"CatalogIdString"},
3101
- "DatabaseName":{"shape":"NameString"},
3102
- "Pattern":{"shape":"NameString"},
3103
- "NextToken":{"shape":"Token"},
3104
- "MaxResults":{"shape":"PageSize"}
3105
- }
3106
- },
3107
- "GetUserDefinedFunctionsResponse":{
3108
- "type":"structure",
3109
- "members":{
3110
- "UserDefinedFunctions":{"shape":"UserDefinedFunctionList"},
3111
- "NextToken":{"shape":"Token"}
3112
- }
3113
- },
3114
- "GlueEncryptionException":{
3115
- "type":"structure",
3116
- "members":{
3117
- "Message":{"shape":"MessageString"}
3118
- },
3119
- "exception":true
3120
- },
3121
- "GrokClassifier":{
3122
- "type":"structure",
3123
- "required":[
3124
- "Name",
3125
- "Classification",
3126
- "GrokPattern"
3127
- ],
3128
- "members":{
3129
- "Name":{"shape":"NameString"},
3130
- "Classification":{"shape":"Classification"},
3131
- "CreationTime":{"shape":"Timestamp"},
3132
- "LastUpdated":{"shape":"Timestamp"},
3133
- "Version":{"shape":"VersionId"},
3134
- "GrokPattern":{"shape":"GrokPattern"},
3135
- "CustomPatterns":{"shape":"CustomPatterns"}
3136
- }
3137
- },
3138
- "GrokPattern":{
3139
- "type":"string",
3140
- "max":2048,
3141
- "min":1,
3142
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\t]*"
3143
- },
3144
- "HashString":{
3145
- "type":"string",
3146
- "max":255,
3147
- "min":1,
3148
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
3149
- },
3150
- "IdString":{
3151
- "type":"string",
3152
- "max":255,
3153
- "min":1,
3154
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
3155
- },
3156
- "IdempotentParameterMismatchException":{
3157
- "type":"structure",
3158
- "members":{
3159
- "Message":{"shape":"MessageString"}
3160
- },
3161
- "exception":true
3162
- },
3163
- "ImportCatalogToGlueRequest":{
3164
- "type":"structure",
3165
- "members":{
3166
- "CatalogId":{"shape":"CatalogIdString"}
3167
- }
3168
- },
3169
- "ImportCatalogToGlueResponse":{
3170
- "type":"structure",
3171
- "members":{
3172
- }
3173
- },
3174
- "Integer":{"type":"integer"},
3175
- "IntegerFlag":{
3176
- "type":"integer",
3177
- "max":1,
3178
- "min":0
3179
- },
3180
- "IntegerValue":{"type":"integer"},
3181
- "InternalServiceException":{
3182
- "type":"structure",
3183
- "members":{
3184
- "Message":{"shape":"MessageString"}
3185
- },
3186
- "exception":true,
3187
- "fault":true
3188
- },
3189
- "InvalidInputException":{
3190
- "type":"structure",
3191
- "members":{
3192
- "Message":{"shape":"MessageString"}
3193
- },
3194
- "exception":true
3195
- },
3196
- "JdbcTarget":{
3197
- "type":"structure",
3198
- "members":{
3199
- "ConnectionName":{"shape":"ConnectionName"},
3200
- "Path":{"shape":"Path"},
3201
- "Exclusions":{"shape":"PathList"}
3202
- }
3203
- },
3204
- "JdbcTargetList":{
3205
- "type":"list",
3206
- "member":{"shape":"JdbcTarget"}
3207
- },
3208
- "Job":{
3209
- "type":"structure",
3210
- "members":{
3211
- "Name":{"shape":"NameString"},
3212
- "Description":{"shape":"DescriptionString"},
3213
- "LogUri":{"shape":"UriString"},
3214
- "Role":{"shape":"RoleString"},
3215
- "CreatedOn":{"shape":"TimestampValue"},
3216
- "LastModifiedOn":{"shape":"TimestampValue"},
3217
- "ExecutionProperty":{"shape":"ExecutionProperty"},
3218
- "Command":{"shape":"JobCommand"},
3219
- "DefaultArguments":{"shape":"GenericMap"},
3220
- "Connections":{"shape":"ConnectionsList"},
3221
- "MaxRetries":{"shape":"MaxRetries"},
3222
- "AllocatedCapacity":{
3223
- "shape":"IntegerValue",
3224
- "deprecated":true,
3225
- "deprecatedMessage":"This property is deprecated, use MaxCapacity instead."
3226
- },
3227
- "Timeout":{"shape":"Timeout"},
3228
- "MaxCapacity":{"shape":"NullableDouble"},
3229
- "NotificationProperty":{"shape":"NotificationProperty"},
3230
- "SecurityConfiguration":{"shape":"NameString"}
3231
- }
3232
- },
3233
- "JobBookmarkEntry":{
3234
- "type":"structure",
3235
- "members":{
3236
- "JobName":{"shape":"JobName"},
3237
- "Version":{"shape":"IntegerValue"},
3238
- "Run":{"shape":"IntegerValue"},
3239
- "Attempt":{"shape":"IntegerValue"},
3240
- "JobBookmark":{"shape":"JsonValue"}
3241
- }
3242
- },
3243
- "JobBookmarksEncryption":{
3244
- "type":"structure",
3245
- "members":{
3246
- "JobBookmarksEncryptionMode":{"shape":"JobBookmarksEncryptionMode"},
3247
- "KmsKeyArn":{"shape":"KmsKeyArn"}
3248
- }
3249
- },
3250
- "JobBookmarksEncryptionMode":{
3251
- "type":"string",
3252
- "enum":[
3253
- "DISABLED",
3254
- "CSE-KMS"
3255
- ]
3256
- },
3257
- "JobCommand":{
3258
- "type":"structure",
3259
- "members":{
3260
- "Name":{"shape":"GenericString"},
3261
- "ScriptLocation":{"shape":"ScriptLocationString"}
3262
- }
3263
- },
3264
- "JobList":{
3265
- "type":"list",
3266
- "member":{"shape":"Job"}
3267
- },
3268
- "JobName":{"type":"string"},
3269
- "JobRun":{
3270
- "type":"structure",
3271
- "members":{
3272
- "Id":{"shape":"IdString"},
3273
- "Attempt":{"shape":"AttemptCount"},
3274
- "PreviousRunId":{"shape":"IdString"},
3275
- "TriggerName":{"shape":"NameString"},
3276
- "JobName":{"shape":"NameString"},
3277
- "StartedOn":{"shape":"TimestampValue"},
3278
- "LastModifiedOn":{"shape":"TimestampValue"},
3279
- "CompletedOn":{"shape":"TimestampValue"},
3280
- "JobRunState":{"shape":"JobRunState"},
3281
- "Arguments":{"shape":"GenericMap"},
3282
- "ErrorMessage":{"shape":"ErrorString"},
3283
- "PredecessorRuns":{"shape":"PredecessorList"},
3284
- "AllocatedCapacity":{
3285
- "shape":"IntegerValue",
3286
- "deprecated":true,
3287
- "deprecatedMessage":"This property is deprecated, use MaxCapacity instead."
3288
- },
3289
- "ExecutionTime":{"shape":"ExecutionTime"},
3290
- "Timeout":{"shape":"Timeout"},
3291
- "MaxCapacity":{"shape":"NullableDouble"},
3292
- "NotificationProperty":{"shape":"NotificationProperty"},
3293
- "SecurityConfiguration":{"shape":"NameString"},
3294
- "LogGroupName":{"shape":"GenericString"}
3295
- }
3296
- },
3297
- "JobRunList":{
3298
- "type":"list",
3299
- "member":{"shape":"JobRun"}
3300
- },
3301
- "JobRunState":{
3302
- "type":"string",
3303
- "enum":[
3304
- "STARTING",
3305
- "RUNNING",
3306
- "STOPPING",
3307
- "STOPPED",
3308
- "SUCCEEDED",
3309
- "FAILED",
3310
- "TIMEOUT"
3311
- ]
3312
- },
3313
- "JobUpdate":{
3314
- "type":"structure",
3315
- "members":{
3316
- "Description":{"shape":"DescriptionString"},
3317
- "LogUri":{"shape":"UriString"},
3318
- "Role":{"shape":"RoleString"},
3319
- "ExecutionProperty":{"shape":"ExecutionProperty"},
3320
- "Command":{"shape":"JobCommand"},
3321
- "DefaultArguments":{"shape":"GenericMap"},
3322
- "Connections":{"shape":"ConnectionsList"},
3323
- "MaxRetries":{"shape":"MaxRetries"},
3324
- "AllocatedCapacity":{
3325
- "shape":"IntegerValue",
3326
- "deprecated":true,
3327
- "deprecatedMessage":"This property is deprecated, use MaxCapacity instead."
3328
- },
3329
- "Timeout":{"shape":"Timeout"},
3330
- "MaxCapacity":{"shape":"NullableDouble"},
3331
- "NotificationProperty":{"shape":"NotificationProperty"},
3332
- "SecurityConfiguration":{"shape":"NameString"}
3333
- }
3334
- },
3335
- "JsonClassifier":{
3336
- "type":"structure",
3337
- "required":[
3338
- "Name",
3339
- "JsonPath"
3340
- ],
3341
- "members":{
3342
- "Name":{"shape":"NameString"},
3343
- "CreationTime":{"shape":"Timestamp"},
3344
- "LastUpdated":{"shape":"Timestamp"},
3345
- "Version":{"shape":"VersionId"},
3346
- "JsonPath":{"shape":"JsonPath"}
3347
- }
3348
- },
3349
- "JsonPath":{"type":"string"},
3350
- "JsonValue":{"type":"string"},
3351
- "KeyString":{
3352
- "type":"string",
3353
- "max":255,
3354
- "min":1,
3355
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
3356
- },
3357
- "KmsKeyArn":{
3358
- "type":"string",
3359
- "pattern":"arn:aws:kms:.*"
3360
- },
3361
- "Language":{
3362
- "type":"string",
3363
- "enum":[
3364
- "PYTHON",
3365
- "SCALA"
3366
- ]
3367
- },
3368
- "LastCrawlInfo":{
3369
- "type":"structure",
3370
- "members":{
3371
- "Status":{"shape":"LastCrawlStatus"},
3372
- "ErrorMessage":{"shape":"DescriptionString"},
3373
- "LogGroup":{"shape":"LogGroup"},
3374
- "LogStream":{"shape":"LogStream"},
3375
- "MessagePrefix":{"shape":"MessagePrefix"},
3376
- "StartTime":{"shape":"Timestamp"}
3377
- }
3378
- },
3379
- "LastCrawlStatus":{
3380
- "type":"string",
3381
- "enum":[
3382
- "SUCCEEDED",
3383
- "CANCELLED",
3384
- "FAILED"
3385
- ]
3386
- },
3387
- "Location":{
3388
- "type":"structure",
3389
- "members":{
3390
- "Jdbc":{"shape":"CodeGenNodeArgs"},
3391
- "S3":{"shape":"CodeGenNodeArgs"},
3392
- "DynamoDB":{"shape":"CodeGenNodeArgs"}
3393
- }
3394
- },
3395
- "LocationMap":{
3396
- "type":"map",
3397
- "key":{"shape":"ColumnValuesString"},
3398
- "value":{"shape":"ColumnValuesString"}
3399
- },
3400
- "LocationString":{
3401
- "type":"string",
3402
- "max":2056,
3403
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
3404
- },
3405
- "LogGroup":{
3406
- "type":"string",
3407
- "max":512,
3408
- "min":1,
3409
- "pattern":"[\\.\\-_/#A-Za-z0-9]+"
3410
- },
3411
- "LogStream":{
3412
- "type":"string",
3413
- "max":512,
3414
- "min":1,
3415
- "pattern":"[^:*]*"
3416
- },
3417
- "Logical":{
3418
- "type":"string",
3419
- "enum":[
3420
- "AND",
3421
- "ANY"
3422
- ]
3423
- },
3424
- "LogicalOperator":{
3425
- "type":"string",
3426
- "enum":["EQUALS"]
3427
- },
3428
- "MappingEntry":{
3429
- "type":"structure",
3430
- "members":{
3431
- "SourceTable":{"shape":"TableName"},
3432
- "SourcePath":{"shape":"SchemaPathString"},
3433
- "SourceType":{"shape":"FieldType"},
3434
- "TargetTable":{"shape":"TableName"},
3435
- "TargetPath":{"shape":"SchemaPathString"},
3436
- "TargetType":{"shape":"FieldType"}
3437
- }
3438
- },
3439
- "MappingList":{
3440
- "type":"list",
3441
- "member":{"shape":"MappingEntry"}
3442
- },
3443
- "MatchCriteria":{
3444
- "type":"list",
3445
- "member":{"shape":"NameString"},
3446
- "max":10,
3447
- "min":0
3448
- },
3449
- "MaxConcurrentRuns":{"type":"integer"},
3450
- "MaxRetries":{"type":"integer"},
3451
- "MessagePrefix":{
3452
- "type":"string",
3453
- "max":255,
3454
- "min":1,
3455
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
3456
- },
3457
- "MessageString":{"type":"string"},
3458
- "MillisecondsCount":{"type":"long"},
3459
- "NameString":{
3460
- "type":"string",
3461
- "max":255,
3462
- "min":1,
3463
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
3464
- },
3465
- "NameStringList":{
3466
- "type":"list",
3467
- "member":{"shape":"NameString"}
3468
- },
3469
- "NoScheduleException":{
3470
- "type":"structure",
3471
- "members":{
3472
- "Message":{"shape":"MessageString"}
3473
- },
3474
- "exception":true
3475
- },
3476
- "NonNegativeDouble":{
3477
- "type":"double",
3478
- "min":0.0
3479
- },
3480
- "NonNegativeInteger":{
3481
- "type":"integer",
3482
- "min":0
3483
- },
3484
- "NotificationProperty":{
3485
- "type":"structure",
3486
- "members":{
3487
- "NotifyDelayAfter":{"shape":"NotifyDelayAfter"}
3488
- }
3489
- },
3490
- "NotifyDelayAfter":{
3491
- "type":"integer",
3492
- "box":true,
3493
- "min":1
3494
- },
3495
- "NullableDouble":{
3496
- "type":"double",
3497
- "box":true
3498
- },
3499
- "OperationTimeoutException":{
3500
- "type":"structure",
3501
- "members":{
3502
- "Message":{"shape":"MessageString"}
3503
- },
3504
- "exception":true
3505
- },
3506
- "Order":{
3507
- "type":"structure",
3508
- "required":[
3509
- "Column",
3510
- "SortOrder"
3511
- ],
3512
- "members":{
3513
- "Column":{"shape":"NameString"},
3514
- "SortOrder":{"shape":"IntegerFlag"}
3515
- }
3516
- },
3517
- "OrderList":{
3518
- "type":"list",
3519
- "member":{"shape":"Order"}
3520
- },
3521
- "PageSize":{
3522
- "type":"integer",
3523
- "box":true,
3524
- "max":1000,
3525
- "min":1
3526
- },
3527
- "ParametersMap":{
3528
- "type":"map",
3529
- "key":{"shape":"KeyString"},
3530
- "value":{"shape":"ParametersMapValue"}
3531
- },
3532
- "ParametersMapValue":{
3533
- "type":"string",
3534
- "max":512000
3535
- },
3536
- "Partition":{
3537
- "type":"structure",
3538
- "members":{
3539
- "Values":{"shape":"ValueStringList"},
3540
- "DatabaseName":{"shape":"NameString"},
3541
- "TableName":{"shape":"NameString"},
3542
- "CreationTime":{"shape":"Timestamp"},
3543
- "LastAccessTime":{"shape":"Timestamp"},
3544
- "StorageDescriptor":{"shape":"StorageDescriptor"},
3545
- "Parameters":{"shape":"ParametersMap"},
3546
- "LastAnalyzedTime":{"shape":"Timestamp"}
3547
- }
3548
- },
3549
- "PartitionError":{
3550
- "type":"structure",
3551
- "members":{
3552
- "PartitionValues":{"shape":"ValueStringList"},
3553
- "ErrorDetail":{"shape":"ErrorDetail"}
3554
- }
3555
- },
3556
- "PartitionErrors":{
3557
- "type":"list",
3558
- "member":{"shape":"PartitionError"}
3559
- },
3560
- "PartitionInput":{
3561
- "type":"structure",
3562
- "members":{
3563
- "Values":{"shape":"ValueStringList"},
3564
- "LastAccessTime":{"shape":"Timestamp"},
3565
- "StorageDescriptor":{"shape":"StorageDescriptor"},
3566
- "Parameters":{"shape":"ParametersMap"},
3567
- "LastAnalyzedTime":{"shape":"Timestamp"}
3568
- }
3569
- },
3570
- "PartitionInputList":{
3571
- "type":"list",
3572
- "member":{"shape":"PartitionInput"},
3573
- "max":100,
3574
- "min":0
3575
- },
3576
- "PartitionList":{
3577
- "type":"list",
3578
- "member":{"shape":"Partition"}
3579
- },
3580
- "PartitionValueList":{
3581
- "type":"structure",
3582
- "required":["Values"],
3583
- "members":{
3584
- "Values":{"shape":"ValueStringList"}
3585
- }
3586
- },
3587
- "Path":{"type":"string"},
3588
- "PathList":{
3589
- "type":"list",
3590
- "member":{"shape":"Path"}
3591
- },
3592
- "PhysicalConnectionRequirements":{
3593
- "type":"structure",
3594
- "members":{
3595
- "SubnetId":{"shape":"NameString"},
3596
- "SecurityGroupIdList":{"shape":"SecurityGroupIdList"},
3597
- "AvailabilityZone":{"shape":"NameString"}
3598
- }
3599
- },
3600
- "PolicyJsonString":{
3601
- "type":"string",
3602
- "max":10240,
3603
- "min":2
3604
- },
3605
- "Predecessor":{
3606
- "type":"structure",
3607
- "members":{
3608
- "JobName":{"shape":"NameString"},
3609
- "RunId":{"shape":"IdString"}
3610
- }
3611
- },
3612
- "PredecessorList":{
3613
- "type":"list",
3614
- "member":{"shape":"Predecessor"}
3615
- },
3616
- "Predicate":{
3617
- "type":"structure",
3618
- "members":{
3619
- "Logical":{"shape":"Logical"},
3620
- "Conditions":{"shape":"ConditionList"}
3621
- }
3622
- },
3623
- "PredicateString":{
3624
- "type":"string",
3625
- "max":2048,
3626
- "min":0,
3627
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
3628
- },
3629
- "PrincipalType":{
3630
- "type":"string",
3631
- "enum":[
3632
- "USER",
3633
- "ROLE",
3634
- "GROUP"
3635
- ]
3636
- },
3637
- "PublicKeysList":{
3638
- "type":"list",
3639
- "member":{"shape":"GenericString"},
3640
- "max":5
3641
- },
3642
- "PutDataCatalogEncryptionSettingsRequest":{
3643
- "type":"structure",
3644
- "required":["DataCatalogEncryptionSettings"],
3645
- "members":{
3646
- "CatalogId":{"shape":"CatalogIdString"},
3647
- "DataCatalogEncryptionSettings":{"shape":"DataCatalogEncryptionSettings"}
3648
- }
3649
- },
3650
- "PutDataCatalogEncryptionSettingsResponse":{
3651
- "type":"structure",
3652
- "members":{
3653
- }
3654
- },
3655
- "PutResourcePolicyRequest":{
3656
- "type":"structure",
3657
- "required":["PolicyInJson"],
3658
- "members":{
3659
- "PolicyInJson":{"shape":"PolicyJsonString"},
3660
- "PolicyHashCondition":{"shape":"HashString"},
3661
- "PolicyExistsCondition":{"shape":"ExistCondition"}
3662
- }
3663
- },
3664
- "PutResourcePolicyResponse":{
3665
- "type":"structure",
3666
- "members":{
3667
- "PolicyHash":{"shape":"HashString"}
3668
- }
3669
- },
3670
- "PythonScript":{"type":"string"},
3671
- "ResetJobBookmarkRequest":{
3672
- "type":"structure",
3673
- "required":["JobName"],
3674
- "members":{
3675
- "JobName":{"shape":"JobName"}
3676
- }
3677
- },
3678
- "ResetJobBookmarkResponse":{
3679
- "type":"structure",
3680
- "members":{
3681
- "JobBookmarkEntry":{"shape":"JobBookmarkEntry"}
3682
- }
3683
- },
3684
- "ResourceNumberLimitExceededException":{
3685
- "type":"structure",
3686
- "members":{
3687
- "Message":{"shape":"MessageString"}
3688
- },
3689
- "exception":true
3690
- },
3691
- "ResourceType":{
3692
- "type":"string",
3693
- "enum":[
3694
- "JAR",
3695
- "FILE",
3696
- "ARCHIVE"
3697
- ]
3698
- },
3699
- "ResourceUri":{
3700
- "type":"structure",
3701
- "members":{
3702
- "ResourceType":{"shape":"ResourceType"},
3703
- "Uri":{"shape":"URI"}
3704
- }
3705
- },
3706
- "ResourceUriList":{
3707
- "type":"list",
3708
- "member":{"shape":"ResourceUri"},
3709
- "max":1000,
3710
- "min":0
3711
- },
3712
- "Role":{"type":"string"},
3713
- "RoleArn":{
3714
- "type":"string",
3715
- "pattern":"arn:aws:iam::\\d{12}:role/.*"
3716
- },
3717
- "RoleString":{"type":"string"},
3718
- "RowTag":{"type":"string"},
3719
- "S3Encryption":{
3720
- "type":"structure",
3721
- "members":{
3722
- "S3EncryptionMode":{"shape":"S3EncryptionMode"},
3723
- "KmsKeyArn":{"shape":"KmsKeyArn"}
3724
- }
3725
- },
3726
- "S3EncryptionList":{
3727
- "type":"list",
3728
- "member":{"shape":"S3Encryption"}
3729
- },
3730
- "S3EncryptionMode":{
3731
- "type":"string",
3732
- "enum":[
3733
- "DISABLED",
3734
- "SSE-KMS",
3735
- "SSE-S3"
3736
- ]
3737
- },
3738
- "S3Target":{
3739
- "type":"structure",
3740
- "members":{
3741
- "Path":{"shape":"Path"},
3742
- "Exclusions":{"shape":"PathList"}
3743
- }
3744
- },
3745
- "S3TargetList":{
3746
- "type":"list",
3747
- "member":{"shape":"S3Target"}
3748
- },
3749
- "ScalaCode":{"type":"string"},
3750
- "Schedule":{
3751
- "type":"structure",
3752
- "members":{
3753
- "ScheduleExpression":{"shape":"CronExpression"},
3754
- "State":{"shape":"ScheduleState"}
3755
- }
3756
- },
3757
- "ScheduleState":{
3758
- "type":"string",
3759
- "enum":[
3760
- "SCHEDULED",
3761
- "NOT_SCHEDULED",
3762
- "TRANSITIONING"
3763
- ]
3764
- },
3765
- "SchedulerNotRunningException":{
3766
- "type":"structure",
3767
- "members":{
3768
- "Message":{"shape":"MessageString"}
3769
- },
3770
- "exception":true
3771
- },
3772
- "SchedulerRunningException":{
3773
- "type":"structure",
3774
- "members":{
3775
- "Message":{"shape":"MessageString"}
3776
- },
3777
- "exception":true
3778
- },
3779
- "SchedulerTransitioningException":{
3780
- "type":"structure",
3781
- "members":{
3782
- "Message":{"shape":"MessageString"}
3783
- },
3784
- "exception":true
3785
- },
3786
- "SchemaChangePolicy":{
3787
- "type":"structure",
3788
- "members":{
3789
- "UpdateBehavior":{"shape":"UpdateBehavior"},
3790
- "DeleteBehavior":{"shape":"DeleteBehavior"}
3791
- }
3792
- },
3793
- "SchemaPathString":{"type":"string"},
3794
- "ScriptLocationString":{"type":"string"},
3795
- "SecurityConfiguration":{
3796
- "type":"structure",
3797
- "members":{
3798
- "Name":{"shape":"NameString"},
3799
- "CreatedTimeStamp":{"shape":"TimestampValue"},
3800
- "EncryptionConfiguration":{"shape":"EncryptionConfiguration"}
3801
- }
3802
- },
3803
- "SecurityConfigurationList":{
3804
- "type":"list",
3805
- "member":{"shape":"SecurityConfiguration"}
3806
- },
3807
- "SecurityGroupIdList":{
3808
- "type":"list",
3809
- "member":{"shape":"NameString"},
3810
- "max":50,
3811
- "min":0
3812
- },
3813
- "Segment":{
3814
- "type":"structure",
3815
- "required":[
3816
- "SegmentNumber",
3817
- "TotalSegments"
3818
- ],
3819
- "members":{
3820
- "SegmentNumber":{"shape":"NonNegativeInteger"},
3821
- "TotalSegments":{"shape":"TotalSegmentsInteger"}
3822
- }
3823
- },
3824
- "SerDeInfo":{
3825
- "type":"structure",
3826
- "members":{
3827
- "Name":{"shape":"NameString"},
3828
- "SerializationLibrary":{"shape":"NameString"},
3829
- "Parameters":{"shape":"ParametersMap"}
3830
- }
3831
- },
3832
- "SkewedInfo":{
3833
- "type":"structure",
3834
- "members":{
3835
- "SkewedColumnNames":{"shape":"NameStringList"},
3836
- "SkewedColumnValues":{"shape":"ColumnValueStringList"},
3837
- "SkewedColumnValueLocationMaps":{"shape":"LocationMap"}
3838
- }
3839
- },
3840
- "StartCrawlerRequest":{
3841
- "type":"structure",
3842
- "required":["Name"],
3843
- "members":{
3844
- "Name":{"shape":"NameString"}
3845
- }
3846
- },
3847
- "StartCrawlerResponse":{
3848
- "type":"structure",
3849
- "members":{
3850
- }
3851
- },
3852
- "StartCrawlerScheduleRequest":{
3853
- "type":"structure",
3854
- "required":["CrawlerName"],
3855
- "members":{
3856
- "CrawlerName":{"shape":"NameString"}
3857
- }
3858
- },
3859
- "StartCrawlerScheduleResponse":{
3860
- "type":"structure",
3861
- "members":{
3862
- }
3863
- },
3864
- "StartJobRunRequest":{
3865
- "type":"structure",
3866
- "required":["JobName"],
3867
- "members":{
3868
- "JobName":{"shape":"NameString"},
3869
- "JobRunId":{"shape":"IdString"},
3870
- "Arguments":{"shape":"GenericMap"},
3871
- "AllocatedCapacity":{
3872
- "shape":"IntegerValue",
3873
- "deprecated":true,
3874
- "deprecatedMessage":"This property is deprecated, use MaxCapacity instead."
3875
- },
3876
- "Timeout":{"shape":"Timeout"},
3877
- "MaxCapacity":{"shape":"NullableDouble"},
3878
- "NotificationProperty":{"shape":"NotificationProperty"},
3879
- "SecurityConfiguration":{"shape":"NameString"}
3880
- }
3881
- },
3882
- "StartJobRunResponse":{
3883
- "type":"structure",
3884
- "members":{
3885
- "JobRunId":{"shape":"IdString"}
3886
- }
3887
- },
3888
- "StartTriggerRequest":{
3889
- "type":"structure",
3890
- "required":["Name"],
3891
- "members":{
3892
- "Name":{"shape":"NameString"}
3893
- }
3894
- },
3895
- "StartTriggerResponse":{
3896
- "type":"structure",
3897
- "members":{
3898
- "Name":{"shape":"NameString"}
3899
- }
3900
- },
3901
- "StopCrawlerRequest":{
3902
- "type":"structure",
3903
- "required":["Name"],
3904
- "members":{
3905
- "Name":{"shape":"NameString"}
3906
- }
3907
- },
3908
- "StopCrawlerResponse":{
3909
- "type":"structure",
3910
- "members":{
3911
- }
3912
- },
3913
- "StopCrawlerScheduleRequest":{
3914
- "type":"structure",
3915
- "required":["CrawlerName"],
3916
- "members":{
3917
- "CrawlerName":{"shape":"NameString"}
3918
- }
3919
- },
3920
- "StopCrawlerScheduleResponse":{
3921
- "type":"structure",
3922
- "members":{
3923
- }
3924
- },
3925
- "StopTriggerRequest":{
3926
- "type":"structure",
3927
- "required":["Name"],
3928
- "members":{
3929
- "Name":{"shape":"NameString"}
3930
- }
3931
- },
3932
- "StopTriggerResponse":{
3933
- "type":"structure",
3934
- "members":{
3935
- "Name":{"shape":"NameString"}
3936
- }
3937
- },
3938
- "StorageDescriptor":{
3939
- "type":"structure",
3940
- "members":{
3941
- "Columns":{"shape":"ColumnList"},
3942
- "Location":{"shape":"LocationString"},
3943
- "InputFormat":{"shape":"FormatString"},
3944
- "OutputFormat":{"shape":"FormatString"},
3945
- "Compressed":{"shape":"Boolean"},
3946
- "NumberOfBuckets":{"shape":"Integer"},
3947
- "SerdeInfo":{"shape":"SerDeInfo"},
3948
- "BucketColumns":{"shape":"NameStringList"},
3949
- "SortColumns":{"shape":"OrderList"},
3950
- "Parameters":{"shape":"ParametersMap"},
3951
- "SkewedInfo":{"shape":"SkewedInfo"},
3952
- "StoredAsSubDirectories":{"shape":"Boolean"}
3953
- }
3954
- },
3955
- "StringList":{
3956
- "type":"list",
3957
- "member":{"shape":"GenericString"}
3958
- },
3959
- "Table":{
3960
- "type":"structure",
3961
- "required":["Name"],
3962
- "members":{
3963
- "Name":{"shape":"NameString"},
3964
- "DatabaseName":{"shape":"NameString"},
3965
- "Description":{"shape":"DescriptionString"},
3966
- "Owner":{"shape":"NameString"},
3967
- "CreateTime":{"shape":"Timestamp"},
3968
- "UpdateTime":{"shape":"Timestamp"},
3969
- "LastAccessTime":{"shape":"Timestamp"},
3970
- "LastAnalyzedTime":{"shape":"Timestamp"},
3971
- "Retention":{"shape":"NonNegativeInteger"},
3972
- "StorageDescriptor":{"shape":"StorageDescriptor"},
3973
- "PartitionKeys":{"shape":"ColumnList"},
3974
- "ViewOriginalText":{"shape":"ViewTextString"},
3975
- "ViewExpandedText":{"shape":"ViewTextString"},
3976
- "TableType":{"shape":"TableTypeString"},
3977
- "Parameters":{"shape":"ParametersMap"},
3978
- "CreatedBy":{"shape":"NameString"}
3979
- }
3980
- },
3981
- "TableError":{
3982
- "type":"structure",
3983
- "members":{
3984
- "TableName":{"shape":"NameString"},
3985
- "ErrorDetail":{"shape":"ErrorDetail"}
3986
- }
3987
- },
3988
- "TableErrors":{
3989
- "type":"list",
3990
- "member":{"shape":"TableError"}
3991
- },
3992
- "TableInput":{
3993
- "type":"structure",
3994
- "required":["Name"],
3995
- "members":{
3996
- "Name":{"shape":"NameString"},
3997
- "Description":{"shape":"DescriptionString"},
3998
- "Owner":{"shape":"NameString"},
3999
- "LastAccessTime":{"shape":"Timestamp"},
4000
- "LastAnalyzedTime":{"shape":"Timestamp"},
4001
- "Retention":{"shape":"NonNegativeInteger"},
4002
- "StorageDescriptor":{"shape":"StorageDescriptor"},
4003
- "PartitionKeys":{"shape":"ColumnList"},
4004
- "ViewOriginalText":{"shape":"ViewTextString"},
4005
- "ViewExpandedText":{"shape":"ViewTextString"},
4006
- "TableType":{"shape":"TableTypeString"},
4007
- "Parameters":{"shape":"ParametersMap"}
4008
- }
4009
- },
4010
- "TableList":{
4011
- "type":"list",
4012
- "member":{"shape":"Table"}
4013
- },
4014
- "TableName":{"type":"string"},
4015
- "TablePrefix":{
4016
- "type":"string",
4017
- "max":128,
4018
- "min":0
4019
- },
4020
- "TableTypeString":{
4021
- "type":"string",
4022
- "max":255
4023
- },
4024
- "TableVersion":{
4025
- "type":"structure",
4026
- "members":{
4027
- "Table":{"shape":"Table"},
4028
- "VersionId":{"shape":"VersionString"}
4029
- }
4030
- },
4031
- "TableVersionError":{
4032
- "type":"structure",
4033
- "members":{
4034
- "TableName":{"shape":"NameString"},
4035
- "VersionId":{"shape":"VersionString"},
4036
- "ErrorDetail":{"shape":"ErrorDetail"}
4037
- }
4038
- },
4039
- "TableVersionErrors":{
4040
- "type":"list",
4041
- "member":{"shape":"TableVersionError"}
4042
- },
4043
- "Timeout":{
4044
- "type":"integer",
4045
- "box":true,
4046
- "min":1
4047
- },
4048
- "Timestamp":{"type":"timestamp"},
4049
- "TimestampValue":{"type":"timestamp"},
4050
- "Token":{"type":"string"},
4051
- "TotalSegmentsInteger":{
4052
- "type":"integer",
4053
- "max":10,
4054
- "min":1
4055
- },
4056
- "Trigger":{
4057
- "type":"structure",
4058
- "members":{
4059
- "Name":{"shape":"NameString"},
4060
- "Id":{"shape":"IdString"},
4061
- "Type":{"shape":"TriggerType"},
4062
- "State":{"shape":"TriggerState"},
4063
- "Description":{"shape":"DescriptionString"},
4064
- "Schedule":{"shape":"GenericString"},
4065
- "Actions":{"shape":"ActionList"},
4066
- "Predicate":{"shape":"Predicate"}
4067
- }
4068
- },
4069
- "TriggerList":{
4070
- "type":"list",
4071
- "member":{"shape":"Trigger"}
4072
- },
4073
- "TriggerState":{
4074
- "type":"string",
4075
- "enum":[
4076
- "CREATING",
4077
- "CREATED",
4078
- "ACTIVATING",
4079
- "ACTIVATED",
4080
- "DEACTIVATING",
4081
- "DEACTIVATED",
4082
- "DELETING",
4083
- "UPDATING"
4084
- ]
4085
- },
4086
- "TriggerType":{
4087
- "type":"string",
4088
- "enum":[
4089
- "SCHEDULED",
4090
- "CONDITIONAL",
4091
- "ON_DEMAND"
4092
- ]
4093
- },
4094
- "TriggerUpdate":{
4095
- "type":"structure",
4096
- "members":{
4097
- "Name":{"shape":"NameString"},
4098
- "Description":{"shape":"DescriptionString"},
4099
- "Schedule":{"shape":"GenericString"},
4100
- "Actions":{"shape":"ActionList"},
4101
- "Predicate":{"shape":"Predicate"}
4102
- }
4103
- },
4104
- "URI":{
4105
- "type":"string",
4106
- "max":1024,
4107
- "min":1,
4108
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
4109
- },
4110
- "UpdateBehavior":{
4111
- "type":"string",
4112
- "enum":[
4113
- "LOG",
4114
- "UPDATE_IN_DATABASE"
4115
- ]
4116
- },
4117
- "UpdateClassifierRequest":{
4118
- "type":"structure",
4119
- "members":{
4120
- "GrokClassifier":{"shape":"UpdateGrokClassifierRequest"},
4121
- "XMLClassifier":{"shape":"UpdateXMLClassifierRequest"},
4122
- "JsonClassifier":{"shape":"UpdateJsonClassifierRequest"}
4123
- }
4124
- },
4125
- "UpdateClassifierResponse":{
4126
- "type":"structure",
4127
- "members":{
4128
- }
4129
- },
4130
- "UpdateConnectionRequest":{
4131
- "type":"structure",
4132
- "required":[
4133
- "Name",
4134
- "ConnectionInput"
4135
- ],
4136
- "members":{
4137
- "CatalogId":{"shape":"CatalogIdString"},
4138
- "Name":{"shape":"NameString"},
4139
- "ConnectionInput":{"shape":"ConnectionInput"}
4140
- }
4141
- },
4142
- "UpdateConnectionResponse":{
4143
- "type":"structure",
4144
- "members":{
4145
- }
4146
- },
4147
- "UpdateCrawlerRequest":{
4148
- "type":"structure",
4149
- "required":["Name"],
4150
- "members":{
4151
- "Name":{"shape":"NameString"},
4152
- "Role":{"shape":"Role"},
4153
- "DatabaseName":{"shape":"DatabaseName"},
4154
- "Description":{"shape":"DescriptionStringRemovable"},
4155
- "Targets":{"shape":"CrawlerTargets"},
4156
- "Schedule":{"shape":"CronExpression"},
4157
- "Classifiers":{"shape":"ClassifierNameList"},
4158
- "TablePrefix":{"shape":"TablePrefix"},
4159
- "SchemaChangePolicy":{"shape":"SchemaChangePolicy"},
4160
- "Configuration":{"shape":"CrawlerConfiguration"},
4161
- "CrawlerSecurityConfiguration":{"shape":"CrawlerSecurityConfiguration"}
4162
- }
4163
- },
4164
- "UpdateCrawlerResponse":{
4165
- "type":"structure",
4166
- "members":{
4167
- }
4168
- },
4169
- "UpdateCrawlerScheduleRequest":{
4170
- "type":"structure",
4171
- "required":["CrawlerName"],
4172
- "members":{
4173
- "CrawlerName":{"shape":"NameString"},
4174
- "Schedule":{"shape":"CronExpression"}
4175
- }
4176
- },
4177
- "UpdateCrawlerScheduleResponse":{
4178
- "type":"structure",
4179
- "members":{
4180
- }
4181
- },
4182
- "UpdateDatabaseRequest":{
4183
- "type":"structure",
4184
- "required":[
4185
- "Name",
4186
- "DatabaseInput"
4187
- ],
4188
- "members":{
4189
- "CatalogId":{"shape":"CatalogIdString"},
4190
- "Name":{"shape":"NameString"},
4191
- "DatabaseInput":{"shape":"DatabaseInput"}
4192
- }
4193
- },
4194
- "UpdateDatabaseResponse":{
4195
- "type":"structure",
4196
- "members":{
4197
- }
4198
- },
4199
- "UpdateDevEndpointRequest":{
4200
- "type":"structure",
4201
- "required":["EndpointName"],
4202
- "members":{
4203
- "EndpointName":{"shape":"GenericString"},
4204
- "PublicKey":{"shape":"GenericString"},
4205
- "AddPublicKeys":{"shape":"PublicKeysList"},
4206
- "DeletePublicKeys":{"shape":"PublicKeysList"},
4207
- "CustomLibraries":{"shape":"DevEndpointCustomLibraries"},
4208
- "UpdateEtlLibraries":{"shape":"BooleanValue"}
4209
- }
4210
- },
4211
- "UpdateDevEndpointResponse":{
4212
- "type":"structure",
4213
- "members":{
4214
- }
4215
- },
4216
- "UpdateGrokClassifierRequest":{
4217
- "type":"structure",
4218
- "required":["Name"],
4219
- "members":{
4220
- "Name":{"shape":"NameString"},
4221
- "Classification":{"shape":"Classification"},
4222
- "GrokPattern":{"shape":"GrokPattern"},
4223
- "CustomPatterns":{"shape":"CustomPatterns"}
4224
- }
4225
- },
4226
- "UpdateJobRequest":{
4227
- "type":"structure",
4228
- "required":[
4229
- "JobName",
4230
- "JobUpdate"
4231
- ],
4232
- "members":{
4233
- "JobName":{"shape":"NameString"},
4234
- "JobUpdate":{"shape":"JobUpdate"}
4235
- }
4236
- },
4237
- "UpdateJobResponse":{
4238
- "type":"structure",
4239
- "members":{
4240
- "JobName":{"shape":"NameString"}
4241
- }
4242
- },
4243
- "UpdateJsonClassifierRequest":{
4244
- "type":"structure",
4245
- "required":["Name"],
4246
- "members":{
4247
- "Name":{"shape":"NameString"},
4248
- "JsonPath":{"shape":"JsonPath"}
4249
- }
4250
- },
4251
- "UpdatePartitionRequest":{
4252
- "type":"structure",
4253
- "required":[
4254
- "DatabaseName",
4255
- "TableName",
4256
- "PartitionValueList",
4257
- "PartitionInput"
4258
- ],
4259
- "members":{
4260
- "CatalogId":{"shape":"CatalogIdString"},
4261
- "DatabaseName":{"shape":"NameString"},
4262
- "TableName":{"shape":"NameString"},
4263
- "PartitionValueList":{"shape":"BoundedPartitionValueList"},
4264
- "PartitionInput":{"shape":"PartitionInput"}
4265
- }
4266
- },
4267
- "UpdatePartitionResponse":{
4268
- "type":"structure",
4269
- "members":{
4270
- }
4271
- },
4272
- "UpdateTableRequest":{
4273
- "type":"structure",
4274
- "required":[
4275
- "DatabaseName",
4276
- "TableInput"
4277
- ],
4278
- "members":{
4279
- "CatalogId":{"shape":"CatalogIdString"},
4280
- "DatabaseName":{"shape":"NameString"},
4281
- "TableInput":{"shape":"TableInput"},
4282
- "SkipArchive":{"shape":"BooleanNullable"}
4283
- }
4284
- },
4285
- "UpdateTableResponse":{
4286
- "type":"structure",
4287
- "members":{
4288
- }
4289
- },
4290
- "UpdateTriggerRequest":{
4291
- "type":"structure",
4292
- "required":[
4293
- "Name",
4294
- "TriggerUpdate"
4295
- ],
4296
- "members":{
4297
- "Name":{"shape":"NameString"},
4298
- "TriggerUpdate":{"shape":"TriggerUpdate"}
4299
- }
4300
- },
4301
- "UpdateTriggerResponse":{
4302
- "type":"structure",
4303
- "members":{
4304
- "Trigger":{"shape":"Trigger"}
4305
- }
4306
- },
4307
- "UpdateUserDefinedFunctionRequest":{
4308
- "type":"structure",
4309
- "required":[
4310
- "DatabaseName",
4311
- "FunctionName",
4312
- "FunctionInput"
4313
- ],
4314
- "members":{
4315
- "CatalogId":{"shape":"CatalogIdString"},
4316
- "DatabaseName":{"shape":"NameString"},
4317
- "FunctionName":{"shape":"NameString"},
4318
- "FunctionInput":{"shape":"UserDefinedFunctionInput"}
4319
- }
4320
- },
4321
- "UpdateUserDefinedFunctionResponse":{
4322
- "type":"structure",
4323
- "members":{
4324
- }
4325
- },
4326
- "UpdateXMLClassifierRequest":{
4327
- "type":"structure",
4328
- "required":["Name"],
4329
- "members":{
4330
- "Name":{"shape":"NameString"},
4331
- "Classification":{"shape":"Classification"},
4332
- "RowTag":{"shape":"RowTag"}
4333
- }
4334
- },
4335
- "UriString":{"type":"string"},
4336
- "UserDefinedFunction":{
4337
- "type":"structure",
4338
- "members":{
4339
- "FunctionName":{"shape":"NameString"},
4340
- "ClassName":{"shape":"NameString"},
4341
- "OwnerName":{"shape":"NameString"},
4342
- "OwnerType":{"shape":"PrincipalType"},
4343
- "CreateTime":{"shape":"Timestamp"},
4344
- "ResourceUris":{"shape":"ResourceUriList"}
4345
- }
4346
- },
4347
- "UserDefinedFunctionInput":{
4348
- "type":"structure",
4349
- "members":{
4350
- "FunctionName":{"shape":"NameString"},
4351
- "ClassName":{"shape":"NameString"},
4352
- "OwnerName":{"shape":"NameString"},
4353
- "OwnerType":{"shape":"PrincipalType"},
4354
- "ResourceUris":{"shape":"ResourceUriList"}
4355
- }
4356
- },
4357
- "UserDefinedFunctionList":{
4358
- "type":"list",
4359
- "member":{"shape":"UserDefinedFunction"}
4360
- },
4361
- "ValidationException":{
4362
- "type":"structure",
4363
- "members":{
4364
- "Message":{"shape":"MessageString"}
4365
- },
4366
- "exception":true
4367
- },
4368
- "ValueString":{
4369
- "type":"string",
4370
- "max":1024
4371
- },
4372
- "ValueStringList":{
4373
- "type":"list",
4374
- "member":{"shape":"ValueString"}
4375
- },
4376
- "VersionId":{"type":"long"},
4377
- "VersionMismatchException":{
4378
- "type":"structure",
4379
- "members":{
4380
- "Message":{"shape":"MessageString"}
4381
- },
4382
- "exception":true
4383
- },
4384
- "VersionString":{
4385
- "type":"string",
4386
- "max":255,
4387
- "min":1,
4388
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
4389
- },
4390
- "ViewTextString":{
4391
- "type":"string",
4392
- "max":409600
4393
- },
4394
- "XMLClassifier":{
4395
- "type":"structure",
4396
- "required":[
4397
- "Name",
4398
- "Classification"
4399
- ],
4400
- "members":{
4401
- "Name":{"shape":"NameString"},
4402
- "Classification":{"shape":"Classification"},
4403
- "CreationTime":{"shape":"Timestamp"},
4404
- "LastUpdated":{"shape":"Timestamp"},
4405
- "Version":{"shape":"VersionId"},
4406
- "RowTag":{"shape":"RowTag"}
4407
- }
4408
- }
4409
- }
4410
- }