aws-sdk-core 2.11.370 → 3.65.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1165) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -552
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +164 -11
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/http/async_response.rb +42 -0
  111. data/lib/seahorse/client/http/response.rb +10 -5
  112. data/lib/seahorse/client/logging/formatter.rb +2 -0
  113. data/lib/seahorse/client/logging/handler.rb +2 -0
  114. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  115. data/lib/seahorse/client/net_http/handler.rb +5 -0
  116. data/lib/seahorse/client/net_http/patches.rb +9 -1
  117. data/lib/seahorse/client/networking_error.rb +28 -0
  118. data/lib/seahorse/client/plugin.rb +66 -6
  119. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  120. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  121. data/lib/seahorse/client/plugins/h2.rb +64 -0
  122. data/lib/seahorse/client/plugins/logging.rb +17 -19
  123. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  124. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  125. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  126. data/lib/seahorse/client/request_context.rb +5 -0
  127. data/lib/seahorse/model/api.rb +33 -0
  128. data/lib/seahorse/model/authorizer.rb +21 -0
  129. data/lib/seahorse/model/operation.rb +11 -0
  130. data/lib/seahorse/model/shapes.rb +44 -2
  131. data/lib/seahorse/util.rb +1 -22
  132. metadata +91 -1042
  133. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  134. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  135. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  136. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  137. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  138. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  139. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  140. data/apis/acm/2015-12-08/api-2.json +0 -843
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/acm/2015-12-08/smoke.json +0 -18
  144. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  145. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  146. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  147. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  148. data/apis/amplify/2017-07-25/api-2.json +0 -2160
  149. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  150. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  151. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  152. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  153. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  154. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  155. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  156. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  157. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  158. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  159. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  160. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  161. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  162. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  163. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  164. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  165. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  166. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  167. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  168. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  169. data/apis/appmesh/2019-01-25/api-2.json +0 -3281
  170. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  171. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  172. data/apis/appstream/2016-12-01/api-2.json +0 -2340
  173. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  174. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  175. data/apis/appstream/2016-12-01/smoke.json +0 -11
  176. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  177. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  178. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  179. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  180. data/apis/athena/2017-05-18/api-2.json +0 -985
  181. data/apis/athena/2017-05-18/examples-1.json +0 -5
  182. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  183. data/apis/athena/2017-05-18/smoke.json +0 -11
  184. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  185. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  186. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  187. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  188. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  189. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  190. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  191. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  192. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  193. data/apis/backup/2018-11-15/api-2.json +0 -2150
  194. data/apis/backup/2018-11-15/examples-1.json +0 -5
  195. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  196. data/apis/batch/2016-08-10/api-2.json +0 -1128
  197. data/apis/batch/2016-08-10/examples-1.json +0 -589
  198. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  199. data/apis/batch/2016-08-10/smoke.json +0 -11
  200. data/apis/budgets/2016-10-20/api-2.json +0 -807
  201. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  202. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  203. data/apis/ce/2017-10-25/api-2.json +0 -1035
  204. data/apis/ce/2017-10-25/examples-1.json +0 -5
  205. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  206. data/apis/chime/2018-05-01/api-2.json +0 -2902
  207. data/apis/chime/2018-05-01/examples-1.json +0 -5
  208. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  209. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  210. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  211. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  212. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  213. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  214. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  215. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  216. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  217. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  218. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  219. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  220. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  221. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  222. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  223. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  224. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  225. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  226. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  227. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  228. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  232. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  233. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  234. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  235. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  239. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  243. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  246. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  247. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  248. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  251. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  252. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  254. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  255. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  256. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  257. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  258. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  259. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  261. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  264. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  265. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  266. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  267. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  268. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  269. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  270. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  271. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  272. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  273. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  274. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  275. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  276. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  277. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  278. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  279. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  280. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  281. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  282. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  283. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  284. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  285. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  286. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  287. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  288. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  289. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  290. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  291. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  292. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  293. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  294. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  295. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  296. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  298. data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
  299. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  300. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  301. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  302. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  303. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  304. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  305. data/apis/codestar/2017-04-19/smoke.json +0 -11
  306. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  307. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  308. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  309. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5371
  310. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  311. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  312. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  313. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  314. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  315. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  316. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  317. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  318. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  319. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  320. data/apis/config/2014-11-12/api-2.json +0 -3496
  321. data/apis/config/2014-11-12/examples-1.json +0 -5
  322. data/apis/config/2014-11-12/paginators-1.json +0 -21
  323. data/apis/config/2014-11-12/smoke.json +0 -19
  324. data/apis/connect/2017-08-08/api-2.json +0 -1379
  325. data/apis/connect/2017-08-08/examples-1.json +0 -5
  326. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  327. data/apis/cur/2017-01-06/api-2.json +0 -277
  328. data/apis/cur/2017-01-06/examples-1.json +0 -102
  329. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  330. data/apis/cur/2017-01-06/smoke.json +0 -11
  331. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  332. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  333. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  334. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  335. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  336. data/apis/dax/2017-04-19/api-2.json +0 -1140
  337. data/apis/dax/2017-04-19/examples-1.json +0 -5
  338. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  339. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  340. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  341. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  342. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  343. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  344. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  345. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  346. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  347. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  348. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  349. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  350. data/apis/discovery/2015-11-01/smoke.json +0 -11
  351. data/apis/dlm/2018-01-12/api-2.json +0 -444
  352. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  353. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  354. data/apis/dms/2016-01-01/api-2.json +0 -2291
  355. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  356. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  357. data/apis/dms/2016-01-01/smoke.json +0 -18
  358. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  359. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  360. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  361. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  362. data/apis/docdb/2014-10-31/smoke.json +0 -18
  363. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  364. data/apis/ds/2015-04-16/api-2.json +0 -2634
  365. data/apis/ds/2015-04-16/examples-1.json +0 -5
  366. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  367. data/apis/ds/2015-04-16/smoke.json +0 -20
  368. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  369. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  370. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  371. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  372. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  373. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  374. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  375. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  376. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  377. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  378. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  379. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  380. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  381. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  382. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  383. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  384. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  385. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  386. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  387. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  388. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  389. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  390. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  391. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  392. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  393. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  394. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  395. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  396. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  397. data/apis/ec2/2016-11-15/api-2.json +0 -25518
  398. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  399. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  400. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  401. data/apis/ec2/2016-11-15/smoke.json +0 -20
  402. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  403. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  404. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  405. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  406. data/apis/ecr/2015-09-21/smoke.json +0 -18
  407. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  408. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  409. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  410. data/apis/ecs/2014-11-13/smoke.json +0 -18
  411. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  412. data/apis/eks/2017-11-01/api-2.json +0 -750
  413. data/apis/eks/2017-11-01/examples-1.json +0 -114
  414. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  415. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  416. data/apis/elasticache/2015-02-02/api-2.json +0 -3152
  417. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  418. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  419. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  420. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  421. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  422. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  423. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  424. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  425. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  426. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  427. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  428. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  429. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  430. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  431. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  432. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  433. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  434. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  435. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  436. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  437. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  438. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  439. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  440. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  441. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  442. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  443. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  444. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  445. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  446. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  447. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  448. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  449. data/apis/email/2010-12-01/api-2.json +0 -3182
  450. data/apis/email/2010-12-01/examples-1.json +0 -1021
  451. data/apis/email/2010-12-01/paginators-1.json +0 -18
  452. data/apis/email/2010-12-01/smoke.json +0 -18
  453. data/apis/email/2010-12-01/waiters-2.json +0 -18
  454. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  455. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  456. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  457. data/apis/es/2015-01-01/api-2.json +0 -1572
  458. data/apis/es/2015-01-01/examples-1.json +0 -5
  459. data/apis/es/2015-01-01/paginators-1.json +0 -29
  460. data/apis/es/2015-01-01/smoke.json +0 -18
  461. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  462. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  463. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  464. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  465. data/apis/events/2015-10-07/api-2.json +0 -1462
  466. data/apis/events/2015-10-07/examples-1.json +0 -5
  467. data/apis/events/2015-10-07/paginators-1.json +0 -4
  468. data/apis/events/2015-10-07/smoke.json +0 -18
  469. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  470. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  471. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  472. data/apis/firehose/2015-08-04/smoke.json +0 -18
  473. data/apis/fms/2018-01-01/api-2.json +0 -692
  474. data/apis/fms/2018-01-01/examples-1.json +0 -5
  475. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  476. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  477. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  478. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  479. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  480. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  481. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  482. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  483. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  484. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  485. data/apis/gamelift/2015-10-01/api-2.json +0 -3470
  486. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  487. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  488. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  489. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  490. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  491. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  492. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  493. data/apis/glacier/2012-06-01/smoke.json +0 -18
  494. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  495. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  496. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  497. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  498. data/apis/glue/2017-03-31/api-2.json +0 -6297
  499. data/apis/glue/2017-03-31/examples-1.json +0 -5
  500. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  501. data/apis/glue/2017-03-31/smoke.json +0 -11
  502. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  503. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  504. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  505. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  506. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  507. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  508. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  509. data/apis/health/2016-08-04/api-2.json +0 -554
  510. data/apis/health/2016-08-04/examples-1.json +0 -5
  511. data/apis/health/2016-08-04/paginators-1.json +0 -31
  512. data/apis/health/2016-08-04/smoke.json +0 -11
  513. data/apis/iam/2010-05-08/api-2.json +0 -5778
  514. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  515. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  516. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  517. data/apis/iam/2010-05-08/smoke.json +0 -18
  518. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  519. data/apis/importexport/2010-06-01/api-2.json +0 -667
  520. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  521. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  522. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  523. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  524. data/apis/inspector/2016-02-16/smoke.json +0 -18
  525. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  526. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  527. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  528. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  529. data/apis/iot/2015-05-28/api-2.json +0 -9676
  530. data/apis/iot/2015-05-28/examples-1.json +0 -5
  531. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  532. data/apis/iot/2015-05-28/smoke.json +0 -18
  533. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  534. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  535. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  536. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  537. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  538. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  539. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  540. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  541. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  542. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  543. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  544. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  545. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  546. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  547. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  548. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  549. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  550. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  551. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  552. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  553. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  554. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  555. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  556. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  557. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  558. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  559. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  560. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  561. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  562. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  563. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  564. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  565. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  566. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  567. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  568. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  569. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  570. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  571. data/apis/kms/2014-11-01/api-2.json +0 -1834
  572. data/apis/kms/2014-11-01/examples-1.json +0 -906
  573. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  574. data/apis/kms/2014-11-01/smoke.json +0 -19
  575. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  576. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  577. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  578. data/apis/lambda/2014-11-11/api-2.json +0 -668
  579. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  580. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  583. data/apis/lambda/2015-03-31/smoke.json +0 -18
  584. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  585. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  586. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  587. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  588. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  589. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  590. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  591. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  592. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  593. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  594. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  595. data/apis/logs/2014-03-28/api-2.json +0 -1701
  596. data/apis/logs/2014-03-28/examples-1.json +0 -5
  597. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  598. data/apis/logs/2014-03-28/smoke.json +0 -19
  599. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  600. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  601. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  602. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  603. data/apis/macie/2017-12-19/api-2.json +0 -365
  604. data/apis/macie/2017-12-19/examples-1.json +0 -5
  605. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  606. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  607. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  608. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  609. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
  610. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  611. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  612. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  613. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  614. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  615. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
  616. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  617. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  618. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  619. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  620. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  621. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  622. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  623. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  624. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  625. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  626. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  627. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  628. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  629. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  630. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  631. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  632. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  633. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  634. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  635. data/apis/mobile/2017-07-01/api-2.json +0 -551
  636. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  637. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  638. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  639. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  640. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  641. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  642. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  643. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  644. data/apis/mq/2017-11-27/api-2.json +0 -2538
  645. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  646. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  647. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  648. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  649. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  650. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  651. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  652. data/apis/neptune/2014-10-31/smoke.json +0 -18
  653. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  654. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  655. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  656. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  657. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  658. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  659. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  660. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  661. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  662. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  663. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  664. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  665. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  666. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  667. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  668. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  669. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  670. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  671. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  672. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  673. data/apis/personalize/2018-05-22/api-2.json +0 -1703
  674. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  675. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  676. data/apis/pi/2018-02-27/api-2.json +0 -253
  677. data/apis/pi/2018-02-27/examples-1.json +0 -5
  678. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  679. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  680. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  681. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  682. data/apis/pinpoint/2016-12-01/api-2.json +0 -9678
  683. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  684. data/apis/polly/2016-06-10/api-2.json +0 -830
  685. data/apis/polly/2016-06-10/examples-1.json +0 -171
  686. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  687. data/apis/polly/2016-06-10/smoke.json +0 -11
  688. data/apis/pricing/2017-10-15/api-2.json +0 -227
  689. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  690. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  691. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  692. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  693. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  694. data/apis/qldb/2019-01-02/api-2.json +0 -776
  695. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  696. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  697. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  698. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  699. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  700. data/apis/ram/2018-01-04/api-2.json +0 -1021
  701. data/apis/ram/2018-01-04/examples-1.json +0 -5
  702. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  703. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  704. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  705. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  706. data/apis/rds/2013-01-10/api-2.json +0 -2903
  707. data/apis/rds/2013-01-10/examples-1.json +0 -5
  708. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  709. data/apis/rds/2013-01-10/smoke.json +0 -18
  710. data/apis/rds/2013-02-12/api-2.json +0 -3059
  711. data/apis/rds/2013-02-12/examples-1.json +0 -5
  712. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  713. data/apis/rds/2013-02-12/smoke.json +0 -18
  714. data/apis/rds/2013-09-09/api-2.json +0 -3160
  715. data/apis/rds/2013-09-09/examples-1.json +0 -5
  716. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  717. data/apis/rds/2013-09-09/smoke.json +0 -18
  718. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  719. data/apis/rds/2014-09-01/api-2.json +0 -3273
  720. data/apis/rds/2014-09-01/examples-1.json +0 -5
  721. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  722. data/apis/rds/2014-09-01/smoke.json +0 -18
  723. data/apis/rds/2014-10-31/api-2.json +0 -6588
  724. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  725. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  726. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  727. data/apis/rds/2014-10-31/smoke.json +0 -18
  728. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  729. data/apis/rds/2015-11-12/api-2.json +0 -5509
  730. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  731. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  732. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  733. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  734. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  735. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  736. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  737. data/apis/redshift/2012-12-01/smoke.json +0 -18
  738. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  739. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  740. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  741. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  742. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  743. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  744. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  745. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  746. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  747. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  748. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  749. data/apis/robomaker/2018-06-29/api-2.json +0 -2138
  750. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  751. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  752. data/apis/route53/2013-04-01/api-2.json +0 -3780
  753. data/apis/route53/2013-04-01/examples-1.json +0 -762
  754. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  755. data/apis/route53/2013-04-01/smoke.json +0 -18
  756. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  757. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  758. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  759. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  760. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  761. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  762. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  763. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  764. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  765. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  766. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  767. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  768. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  769. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  770. data/apis/s3/2006-03-01/api-2.json +0 -6576
  771. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  772. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  773. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  774. data/apis/s3/2006-03-01/smoke.json +0 -11
  775. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  776. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  777. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  778. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  779. data/apis/sagemaker/2017-07-24/api-2.json +0 -5257
  780. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  781. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  782. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  783. data/apis/sdb/2009-04-15/api-2.json +0 -955
  784. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  785. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  786. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  787. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  788. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  789. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  790. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  791. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  792. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  793. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  794. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  795. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  796. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  797. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  798. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  799. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  800. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  801. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  802. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  803. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  804. data/apis/shield/2016-06-02/api-2.json +0 -893
  805. data/apis/shield/2016-06-02/examples-1.json +0 -5
  806. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  807. data/apis/shield/2016-06-02/smoke.json +0 -11
  808. data/apis/signer/2017-08-25/api-2.json +0 -670
  809. data/apis/signer/2017-08-25/examples-1.json +0 -5
  810. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  811. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  812. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  813. data/apis/sms/2016-10-24/api-2.json +0 -1366
  814. data/apis/sms/2016-10-24/examples-1.json +0 -5
  815. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  816. data/apis/sms/2016-10-24/smoke.json +0 -18
  817. data/apis/snowball/2016-06-30/api-2.json +0 -955
  818. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  819. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  820. data/apis/snowball/2016-06-30/smoke.json +0 -11
  821. data/apis/sns/2010-03-31/api-2.json +0 -1468
  822. data/apis/sns/2010-03-31/examples-1.json +0 -5
  823. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  824. data/apis/sns/2010-03-31/resources-1.json +0 -327
  825. data/apis/sns/2010-03-31/smoke.json +0 -19
  826. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  827. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  828. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  829. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  830. data/apis/sqs/2012-11-05/smoke.json +0 -18
  831. data/apis/ssm/2014-11-06/api-2.json +0 -8916
  832. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  833. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  834. data/apis/ssm/2014-11-06/smoke.json +0 -18
  835. data/apis/states/2016-11-23/api-2.json +0 -1409
  836. data/apis/states/2016-11-23/examples-1.json +0 -5
  837. data/apis/states/2016-11-23/paginators-1.json +0 -28
  838. data/apis/states/2016-11-23/smoke.json +0 -11
  839. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  840. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  841. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  842. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  843. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  844. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  845. data/apis/sts/2011-06-15/api-2.json +0 -562
  846. data/apis/sts/2011-06-15/examples-1.json +0 -207
  847. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  848. data/apis/sts/2011-06-15/smoke.json +0 -19
  849. data/apis/support/2013-04-15/api-2.json +0 -772
  850. data/apis/support/2013-04-15/examples-1.json +0 -5
  851. data/apis/support/2013-04-15/paginators-1.json +0 -25
  852. data/apis/swf/2012-01-25/api-2.json +0 -2792
  853. data/apis/swf/2012-01-25/examples-1.json +0 -5
  854. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  855. data/apis/textract/2018-06-27/api-2.json +0 -572
  856. data/apis/textract/2018-06-27/examples-1.json +0 -5
  857. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  858. data/apis/transcribe/2017-10-26/api-2.json +0 -516
  859. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  860. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  861. data/apis/transfer/2018-11-05/api-2.json +0 -857
  862. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  863. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  864. data/apis/translate/2017-07-01/api-2.json +0 -408
  865. data/apis/translate/2017-07-01/examples-1.json +0 -5
  866. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  867. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  868. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  869. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  870. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  871. data/apis/waf/2015-08-24/api-2.json +0 -3857
  872. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  873. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  874. data/apis/waf/2015-08-24/smoke.json +0 -21
  875. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  876. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  877. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  878. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  879. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  880. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  881. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  882. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  883. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  884. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  885. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  886. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  887. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  888. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  889. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  890. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  891. data/apis/xray/2016-04-12/api-2.json +0 -1352
  892. data/apis/xray/2016-04-12/examples-1.json +0 -5
  893. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  894. data/bin/aws.rb +0 -180
  895. data/endpoints.json +0 -5242
  896. data/lib/aws-sdk-core/acm.rb +0 -7
  897. data/lib/aws-sdk-core/acmpca.rb +0 -7
  898. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  899. data/lib/aws-sdk-core/amplify.rb +0 -6
  900. data/lib/aws-sdk-core/api/builder.rb +0 -129
  901. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  902. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  903. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  904. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  905. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  906. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  907. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  908. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  909. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  910. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  911. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  912. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  913. data/lib/aws-sdk-core/apigateway.rb +0 -6
  914. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  915. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  916. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  917. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  918. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  919. data/lib/aws-sdk-core/appmesh.rb +0 -6
  920. data/lib/aws-sdk-core/appstream.rb +0 -7
  921. data/lib/aws-sdk-core/appsync.rb +0 -6
  922. data/lib/aws-sdk-core/athena.rb +0 -6
  923. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  924. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  925. data/lib/aws-sdk-core/backup.rb +0 -6
  926. data/lib/aws-sdk-core/batch.rb +0 -6
  927. data/lib/aws-sdk-core/budgets.rb +0 -6
  928. data/lib/aws-sdk-core/checksums.rb +0 -51
  929. data/lib/aws-sdk-core/chime.rb +0 -6
  930. data/lib/aws-sdk-core/client.rb +0 -62
  931. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  932. data/lib/aws-sdk-core/cloud9.rb +0 -6
  933. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  934. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  935. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  936. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  937. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  938. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  939. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  940. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  941. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  942. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  943. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  944. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  945. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  946. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  947. data/lib/aws-sdk-core/codebuild.rb +0 -6
  948. data/lib/aws-sdk-core/codecommit.rb +0 -6
  949. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  950. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  951. data/lib/aws-sdk-core/codestar.rb +0 -6
  952. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  953. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  954. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  955. data/lib/aws-sdk-core/comprehend.rb +0 -6
  956. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  957. data/lib/aws-sdk-core/configservice.rb +0 -6
  958. data/lib/aws-sdk-core/connect.rb +0 -6
  959. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  960. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  961. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  962. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  963. data/lib/aws-sdk-core/datasync.rb +0 -6
  964. data/lib/aws-sdk-core/dax.rb +0 -6
  965. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  966. data/lib/aws-sdk-core/directconnect.rb +0 -6
  967. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  968. data/lib/aws-sdk-core/dlm.rb +0 -6
  969. data/lib/aws-sdk-core/docdb.rb +0 -7
  970. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  971. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  972. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  973. data/lib/aws-sdk-core/ec2.rb +0 -8
  974. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  975. data/lib/aws-sdk-core/ecr.rb +0 -6
  976. data/lib/aws-sdk-core/ecs.rb +0 -7
  977. data/lib/aws-sdk-core/efs.rb +0 -6
  978. data/lib/aws-sdk-core/eks.rb +0 -7
  979. data/lib/aws-sdk-core/elasticache.rb +0 -7
  980. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  981. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  982. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  983. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  984. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  985. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  986. data/lib/aws-sdk-core/emr.rb +0 -7
  987. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  988. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  989. data/lib/aws-sdk-core/firehose.rb +0 -6
  990. data/lib/aws-sdk-core/fms.rb +0 -6
  991. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  992. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  993. data/lib/aws-sdk-core/fsx.rb +0 -6
  994. data/lib/aws-sdk-core/gamelift.rb +0 -6
  995. data/lib/aws-sdk-core/glacier.rb +0 -8
  996. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  997. data/lib/aws-sdk-core/glue.rb +0 -6
  998. data/lib/aws-sdk-core/greengrass.rb +0 -4
  999. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1000. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1001. data/lib/aws-sdk-core/health.rb +0 -6
  1002. data/lib/aws-sdk-core/iam.rb +0 -8
  1003. data/lib/aws-sdk-core/importexport.rb +0 -5
  1004. data/lib/aws-sdk-core/inspector.rb +0 -6
  1005. data/lib/aws-sdk-core/iot.rb +0 -6
  1006. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1007. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1008. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1009. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1010. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1011. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1012. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1013. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1014. data/lib/aws-sdk-core/kafka.rb +0 -5
  1015. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1016. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1017. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1018. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1019. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1020. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1021. data/lib/aws-sdk-core/kms.rb +0 -6
  1022. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1023. data/lib/aws-sdk-core/lambda.rb +0 -7
  1024. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1025. data/lib/aws-sdk-core/lex.rb +0 -6
  1026. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1027. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1028. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1029. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1030. data/lib/aws-sdk-core/macie.rb +0 -6
  1031. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1032. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1033. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1034. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1035. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1036. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1037. data/lib/aws-sdk-core/medialive.rb +0 -6
  1038. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1039. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1040. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1041. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1042. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1043. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1044. data/lib/aws-sdk-core/mobile.rb +0 -6
  1045. data/lib/aws-sdk-core/mq.rb +0 -5
  1046. data/lib/aws-sdk-core/mturk.rb +0 -6
  1047. data/lib/aws-sdk-core/neptune.rb +0 -7
  1048. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1049. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1050. data/lib/aws-sdk-core/organizations.rb +0 -6
  1051. data/lib/aws-sdk-core/partitions.rb +0 -174
  1052. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1053. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1054. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1055. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1056. data/lib/aws-sdk-core/personalize.rb +0 -6
  1057. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1058. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1059. data/lib/aws-sdk-core/pi.rb +0 -6
  1060. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1061. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1062. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1063. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1064. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1065. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1066. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1067. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1068. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1069. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1070. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1071. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1072. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1073. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1074. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1075. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1076. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1077. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1078. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1079. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1080. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1081. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1082. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1083. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1084. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1085. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1086. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1087. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1088. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1089. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1090. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1091. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1092. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1093. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1094. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1095. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1096. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1097. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1098. data/lib/aws-sdk-core/polly.rb +0 -14
  1099. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1100. data/lib/aws-sdk-core/pricing.rb +0 -6
  1101. data/lib/aws-sdk-core/qldb.rb +0 -6
  1102. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1103. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1104. data/lib/aws-sdk-core/ram.rb +0 -6
  1105. data/lib/aws-sdk-core/rds.rb +0 -16
  1106. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1107. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1108. data/lib/aws-sdk-core/redshift.rb +0 -7
  1109. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1110. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1111. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1112. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1113. data/lib/aws-sdk-core/route53.rb +0 -7
  1114. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1115. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1116. data/lib/aws-sdk-core/s3.rb +0 -26
  1117. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1118. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1119. data/lib/aws-sdk-core/s3control.rb +0 -6
  1120. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1121. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1122. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1123. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1124. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1125. data/lib/aws-sdk-core/service.rb +0 -4
  1126. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1127. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1128. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1129. data/lib/aws-sdk-core/ses.rb +0 -7
  1130. data/lib/aws-sdk-core/shield.rb +0 -6
  1131. data/lib/aws-sdk-core/signer.rb +0 -7
  1132. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1133. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1134. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1135. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1136. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1137. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1138. data/lib/aws-sdk-core/sms.rb +0 -6
  1139. data/lib/aws-sdk-core/snowball.rb +0 -6
  1140. data/lib/aws-sdk-core/sns.rb +0 -7
  1141. data/lib/aws-sdk-core/sqs.rb +0 -7
  1142. data/lib/aws-sdk-core/ssm.rb +0 -6
  1143. data/lib/aws-sdk-core/states.rb +0 -6
  1144. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1145. data/lib/aws-sdk-core/sts.rb +0 -6
  1146. data/lib/aws-sdk-core/support.rb +0 -6
  1147. data/lib/aws-sdk-core/swf.rb +0 -6
  1148. data/lib/aws-sdk-core/textract.rb +0 -6
  1149. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1150. data/lib/aws-sdk-core/transfer.rb +0 -6
  1151. data/lib/aws-sdk-core/translate.rb +0 -6
  1152. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1153. data/lib/aws-sdk-core/version.rb +0 -3
  1154. data/lib/aws-sdk-core/waf.rb +0 -6
  1155. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1156. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1157. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1158. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1159. data/lib/aws-sdk-core/worklink.rb +0 -6
  1160. data/lib/aws-sdk-core/workmail.rb +0 -6
  1161. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1162. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1163. data/lib/aws-sdk-core/xray.rb +0 -6
  1164. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1165. data/service-models.json +0 -769
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,32 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListCloudFrontOriginAccessIdentities": {
4
- "input_token": "Marker",
5
- "limit_key": "MaxItems",
6
- "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
7
- "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
8
- "result_key": "CloudFrontOriginAccessIdentityList.Items"
9
- },
10
- "ListDistributions": {
11
- "input_token": "Marker",
12
- "limit_key": "MaxItems",
13
- "more_results": "DistributionList.IsTruncated",
14
- "output_token": "DistributionList.NextMarker",
15
- "result_key": "DistributionList.Items"
16
- },
17
- "ListInvalidations": {
18
- "input_token": "Marker",
19
- "limit_key": "MaxItems",
20
- "more_results": "InvalidationList.IsTruncated",
21
- "output_token": "InvalidationList.NextMarker",
22
- "result_key": "InvalidationList.Items"
23
- },
24
- "ListStreamingDistributions": {
25
- "input_token": "Marker",
26
- "limit_key": "MaxItems",
27
- "more_results": "StreamingDistributionList.IsTruncated",
28
- "output_token": "StreamingDistributionList.NextMarker",
29
- "result_key": "StreamingDistributionList.Items"
30
- }
31
- }
32
- }
@@ -1,20 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-east-1",
4
- "testCases": [
5
- {
6
- "operationName": "ListCloudFrontOriginAccessIdentities",
7
- "input": {
8
- "MaxItems": "1"
9
- },
10
- "errorExpectedFromService": false
11
- },
12
- {
13
- "operationName": "GetDistribution",
14
- "input": {
15
- "Id": "fake-id"
16
- },
17
- "errorExpectedFromService": true
18
- }
19
- ]
20
- }
@@ -1,47 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "DistributionDeployed": {
5
- "delay": 60,
6
- "operation": "GetDistribution",
7
- "maxAttempts": 25,
8
- "description": "Wait until a distribution is deployed.",
9
- "acceptors": [
10
- {
11
- "expected": "Deployed",
12
- "matcher": "path",
13
- "state": "success",
14
- "argument": "Distribution.Status"
15
- }
16
- ]
17
- },
18
- "InvalidationCompleted": {
19
- "delay": 20,
20
- "operation": "GetInvalidation",
21
- "maxAttempts": 30,
22
- "description": "Wait until an invalidation has completed.",
23
- "acceptors": [
24
- {
25
- "expected": "Completed",
26
- "matcher": "path",
27
- "state": "success",
28
- "argument": "Invalidation.Status"
29
- }
30
- ]
31
- },
32
- "StreamingDistributionDeployed": {
33
- "delay": 60,
34
- "operation": "GetStreamingDistribution",
35
- "maxAttempts": 25,
36
- "description": "Wait until a streaming distribution is deployed.",
37
- "acceptors": [
38
- {
39
- "expected": "Deployed",
40
- "matcher": "path",
41
- "state": "success",
42
- "argument": "StreamingDistribution.Status"
43
- }
44
- ]
45
- }
46
- }
47
- }
@@ -1,4032 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-03-26",
5
- "endpointPrefix":"cloudfront",
6
- "globalEndpoint":"cloudfront.amazonaws.com",
7
- "protocol":"rest-xml",
8
- "serviceAbbreviation":"CloudFront",
9
- "serviceFullName":"Amazon CloudFront",
10
- "serviceId":"CloudFront",
11
- "signatureVersion":"v4",
12
- "uid":"cloudfront-2019-03-26"
13
- },
14
- "operations":{
15
- "CreateCloudFrontOriginAccessIdentity":{
16
- "name":"CreateCloudFrontOriginAccessIdentity2019_03_26",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront",
20
- "responseCode":201
21
- },
22
- "input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
23
- "output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
24
- "errors":[
25
- {"shape":"CloudFrontOriginAccessIdentityAlreadyExists"},
26
- {"shape":"MissingBody"},
27
- {"shape":"TooManyCloudFrontOriginAccessIdentities"},
28
- {"shape":"InvalidArgument"},
29
- {"shape":"InconsistentQuantities"}
30
- ]
31
- },
32
- "CreateDistribution":{
33
- "name":"CreateDistribution2019_03_26",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/2019-03-26/distribution",
37
- "responseCode":201
38
- },
39
- "input":{"shape":"CreateDistributionRequest"},
40
- "output":{"shape":"CreateDistributionResult"},
41
- "errors":[
42
- {"shape":"CNAMEAlreadyExists"},
43
- {"shape":"DistributionAlreadyExists"},
44
- {"shape":"InvalidOrigin"},
45
- {"shape":"InvalidOriginAccessIdentity"},
46
- {"shape":"AccessDenied"},
47
- {"shape":"TooManyTrustedSigners"},
48
- {"shape":"TrustedSignerDoesNotExist"},
49
- {"shape":"InvalidViewerCertificate"},
50
- {"shape":"InvalidMinimumProtocolVersion"},
51
- {"shape":"MissingBody"},
52
- {"shape":"TooManyDistributionCNAMEs"},
53
- {"shape":"TooManyDistributions"},
54
- {"shape":"InvalidDefaultRootObject"},
55
- {"shape":"InvalidRelativePath"},
56
- {"shape":"InvalidErrorCode"},
57
- {"shape":"InvalidResponseCode"},
58
- {"shape":"InvalidArgument"},
59
- {"shape":"InvalidRequiredProtocol"},
60
- {"shape":"NoSuchOrigin"},
61
- {"shape":"TooManyOrigins"},
62
- {"shape":"TooManyOriginGroupsPerDistribution"},
63
- {"shape":"TooManyCacheBehaviors"},
64
- {"shape":"TooManyCookieNamesInWhiteList"},
65
- {"shape":"InvalidForwardCookies"},
66
- {"shape":"TooManyHeadersInForwardedValues"},
67
- {"shape":"InvalidHeadersForS3Origin"},
68
- {"shape":"InconsistentQuantities"},
69
- {"shape":"TooManyCertificates"},
70
- {"shape":"InvalidLocationCode"},
71
- {"shape":"InvalidGeoRestrictionParameter"},
72
- {"shape":"InvalidProtocolSettings"},
73
- {"shape":"InvalidTTLOrder"},
74
- {"shape":"InvalidWebACLId"},
75
- {"shape":"TooManyOriginCustomHeaders"},
76
- {"shape":"TooManyQueryStringParameters"},
77
- {"shape":"InvalidQueryStringParameters"},
78
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
79
- {"shape":"TooManyLambdaFunctionAssociations"},
80
- {"shape":"InvalidLambdaFunctionAssociation"},
81
- {"shape":"InvalidOriginReadTimeout"},
82
- {"shape":"InvalidOriginKeepaliveTimeout"},
83
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
84
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
85
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
86
- ]
87
- },
88
- "CreateDistributionWithTags":{
89
- "name":"CreateDistributionWithTags2019_03_26",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/2019-03-26/distribution?WithTags",
93
- "responseCode":201
94
- },
95
- "input":{"shape":"CreateDistributionWithTagsRequest"},
96
- "output":{"shape":"CreateDistributionWithTagsResult"},
97
- "errors":[
98
- {"shape":"CNAMEAlreadyExists"},
99
- {"shape":"DistributionAlreadyExists"},
100
- {"shape":"InvalidOrigin"},
101
- {"shape":"InvalidOriginAccessIdentity"},
102
- {"shape":"AccessDenied"},
103
- {"shape":"TooManyTrustedSigners"},
104
- {"shape":"TrustedSignerDoesNotExist"},
105
- {"shape":"InvalidViewerCertificate"},
106
- {"shape":"InvalidMinimumProtocolVersion"},
107
- {"shape":"MissingBody"},
108
- {"shape":"TooManyDistributionCNAMEs"},
109
- {"shape":"TooManyDistributions"},
110
- {"shape":"InvalidDefaultRootObject"},
111
- {"shape":"InvalidRelativePath"},
112
- {"shape":"InvalidErrorCode"},
113
- {"shape":"InvalidResponseCode"},
114
- {"shape":"InvalidArgument"},
115
- {"shape":"InvalidRequiredProtocol"},
116
- {"shape":"NoSuchOrigin"},
117
- {"shape":"TooManyOrigins"},
118
- {"shape":"TooManyOriginGroupsPerDistribution"},
119
- {"shape":"TooManyCacheBehaviors"},
120
- {"shape":"TooManyCookieNamesInWhiteList"},
121
- {"shape":"InvalidForwardCookies"},
122
- {"shape":"TooManyHeadersInForwardedValues"},
123
- {"shape":"InvalidHeadersForS3Origin"},
124
- {"shape":"InconsistentQuantities"},
125
- {"shape":"TooManyCertificates"},
126
- {"shape":"InvalidLocationCode"},
127
- {"shape":"InvalidGeoRestrictionParameter"},
128
- {"shape":"InvalidProtocolSettings"},
129
- {"shape":"InvalidTTLOrder"},
130
- {"shape":"InvalidWebACLId"},
131
- {"shape":"TooManyOriginCustomHeaders"},
132
- {"shape":"InvalidTagging"},
133
- {"shape":"TooManyQueryStringParameters"},
134
- {"shape":"InvalidQueryStringParameters"},
135
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
136
- {"shape":"TooManyLambdaFunctionAssociations"},
137
- {"shape":"InvalidLambdaFunctionAssociation"},
138
- {"shape":"InvalidOriginReadTimeout"},
139
- {"shape":"InvalidOriginKeepaliveTimeout"},
140
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
141
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
142
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
143
- ]
144
- },
145
- "CreateFieldLevelEncryptionConfig":{
146
- "name":"CreateFieldLevelEncryptionConfig2019_03_26",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/2019-03-26/field-level-encryption",
150
- "responseCode":201
151
- },
152
- "input":{"shape":"CreateFieldLevelEncryptionConfigRequest"},
153
- "output":{"shape":"CreateFieldLevelEncryptionConfigResult"},
154
- "errors":[
155
- {"shape":"InconsistentQuantities"},
156
- {"shape":"InvalidArgument"},
157
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
158
- {"shape":"FieldLevelEncryptionConfigAlreadyExists"},
159
- {"shape":"TooManyFieldLevelEncryptionConfigs"},
160
- {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
161
- {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
162
- {"shape":"QueryArgProfileEmpty"}
163
- ]
164
- },
165
- "CreateFieldLevelEncryptionProfile":{
166
- "name":"CreateFieldLevelEncryptionProfile2019_03_26",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/2019-03-26/field-level-encryption-profile",
170
- "responseCode":201
171
- },
172
- "input":{"shape":"CreateFieldLevelEncryptionProfileRequest"},
173
- "output":{"shape":"CreateFieldLevelEncryptionProfileResult"},
174
- "errors":[
175
- {"shape":"InconsistentQuantities"},
176
- {"shape":"InvalidArgument"},
177
- {"shape":"NoSuchPublicKey"},
178
- {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
179
- {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
180
- {"shape":"TooManyFieldLevelEncryptionProfiles"},
181
- {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
182
- {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
183
- ]
184
- },
185
- "CreateInvalidation":{
186
- "name":"CreateInvalidation2019_03_26",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/2019-03-26/distribution/{DistributionId}/invalidation",
190
- "responseCode":201
191
- },
192
- "input":{"shape":"CreateInvalidationRequest"},
193
- "output":{"shape":"CreateInvalidationResult"},
194
- "errors":[
195
- {"shape":"AccessDenied"},
196
- {"shape":"MissingBody"},
197
- {"shape":"InvalidArgument"},
198
- {"shape":"NoSuchDistribution"},
199
- {"shape":"BatchTooLarge"},
200
- {"shape":"TooManyInvalidationsInProgress"},
201
- {"shape":"InconsistentQuantities"}
202
- ]
203
- },
204
- "CreatePublicKey":{
205
- "name":"CreatePublicKey2019_03_26",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/2019-03-26/public-key",
209
- "responseCode":201
210
- },
211
- "input":{"shape":"CreatePublicKeyRequest"},
212
- "output":{"shape":"CreatePublicKeyResult"},
213
- "errors":[
214
- {"shape":"PublicKeyAlreadyExists"},
215
- {"shape":"InvalidArgument"},
216
- {"shape":"TooManyPublicKeys"}
217
- ]
218
- },
219
- "CreateStreamingDistribution":{
220
- "name":"CreateStreamingDistribution2019_03_26",
221
- "http":{
222
- "method":"POST",
223
- "requestUri":"/2019-03-26/streaming-distribution",
224
- "responseCode":201
225
- },
226
- "input":{"shape":"CreateStreamingDistributionRequest"},
227
- "output":{"shape":"CreateStreamingDistributionResult"},
228
- "errors":[
229
- {"shape":"CNAMEAlreadyExists"},
230
- {"shape":"StreamingDistributionAlreadyExists"},
231
- {"shape":"InvalidOrigin"},
232
- {"shape":"InvalidOriginAccessIdentity"},
233
- {"shape":"AccessDenied"},
234
- {"shape":"TooManyTrustedSigners"},
235
- {"shape":"TrustedSignerDoesNotExist"},
236
- {"shape":"MissingBody"},
237
- {"shape":"TooManyStreamingDistributionCNAMEs"},
238
- {"shape":"TooManyStreamingDistributions"},
239
- {"shape":"InvalidArgument"},
240
- {"shape":"InconsistentQuantities"}
241
- ]
242
- },
243
- "CreateStreamingDistributionWithTags":{
244
- "name":"CreateStreamingDistributionWithTags2019_03_26",
245
- "http":{
246
- "method":"POST",
247
- "requestUri":"/2019-03-26/streaming-distribution?WithTags",
248
- "responseCode":201
249
- },
250
- "input":{"shape":"CreateStreamingDistributionWithTagsRequest"},
251
- "output":{"shape":"CreateStreamingDistributionWithTagsResult"},
252
- "errors":[
253
- {"shape":"CNAMEAlreadyExists"},
254
- {"shape":"StreamingDistributionAlreadyExists"},
255
- {"shape":"InvalidOrigin"},
256
- {"shape":"InvalidOriginAccessIdentity"},
257
- {"shape":"AccessDenied"},
258
- {"shape":"TooManyTrustedSigners"},
259
- {"shape":"TrustedSignerDoesNotExist"},
260
- {"shape":"MissingBody"},
261
- {"shape":"TooManyStreamingDistributionCNAMEs"},
262
- {"shape":"TooManyStreamingDistributions"},
263
- {"shape":"InvalidArgument"},
264
- {"shape":"InconsistentQuantities"},
265
- {"shape":"InvalidTagging"}
266
- ]
267
- },
268
- "DeleteCloudFrontOriginAccessIdentity":{
269
- "name":"DeleteCloudFrontOriginAccessIdentity2019_03_26",
270
- "http":{
271
- "method":"DELETE",
272
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront/{Id}",
273
- "responseCode":204
274
- },
275
- "input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
276
- "errors":[
277
- {"shape":"AccessDenied"},
278
- {"shape":"InvalidIfMatchVersion"},
279
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
280
- {"shape":"PreconditionFailed"},
281
- {"shape":"CloudFrontOriginAccessIdentityInUse"}
282
- ]
283
- },
284
- "DeleteDistribution":{
285
- "name":"DeleteDistribution2019_03_26",
286
- "http":{
287
- "method":"DELETE",
288
- "requestUri":"/2019-03-26/distribution/{Id}",
289
- "responseCode":204
290
- },
291
- "input":{"shape":"DeleteDistributionRequest"},
292
- "errors":[
293
- {"shape":"AccessDenied"},
294
- {"shape":"DistributionNotDisabled"},
295
- {"shape":"InvalidIfMatchVersion"},
296
- {"shape":"NoSuchDistribution"},
297
- {"shape":"PreconditionFailed"}
298
- ]
299
- },
300
- "DeleteFieldLevelEncryptionConfig":{
301
- "name":"DeleteFieldLevelEncryptionConfig2019_03_26",
302
- "http":{
303
- "method":"DELETE",
304
- "requestUri":"/2019-03-26/field-level-encryption/{Id}",
305
- "responseCode":204
306
- },
307
- "input":{"shape":"DeleteFieldLevelEncryptionConfigRequest"},
308
- "errors":[
309
- {"shape":"AccessDenied"},
310
- {"shape":"InvalidIfMatchVersion"},
311
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
312
- {"shape":"PreconditionFailed"},
313
- {"shape":"FieldLevelEncryptionConfigInUse"}
314
- ]
315
- },
316
- "DeleteFieldLevelEncryptionProfile":{
317
- "name":"DeleteFieldLevelEncryptionProfile2019_03_26",
318
- "http":{
319
- "method":"DELETE",
320
- "requestUri":"/2019-03-26/field-level-encryption-profile/{Id}",
321
- "responseCode":204
322
- },
323
- "input":{"shape":"DeleteFieldLevelEncryptionProfileRequest"},
324
- "errors":[
325
- {"shape":"AccessDenied"},
326
- {"shape":"InvalidIfMatchVersion"},
327
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
328
- {"shape":"PreconditionFailed"},
329
- {"shape":"FieldLevelEncryptionProfileInUse"}
330
- ]
331
- },
332
- "DeletePublicKey":{
333
- "name":"DeletePublicKey2019_03_26",
334
- "http":{
335
- "method":"DELETE",
336
- "requestUri":"/2019-03-26/public-key/{Id}",
337
- "responseCode":204
338
- },
339
- "input":{"shape":"DeletePublicKeyRequest"},
340
- "errors":[
341
- {"shape":"AccessDenied"},
342
- {"shape":"PublicKeyInUse"},
343
- {"shape":"InvalidIfMatchVersion"},
344
- {"shape":"NoSuchPublicKey"},
345
- {"shape":"PreconditionFailed"}
346
- ]
347
- },
348
- "DeleteStreamingDistribution":{
349
- "name":"DeleteStreamingDistribution2019_03_26",
350
- "http":{
351
- "method":"DELETE",
352
- "requestUri":"/2019-03-26/streaming-distribution/{Id}",
353
- "responseCode":204
354
- },
355
- "input":{"shape":"DeleteStreamingDistributionRequest"},
356
- "errors":[
357
- {"shape":"AccessDenied"},
358
- {"shape":"StreamingDistributionNotDisabled"},
359
- {"shape":"InvalidIfMatchVersion"},
360
- {"shape":"NoSuchStreamingDistribution"},
361
- {"shape":"PreconditionFailed"}
362
- ]
363
- },
364
- "GetCloudFrontOriginAccessIdentity":{
365
- "name":"GetCloudFrontOriginAccessIdentity2019_03_26",
366
- "http":{
367
- "method":"GET",
368
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront/{Id}"
369
- },
370
- "input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
371
- "output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
372
- "errors":[
373
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
374
- {"shape":"AccessDenied"}
375
- ]
376
- },
377
- "GetCloudFrontOriginAccessIdentityConfig":{
378
- "name":"GetCloudFrontOriginAccessIdentityConfig2019_03_26",
379
- "http":{
380
- "method":"GET",
381
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront/{Id}/config"
382
- },
383
- "input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
384
- "output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
385
- "errors":[
386
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
387
- {"shape":"AccessDenied"}
388
- ]
389
- },
390
- "GetDistribution":{
391
- "name":"GetDistribution2019_03_26",
392
- "http":{
393
- "method":"GET",
394
- "requestUri":"/2019-03-26/distribution/{Id}"
395
- },
396
- "input":{"shape":"GetDistributionRequest"},
397
- "output":{"shape":"GetDistributionResult"},
398
- "errors":[
399
- {"shape":"NoSuchDistribution"},
400
- {"shape":"AccessDenied"}
401
- ]
402
- },
403
- "GetDistributionConfig":{
404
- "name":"GetDistributionConfig2019_03_26",
405
- "http":{
406
- "method":"GET",
407
- "requestUri":"/2019-03-26/distribution/{Id}/config"
408
- },
409
- "input":{"shape":"GetDistributionConfigRequest"},
410
- "output":{"shape":"GetDistributionConfigResult"},
411
- "errors":[
412
- {"shape":"NoSuchDistribution"},
413
- {"shape":"AccessDenied"}
414
- ]
415
- },
416
- "GetFieldLevelEncryption":{
417
- "name":"GetFieldLevelEncryption2019_03_26",
418
- "http":{
419
- "method":"GET",
420
- "requestUri":"/2019-03-26/field-level-encryption/{Id}"
421
- },
422
- "input":{"shape":"GetFieldLevelEncryptionRequest"},
423
- "output":{"shape":"GetFieldLevelEncryptionResult"},
424
- "errors":[
425
- {"shape":"AccessDenied"},
426
- {"shape":"NoSuchFieldLevelEncryptionConfig"}
427
- ]
428
- },
429
- "GetFieldLevelEncryptionConfig":{
430
- "name":"GetFieldLevelEncryptionConfig2019_03_26",
431
- "http":{
432
- "method":"GET",
433
- "requestUri":"/2019-03-26/field-level-encryption/{Id}/config"
434
- },
435
- "input":{"shape":"GetFieldLevelEncryptionConfigRequest"},
436
- "output":{"shape":"GetFieldLevelEncryptionConfigResult"},
437
- "errors":[
438
- {"shape":"AccessDenied"},
439
- {"shape":"NoSuchFieldLevelEncryptionConfig"}
440
- ]
441
- },
442
- "GetFieldLevelEncryptionProfile":{
443
- "name":"GetFieldLevelEncryptionProfile2019_03_26",
444
- "http":{
445
- "method":"GET",
446
- "requestUri":"/2019-03-26/field-level-encryption-profile/{Id}"
447
- },
448
- "input":{"shape":"GetFieldLevelEncryptionProfileRequest"},
449
- "output":{"shape":"GetFieldLevelEncryptionProfileResult"},
450
- "errors":[
451
- {"shape":"AccessDenied"},
452
- {"shape":"NoSuchFieldLevelEncryptionProfile"}
453
- ]
454
- },
455
- "GetFieldLevelEncryptionProfileConfig":{
456
- "name":"GetFieldLevelEncryptionProfileConfig2019_03_26",
457
- "http":{
458
- "method":"GET",
459
- "requestUri":"/2019-03-26/field-level-encryption-profile/{Id}/config"
460
- },
461
- "input":{"shape":"GetFieldLevelEncryptionProfileConfigRequest"},
462
- "output":{"shape":"GetFieldLevelEncryptionProfileConfigResult"},
463
- "errors":[
464
- {"shape":"AccessDenied"},
465
- {"shape":"NoSuchFieldLevelEncryptionProfile"}
466
- ]
467
- },
468
- "GetInvalidation":{
469
- "name":"GetInvalidation2019_03_26",
470
- "http":{
471
- "method":"GET",
472
- "requestUri":"/2019-03-26/distribution/{DistributionId}/invalidation/{Id}"
473
- },
474
- "input":{"shape":"GetInvalidationRequest"},
475
- "output":{"shape":"GetInvalidationResult"},
476
- "errors":[
477
- {"shape":"NoSuchInvalidation"},
478
- {"shape":"NoSuchDistribution"},
479
- {"shape":"AccessDenied"}
480
- ]
481
- },
482
- "GetPublicKey":{
483
- "name":"GetPublicKey2019_03_26",
484
- "http":{
485
- "method":"GET",
486
- "requestUri":"/2019-03-26/public-key/{Id}"
487
- },
488
- "input":{"shape":"GetPublicKeyRequest"},
489
- "output":{"shape":"GetPublicKeyResult"},
490
- "errors":[
491
- {"shape":"AccessDenied"},
492
- {"shape":"NoSuchPublicKey"}
493
- ]
494
- },
495
- "GetPublicKeyConfig":{
496
- "name":"GetPublicKeyConfig2019_03_26",
497
- "http":{
498
- "method":"GET",
499
- "requestUri":"/2019-03-26/public-key/{Id}/config"
500
- },
501
- "input":{"shape":"GetPublicKeyConfigRequest"},
502
- "output":{"shape":"GetPublicKeyConfigResult"},
503
- "errors":[
504
- {"shape":"AccessDenied"},
505
- {"shape":"NoSuchPublicKey"}
506
- ]
507
- },
508
- "GetStreamingDistribution":{
509
- "name":"GetStreamingDistribution2019_03_26",
510
- "http":{
511
- "method":"GET",
512
- "requestUri":"/2019-03-26/streaming-distribution/{Id}"
513
- },
514
- "input":{"shape":"GetStreamingDistributionRequest"},
515
- "output":{"shape":"GetStreamingDistributionResult"},
516
- "errors":[
517
- {"shape":"NoSuchStreamingDistribution"},
518
- {"shape":"AccessDenied"}
519
- ]
520
- },
521
- "GetStreamingDistributionConfig":{
522
- "name":"GetStreamingDistributionConfig2019_03_26",
523
- "http":{
524
- "method":"GET",
525
- "requestUri":"/2019-03-26/streaming-distribution/{Id}/config"
526
- },
527
- "input":{"shape":"GetStreamingDistributionConfigRequest"},
528
- "output":{"shape":"GetStreamingDistributionConfigResult"},
529
- "errors":[
530
- {"shape":"NoSuchStreamingDistribution"},
531
- {"shape":"AccessDenied"}
532
- ]
533
- },
534
- "ListCloudFrontOriginAccessIdentities":{
535
- "name":"ListCloudFrontOriginAccessIdentities2019_03_26",
536
- "http":{
537
- "method":"GET",
538
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront"
539
- },
540
- "input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
541
- "output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
542
- "errors":[
543
- {"shape":"InvalidArgument"}
544
- ]
545
- },
546
- "ListDistributions":{
547
- "name":"ListDistributions2019_03_26",
548
- "http":{
549
- "method":"GET",
550
- "requestUri":"/2019-03-26/distribution"
551
- },
552
- "input":{"shape":"ListDistributionsRequest"},
553
- "output":{"shape":"ListDistributionsResult"},
554
- "errors":[
555
- {"shape":"InvalidArgument"}
556
- ]
557
- },
558
- "ListDistributionsByWebACLId":{
559
- "name":"ListDistributionsByWebACLId2019_03_26",
560
- "http":{
561
- "method":"GET",
562
- "requestUri":"/2019-03-26/distributionsByWebACLId/{WebACLId}"
563
- },
564
- "input":{"shape":"ListDistributionsByWebACLIdRequest"},
565
- "output":{"shape":"ListDistributionsByWebACLIdResult"},
566
- "errors":[
567
- {"shape":"InvalidArgument"},
568
- {"shape":"InvalidWebACLId"}
569
- ]
570
- },
571
- "ListFieldLevelEncryptionConfigs":{
572
- "name":"ListFieldLevelEncryptionConfigs2019_03_26",
573
- "http":{
574
- "method":"GET",
575
- "requestUri":"/2019-03-26/field-level-encryption"
576
- },
577
- "input":{"shape":"ListFieldLevelEncryptionConfigsRequest"},
578
- "output":{"shape":"ListFieldLevelEncryptionConfigsResult"},
579
- "errors":[
580
- {"shape":"InvalidArgument"}
581
- ]
582
- },
583
- "ListFieldLevelEncryptionProfiles":{
584
- "name":"ListFieldLevelEncryptionProfiles2019_03_26",
585
- "http":{
586
- "method":"GET",
587
- "requestUri":"/2019-03-26/field-level-encryption-profile"
588
- },
589
- "input":{"shape":"ListFieldLevelEncryptionProfilesRequest"},
590
- "output":{"shape":"ListFieldLevelEncryptionProfilesResult"},
591
- "errors":[
592
- {"shape":"InvalidArgument"}
593
- ]
594
- },
595
- "ListInvalidations":{
596
- "name":"ListInvalidations2019_03_26",
597
- "http":{
598
- "method":"GET",
599
- "requestUri":"/2019-03-26/distribution/{DistributionId}/invalidation"
600
- },
601
- "input":{"shape":"ListInvalidationsRequest"},
602
- "output":{"shape":"ListInvalidationsResult"},
603
- "errors":[
604
- {"shape":"InvalidArgument"},
605
- {"shape":"NoSuchDistribution"},
606
- {"shape":"AccessDenied"}
607
- ]
608
- },
609
- "ListPublicKeys":{
610
- "name":"ListPublicKeys2019_03_26",
611
- "http":{
612
- "method":"GET",
613
- "requestUri":"/2019-03-26/public-key"
614
- },
615
- "input":{"shape":"ListPublicKeysRequest"},
616
- "output":{"shape":"ListPublicKeysResult"},
617
- "errors":[
618
- {"shape":"InvalidArgument"}
619
- ]
620
- },
621
- "ListStreamingDistributions":{
622
- "name":"ListStreamingDistributions2019_03_26",
623
- "http":{
624
- "method":"GET",
625
- "requestUri":"/2019-03-26/streaming-distribution"
626
- },
627
- "input":{"shape":"ListStreamingDistributionsRequest"},
628
- "output":{"shape":"ListStreamingDistributionsResult"},
629
- "errors":[
630
- {"shape":"InvalidArgument"}
631
- ]
632
- },
633
- "ListTagsForResource":{
634
- "name":"ListTagsForResource2019_03_26",
635
- "http":{
636
- "method":"GET",
637
- "requestUri":"/2019-03-26/tagging"
638
- },
639
- "input":{"shape":"ListTagsForResourceRequest"},
640
- "output":{"shape":"ListTagsForResourceResult"},
641
- "errors":[
642
- {"shape":"AccessDenied"},
643
- {"shape":"InvalidArgument"},
644
- {"shape":"InvalidTagging"},
645
- {"shape":"NoSuchResource"}
646
- ]
647
- },
648
- "TagResource":{
649
- "name":"TagResource2019_03_26",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/2019-03-26/tagging?Operation=Tag",
653
- "responseCode":204
654
- },
655
- "input":{"shape":"TagResourceRequest"},
656
- "errors":[
657
- {"shape":"AccessDenied"},
658
- {"shape":"InvalidArgument"},
659
- {"shape":"InvalidTagging"},
660
- {"shape":"NoSuchResource"}
661
- ]
662
- },
663
- "UntagResource":{
664
- "name":"UntagResource2019_03_26",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/2019-03-26/tagging?Operation=Untag",
668
- "responseCode":204
669
- },
670
- "input":{"shape":"UntagResourceRequest"},
671
- "errors":[
672
- {"shape":"AccessDenied"},
673
- {"shape":"InvalidArgument"},
674
- {"shape":"InvalidTagging"},
675
- {"shape":"NoSuchResource"}
676
- ]
677
- },
678
- "UpdateCloudFrontOriginAccessIdentity":{
679
- "name":"UpdateCloudFrontOriginAccessIdentity2019_03_26",
680
- "http":{
681
- "method":"PUT",
682
- "requestUri":"/2019-03-26/origin-access-identity/cloudfront/{Id}/config"
683
- },
684
- "input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
685
- "output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
686
- "errors":[
687
- {"shape":"AccessDenied"},
688
- {"shape":"IllegalUpdate"},
689
- {"shape":"InvalidIfMatchVersion"},
690
- {"shape":"MissingBody"},
691
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
692
- {"shape":"PreconditionFailed"},
693
- {"shape":"InvalidArgument"},
694
- {"shape":"InconsistentQuantities"}
695
- ]
696
- },
697
- "UpdateDistribution":{
698
- "name":"UpdateDistribution2019_03_26",
699
- "http":{
700
- "method":"PUT",
701
- "requestUri":"/2019-03-26/distribution/{Id}/config"
702
- },
703
- "input":{"shape":"UpdateDistributionRequest"},
704
- "output":{"shape":"UpdateDistributionResult"},
705
- "errors":[
706
- {"shape":"AccessDenied"},
707
- {"shape":"CNAMEAlreadyExists"},
708
- {"shape":"IllegalUpdate"},
709
- {"shape":"InvalidIfMatchVersion"},
710
- {"shape":"MissingBody"},
711
- {"shape":"NoSuchDistribution"},
712
- {"shape":"PreconditionFailed"},
713
- {"shape":"TooManyDistributionCNAMEs"},
714
- {"shape":"InvalidDefaultRootObject"},
715
- {"shape":"InvalidRelativePath"},
716
- {"shape":"InvalidErrorCode"},
717
- {"shape":"InvalidResponseCode"},
718
- {"shape":"InvalidArgument"},
719
- {"shape":"InvalidOriginAccessIdentity"},
720
- {"shape":"TooManyTrustedSigners"},
721
- {"shape":"TrustedSignerDoesNotExist"},
722
- {"shape":"InvalidViewerCertificate"},
723
- {"shape":"InvalidMinimumProtocolVersion"},
724
- {"shape":"InvalidRequiredProtocol"},
725
- {"shape":"NoSuchOrigin"},
726
- {"shape":"TooManyOrigins"},
727
- {"shape":"TooManyOriginGroupsPerDistribution"},
728
- {"shape":"TooManyCacheBehaviors"},
729
- {"shape":"TooManyCookieNamesInWhiteList"},
730
- {"shape":"InvalidForwardCookies"},
731
- {"shape":"TooManyHeadersInForwardedValues"},
732
- {"shape":"InvalidHeadersForS3Origin"},
733
- {"shape":"InconsistentQuantities"},
734
- {"shape":"TooManyCertificates"},
735
- {"shape":"InvalidLocationCode"},
736
- {"shape":"InvalidGeoRestrictionParameter"},
737
- {"shape":"InvalidTTLOrder"},
738
- {"shape":"InvalidWebACLId"},
739
- {"shape":"TooManyOriginCustomHeaders"},
740
- {"shape":"TooManyQueryStringParameters"},
741
- {"shape":"InvalidQueryStringParameters"},
742
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
743
- {"shape":"TooManyLambdaFunctionAssociations"},
744
- {"shape":"InvalidLambdaFunctionAssociation"},
745
- {"shape":"InvalidOriginReadTimeout"},
746
- {"shape":"InvalidOriginKeepaliveTimeout"},
747
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
748
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
749
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
750
- ]
751
- },
752
- "UpdateFieldLevelEncryptionConfig":{
753
- "name":"UpdateFieldLevelEncryptionConfig2019_03_26",
754
- "http":{
755
- "method":"PUT",
756
- "requestUri":"/2019-03-26/field-level-encryption/{Id}/config"
757
- },
758
- "input":{"shape":"UpdateFieldLevelEncryptionConfigRequest"},
759
- "output":{"shape":"UpdateFieldLevelEncryptionConfigResult"},
760
- "errors":[
761
- {"shape":"AccessDenied"},
762
- {"shape":"IllegalUpdate"},
763
- {"shape":"InconsistentQuantities"},
764
- {"shape":"InvalidArgument"},
765
- {"shape":"InvalidIfMatchVersion"},
766
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
767
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
768
- {"shape":"PreconditionFailed"},
769
- {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
770
- {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
771
- {"shape":"QueryArgProfileEmpty"}
772
- ]
773
- },
774
- "UpdateFieldLevelEncryptionProfile":{
775
- "name":"UpdateFieldLevelEncryptionProfile2019_03_26",
776
- "http":{
777
- "method":"PUT",
778
- "requestUri":"/2019-03-26/field-level-encryption-profile/{Id}/config"
779
- },
780
- "input":{"shape":"UpdateFieldLevelEncryptionProfileRequest"},
781
- "output":{"shape":"UpdateFieldLevelEncryptionProfileResult"},
782
- "errors":[
783
- {"shape":"AccessDenied"},
784
- {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
785
- {"shape":"IllegalUpdate"},
786
- {"shape":"InconsistentQuantities"},
787
- {"shape":"InvalidArgument"},
788
- {"shape":"InvalidIfMatchVersion"},
789
- {"shape":"NoSuchPublicKey"},
790
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
791
- {"shape":"PreconditionFailed"},
792
- {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
793
- {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
794
- {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
795
- ]
796
- },
797
- "UpdatePublicKey":{
798
- "name":"UpdatePublicKey2019_03_26",
799
- "http":{
800
- "method":"PUT",
801
- "requestUri":"/2019-03-26/public-key/{Id}/config"
802
- },
803
- "input":{"shape":"UpdatePublicKeyRequest"},
804
- "output":{"shape":"UpdatePublicKeyResult"},
805
- "errors":[
806
- {"shape":"AccessDenied"},
807
- {"shape":"CannotChangeImmutablePublicKeyFields"},
808
- {"shape":"InvalidArgument"},
809
- {"shape":"InvalidIfMatchVersion"},
810
- {"shape":"IllegalUpdate"},
811
- {"shape":"NoSuchPublicKey"},
812
- {"shape":"PreconditionFailed"}
813
- ]
814
- },
815
- "UpdateStreamingDistribution":{
816
- "name":"UpdateStreamingDistribution2019_03_26",
817
- "http":{
818
- "method":"PUT",
819
- "requestUri":"/2019-03-26/streaming-distribution/{Id}/config"
820
- },
821
- "input":{"shape":"UpdateStreamingDistributionRequest"},
822
- "output":{"shape":"UpdateStreamingDistributionResult"},
823
- "errors":[
824
- {"shape":"AccessDenied"},
825
- {"shape":"CNAMEAlreadyExists"},
826
- {"shape":"IllegalUpdate"},
827
- {"shape":"InvalidIfMatchVersion"},
828
- {"shape":"MissingBody"},
829
- {"shape":"NoSuchStreamingDistribution"},
830
- {"shape":"PreconditionFailed"},
831
- {"shape":"TooManyStreamingDistributionCNAMEs"},
832
- {"shape":"InvalidArgument"},
833
- {"shape":"InvalidOriginAccessIdentity"},
834
- {"shape":"TooManyTrustedSigners"},
835
- {"shape":"TrustedSignerDoesNotExist"},
836
- {"shape":"InconsistentQuantities"}
837
- ]
838
- }
839
- },
840
- "shapes":{
841
- "AccessDenied":{
842
- "type":"structure",
843
- "members":{
844
- "Message":{"shape":"string"}
845
- },
846
- "error":{"httpStatusCode":403},
847
- "exception":true
848
- },
849
- "ActiveTrustedSigners":{
850
- "type":"structure",
851
- "required":[
852
- "Enabled",
853
- "Quantity"
854
- ],
855
- "members":{
856
- "Enabled":{"shape":"boolean"},
857
- "Quantity":{"shape":"integer"},
858
- "Items":{"shape":"SignerList"}
859
- }
860
- },
861
- "AliasICPRecordal":{
862
- "type":"structure",
863
- "members":{
864
- "CNAME":{"shape":"string"},
865
- "ICPRecordalStatus":{"shape":"ICPRecordalStatus"}
866
- }
867
- },
868
- "AliasICPRecordals":{
869
- "type":"list",
870
- "member":{
871
- "shape":"AliasICPRecordal",
872
- "locationName":"AliasICPRecordal"
873
- }
874
- },
875
- "AliasList":{
876
- "type":"list",
877
- "member":{
878
- "shape":"string",
879
- "locationName":"CNAME"
880
- }
881
- },
882
- "Aliases":{
883
- "type":"structure",
884
- "required":["Quantity"],
885
- "members":{
886
- "Quantity":{"shape":"integer"},
887
- "Items":{"shape":"AliasList"}
888
- }
889
- },
890
- "AllowedMethods":{
891
- "type":"structure",
892
- "required":[
893
- "Quantity",
894
- "Items"
895
- ],
896
- "members":{
897
- "Quantity":{"shape":"integer"},
898
- "Items":{"shape":"MethodsList"},
899
- "CachedMethods":{"shape":"CachedMethods"}
900
- }
901
- },
902
- "AwsAccountNumberList":{
903
- "type":"list",
904
- "member":{
905
- "shape":"string",
906
- "locationName":"AwsAccountNumber"
907
- }
908
- },
909
- "BatchTooLarge":{
910
- "type":"structure",
911
- "members":{
912
- "Message":{"shape":"string"}
913
- },
914
- "error":{"httpStatusCode":413},
915
- "exception":true
916
- },
917
- "CNAMEAlreadyExists":{
918
- "type":"structure",
919
- "members":{
920
- "Message":{"shape":"string"}
921
- },
922
- "error":{"httpStatusCode":409},
923
- "exception":true
924
- },
925
- "CacheBehavior":{
926
- "type":"structure",
927
- "required":[
928
- "PathPattern",
929
- "TargetOriginId",
930
- "ForwardedValues",
931
- "TrustedSigners",
932
- "ViewerProtocolPolicy",
933
- "MinTTL"
934
- ],
935
- "members":{
936
- "PathPattern":{"shape":"string"},
937
- "TargetOriginId":{"shape":"string"},
938
- "ForwardedValues":{"shape":"ForwardedValues"},
939
- "TrustedSigners":{"shape":"TrustedSigners"},
940
- "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
941
- "MinTTL":{"shape":"long"},
942
- "AllowedMethods":{"shape":"AllowedMethods"},
943
- "SmoothStreaming":{"shape":"boolean"},
944
- "DefaultTTL":{"shape":"long"},
945
- "MaxTTL":{"shape":"long"},
946
- "Compress":{"shape":"boolean"},
947
- "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
948
- "FieldLevelEncryptionId":{"shape":"string"}
949
- }
950
- },
951
- "CacheBehaviorList":{
952
- "type":"list",
953
- "member":{
954
- "shape":"CacheBehavior",
955
- "locationName":"CacheBehavior"
956
- }
957
- },
958
- "CacheBehaviors":{
959
- "type":"structure",
960
- "required":["Quantity"],
961
- "members":{
962
- "Quantity":{"shape":"integer"},
963
- "Items":{"shape":"CacheBehaviorList"}
964
- }
965
- },
966
- "CachedMethods":{
967
- "type":"structure",
968
- "required":[
969
- "Quantity",
970
- "Items"
971
- ],
972
- "members":{
973
- "Quantity":{"shape":"integer"},
974
- "Items":{"shape":"MethodsList"}
975
- }
976
- },
977
- "CannotChangeImmutablePublicKeyFields":{
978
- "type":"structure",
979
- "members":{
980
- "Message":{"shape":"string"}
981
- },
982
- "error":{"httpStatusCode":400},
983
- "exception":true
984
- },
985
- "CertificateSource":{
986
- "type":"string",
987
- "enum":[
988
- "cloudfront",
989
- "iam",
990
- "acm"
991
- ]
992
- },
993
- "CloudFrontOriginAccessIdentity":{
994
- "type":"structure",
995
- "required":[
996
- "Id",
997
- "S3CanonicalUserId"
998
- ],
999
- "members":{
1000
- "Id":{"shape":"string"},
1001
- "S3CanonicalUserId":{"shape":"string"},
1002
- "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
1003
- }
1004
- },
1005
- "CloudFrontOriginAccessIdentityAlreadyExists":{
1006
- "type":"structure",
1007
- "members":{
1008
- "Message":{"shape":"string"}
1009
- },
1010
- "error":{"httpStatusCode":409},
1011
- "exception":true
1012
- },
1013
- "CloudFrontOriginAccessIdentityConfig":{
1014
- "type":"structure",
1015
- "required":[
1016
- "CallerReference",
1017
- "Comment"
1018
- ],
1019
- "members":{
1020
- "CallerReference":{"shape":"string"},
1021
- "Comment":{"shape":"string"}
1022
- }
1023
- },
1024
- "CloudFrontOriginAccessIdentityInUse":{
1025
- "type":"structure",
1026
- "members":{
1027
- "Message":{"shape":"string"}
1028
- },
1029
- "error":{"httpStatusCode":409},
1030
- "exception":true
1031
- },
1032
- "CloudFrontOriginAccessIdentityList":{
1033
- "type":"structure",
1034
- "required":[
1035
- "Marker",
1036
- "MaxItems",
1037
- "IsTruncated",
1038
- "Quantity"
1039
- ],
1040
- "members":{
1041
- "Marker":{"shape":"string"},
1042
- "NextMarker":{"shape":"string"},
1043
- "MaxItems":{"shape":"integer"},
1044
- "IsTruncated":{"shape":"boolean"},
1045
- "Quantity":{"shape":"integer"},
1046
- "Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
1047
- }
1048
- },
1049
- "CloudFrontOriginAccessIdentitySummary":{
1050
- "type":"structure",
1051
- "required":[
1052
- "Id",
1053
- "S3CanonicalUserId",
1054
- "Comment"
1055
- ],
1056
- "members":{
1057
- "Id":{"shape":"string"},
1058
- "S3CanonicalUserId":{"shape":"string"},
1059
- "Comment":{"shape":"string"}
1060
- }
1061
- },
1062
- "CloudFrontOriginAccessIdentitySummaryList":{
1063
- "type":"list",
1064
- "member":{
1065
- "shape":"CloudFrontOriginAccessIdentitySummary",
1066
- "locationName":"CloudFrontOriginAccessIdentitySummary"
1067
- }
1068
- },
1069
- "CommentType":{
1070
- "type":"string",
1071
- "sensitive":true
1072
- },
1073
- "ContentTypeProfile":{
1074
- "type":"structure",
1075
- "required":[
1076
- "Format",
1077
- "ContentType"
1078
- ],
1079
- "members":{
1080
- "Format":{"shape":"Format"},
1081
- "ProfileId":{"shape":"string"},
1082
- "ContentType":{"shape":"string"}
1083
- }
1084
- },
1085
- "ContentTypeProfileConfig":{
1086
- "type":"structure",
1087
- "required":["ForwardWhenContentTypeIsUnknown"],
1088
- "members":{
1089
- "ForwardWhenContentTypeIsUnknown":{"shape":"boolean"},
1090
- "ContentTypeProfiles":{"shape":"ContentTypeProfiles"}
1091
- }
1092
- },
1093
- "ContentTypeProfileList":{
1094
- "type":"list",
1095
- "member":{
1096
- "shape":"ContentTypeProfile",
1097
- "locationName":"ContentTypeProfile"
1098
- }
1099
- },
1100
- "ContentTypeProfiles":{
1101
- "type":"structure",
1102
- "required":["Quantity"],
1103
- "members":{
1104
- "Quantity":{"shape":"integer"},
1105
- "Items":{"shape":"ContentTypeProfileList"}
1106
- }
1107
- },
1108
- "CookieNameList":{
1109
- "type":"list",
1110
- "member":{
1111
- "shape":"string",
1112
- "locationName":"Name"
1113
- }
1114
- },
1115
- "CookieNames":{
1116
- "type":"structure",
1117
- "required":["Quantity"],
1118
- "members":{
1119
- "Quantity":{"shape":"integer"},
1120
- "Items":{"shape":"CookieNameList"}
1121
- }
1122
- },
1123
- "CookiePreference":{
1124
- "type":"structure",
1125
- "required":["Forward"],
1126
- "members":{
1127
- "Forward":{"shape":"ItemSelection"},
1128
- "WhitelistedNames":{"shape":"CookieNames"}
1129
- }
1130
- },
1131
- "CreateCloudFrontOriginAccessIdentityRequest":{
1132
- "type":"structure",
1133
- "required":["CloudFrontOriginAccessIdentityConfig"],
1134
- "members":{
1135
- "CloudFrontOriginAccessIdentityConfig":{
1136
- "shape":"CloudFrontOriginAccessIdentityConfig",
1137
- "locationName":"CloudFrontOriginAccessIdentityConfig",
1138
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1139
- }
1140
- },
1141
- "payload":"CloudFrontOriginAccessIdentityConfig"
1142
- },
1143
- "CreateCloudFrontOriginAccessIdentityResult":{
1144
- "type":"structure",
1145
- "members":{
1146
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
1147
- "Location":{
1148
- "shape":"string",
1149
- "location":"header",
1150
- "locationName":"Location"
1151
- },
1152
- "ETag":{
1153
- "shape":"string",
1154
- "location":"header",
1155
- "locationName":"ETag"
1156
- }
1157
- },
1158
- "payload":"CloudFrontOriginAccessIdentity"
1159
- },
1160
- "CreateDistributionRequest":{
1161
- "type":"structure",
1162
- "required":["DistributionConfig"],
1163
- "members":{
1164
- "DistributionConfig":{
1165
- "shape":"DistributionConfig",
1166
- "locationName":"DistributionConfig",
1167
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1168
- }
1169
- },
1170
- "payload":"DistributionConfig"
1171
- },
1172
- "CreateDistributionResult":{
1173
- "type":"structure",
1174
- "members":{
1175
- "Distribution":{"shape":"Distribution"},
1176
- "Location":{
1177
- "shape":"string",
1178
- "location":"header",
1179
- "locationName":"Location"
1180
- },
1181
- "ETag":{
1182
- "shape":"string",
1183
- "location":"header",
1184
- "locationName":"ETag"
1185
- }
1186
- },
1187
- "payload":"Distribution"
1188
- },
1189
- "CreateDistributionWithTagsRequest":{
1190
- "type":"structure",
1191
- "required":["DistributionConfigWithTags"],
1192
- "members":{
1193
- "DistributionConfigWithTags":{
1194
- "shape":"DistributionConfigWithTags",
1195
- "locationName":"DistributionConfigWithTags",
1196
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1197
- }
1198
- },
1199
- "payload":"DistributionConfigWithTags"
1200
- },
1201
- "CreateDistributionWithTagsResult":{
1202
- "type":"structure",
1203
- "members":{
1204
- "Distribution":{"shape":"Distribution"},
1205
- "Location":{
1206
- "shape":"string",
1207
- "location":"header",
1208
- "locationName":"Location"
1209
- },
1210
- "ETag":{
1211
- "shape":"string",
1212
- "location":"header",
1213
- "locationName":"ETag"
1214
- }
1215
- },
1216
- "payload":"Distribution"
1217
- },
1218
- "CreateFieldLevelEncryptionConfigRequest":{
1219
- "type":"structure",
1220
- "required":["FieldLevelEncryptionConfig"],
1221
- "members":{
1222
- "FieldLevelEncryptionConfig":{
1223
- "shape":"FieldLevelEncryptionConfig",
1224
- "locationName":"FieldLevelEncryptionConfig",
1225
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1226
- }
1227
- },
1228
- "payload":"FieldLevelEncryptionConfig"
1229
- },
1230
- "CreateFieldLevelEncryptionConfigResult":{
1231
- "type":"structure",
1232
- "members":{
1233
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
1234
- "Location":{
1235
- "shape":"string",
1236
- "location":"header",
1237
- "locationName":"Location"
1238
- },
1239
- "ETag":{
1240
- "shape":"string",
1241
- "location":"header",
1242
- "locationName":"ETag"
1243
- }
1244
- },
1245
- "payload":"FieldLevelEncryption"
1246
- },
1247
- "CreateFieldLevelEncryptionProfileRequest":{
1248
- "type":"structure",
1249
- "required":["FieldLevelEncryptionProfileConfig"],
1250
- "members":{
1251
- "FieldLevelEncryptionProfileConfig":{
1252
- "shape":"FieldLevelEncryptionProfileConfig",
1253
- "locationName":"FieldLevelEncryptionProfileConfig",
1254
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1255
- }
1256
- },
1257
- "payload":"FieldLevelEncryptionProfileConfig"
1258
- },
1259
- "CreateFieldLevelEncryptionProfileResult":{
1260
- "type":"structure",
1261
- "members":{
1262
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
1263
- "Location":{
1264
- "shape":"string",
1265
- "location":"header",
1266
- "locationName":"Location"
1267
- },
1268
- "ETag":{
1269
- "shape":"string",
1270
- "location":"header",
1271
- "locationName":"ETag"
1272
- }
1273
- },
1274
- "payload":"FieldLevelEncryptionProfile"
1275
- },
1276
- "CreateInvalidationRequest":{
1277
- "type":"structure",
1278
- "required":[
1279
- "DistributionId",
1280
- "InvalidationBatch"
1281
- ],
1282
- "members":{
1283
- "DistributionId":{
1284
- "shape":"string",
1285
- "location":"uri",
1286
- "locationName":"DistributionId"
1287
- },
1288
- "InvalidationBatch":{
1289
- "shape":"InvalidationBatch",
1290
- "locationName":"InvalidationBatch",
1291
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1292
- }
1293
- },
1294
- "payload":"InvalidationBatch"
1295
- },
1296
- "CreateInvalidationResult":{
1297
- "type":"structure",
1298
- "members":{
1299
- "Location":{
1300
- "shape":"string",
1301
- "location":"header",
1302
- "locationName":"Location"
1303
- },
1304
- "Invalidation":{"shape":"Invalidation"}
1305
- },
1306
- "payload":"Invalidation"
1307
- },
1308
- "CreatePublicKeyRequest":{
1309
- "type":"structure",
1310
- "required":["PublicKeyConfig"],
1311
- "members":{
1312
- "PublicKeyConfig":{
1313
- "shape":"PublicKeyConfig",
1314
- "locationName":"PublicKeyConfig",
1315
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1316
- }
1317
- },
1318
- "payload":"PublicKeyConfig"
1319
- },
1320
- "CreatePublicKeyResult":{
1321
- "type":"structure",
1322
- "members":{
1323
- "PublicKey":{"shape":"PublicKey"},
1324
- "Location":{
1325
- "shape":"string",
1326
- "location":"header",
1327
- "locationName":"Location"
1328
- },
1329
- "ETag":{
1330
- "shape":"string",
1331
- "location":"header",
1332
- "locationName":"ETag"
1333
- }
1334
- },
1335
- "payload":"PublicKey"
1336
- },
1337
- "CreateStreamingDistributionRequest":{
1338
- "type":"structure",
1339
- "required":["StreamingDistributionConfig"],
1340
- "members":{
1341
- "StreamingDistributionConfig":{
1342
- "shape":"StreamingDistributionConfig",
1343
- "locationName":"StreamingDistributionConfig",
1344
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1345
- }
1346
- },
1347
- "payload":"StreamingDistributionConfig"
1348
- },
1349
- "CreateStreamingDistributionResult":{
1350
- "type":"structure",
1351
- "members":{
1352
- "StreamingDistribution":{"shape":"StreamingDistribution"},
1353
- "Location":{
1354
- "shape":"string",
1355
- "location":"header",
1356
- "locationName":"Location"
1357
- },
1358
- "ETag":{
1359
- "shape":"string",
1360
- "location":"header",
1361
- "locationName":"ETag"
1362
- }
1363
- },
1364
- "payload":"StreamingDistribution"
1365
- },
1366
- "CreateStreamingDistributionWithTagsRequest":{
1367
- "type":"structure",
1368
- "required":["StreamingDistributionConfigWithTags"],
1369
- "members":{
1370
- "StreamingDistributionConfigWithTags":{
1371
- "shape":"StreamingDistributionConfigWithTags",
1372
- "locationName":"StreamingDistributionConfigWithTags",
1373
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
1374
- }
1375
- },
1376
- "payload":"StreamingDistributionConfigWithTags"
1377
- },
1378
- "CreateStreamingDistributionWithTagsResult":{
1379
- "type":"structure",
1380
- "members":{
1381
- "StreamingDistribution":{"shape":"StreamingDistribution"},
1382
- "Location":{
1383
- "shape":"string",
1384
- "location":"header",
1385
- "locationName":"Location"
1386
- },
1387
- "ETag":{
1388
- "shape":"string",
1389
- "location":"header",
1390
- "locationName":"ETag"
1391
- }
1392
- },
1393
- "payload":"StreamingDistribution"
1394
- },
1395
- "CustomErrorResponse":{
1396
- "type":"structure",
1397
- "required":["ErrorCode"],
1398
- "members":{
1399
- "ErrorCode":{"shape":"integer"},
1400
- "ResponsePagePath":{"shape":"string"},
1401
- "ResponseCode":{"shape":"string"},
1402
- "ErrorCachingMinTTL":{"shape":"long"}
1403
- }
1404
- },
1405
- "CustomErrorResponseList":{
1406
- "type":"list",
1407
- "member":{
1408
- "shape":"CustomErrorResponse",
1409
- "locationName":"CustomErrorResponse"
1410
- }
1411
- },
1412
- "CustomErrorResponses":{
1413
- "type":"structure",
1414
- "required":["Quantity"],
1415
- "members":{
1416
- "Quantity":{"shape":"integer"},
1417
- "Items":{"shape":"CustomErrorResponseList"}
1418
- }
1419
- },
1420
- "CustomHeaders":{
1421
- "type":"structure",
1422
- "required":["Quantity"],
1423
- "members":{
1424
- "Quantity":{"shape":"integer"},
1425
- "Items":{"shape":"OriginCustomHeadersList"}
1426
- }
1427
- },
1428
- "CustomOriginConfig":{
1429
- "type":"structure",
1430
- "required":[
1431
- "HTTPPort",
1432
- "HTTPSPort",
1433
- "OriginProtocolPolicy"
1434
- ],
1435
- "members":{
1436
- "HTTPPort":{"shape":"integer"},
1437
- "HTTPSPort":{"shape":"integer"},
1438
- "OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"},
1439
- "OriginSslProtocols":{"shape":"OriginSslProtocols"},
1440
- "OriginReadTimeout":{"shape":"integer"},
1441
- "OriginKeepaliveTimeout":{"shape":"integer"}
1442
- }
1443
- },
1444
- "DefaultCacheBehavior":{
1445
- "type":"structure",
1446
- "required":[
1447
- "TargetOriginId",
1448
- "ForwardedValues",
1449
- "TrustedSigners",
1450
- "ViewerProtocolPolicy",
1451
- "MinTTL"
1452
- ],
1453
- "members":{
1454
- "TargetOriginId":{"shape":"string"},
1455
- "ForwardedValues":{"shape":"ForwardedValues"},
1456
- "TrustedSigners":{"shape":"TrustedSigners"},
1457
- "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
1458
- "MinTTL":{"shape":"long"},
1459
- "AllowedMethods":{"shape":"AllowedMethods"},
1460
- "SmoothStreaming":{"shape":"boolean"},
1461
- "DefaultTTL":{"shape":"long"},
1462
- "MaxTTL":{"shape":"long"},
1463
- "Compress":{"shape":"boolean"},
1464
- "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
1465
- "FieldLevelEncryptionId":{"shape":"string"}
1466
- }
1467
- },
1468
- "DeleteCloudFrontOriginAccessIdentityRequest":{
1469
- "type":"structure",
1470
- "required":["Id"],
1471
- "members":{
1472
- "Id":{
1473
- "shape":"string",
1474
- "location":"uri",
1475
- "locationName":"Id"
1476
- },
1477
- "IfMatch":{
1478
- "shape":"string",
1479
- "location":"header",
1480
- "locationName":"If-Match"
1481
- }
1482
- }
1483
- },
1484
- "DeleteDistributionRequest":{
1485
- "type":"structure",
1486
- "required":["Id"],
1487
- "members":{
1488
- "Id":{
1489
- "shape":"string",
1490
- "location":"uri",
1491
- "locationName":"Id"
1492
- },
1493
- "IfMatch":{
1494
- "shape":"string",
1495
- "location":"header",
1496
- "locationName":"If-Match"
1497
- }
1498
- }
1499
- },
1500
- "DeleteFieldLevelEncryptionConfigRequest":{
1501
- "type":"structure",
1502
- "required":["Id"],
1503
- "members":{
1504
- "Id":{
1505
- "shape":"string",
1506
- "location":"uri",
1507
- "locationName":"Id"
1508
- },
1509
- "IfMatch":{
1510
- "shape":"string",
1511
- "location":"header",
1512
- "locationName":"If-Match"
1513
- }
1514
- }
1515
- },
1516
- "DeleteFieldLevelEncryptionProfileRequest":{
1517
- "type":"structure",
1518
- "required":["Id"],
1519
- "members":{
1520
- "Id":{
1521
- "shape":"string",
1522
- "location":"uri",
1523
- "locationName":"Id"
1524
- },
1525
- "IfMatch":{
1526
- "shape":"string",
1527
- "location":"header",
1528
- "locationName":"If-Match"
1529
- }
1530
- }
1531
- },
1532
- "DeletePublicKeyRequest":{
1533
- "type":"structure",
1534
- "required":["Id"],
1535
- "members":{
1536
- "Id":{
1537
- "shape":"string",
1538
- "location":"uri",
1539
- "locationName":"Id"
1540
- },
1541
- "IfMatch":{
1542
- "shape":"string",
1543
- "location":"header",
1544
- "locationName":"If-Match"
1545
- }
1546
- }
1547
- },
1548
- "DeleteStreamingDistributionRequest":{
1549
- "type":"structure",
1550
- "required":["Id"],
1551
- "members":{
1552
- "Id":{
1553
- "shape":"string",
1554
- "location":"uri",
1555
- "locationName":"Id"
1556
- },
1557
- "IfMatch":{
1558
- "shape":"string",
1559
- "location":"header",
1560
- "locationName":"If-Match"
1561
- }
1562
- }
1563
- },
1564
- "Distribution":{
1565
- "type":"structure",
1566
- "required":[
1567
- "Id",
1568
- "ARN",
1569
- "Status",
1570
- "LastModifiedTime",
1571
- "InProgressInvalidationBatches",
1572
- "DomainName",
1573
- "ActiveTrustedSigners",
1574
- "DistributionConfig"
1575
- ],
1576
- "members":{
1577
- "Id":{"shape":"string"},
1578
- "ARN":{"shape":"string"},
1579
- "Status":{"shape":"string"},
1580
- "LastModifiedTime":{"shape":"timestamp"},
1581
- "InProgressInvalidationBatches":{"shape":"integer"},
1582
- "DomainName":{"shape":"string"},
1583
- "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
1584
- "DistributionConfig":{"shape":"DistributionConfig"},
1585
- "AliasICPRecordals":{"shape":"AliasICPRecordals"}
1586
- }
1587
- },
1588
- "DistributionAlreadyExists":{
1589
- "type":"structure",
1590
- "members":{
1591
- "Message":{"shape":"string"}
1592
- },
1593
- "error":{"httpStatusCode":409},
1594
- "exception":true
1595
- },
1596
- "DistributionConfig":{
1597
- "type":"structure",
1598
- "required":[
1599
- "CallerReference",
1600
- "Origins",
1601
- "DefaultCacheBehavior",
1602
- "Comment",
1603
- "Enabled"
1604
- ],
1605
- "members":{
1606
- "CallerReference":{"shape":"string"},
1607
- "Aliases":{"shape":"Aliases"},
1608
- "DefaultRootObject":{"shape":"string"},
1609
- "Origins":{"shape":"Origins"},
1610
- "OriginGroups":{"shape":"OriginGroups"},
1611
- "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1612
- "CacheBehaviors":{"shape":"CacheBehaviors"},
1613
- "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1614
- "Comment":{"shape":"CommentType"},
1615
- "Logging":{"shape":"LoggingConfig"},
1616
- "PriceClass":{"shape":"PriceClass"},
1617
- "Enabled":{"shape":"boolean"},
1618
- "ViewerCertificate":{"shape":"ViewerCertificate"},
1619
- "Restrictions":{"shape":"Restrictions"},
1620
- "WebACLId":{"shape":"string"},
1621
- "HttpVersion":{"shape":"HttpVersion"},
1622
- "IsIPV6Enabled":{"shape":"boolean"}
1623
- }
1624
- },
1625
- "DistributionConfigWithTags":{
1626
- "type":"structure",
1627
- "required":[
1628
- "DistributionConfig",
1629
- "Tags"
1630
- ],
1631
- "members":{
1632
- "DistributionConfig":{"shape":"DistributionConfig"},
1633
- "Tags":{"shape":"Tags"}
1634
- }
1635
- },
1636
- "DistributionList":{
1637
- "type":"structure",
1638
- "required":[
1639
- "Marker",
1640
- "MaxItems",
1641
- "IsTruncated",
1642
- "Quantity"
1643
- ],
1644
- "members":{
1645
- "Marker":{"shape":"string"},
1646
- "NextMarker":{"shape":"string"},
1647
- "MaxItems":{"shape":"integer"},
1648
- "IsTruncated":{"shape":"boolean"},
1649
- "Quantity":{"shape":"integer"},
1650
- "Items":{"shape":"DistributionSummaryList"}
1651
- }
1652
- },
1653
- "DistributionNotDisabled":{
1654
- "type":"structure",
1655
- "members":{
1656
- "Message":{"shape":"string"}
1657
- },
1658
- "error":{"httpStatusCode":409},
1659
- "exception":true
1660
- },
1661
- "DistributionSummary":{
1662
- "type":"structure",
1663
- "required":[
1664
- "Id",
1665
- "ARN",
1666
- "Status",
1667
- "LastModifiedTime",
1668
- "DomainName",
1669
- "Aliases",
1670
- "Origins",
1671
- "DefaultCacheBehavior",
1672
- "CacheBehaviors",
1673
- "CustomErrorResponses",
1674
- "Comment",
1675
- "PriceClass",
1676
- "Enabled",
1677
- "ViewerCertificate",
1678
- "Restrictions",
1679
- "WebACLId",
1680
- "HttpVersion",
1681
- "IsIPV6Enabled"
1682
- ],
1683
- "members":{
1684
- "Id":{"shape":"string"},
1685
- "ARN":{"shape":"string"},
1686
- "Status":{"shape":"string"},
1687
- "LastModifiedTime":{"shape":"timestamp"},
1688
- "DomainName":{"shape":"string"},
1689
- "Aliases":{"shape":"Aliases"},
1690
- "Origins":{"shape":"Origins"},
1691
- "OriginGroups":{"shape":"OriginGroups"},
1692
- "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1693
- "CacheBehaviors":{"shape":"CacheBehaviors"},
1694
- "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1695
- "Comment":{"shape":"string"},
1696
- "PriceClass":{"shape":"PriceClass"},
1697
- "Enabled":{"shape":"boolean"},
1698
- "ViewerCertificate":{"shape":"ViewerCertificate"},
1699
- "Restrictions":{"shape":"Restrictions"},
1700
- "WebACLId":{"shape":"string"},
1701
- "HttpVersion":{"shape":"HttpVersion"},
1702
- "IsIPV6Enabled":{"shape":"boolean"},
1703
- "AliasICPRecordals":{"shape":"AliasICPRecordals"}
1704
- }
1705
- },
1706
- "DistributionSummaryList":{
1707
- "type":"list",
1708
- "member":{
1709
- "shape":"DistributionSummary",
1710
- "locationName":"DistributionSummary"
1711
- }
1712
- },
1713
- "EncryptionEntities":{
1714
- "type":"structure",
1715
- "required":["Quantity"],
1716
- "members":{
1717
- "Quantity":{"shape":"integer"},
1718
- "Items":{"shape":"EncryptionEntityList"}
1719
- }
1720
- },
1721
- "EncryptionEntity":{
1722
- "type":"structure",
1723
- "required":[
1724
- "PublicKeyId",
1725
- "ProviderId",
1726
- "FieldPatterns"
1727
- ],
1728
- "members":{
1729
- "PublicKeyId":{"shape":"string"},
1730
- "ProviderId":{"shape":"string"},
1731
- "FieldPatterns":{"shape":"FieldPatterns"}
1732
- }
1733
- },
1734
- "EncryptionEntityList":{
1735
- "type":"list",
1736
- "member":{
1737
- "shape":"EncryptionEntity",
1738
- "locationName":"EncryptionEntity"
1739
- }
1740
- },
1741
- "EventType":{
1742
- "type":"string",
1743
- "enum":[
1744
- "viewer-request",
1745
- "viewer-response",
1746
- "origin-request",
1747
- "origin-response"
1748
- ]
1749
- },
1750
- "FieldLevelEncryption":{
1751
- "type":"structure",
1752
- "required":[
1753
- "Id",
1754
- "LastModifiedTime",
1755
- "FieldLevelEncryptionConfig"
1756
- ],
1757
- "members":{
1758
- "Id":{"shape":"string"},
1759
- "LastModifiedTime":{"shape":"timestamp"},
1760
- "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"}
1761
- }
1762
- },
1763
- "FieldLevelEncryptionConfig":{
1764
- "type":"structure",
1765
- "required":["CallerReference"],
1766
- "members":{
1767
- "CallerReference":{"shape":"string"},
1768
- "Comment":{"shape":"string"},
1769
- "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1770
- "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1771
- }
1772
- },
1773
- "FieldLevelEncryptionConfigAlreadyExists":{
1774
- "type":"structure",
1775
- "members":{
1776
- "Message":{"shape":"string"}
1777
- },
1778
- "error":{"httpStatusCode":409},
1779
- "exception":true
1780
- },
1781
- "FieldLevelEncryptionConfigInUse":{
1782
- "type":"structure",
1783
- "members":{
1784
- "Message":{"shape":"string"}
1785
- },
1786
- "error":{"httpStatusCode":409},
1787
- "exception":true
1788
- },
1789
- "FieldLevelEncryptionList":{
1790
- "type":"structure",
1791
- "required":[
1792
- "MaxItems",
1793
- "Quantity"
1794
- ],
1795
- "members":{
1796
- "NextMarker":{"shape":"string"},
1797
- "MaxItems":{"shape":"integer"},
1798
- "Quantity":{"shape":"integer"},
1799
- "Items":{"shape":"FieldLevelEncryptionSummaryList"}
1800
- }
1801
- },
1802
- "FieldLevelEncryptionProfile":{
1803
- "type":"structure",
1804
- "required":[
1805
- "Id",
1806
- "LastModifiedTime",
1807
- "FieldLevelEncryptionProfileConfig"
1808
- ],
1809
- "members":{
1810
- "Id":{"shape":"string"},
1811
- "LastModifiedTime":{"shape":"timestamp"},
1812
- "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"}
1813
- }
1814
- },
1815
- "FieldLevelEncryptionProfileAlreadyExists":{
1816
- "type":"structure",
1817
- "members":{
1818
- "Message":{"shape":"string"}
1819
- },
1820
- "error":{"httpStatusCode":409},
1821
- "exception":true
1822
- },
1823
- "FieldLevelEncryptionProfileConfig":{
1824
- "type":"structure",
1825
- "required":[
1826
- "Name",
1827
- "CallerReference",
1828
- "EncryptionEntities"
1829
- ],
1830
- "members":{
1831
- "Name":{"shape":"string"},
1832
- "CallerReference":{"shape":"string"},
1833
- "Comment":{"shape":"string"},
1834
- "EncryptionEntities":{"shape":"EncryptionEntities"}
1835
- }
1836
- },
1837
- "FieldLevelEncryptionProfileInUse":{
1838
- "type":"structure",
1839
- "members":{
1840
- "Message":{"shape":"string"}
1841
- },
1842
- "error":{"httpStatusCode":409},
1843
- "exception":true
1844
- },
1845
- "FieldLevelEncryptionProfileList":{
1846
- "type":"structure",
1847
- "required":[
1848
- "MaxItems",
1849
- "Quantity"
1850
- ],
1851
- "members":{
1852
- "NextMarker":{"shape":"string"},
1853
- "MaxItems":{"shape":"integer"},
1854
- "Quantity":{"shape":"integer"},
1855
- "Items":{"shape":"FieldLevelEncryptionProfileSummaryList"}
1856
- }
1857
- },
1858
- "FieldLevelEncryptionProfileSizeExceeded":{
1859
- "type":"structure",
1860
- "members":{
1861
- "Message":{"shape":"string"}
1862
- },
1863
- "error":{"httpStatusCode":400},
1864
- "exception":true
1865
- },
1866
- "FieldLevelEncryptionProfileSummary":{
1867
- "type":"structure",
1868
- "required":[
1869
- "Id",
1870
- "LastModifiedTime",
1871
- "Name",
1872
- "EncryptionEntities"
1873
- ],
1874
- "members":{
1875
- "Id":{"shape":"string"},
1876
- "LastModifiedTime":{"shape":"timestamp"},
1877
- "Name":{"shape":"string"},
1878
- "EncryptionEntities":{"shape":"EncryptionEntities"},
1879
- "Comment":{"shape":"string"}
1880
- }
1881
- },
1882
- "FieldLevelEncryptionProfileSummaryList":{
1883
- "type":"list",
1884
- "member":{
1885
- "shape":"FieldLevelEncryptionProfileSummary",
1886
- "locationName":"FieldLevelEncryptionProfileSummary"
1887
- }
1888
- },
1889
- "FieldLevelEncryptionSummary":{
1890
- "type":"structure",
1891
- "required":[
1892
- "Id",
1893
- "LastModifiedTime"
1894
- ],
1895
- "members":{
1896
- "Id":{"shape":"string"},
1897
- "LastModifiedTime":{"shape":"timestamp"},
1898
- "Comment":{"shape":"string"},
1899
- "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1900
- "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1901
- }
1902
- },
1903
- "FieldLevelEncryptionSummaryList":{
1904
- "type":"list",
1905
- "member":{
1906
- "shape":"FieldLevelEncryptionSummary",
1907
- "locationName":"FieldLevelEncryptionSummary"
1908
- }
1909
- },
1910
- "FieldPatternList":{
1911
- "type":"list",
1912
- "member":{
1913
- "shape":"string",
1914
- "locationName":"FieldPattern"
1915
- }
1916
- },
1917
- "FieldPatterns":{
1918
- "type":"structure",
1919
- "required":["Quantity"],
1920
- "members":{
1921
- "Quantity":{"shape":"integer"},
1922
- "Items":{"shape":"FieldPatternList"}
1923
- }
1924
- },
1925
- "Format":{
1926
- "type":"string",
1927
- "enum":["URLEncoded"]
1928
- },
1929
- "ForwardedValues":{
1930
- "type":"structure",
1931
- "required":[
1932
- "QueryString",
1933
- "Cookies"
1934
- ],
1935
- "members":{
1936
- "QueryString":{"shape":"boolean"},
1937
- "Cookies":{"shape":"CookiePreference"},
1938
- "Headers":{"shape":"Headers"},
1939
- "QueryStringCacheKeys":{"shape":"QueryStringCacheKeys"}
1940
- }
1941
- },
1942
- "GeoRestriction":{
1943
- "type":"structure",
1944
- "required":[
1945
- "RestrictionType",
1946
- "Quantity"
1947
- ],
1948
- "members":{
1949
- "RestrictionType":{"shape":"GeoRestrictionType"},
1950
- "Quantity":{"shape":"integer"},
1951
- "Items":{"shape":"LocationList"}
1952
- }
1953
- },
1954
- "GeoRestrictionType":{
1955
- "type":"string",
1956
- "enum":[
1957
- "blacklist",
1958
- "whitelist",
1959
- "none"
1960
- ]
1961
- },
1962
- "GetCloudFrontOriginAccessIdentityConfigRequest":{
1963
- "type":"structure",
1964
- "required":["Id"],
1965
- "members":{
1966
- "Id":{
1967
- "shape":"string",
1968
- "location":"uri",
1969
- "locationName":"Id"
1970
- }
1971
- }
1972
- },
1973
- "GetCloudFrontOriginAccessIdentityConfigResult":{
1974
- "type":"structure",
1975
- "members":{
1976
- "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
1977
- "ETag":{
1978
- "shape":"string",
1979
- "location":"header",
1980
- "locationName":"ETag"
1981
- }
1982
- },
1983
- "payload":"CloudFrontOriginAccessIdentityConfig"
1984
- },
1985
- "GetCloudFrontOriginAccessIdentityRequest":{
1986
- "type":"structure",
1987
- "required":["Id"],
1988
- "members":{
1989
- "Id":{
1990
- "shape":"string",
1991
- "location":"uri",
1992
- "locationName":"Id"
1993
- }
1994
- }
1995
- },
1996
- "GetCloudFrontOriginAccessIdentityResult":{
1997
- "type":"structure",
1998
- "members":{
1999
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
2000
- "ETag":{
2001
- "shape":"string",
2002
- "location":"header",
2003
- "locationName":"ETag"
2004
- }
2005
- },
2006
- "payload":"CloudFrontOriginAccessIdentity"
2007
- },
2008
- "GetDistributionConfigRequest":{
2009
- "type":"structure",
2010
- "required":["Id"],
2011
- "members":{
2012
- "Id":{
2013
- "shape":"string",
2014
- "location":"uri",
2015
- "locationName":"Id"
2016
- }
2017
- }
2018
- },
2019
- "GetDistributionConfigResult":{
2020
- "type":"structure",
2021
- "members":{
2022
- "DistributionConfig":{"shape":"DistributionConfig"},
2023
- "ETag":{
2024
- "shape":"string",
2025
- "location":"header",
2026
- "locationName":"ETag"
2027
- }
2028
- },
2029
- "payload":"DistributionConfig"
2030
- },
2031
- "GetDistributionRequest":{
2032
- "type":"structure",
2033
- "required":["Id"],
2034
- "members":{
2035
- "Id":{
2036
- "shape":"string",
2037
- "location":"uri",
2038
- "locationName":"Id"
2039
- }
2040
- }
2041
- },
2042
- "GetDistributionResult":{
2043
- "type":"structure",
2044
- "members":{
2045
- "Distribution":{"shape":"Distribution"},
2046
- "ETag":{
2047
- "shape":"string",
2048
- "location":"header",
2049
- "locationName":"ETag"
2050
- }
2051
- },
2052
- "payload":"Distribution"
2053
- },
2054
- "GetFieldLevelEncryptionConfigRequest":{
2055
- "type":"structure",
2056
- "required":["Id"],
2057
- "members":{
2058
- "Id":{
2059
- "shape":"string",
2060
- "location":"uri",
2061
- "locationName":"Id"
2062
- }
2063
- }
2064
- },
2065
- "GetFieldLevelEncryptionConfigResult":{
2066
- "type":"structure",
2067
- "members":{
2068
- "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"},
2069
- "ETag":{
2070
- "shape":"string",
2071
- "location":"header",
2072
- "locationName":"ETag"
2073
- }
2074
- },
2075
- "payload":"FieldLevelEncryptionConfig"
2076
- },
2077
- "GetFieldLevelEncryptionProfileConfigRequest":{
2078
- "type":"structure",
2079
- "required":["Id"],
2080
- "members":{
2081
- "Id":{
2082
- "shape":"string",
2083
- "location":"uri",
2084
- "locationName":"Id"
2085
- }
2086
- }
2087
- },
2088
- "GetFieldLevelEncryptionProfileConfigResult":{
2089
- "type":"structure",
2090
- "members":{
2091
- "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"},
2092
- "ETag":{
2093
- "shape":"string",
2094
- "location":"header",
2095
- "locationName":"ETag"
2096
- }
2097
- },
2098
- "payload":"FieldLevelEncryptionProfileConfig"
2099
- },
2100
- "GetFieldLevelEncryptionProfileRequest":{
2101
- "type":"structure",
2102
- "required":["Id"],
2103
- "members":{
2104
- "Id":{
2105
- "shape":"string",
2106
- "location":"uri",
2107
- "locationName":"Id"
2108
- }
2109
- }
2110
- },
2111
- "GetFieldLevelEncryptionProfileResult":{
2112
- "type":"structure",
2113
- "members":{
2114
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
2115
- "ETag":{
2116
- "shape":"string",
2117
- "location":"header",
2118
- "locationName":"ETag"
2119
- }
2120
- },
2121
- "payload":"FieldLevelEncryptionProfile"
2122
- },
2123
- "GetFieldLevelEncryptionRequest":{
2124
- "type":"structure",
2125
- "required":["Id"],
2126
- "members":{
2127
- "Id":{
2128
- "shape":"string",
2129
- "location":"uri",
2130
- "locationName":"Id"
2131
- }
2132
- }
2133
- },
2134
- "GetFieldLevelEncryptionResult":{
2135
- "type":"structure",
2136
- "members":{
2137
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
2138
- "ETag":{
2139
- "shape":"string",
2140
- "location":"header",
2141
- "locationName":"ETag"
2142
- }
2143
- },
2144
- "payload":"FieldLevelEncryption"
2145
- },
2146
- "GetInvalidationRequest":{
2147
- "type":"structure",
2148
- "required":[
2149
- "DistributionId",
2150
- "Id"
2151
- ],
2152
- "members":{
2153
- "DistributionId":{
2154
- "shape":"string",
2155
- "location":"uri",
2156
- "locationName":"DistributionId"
2157
- },
2158
- "Id":{
2159
- "shape":"string",
2160
- "location":"uri",
2161
- "locationName":"Id"
2162
- }
2163
- }
2164
- },
2165
- "GetInvalidationResult":{
2166
- "type":"structure",
2167
- "members":{
2168
- "Invalidation":{"shape":"Invalidation"}
2169
- },
2170
- "payload":"Invalidation"
2171
- },
2172
- "GetPublicKeyConfigRequest":{
2173
- "type":"structure",
2174
- "required":["Id"],
2175
- "members":{
2176
- "Id":{
2177
- "shape":"string",
2178
- "location":"uri",
2179
- "locationName":"Id"
2180
- }
2181
- }
2182
- },
2183
- "GetPublicKeyConfigResult":{
2184
- "type":"structure",
2185
- "members":{
2186
- "PublicKeyConfig":{"shape":"PublicKeyConfig"},
2187
- "ETag":{
2188
- "shape":"string",
2189
- "location":"header",
2190
- "locationName":"ETag"
2191
- }
2192
- },
2193
- "payload":"PublicKeyConfig"
2194
- },
2195
- "GetPublicKeyRequest":{
2196
- "type":"structure",
2197
- "required":["Id"],
2198
- "members":{
2199
- "Id":{
2200
- "shape":"string",
2201
- "location":"uri",
2202
- "locationName":"Id"
2203
- }
2204
- }
2205
- },
2206
- "GetPublicKeyResult":{
2207
- "type":"structure",
2208
- "members":{
2209
- "PublicKey":{"shape":"PublicKey"},
2210
- "ETag":{
2211
- "shape":"string",
2212
- "location":"header",
2213
- "locationName":"ETag"
2214
- }
2215
- },
2216
- "payload":"PublicKey"
2217
- },
2218
- "GetStreamingDistributionConfigRequest":{
2219
- "type":"structure",
2220
- "required":["Id"],
2221
- "members":{
2222
- "Id":{
2223
- "shape":"string",
2224
- "location":"uri",
2225
- "locationName":"Id"
2226
- }
2227
- }
2228
- },
2229
- "GetStreamingDistributionConfigResult":{
2230
- "type":"structure",
2231
- "members":{
2232
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
2233
- "ETag":{
2234
- "shape":"string",
2235
- "location":"header",
2236
- "locationName":"ETag"
2237
- }
2238
- },
2239
- "payload":"StreamingDistributionConfig"
2240
- },
2241
- "GetStreamingDistributionRequest":{
2242
- "type":"structure",
2243
- "required":["Id"],
2244
- "members":{
2245
- "Id":{
2246
- "shape":"string",
2247
- "location":"uri",
2248
- "locationName":"Id"
2249
- }
2250
- }
2251
- },
2252
- "GetStreamingDistributionResult":{
2253
- "type":"structure",
2254
- "members":{
2255
- "StreamingDistribution":{"shape":"StreamingDistribution"},
2256
- "ETag":{
2257
- "shape":"string",
2258
- "location":"header",
2259
- "locationName":"ETag"
2260
- }
2261
- },
2262
- "payload":"StreamingDistribution"
2263
- },
2264
- "HeaderList":{
2265
- "type":"list",
2266
- "member":{
2267
- "shape":"string",
2268
- "locationName":"Name"
2269
- }
2270
- },
2271
- "Headers":{
2272
- "type":"structure",
2273
- "required":["Quantity"],
2274
- "members":{
2275
- "Quantity":{"shape":"integer"},
2276
- "Items":{"shape":"HeaderList"}
2277
- }
2278
- },
2279
- "HttpVersion":{
2280
- "type":"string",
2281
- "enum":[
2282
- "http1.1",
2283
- "http2"
2284
- ]
2285
- },
2286
- "ICPRecordalStatus":{
2287
- "type":"string",
2288
- "enum":[
2289
- "APPROVED",
2290
- "SUSPENDED",
2291
- "PENDING"
2292
- ]
2293
- },
2294
- "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior":{
2295
- "type":"structure",
2296
- "members":{
2297
- "Message":{"shape":"string"}
2298
- },
2299
- "error":{"httpStatusCode":400},
2300
- "exception":true
2301
- },
2302
- "IllegalUpdate":{
2303
- "type":"structure",
2304
- "members":{
2305
- "Message":{"shape":"string"}
2306
- },
2307
- "error":{"httpStatusCode":400},
2308
- "exception":true
2309
- },
2310
- "InconsistentQuantities":{
2311
- "type":"structure",
2312
- "members":{
2313
- "Message":{"shape":"string"}
2314
- },
2315
- "error":{"httpStatusCode":400},
2316
- "exception":true
2317
- },
2318
- "InvalidArgument":{
2319
- "type":"structure",
2320
- "members":{
2321
- "Message":{"shape":"string"}
2322
- },
2323
- "error":{"httpStatusCode":400},
2324
- "exception":true
2325
- },
2326
- "InvalidDefaultRootObject":{
2327
- "type":"structure",
2328
- "members":{
2329
- "Message":{"shape":"string"}
2330
- },
2331
- "error":{"httpStatusCode":400},
2332
- "exception":true
2333
- },
2334
- "InvalidErrorCode":{
2335
- "type":"structure",
2336
- "members":{
2337
- "Message":{"shape":"string"}
2338
- },
2339
- "error":{"httpStatusCode":400},
2340
- "exception":true
2341
- },
2342
- "InvalidForwardCookies":{
2343
- "type":"structure",
2344
- "members":{
2345
- "Message":{"shape":"string"}
2346
- },
2347
- "error":{"httpStatusCode":400},
2348
- "exception":true
2349
- },
2350
- "InvalidGeoRestrictionParameter":{
2351
- "type":"structure",
2352
- "members":{
2353
- "Message":{"shape":"string"}
2354
- },
2355
- "error":{"httpStatusCode":400},
2356
- "exception":true
2357
- },
2358
- "InvalidHeadersForS3Origin":{
2359
- "type":"structure",
2360
- "members":{
2361
- "Message":{"shape":"string"}
2362
- },
2363
- "error":{"httpStatusCode":400},
2364
- "exception":true
2365
- },
2366
- "InvalidIfMatchVersion":{
2367
- "type":"structure",
2368
- "members":{
2369
- "Message":{"shape":"string"}
2370
- },
2371
- "error":{"httpStatusCode":400},
2372
- "exception":true
2373
- },
2374
- "InvalidLambdaFunctionAssociation":{
2375
- "type":"structure",
2376
- "members":{
2377
- "Message":{"shape":"string"}
2378
- },
2379
- "error":{"httpStatusCode":400},
2380
- "exception":true
2381
- },
2382
- "InvalidLocationCode":{
2383
- "type":"structure",
2384
- "members":{
2385
- "Message":{"shape":"string"}
2386
- },
2387
- "error":{"httpStatusCode":400},
2388
- "exception":true
2389
- },
2390
- "InvalidMinimumProtocolVersion":{
2391
- "type":"structure",
2392
- "members":{
2393
- "Message":{"shape":"string"}
2394
- },
2395
- "error":{"httpStatusCode":400},
2396
- "exception":true
2397
- },
2398
- "InvalidOrigin":{
2399
- "type":"structure",
2400
- "members":{
2401
- "Message":{"shape":"string"}
2402
- },
2403
- "error":{"httpStatusCode":400},
2404
- "exception":true
2405
- },
2406
- "InvalidOriginAccessIdentity":{
2407
- "type":"structure",
2408
- "members":{
2409
- "Message":{"shape":"string"}
2410
- },
2411
- "error":{"httpStatusCode":400},
2412
- "exception":true
2413
- },
2414
- "InvalidOriginKeepaliveTimeout":{
2415
- "type":"structure",
2416
- "members":{
2417
- "Message":{"shape":"string"}
2418
- },
2419
- "error":{"httpStatusCode":400},
2420
- "exception":true
2421
- },
2422
- "InvalidOriginReadTimeout":{
2423
- "type":"structure",
2424
- "members":{
2425
- "Message":{"shape":"string"}
2426
- },
2427
- "error":{"httpStatusCode":400},
2428
- "exception":true
2429
- },
2430
- "InvalidProtocolSettings":{
2431
- "type":"structure",
2432
- "members":{
2433
- "Message":{"shape":"string"}
2434
- },
2435
- "error":{"httpStatusCode":400},
2436
- "exception":true
2437
- },
2438
- "InvalidQueryStringParameters":{
2439
- "type":"structure",
2440
- "members":{
2441
- "Message":{"shape":"string"}
2442
- },
2443
- "error":{"httpStatusCode":400},
2444
- "exception":true
2445
- },
2446
- "InvalidRelativePath":{
2447
- "type":"structure",
2448
- "members":{
2449
- "Message":{"shape":"string"}
2450
- },
2451
- "error":{"httpStatusCode":400},
2452
- "exception":true
2453
- },
2454
- "InvalidRequiredProtocol":{
2455
- "type":"structure",
2456
- "members":{
2457
- "Message":{"shape":"string"}
2458
- },
2459
- "error":{"httpStatusCode":400},
2460
- "exception":true
2461
- },
2462
- "InvalidResponseCode":{
2463
- "type":"structure",
2464
- "members":{
2465
- "Message":{"shape":"string"}
2466
- },
2467
- "error":{"httpStatusCode":400},
2468
- "exception":true
2469
- },
2470
- "InvalidTTLOrder":{
2471
- "type":"structure",
2472
- "members":{
2473
- "Message":{"shape":"string"}
2474
- },
2475
- "error":{"httpStatusCode":400},
2476
- "exception":true
2477
- },
2478
- "InvalidTagging":{
2479
- "type":"structure",
2480
- "members":{
2481
- "Message":{"shape":"string"}
2482
- },
2483
- "error":{"httpStatusCode":400},
2484
- "exception":true
2485
- },
2486
- "InvalidViewerCertificate":{
2487
- "type":"structure",
2488
- "members":{
2489
- "Message":{"shape":"string"}
2490
- },
2491
- "error":{"httpStatusCode":400},
2492
- "exception":true
2493
- },
2494
- "InvalidWebACLId":{
2495
- "type":"structure",
2496
- "members":{
2497
- "Message":{"shape":"string"}
2498
- },
2499
- "error":{"httpStatusCode":400},
2500
- "exception":true
2501
- },
2502
- "Invalidation":{
2503
- "type":"structure",
2504
- "required":[
2505
- "Id",
2506
- "Status",
2507
- "CreateTime",
2508
- "InvalidationBatch"
2509
- ],
2510
- "members":{
2511
- "Id":{"shape":"string"},
2512
- "Status":{"shape":"string"},
2513
- "CreateTime":{"shape":"timestamp"},
2514
- "InvalidationBatch":{"shape":"InvalidationBatch"}
2515
- }
2516
- },
2517
- "InvalidationBatch":{
2518
- "type":"structure",
2519
- "required":[
2520
- "Paths",
2521
- "CallerReference"
2522
- ],
2523
- "members":{
2524
- "Paths":{"shape":"Paths"},
2525
- "CallerReference":{"shape":"string"}
2526
- }
2527
- },
2528
- "InvalidationList":{
2529
- "type":"structure",
2530
- "required":[
2531
- "Marker",
2532
- "MaxItems",
2533
- "IsTruncated",
2534
- "Quantity"
2535
- ],
2536
- "members":{
2537
- "Marker":{"shape":"string"},
2538
- "NextMarker":{"shape":"string"},
2539
- "MaxItems":{"shape":"integer"},
2540
- "IsTruncated":{"shape":"boolean"},
2541
- "Quantity":{"shape":"integer"},
2542
- "Items":{"shape":"InvalidationSummaryList"}
2543
- }
2544
- },
2545
- "InvalidationSummary":{
2546
- "type":"structure",
2547
- "required":[
2548
- "Id",
2549
- "CreateTime",
2550
- "Status"
2551
- ],
2552
- "members":{
2553
- "Id":{"shape":"string"},
2554
- "CreateTime":{"shape":"timestamp"},
2555
- "Status":{"shape":"string"}
2556
- }
2557
- },
2558
- "InvalidationSummaryList":{
2559
- "type":"list",
2560
- "member":{
2561
- "shape":"InvalidationSummary",
2562
- "locationName":"InvalidationSummary"
2563
- }
2564
- },
2565
- "ItemSelection":{
2566
- "type":"string",
2567
- "enum":[
2568
- "none",
2569
- "whitelist",
2570
- "all"
2571
- ]
2572
- },
2573
- "KeyPairIdList":{
2574
- "type":"list",
2575
- "member":{
2576
- "shape":"string",
2577
- "locationName":"KeyPairId"
2578
- }
2579
- },
2580
- "KeyPairIds":{
2581
- "type":"structure",
2582
- "required":["Quantity"],
2583
- "members":{
2584
- "Quantity":{"shape":"integer"},
2585
- "Items":{"shape":"KeyPairIdList"}
2586
- }
2587
- },
2588
- "LambdaFunctionARN":{"type":"string"},
2589
- "LambdaFunctionAssociation":{
2590
- "type":"structure",
2591
- "required":[
2592
- "LambdaFunctionARN",
2593
- "EventType"
2594
- ],
2595
- "members":{
2596
- "LambdaFunctionARN":{"shape":"LambdaFunctionARN"},
2597
- "EventType":{"shape":"EventType"},
2598
- "IncludeBody":{"shape":"boolean"}
2599
- }
2600
- },
2601
- "LambdaFunctionAssociationList":{
2602
- "type":"list",
2603
- "member":{
2604
- "shape":"LambdaFunctionAssociation",
2605
- "locationName":"LambdaFunctionAssociation"
2606
- }
2607
- },
2608
- "LambdaFunctionAssociations":{
2609
- "type":"structure",
2610
- "required":["Quantity"],
2611
- "members":{
2612
- "Quantity":{"shape":"integer"},
2613
- "Items":{"shape":"LambdaFunctionAssociationList"}
2614
- }
2615
- },
2616
- "ListCloudFrontOriginAccessIdentitiesRequest":{
2617
- "type":"structure",
2618
- "members":{
2619
- "Marker":{
2620
- "shape":"string",
2621
- "location":"querystring",
2622
- "locationName":"Marker"
2623
- },
2624
- "MaxItems":{
2625
- "shape":"string",
2626
- "location":"querystring",
2627
- "locationName":"MaxItems"
2628
- }
2629
- }
2630
- },
2631
- "ListCloudFrontOriginAccessIdentitiesResult":{
2632
- "type":"structure",
2633
- "members":{
2634
- "CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
2635
- },
2636
- "payload":"CloudFrontOriginAccessIdentityList"
2637
- },
2638
- "ListDistributionsByWebACLIdRequest":{
2639
- "type":"structure",
2640
- "required":["WebACLId"],
2641
- "members":{
2642
- "Marker":{
2643
- "shape":"string",
2644
- "location":"querystring",
2645
- "locationName":"Marker"
2646
- },
2647
- "MaxItems":{
2648
- "shape":"string",
2649
- "location":"querystring",
2650
- "locationName":"MaxItems"
2651
- },
2652
- "WebACLId":{
2653
- "shape":"string",
2654
- "location":"uri",
2655
- "locationName":"WebACLId"
2656
- }
2657
- }
2658
- },
2659
- "ListDistributionsByWebACLIdResult":{
2660
- "type":"structure",
2661
- "members":{
2662
- "DistributionList":{"shape":"DistributionList"}
2663
- },
2664
- "payload":"DistributionList"
2665
- },
2666
- "ListDistributionsRequest":{
2667
- "type":"structure",
2668
- "members":{
2669
- "Marker":{
2670
- "shape":"string",
2671
- "location":"querystring",
2672
- "locationName":"Marker"
2673
- },
2674
- "MaxItems":{
2675
- "shape":"string",
2676
- "location":"querystring",
2677
- "locationName":"MaxItems"
2678
- }
2679
- }
2680
- },
2681
- "ListDistributionsResult":{
2682
- "type":"structure",
2683
- "members":{
2684
- "DistributionList":{"shape":"DistributionList"}
2685
- },
2686
- "payload":"DistributionList"
2687
- },
2688
- "ListFieldLevelEncryptionConfigsRequest":{
2689
- "type":"structure",
2690
- "members":{
2691
- "Marker":{
2692
- "shape":"string",
2693
- "location":"querystring",
2694
- "locationName":"Marker"
2695
- },
2696
- "MaxItems":{
2697
- "shape":"string",
2698
- "location":"querystring",
2699
- "locationName":"MaxItems"
2700
- }
2701
- }
2702
- },
2703
- "ListFieldLevelEncryptionConfigsResult":{
2704
- "type":"structure",
2705
- "members":{
2706
- "FieldLevelEncryptionList":{"shape":"FieldLevelEncryptionList"}
2707
- },
2708
- "payload":"FieldLevelEncryptionList"
2709
- },
2710
- "ListFieldLevelEncryptionProfilesRequest":{
2711
- "type":"structure",
2712
- "members":{
2713
- "Marker":{
2714
- "shape":"string",
2715
- "location":"querystring",
2716
- "locationName":"Marker"
2717
- },
2718
- "MaxItems":{
2719
- "shape":"string",
2720
- "location":"querystring",
2721
- "locationName":"MaxItems"
2722
- }
2723
- }
2724
- },
2725
- "ListFieldLevelEncryptionProfilesResult":{
2726
- "type":"structure",
2727
- "members":{
2728
- "FieldLevelEncryptionProfileList":{"shape":"FieldLevelEncryptionProfileList"}
2729
- },
2730
- "payload":"FieldLevelEncryptionProfileList"
2731
- },
2732
- "ListInvalidationsRequest":{
2733
- "type":"structure",
2734
- "required":["DistributionId"],
2735
- "members":{
2736
- "DistributionId":{
2737
- "shape":"string",
2738
- "location":"uri",
2739
- "locationName":"DistributionId"
2740
- },
2741
- "Marker":{
2742
- "shape":"string",
2743
- "location":"querystring",
2744
- "locationName":"Marker"
2745
- },
2746
- "MaxItems":{
2747
- "shape":"string",
2748
- "location":"querystring",
2749
- "locationName":"MaxItems"
2750
- }
2751
- }
2752
- },
2753
- "ListInvalidationsResult":{
2754
- "type":"structure",
2755
- "members":{
2756
- "InvalidationList":{"shape":"InvalidationList"}
2757
- },
2758
- "payload":"InvalidationList"
2759
- },
2760
- "ListPublicKeysRequest":{
2761
- "type":"structure",
2762
- "members":{
2763
- "Marker":{
2764
- "shape":"string",
2765
- "location":"querystring",
2766
- "locationName":"Marker"
2767
- },
2768
- "MaxItems":{
2769
- "shape":"string",
2770
- "location":"querystring",
2771
- "locationName":"MaxItems"
2772
- }
2773
- }
2774
- },
2775
- "ListPublicKeysResult":{
2776
- "type":"structure",
2777
- "members":{
2778
- "PublicKeyList":{"shape":"PublicKeyList"}
2779
- },
2780
- "payload":"PublicKeyList"
2781
- },
2782
- "ListStreamingDistributionsRequest":{
2783
- "type":"structure",
2784
- "members":{
2785
- "Marker":{
2786
- "shape":"string",
2787
- "location":"querystring",
2788
- "locationName":"Marker"
2789
- },
2790
- "MaxItems":{
2791
- "shape":"string",
2792
- "location":"querystring",
2793
- "locationName":"MaxItems"
2794
- }
2795
- }
2796
- },
2797
- "ListStreamingDistributionsResult":{
2798
- "type":"structure",
2799
- "members":{
2800
- "StreamingDistributionList":{"shape":"StreamingDistributionList"}
2801
- },
2802
- "payload":"StreamingDistributionList"
2803
- },
2804
- "ListTagsForResourceRequest":{
2805
- "type":"structure",
2806
- "required":["Resource"],
2807
- "members":{
2808
- "Resource":{
2809
- "shape":"ResourceARN",
2810
- "location":"querystring",
2811
- "locationName":"Resource"
2812
- }
2813
- }
2814
- },
2815
- "ListTagsForResourceResult":{
2816
- "type":"structure",
2817
- "required":["Tags"],
2818
- "members":{
2819
- "Tags":{"shape":"Tags"}
2820
- },
2821
- "payload":"Tags"
2822
- },
2823
- "LocationList":{
2824
- "type":"list",
2825
- "member":{
2826
- "shape":"string",
2827
- "locationName":"Location"
2828
- }
2829
- },
2830
- "LoggingConfig":{
2831
- "type":"structure",
2832
- "required":[
2833
- "Enabled",
2834
- "IncludeCookies",
2835
- "Bucket",
2836
- "Prefix"
2837
- ],
2838
- "members":{
2839
- "Enabled":{"shape":"boolean"},
2840
- "IncludeCookies":{"shape":"boolean"},
2841
- "Bucket":{"shape":"string"},
2842
- "Prefix":{"shape":"string"}
2843
- }
2844
- },
2845
- "Method":{
2846
- "type":"string",
2847
- "enum":[
2848
- "GET",
2849
- "HEAD",
2850
- "POST",
2851
- "PUT",
2852
- "PATCH",
2853
- "OPTIONS",
2854
- "DELETE"
2855
- ]
2856
- },
2857
- "MethodsList":{
2858
- "type":"list",
2859
- "member":{
2860
- "shape":"Method",
2861
- "locationName":"Method"
2862
- }
2863
- },
2864
- "MinimumProtocolVersion":{
2865
- "type":"string",
2866
- "enum":[
2867
- "SSLv3",
2868
- "TLSv1",
2869
- "TLSv1_2016",
2870
- "TLSv1.1_2016",
2871
- "TLSv1.2_2018"
2872
- ]
2873
- },
2874
- "MissingBody":{
2875
- "type":"structure",
2876
- "members":{
2877
- "Message":{"shape":"string"}
2878
- },
2879
- "error":{"httpStatusCode":400},
2880
- "exception":true
2881
- },
2882
- "NoSuchCloudFrontOriginAccessIdentity":{
2883
- "type":"structure",
2884
- "members":{
2885
- "Message":{"shape":"string"}
2886
- },
2887
- "error":{"httpStatusCode":404},
2888
- "exception":true
2889
- },
2890
- "NoSuchDistribution":{
2891
- "type":"structure",
2892
- "members":{
2893
- "Message":{"shape":"string"}
2894
- },
2895
- "error":{"httpStatusCode":404},
2896
- "exception":true
2897
- },
2898
- "NoSuchFieldLevelEncryptionConfig":{
2899
- "type":"structure",
2900
- "members":{
2901
- "Message":{"shape":"string"}
2902
- },
2903
- "error":{"httpStatusCode":404},
2904
- "exception":true
2905
- },
2906
- "NoSuchFieldLevelEncryptionProfile":{
2907
- "type":"structure",
2908
- "members":{
2909
- "Message":{"shape":"string"}
2910
- },
2911
- "error":{"httpStatusCode":404},
2912
- "exception":true
2913
- },
2914
- "NoSuchInvalidation":{
2915
- "type":"structure",
2916
- "members":{
2917
- "Message":{"shape":"string"}
2918
- },
2919
- "error":{"httpStatusCode":404},
2920
- "exception":true
2921
- },
2922
- "NoSuchOrigin":{
2923
- "type":"structure",
2924
- "members":{
2925
- "Message":{"shape":"string"}
2926
- },
2927
- "error":{"httpStatusCode":404},
2928
- "exception":true
2929
- },
2930
- "NoSuchPublicKey":{
2931
- "type":"structure",
2932
- "members":{
2933
- "Message":{"shape":"string"}
2934
- },
2935
- "error":{"httpStatusCode":404},
2936
- "exception":true
2937
- },
2938
- "NoSuchResource":{
2939
- "type":"structure",
2940
- "members":{
2941
- "Message":{"shape":"string"}
2942
- },
2943
- "error":{"httpStatusCode":404},
2944
- "exception":true
2945
- },
2946
- "NoSuchStreamingDistribution":{
2947
- "type":"structure",
2948
- "members":{
2949
- "Message":{"shape":"string"}
2950
- },
2951
- "error":{"httpStatusCode":404},
2952
- "exception":true
2953
- },
2954
- "Origin":{
2955
- "type":"structure",
2956
- "required":[
2957
- "Id",
2958
- "DomainName"
2959
- ],
2960
- "members":{
2961
- "Id":{"shape":"string"},
2962
- "DomainName":{"shape":"string"},
2963
- "OriginPath":{"shape":"string"},
2964
- "CustomHeaders":{"shape":"CustomHeaders"},
2965
- "S3OriginConfig":{"shape":"S3OriginConfig"},
2966
- "CustomOriginConfig":{"shape":"CustomOriginConfig"}
2967
- }
2968
- },
2969
- "OriginCustomHeader":{
2970
- "type":"structure",
2971
- "required":[
2972
- "HeaderName",
2973
- "HeaderValue"
2974
- ],
2975
- "members":{
2976
- "HeaderName":{"shape":"string"},
2977
- "HeaderValue":{"shape":"string"}
2978
- }
2979
- },
2980
- "OriginCustomHeadersList":{
2981
- "type":"list",
2982
- "member":{
2983
- "shape":"OriginCustomHeader",
2984
- "locationName":"OriginCustomHeader"
2985
- }
2986
- },
2987
- "OriginGroup":{
2988
- "type":"structure",
2989
- "required":[
2990
- "Id",
2991
- "FailoverCriteria",
2992
- "Members"
2993
- ],
2994
- "members":{
2995
- "Id":{"shape":"string"},
2996
- "FailoverCriteria":{"shape":"OriginGroupFailoverCriteria"},
2997
- "Members":{"shape":"OriginGroupMembers"}
2998
- }
2999
- },
3000
- "OriginGroupFailoverCriteria":{
3001
- "type":"structure",
3002
- "required":["StatusCodes"],
3003
- "members":{
3004
- "StatusCodes":{"shape":"StatusCodes"}
3005
- }
3006
- },
3007
- "OriginGroupList":{
3008
- "type":"list",
3009
- "member":{
3010
- "shape":"OriginGroup",
3011
- "locationName":"OriginGroup"
3012
- }
3013
- },
3014
- "OriginGroupMember":{
3015
- "type":"structure",
3016
- "required":["OriginId"],
3017
- "members":{
3018
- "OriginId":{"shape":"string"}
3019
- }
3020
- },
3021
- "OriginGroupMemberList":{
3022
- "type":"list",
3023
- "member":{
3024
- "shape":"OriginGroupMember",
3025
- "locationName":"OriginGroupMember"
3026
- },
3027
- "max":2,
3028
- "min":2
3029
- },
3030
- "OriginGroupMembers":{
3031
- "type":"structure",
3032
- "required":[
3033
- "Quantity",
3034
- "Items"
3035
- ],
3036
- "members":{
3037
- "Quantity":{"shape":"integer"},
3038
- "Items":{"shape":"OriginGroupMemberList"}
3039
- }
3040
- },
3041
- "OriginGroups":{
3042
- "type":"structure",
3043
- "required":["Quantity"],
3044
- "members":{
3045
- "Quantity":{"shape":"integer"},
3046
- "Items":{"shape":"OriginGroupList"}
3047
- }
3048
- },
3049
- "OriginList":{
3050
- "type":"list",
3051
- "member":{
3052
- "shape":"Origin",
3053
- "locationName":"Origin"
3054
- },
3055
- "min":1
3056
- },
3057
- "OriginProtocolPolicy":{
3058
- "type":"string",
3059
- "enum":[
3060
- "http-only",
3061
- "match-viewer",
3062
- "https-only"
3063
- ]
3064
- },
3065
- "OriginSslProtocols":{
3066
- "type":"structure",
3067
- "required":[
3068
- "Quantity",
3069
- "Items"
3070
- ],
3071
- "members":{
3072
- "Quantity":{"shape":"integer"},
3073
- "Items":{"shape":"SslProtocolsList"}
3074
- }
3075
- },
3076
- "Origins":{
3077
- "type":"structure",
3078
- "required":[
3079
- "Quantity",
3080
- "Items"
3081
- ],
3082
- "members":{
3083
- "Quantity":{"shape":"integer"},
3084
- "Items":{"shape":"OriginList"}
3085
- }
3086
- },
3087
- "PathList":{
3088
- "type":"list",
3089
- "member":{
3090
- "shape":"string",
3091
- "locationName":"Path"
3092
- }
3093
- },
3094
- "Paths":{
3095
- "type":"structure",
3096
- "required":["Quantity"],
3097
- "members":{
3098
- "Quantity":{"shape":"integer"},
3099
- "Items":{"shape":"PathList"}
3100
- }
3101
- },
3102
- "PreconditionFailed":{
3103
- "type":"structure",
3104
- "members":{
3105
- "Message":{"shape":"string"}
3106
- },
3107
- "error":{"httpStatusCode":412},
3108
- "exception":true
3109
- },
3110
- "PriceClass":{
3111
- "type":"string",
3112
- "enum":[
3113
- "PriceClass_100",
3114
- "PriceClass_200",
3115
- "PriceClass_All"
3116
- ]
3117
- },
3118
- "PublicKey":{
3119
- "type":"structure",
3120
- "required":[
3121
- "Id",
3122
- "CreatedTime",
3123
- "PublicKeyConfig"
3124
- ],
3125
- "members":{
3126
- "Id":{"shape":"string"},
3127
- "CreatedTime":{"shape":"timestamp"},
3128
- "PublicKeyConfig":{"shape":"PublicKeyConfig"}
3129
- }
3130
- },
3131
- "PublicKeyAlreadyExists":{
3132
- "type":"structure",
3133
- "members":{
3134
- "Message":{"shape":"string"}
3135
- },
3136
- "error":{"httpStatusCode":409},
3137
- "exception":true
3138
- },
3139
- "PublicKeyConfig":{
3140
- "type":"structure",
3141
- "required":[
3142
- "CallerReference",
3143
- "Name",
3144
- "EncodedKey"
3145
- ],
3146
- "members":{
3147
- "CallerReference":{"shape":"string"},
3148
- "Name":{"shape":"string"},
3149
- "EncodedKey":{"shape":"string"},
3150
- "Comment":{"shape":"string"}
3151
- }
3152
- },
3153
- "PublicKeyInUse":{
3154
- "type":"structure",
3155
- "members":{
3156
- "Message":{"shape":"string"}
3157
- },
3158
- "error":{"httpStatusCode":409},
3159
- "exception":true
3160
- },
3161
- "PublicKeyList":{
3162
- "type":"structure",
3163
- "required":[
3164
- "MaxItems",
3165
- "Quantity"
3166
- ],
3167
- "members":{
3168
- "NextMarker":{"shape":"string"},
3169
- "MaxItems":{"shape":"integer"},
3170
- "Quantity":{"shape":"integer"},
3171
- "Items":{"shape":"PublicKeySummaryList"}
3172
- }
3173
- },
3174
- "PublicKeySummary":{
3175
- "type":"structure",
3176
- "required":[
3177
- "Id",
3178
- "Name",
3179
- "CreatedTime",
3180
- "EncodedKey"
3181
- ],
3182
- "members":{
3183
- "Id":{"shape":"string"},
3184
- "Name":{"shape":"string"},
3185
- "CreatedTime":{"shape":"timestamp"},
3186
- "EncodedKey":{"shape":"string"},
3187
- "Comment":{"shape":"string"}
3188
- }
3189
- },
3190
- "PublicKeySummaryList":{
3191
- "type":"list",
3192
- "member":{
3193
- "shape":"PublicKeySummary",
3194
- "locationName":"PublicKeySummary"
3195
- }
3196
- },
3197
- "QueryArgProfile":{
3198
- "type":"structure",
3199
- "required":[
3200
- "QueryArg",
3201
- "ProfileId"
3202
- ],
3203
- "members":{
3204
- "QueryArg":{"shape":"string"},
3205
- "ProfileId":{"shape":"string"}
3206
- }
3207
- },
3208
- "QueryArgProfileConfig":{
3209
- "type":"structure",
3210
- "required":["ForwardWhenQueryArgProfileIsUnknown"],
3211
- "members":{
3212
- "ForwardWhenQueryArgProfileIsUnknown":{"shape":"boolean"},
3213
- "QueryArgProfiles":{"shape":"QueryArgProfiles"}
3214
- }
3215
- },
3216
- "QueryArgProfileEmpty":{
3217
- "type":"structure",
3218
- "members":{
3219
- "Message":{"shape":"string"}
3220
- },
3221
- "error":{"httpStatusCode":400},
3222
- "exception":true
3223
- },
3224
- "QueryArgProfileList":{
3225
- "type":"list",
3226
- "member":{
3227
- "shape":"QueryArgProfile",
3228
- "locationName":"QueryArgProfile"
3229
- }
3230
- },
3231
- "QueryArgProfiles":{
3232
- "type":"structure",
3233
- "required":["Quantity"],
3234
- "members":{
3235
- "Quantity":{"shape":"integer"},
3236
- "Items":{"shape":"QueryArgProfileList"}
3237
- }
3238
- },
3239
- "QueryStringCacheKeys":{
3240
- "type":"structure",
3241
- "required":["Quantity"],
3242
- "members":{
3243
- "Quantity":{"shape":"integer"},
3244
- "Items":{"shape":"QueryStringCacheKeysList"}
3245
- }
3246
- },
3247
- "QueryStringCacheKeysList":{
3248
- "type":"list",
3249
- "member":{
3250
- "shape":"string",
3251
- "locationName":"Name"
3252
- }
3253
- },
3254
- "ResourceARN":{
3255
- "type":"string",
3256
- "pattern":"arn:aws(-cn)?:cloudfront::[0-9]+:.*"
3257
- },
3258
- "Restrictions":{
3259
- "type":"structure",
3260
- "required":["GeoRestriction"],
3261
- "members":{
3262
- "GeoRestriction":{"shape":"GeoRestriction"}
3263
- }
3264
- },
3265
- "S3Origin":{
3266
- "type":"structure",
3267
- "required":[
3268
- "DomainName",
3269
- "OriginAccessIdentity"
3270
- ],
3271
- "members":{
3272
- "DomainName":{"shape":"string"},
3273
- "OriginAccessIdentity":{"shape":"string"}
3274
- }
3275
- },
3276
- "S3OriginConfig":{
3277
- "type":"structure",
3278
- "required":["OriginAccessIdentity"],
3279
- "members":{
3280
- "OriginAccessIdentity":{"shape":"string"}
3281
- }
3282
- },
3283
- "SSLSupportMethod":{
3284
- "type":"string",
3285
- "enum":[
3286
- "sni-only",
3287
- "vip"
3288
- ]
3289
- },
3290
- "Signer":{
3291
- "type":"structure",
3292
- "members":{
3293
- "AwsAccountNumber":{"shape":"string"},
3294
- "KeyPairIds":{"shape":"KeyPairIds"}
3295
- }
3296
- },
3297
- "SignerList":{
3298
- "type":"list",
3299
- "member":{
3300
- "shape":"Signer",
3301
- "locationName":"Signer"
3302
- }
3303
- },
3304
- "SslProtocol":{
3305
- "type":"string",
3306
- "enum":[
3307
- "SSLv3",
3308
- "TLSv1",
3309
- "TLSv1.1",
3310
- "TLSv1.2"
3311
- ]
3312
- },
3313
- "SslProtocolsList":{
3314
- "type":"list",
3315
- "member":{
3316
- "shape":"SslProtocol",
3317
- "locationName":"SslProtocol"
3318
- }
3319
- },
3320
- "StatusCodeList":{
3321
- "type":"list",
3322
- "member":{
3323
- "shape":"integer",
3324
- "locationName":"StatusCode"
3325
- },
3326
- "min":1
3327
- },
3328
- "StatusCodes":{
3329
- "type":"structure",
3330
- "required":[
3331
- "Quantity",
3332
- "Items"
3333
- ],
3334
- "members":{
3335
- "Quantity":{"shape":"integer"},
3336
- "Items":{"shape":"StatusCodeList"}
3337
- }
3338
- },
3339
- "StreamingDistribution":{
3340
- "type":"structure",
3341
- "required":[
3342
- "Id",
3343
- "ARN",
3344
- "Status",
3345
- "DomainName",
3346
- "ActiveTrustedSigners",
3347
- "StreamingDistributionConfig"
3348
- ],
3349
- "members":{
3350
- "Id":{"shape":"string"},
3351
- "ARN":{"shape":"string"},
3352
- "Status":{"shape":"string"},
3353
- "LastModifiedTime":{"shape":"timestamp"},
3354
- "DomainName":{"shape":"string"},
3355
- "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
3356
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
3357
- }
3358
- },
3359
- "StreamingDistributionAlreadyExists":{
3360
- "type":"structure",
3361
- "members":{
3362
- "Message":{"shape":"string"}
3363
- },
3364
- "error":{"httpStatusCode":409},
3365
- "exception":true
3366
- },
3367
- "StreamingDistributionConfig":{
3368
- "type":"structure",
3369
- "required":[
3370
- "CallerReference",
3371
- "S3Origin",
3372
- "Comment",
3373
- "TrustedSigners",
3374
- "Enabled"
3375
- ],
3376
- "members":{
3377
- "CallerReference":{"shape":"string"},
3378
- "S3Origin":{"shape":"S3Origin"},
3379
- "Aliases":{"shape":"Aliases"},
3380
- "Comment":{"shape":"string"},
3381
- "Logging":{"shape":"StreamingLoggingConfig"},
3382
- "TrustedSigners":{"shape":"TrustedSigners"},
3383
- "PriceClass":{"shape":"PriceClass"},
3384
- "Enabled":{"shape":"boolean"}
3385
- }
3386
- },
3387
- "StreamingDistributionConfigWithTags":{
3388
- "type":"structure",
3389
- "required":[
3390
- "StreamingDistributionConfig",
3391
- "Tags"
3392
- ],
3393
- "members":{
3394
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
3395
- "Tags":{"shape":"Tags"}
3396
- }
3397
- },
3398
- "StreamingDistributionList":{
3399
- "type":"structure",
3400
- "required":[
3401
- "Marker",
3402
- "MaxItems",
3403
- "IsTruncated",
3404
- "Quantity"
3405
- ],
3406
- "members":{
3407
- "Marker":{"shape":"string"},
3408
- "NextMarker":{"shape":"string"},
3409
- "MaxItems":{"shape":"integer"},
3410
- "IsTruncated":{"shape":"boolean"},
3411
- "Quantity":{"shape":"integer"},
3412
- "Items":{"shape":"StreamingDistributionSummaryList"}
3413
- }
3414
- },
3415
- "StreamingDistributionNotDisabled":{
3416
- "type":"structure",
3417
- "members":{
3418
- "Message":{"shape":"string"}
3419
- },
3420
- "error":{"httpStatusCode":409},
3421
- "exception":true
3422
- },
3423
- "StreamingDistributionSummary":{
3424
- "type":"structure",
3425
- "required":[
3426
- "Id",
3427
- "ARN",
3428
- "Status",
3429
- "LastModifiedTime",
3430
- "DomainName",
3431
- "S3Origin",
3432
- "Aliases",
3433
- "TrustedSigners",
3434
- "Comment",
3435
- "PriceClass",
3436
- "Enabled"
3437
- ],
3438
- "members":{
3439
- "Id":{"shape":"string"},
3440
- "ARN":{"shape":"string"},
3441
- "Status":{"shape":"string"},
3442
- "LastModifiedTime":{"shape":"timestamp"},
3443
- "DomainName":{"shape":"string"},
3444
- "S3Origin":{"shape":"S3Origin"},
3445
- "Aliases":{"shape":"Aliases"},
3446
- "TrustedSigners":{"shape":"TrustedSigners"},
3447
- "Comment":{"shape":"string"},
3448
- "PriceClass":{"shape":"PriceClass"},
3449
- "Enabled":{"shape":"boolean"}
3450
- }
3451
- },
3452
- "StreamingDistributionSummaryList":{
3453
- "type":"list",
3454
- "member":{
3455
- "shape":"StreamingDistributionSummary",
3456
- "locationName":"StreamingDistributionSummary"
3457
- }
3458
- },
3459
- "StreamingLoggingConfig":{
3460
- "type":"structure",
3461
- "required":[
3462
- "Enabled",
3463
- "Bucket",
3464
- "Prefix"
3465
- ],
3466
- "members":{
3467
- "Enabled":{"shape":"boolean"},
3468
- "Bucket":{"shape":"string"},
3469
- "Prefix":{"shape":"string"}
3470
- }
3471
- },
3472
- "Tag":{
3473
- "type":"structure",
3474
- "required":["Key"],
3475
- "members":{
3476
- "Key":{"shape":"TagKey"},
3477
- "Value":{"shape":"TagValue"}
3478
- }
3479
- },
3480
- "TagKey":{
3481
- "type":"string",
3482
- "max":128,
3483
- "min":1,
3484
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3485
- },
3486
- "TagKeyList":{
3487
- "type":"list",
3488
- "member":{
3489
- "shape":"TagKey",
3490
- "locationName":"Key"
3491
- }
3492
- },
3493
- "TagKeys":{
3494
- "type":"structure",
3495
- "members":{
3496
- "Items":{"shape":"TagKeyList"}
3497
- }
3498
- },
3499
- "TagList":{
3500
- "type":"list",
3501
- "member":{
3502
- "shape":"Tag",
3503
- "locationName":"Tag"
3504
- }
3505
- },
3506
- "TagResourceRequest":{
3507
- "type":"structure",
3508
- "required":[
3509
- "Resource",
3510
- "Tags"
3511
- ],
3512
- "members":{
3513
- "Resource":{
3514
- "shape":"ResourceARN",
3515
- "location":"querystring",
3516
- "locationName":"Resource"
3517
- },
3518
- "Tags":{
3519
- "shape":"Tags",
3520
- "locationName":"Tags",
3521
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3522
- }
3523
- },
3524
- "payload":"Tags"
3525
- },
3526
- "TagValue":{
3527
- "type":"string",
3528
- "max":256,
3529
- "min":0,
3530
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3531
- },
3532
- "Tags":{
3533
- "type":"structure",
3534
- "members":{
3535
- "Items":{"shape":"TagList"}
3536
- }
3537
- },
3538
- "TooManyCacheBehaviors":{
3539
- "type":"structure",
3540
- "members":{
3541
- "Message":{"shape":"string"}
3542
- },
3543
- "error":{"httpStatusCode":400},
3544
- "exception":true
3545
- },
3546
- "TooManyCertificates":{
3547
- "type":"structure",
3548
- "members":{
3549
- "Message":{"shape":"string"}
3550
- },
3551
- "error":{"httpStatusCode":400},
3552
- "exception":true
3553
- },
3554
- "TooManyCloudFrontOriginAccessIdentities":{
3555
- "type":"structure",
3556
- "members":{
3557
- "Message":{"shape":"string"}
3558
- },
3559
- "error":{"httpStatusCode":400},
3560
- "exception":true
3561
- },
3562
- "TooManyCookieNamesInWhiteList":{
3563
- "type":"structure",
3564
- "members":{
3565
- "Message":{"shape":"string"}
3566
- },
3567
- "error":{"httpStatusCode":400},
3568
- "exception":true
3569
- },
3570
- "TooManyDistributionCNAMEs":{
3571
- "type":"structure",
3572
- "members":{
3573
- "Message":{"shape":"string"}
3574
- },
3575
- "error":{"httpStatusCode":400},
3576
- "exception":true
3577
- },
3578
- "TooManyDistributions":{
3579
- "type":"structure",
3580
- "members":{
3581
- "Message":{"shape":"string"}
3582
- },
3583
- "error":{"httpStatusCode":400},
3584
- "exception":true
3585
- },
3586
- "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig":{
3587
- "type":"structure",
3588
- "members":{
3589
- "Message":{"shape":"string"}
3590
- },
3591
- "error":{"httpStatusCode":400},
3592
- "exception":true
3593
- },
3594
- "TooManyDistributionsWithLambdaAssociations":{
3595
- "type":"structure",
3596
- "members":{
3597
- "Message":{"shape":"string"}
3598
- },
3599
- "error":{"httpStatusCode":400},
3600
- "exception":true
3601
- },
3602
- "TooManyFieldLevelEncryptionConfigs":{
3603
- "type":"structure",
3604
- "members":{
3605
- "Message":{"shape":"string"}
3606
- },
3607
- "error":{"httpStatusCode":400},
3608
- "exception":true
3609
- },
3610
- "TooManyFieldLevelEncryptionContentTypeProfiles":{
3611
- "type":"structure",
3612
- "members":{
3613
- "Message":{"shape":"string"}
3614
- },
3615
- "error":{"httpStatusCode":400},
3616
- "exception":true
3617
- },
3618
- "TooManyFieldLevelEncryptionEncryptionEntities":{
3619
- "type":"structure",
3620
- "members":{
3621
- "Message":{"shape":"string"}
3622
- },
3623
- "error":{"httpStatusCode":400},
3624
- "exception":true
3625
- },
3626
- "TooManyFieldLevelEncryptionFieldPatterns":{
3627
- "type":"structure",
3628
- "members":{
3629
- "Message":{"shape":"string"}
3630
- },
3631
- "error":{"httpStatusCode":400},
3632
- "exception":true
3633
- },
3634
- "TooManyFieldLevelEncryptionProfiles":{
3635
- "type":"structure",
3636
- "members":{
3637
- "Message":{"shape":"string"}
3638
- },
3639
- "error":{"httpStatusCode":400},
3640
- "exception":true
3641
- },
3642
- "TooManyFieldLevelEncryptionQueryArgProfiles":{
3643
- "type":"structure",
3644
- "members":{
3645
- "Message":{"shape":"string"}
3646
- },
3647
- "error":{"httpStatusCode":400},
3648
- "exception":true
3649
- },
3650
- "TooManyHeadersInForwardedValues":{
3651
- "type":"structure",
3652
- "members":{
3653
- "Message":{"shape":"string"}
3654
- },
3655
- "error":{"httpStatusCode":400},
3656
- "exception":true
3657
- },
3658
- "TooManyInvalidationsInProgress":{
3659
- "type":"structure",
3660
- "members":{
3661
- "Message":{"shape":"string"}
3662
- },
3663
- "error":{"httpStatusCode":400},
3664
- "exception":true
3665
- },
3666
- "TooManyLambdaFunctionAssociations":{
3667
- "type":"structure",
3668
- "members":{
3669
- "Message":{"shape":"string"}
3670
- },
3671
- "error":{"httpStatusCode":400},
3672
- "exception":true
3673
- },
3674
- "TooManyOriginCustomHeaders":{
3675
- "type":"structure",
3676
- "members":{
3677
- "Message":{"shape":"string"}
3678
- },
3679
- "error":{"httpStatusCode":400},
3680
- "exception":true
3681
- },
3682
- "TooManyOriginGroupsPerDistribution":{
3683
- "type":"structure",
3684
- "members":{
3685
- "Message":{"shape":"string"}
3686
- },
3687
- "error":{"httpStatusCode":400},
3688
- "exception":true
3689
- },
3690
- "TooManyOrigins":{
3691
- "type":"structure",
3692
- "members":{
3693
- "Message":{"shape":"string"}
3694
- },
3695
- "error":{"httpStatusCode":400},
3696
- "exception":true
3697
- },
3698
- "TooManyPublicKeys":{
3699
- "type":"structure",
3700
- "members":{
3701
- "Message":{"shape":"string"}
3702
- },
3703
- "error":{"httpStatusCode":400},
3704
- "exception":true
3705
- },
3706
- "TooManyQueryStringParameters":{
3707
- "type":"structure",
3708
- "members":{
3709
- "Message":{"shape":"string"}
3710
- },
3711
- "error":{"httpStatusCode":400},
3712
- "exception":true
3713
- },
3714
- "TooManyStreamingDistributionCNAMEs":{
3715
- "type":"structure",
3716
- "members":{
3717
- "Message":{"shape":"string"}
3718
- },
3719
- "error":{"httpStatusCode":400},
3720
- "exception":true
3721
- },
3722
- "TooManyStreamingDistributions":{
3723
- "type":"structure",
3724
- "members":{
3725
- "Message":{"shape":"string"}
3726
- },
3727
- "error":{"httpStatusCode":400},
3728
- "exception":true
3729
- },
3730
- "TooManyTrustedSigners":{
3731
- "type":"structure",
3732
- "members":{
3733
- "Message":{"shape":"string"}
3734
- },
3735
- "error":{"httpStatusCode":400},
3736
- "exception":true
3737
- },
3738
- "TrustedSignerDoesNotExist":{
3739
- "type":"structure",
3740
- "members":{
3741
- "Message":{"shape":"string"}
3742
- },
3743
- "error":{"httpStatusCode":400},
3744
- "exception":true
3745
- },
3746
- "TrustedSigners":{
3747
- "type":"structure",
3748
- "required":[
3749
- "Enabled",
3750
- "Quantity"
3751
- ],
3752
- "members":{
3753
- "Enabled":{"shape":"boolean"},
3754
- "Quantity":{"shape":"integer"},
3755
- "Items":{"shape":"AwsAccountNumberList"}
3756
- }
3757
- },
3758
- "UntagResourceRequest":{
3759
- "type":"structure",
3760
- "required":[
3761
- "Resource",
3762
- "TagKeys"
3763
- ],
3764
- "members":{
3765
- "Resource":{
3766
- "shape":"ResourceARN",
3767
- "location":"querystring",
3768
- "locationName":"Resource"
3769
- },
3770
- "TagKeys":{
3771
- "shape":"TagKeys",
3772
- "locationName":"TagKeys",
3773
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3774
- }
3775
- },
3776
- "payload":"TagKeys"
3777
- },
3778
- "UpdateCloudFrontOriginAccessIdentityRequest":{
3779
- "type":"structure",
3780
- "required":[
3781
- "CloudFrontOriginAccessIdentityConfig",
3782
- "Id"
3783
- ],
3784
- "members":{
3785
- "CloudFrontOriginAccessIdentityConfig":{
3786
- "shape":"CloudFrontOriginAccessIdentityConfig",
3787
- "locationName":"CloudFrontOriginAccessIdentityConfig",
3788
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3789
- },
3790
- "Id":{
3791
- "shape":"string",
3792
- "location":"uri",
3793
- "locationName":"Id"
3794
- },
3795
- "IfMatch":{
3796
- "shape":"string",
3797
- "location":"header",
3798
- "locationName":"If-Match"
3799
- }
3800
- },
3801
- "payload":"CloudFrontOriginAccessIdentityConfig"
3802
- },
3803
- "UpdateCloudFrontOriginAccessIdentityResult":{
3804
- "type":"structure",
3805
- "members":{
3806
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
3807
- "ETag":{
3808
- "shape":"string",
3809
- "location":"header",
3810
- "locationName":"ETag"
3811
- }
3812
- },
3813
- "payload":"CloudFrontOriginAccessIdentity"
3814
- },
3815
- "UpdateDistributionRequest":{
3816
- "type":"structure",
3817
- "required":[
3818
- "DistributionConfig",
3819
- "Id"
3820
- ],
3821
- "members":{
3822
- "DistributionConfig":{
3823
- "shape":"DistributionConfig",
3824
- "locationName":"DistributionConfig",
3825
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3826
- },
3827
- "Id":{
3828
- "shape":"string",
3829
- "location":"uri",
3830
- "locationName":"Id"
3831
- },
3832
- "IfMatch":{
3833
- "shape":"string",
3834
- "location":"header",
3835
- "locationName":"If-Match"
3836
- }
3837
- },
3838
- "payload":"DistributionConfig"
3839
- },
3840
- "UpdateDistributionResult":{
3841
- "type":"structure",
3842
- "members":{
3843
- "Distribution":{"shape":"Distribution"},
3844
- "ETag":{
3845
- "shape":"string",
3846
- "location":"header",
3847
- "locationName":"ETag"
3848
- }
3849
- },
3850
- "payload":"Distribution"
3851
- },
3852
- "UpdateFieldLevelEncryptionConfigRequest":{
3853
- "type":"structure",
3854
- "required":[
3855
- "FieldLevelEncryptionConfig",
3856
- "Id"
3857
- ],
3858
- "members":{
3859
- "FieldLevelEncryptionConfig":{
3860
- "shape":"FieldLevelEncryptionConfig",
3861
- "locationName":"FieldLevelEncryptionConfig",
3862
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3863
- },
3864
- "Id":{
3865
- "shape":"string",
3866
- "location":"uri",
3867
- "locationName":"Id"
3868
- },
3869
- "IfMatch":{
3870
- "shape":"string",
3871
- "location":"header",
3872
- "locationName":"If-Match"
3873
- }
3874
- },
3875
- "payload":"FieldLevelEncryptionConfig"
3876
- },
3877
- "UpdateFieldLevelEncryptionConfigResult":{
3878
- "type":"structure",
3879
- "members":{
3880
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
3881
- "ETag":{
3882
- "shape":"string",
3883
- "location":"header",
3884
- "locationName":"ETag"
3885
- }
3886
- },
3887
- "payload":"FieldLevelEncryption"
3888
- },
3889
- "UpdateFieldLevelEncryptionProfileRequest":{
3890
- "type":"structure",
3891
- "required":[
3892
- "FieldLevelEncryptionProfileConfig",
3893
- "Id"
3894
- ],
3895
- "members":{
3896
- "FieldLevelEncryptionProfileConfig":{
3897
- "shape":"FieldLevelEncryptionProfileConfig",
3898
- "locationName":"FieldLevelEncryptionProfileConfig",
3899
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3900
- },
3901
- "Id":{
3902
- "shape":"string",
3903
- "location":"uri",
3904
- "locationName":"Id"
3905
- },
3906
- "IfMatch":{
3907
- "shape":"string",
3908
- "location":"header",
3909
- "locationName":"If-Match"
3910
- }
3911
- },
3912
- "payload":"FieldLevelEncryptionProfileConfig"
3913
- },
3914
- "UpdateFieldLevelEncryptionProfileResult":{
3915
- "type":"structure",
3916
- "members":{
3917
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
3918
- "ETag":{
3919
- "shape":"string",
3920
- "location":"header",
3921
- "locationName":"ETag"
3922
- }
3923
- },
3924
- "payload":"FieldLevelEncryptionProfile"
3925
- },
3926
- "UpdatePublicKeyRequest":{
3927
- "type":"structure",
3928
- "required":[
3929
- "PublicKeyConfig",
3930
- "Id"
3931
- ],
3932
- "members":{
3933
- "PublicKeyConfig":{
3934
- "shape":"PublicKeyConfig",
3935
- "locationName":"PublicKeyConfig",
3936
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3937
- },
3938
- "Id":{
3939
- "shape":"string",
3940
- "location":"uri",
3941
- "locationName":"Id"
3942
- },
3943
- "IfMatch":{
3944
- "shape":"string",
3945
- "location":"header",
3946
- "locationName":"If-Match"
3947
- }
3948
- },
3949
- "payload":"PublicKeyConfig"
3950
- },
3951
- "UpdatePublicKeyResult":{
3952
- "type":"structure",
3953
- "members":{
3954
- "PublicKey":{"shape":"PublicKey"},
3955
- "ETag":{
3956
- "shape":"string",
3957
- "location":"header",
3958
- "locationName":"ETag"
3959
- }
3960
- },
3961
- "payload":"PublicKey"
3962
- },
3963
- "UpdateStreamingDistributionRequest":{
3964
- "type":"structure",
3965
- "required":[
3966
- "StreamingDistributionConfig",
3967
- "Id"
3968
- ],
3969
- "members":{
3970
- "StreamingDistributionConfig":{
3971
- "shape":"StreamingDistributionConfig",
3972
- "locationName":"StreamingDistributionConfig",
3973
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2019-03-26/"}
3974
- },
3975
- "Id":{
3976
- "shape":"string",
3977
- "location":"uri",
3978
- "locationName":"Id"
3979
- },
3980
- "IfMatch":{
3981
- "shape":"string",
3982
- "location":"header",
3983
- "locationName":"If-Match"
3984
- }
3985
- },
3986
- "payload":"StreamingDistributionConfig"
3987
- },
3988
- "UpdateStreamingDistributionResult":{
3989
- "type":"structure",
3990
- "members":{
3991
- "StreamingDistribution":{"shape":"StreamingDistribution"},
3992
- "ETag":{
3993
- "shape":"string",
3994
- "location":"header",
3995
- "locationName":"ETag"
3996
- }
3997
- },
3998
- "payload":"StreamingDistribution"
3999
- },
4000
- "ViewerCertificate":{
4001
- "type":"structure",
4002
- "members":{
4003
- "CloudFrontDefaultCertificate":{"shape":"boolean"},
4004
- "IAMCertificateId":{"shape":"string"},
4005
- "ACMCertificateArn":{"shape":"string"},
4006
- "SSLSupportMethod":{"shape":"SSLSupportMethod"},
4007
- "MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"},
4008
- "Certificate":{
4009
- "shape":"string",
4010
- "deprecated":true
4011
- },
4012
- "CertificateSource":{
4013
- "shape":"CertificateSource",
4014
- "deprecated":true
4015
- }
4016
- }
4017
- },
4018
- "ViewerProtocolPolicy":{
4019
- "type":"string",
4020
- "enum":[
4021
- "allow-all",
4022
- "https-only",
4023
- "redirect-to-https"
4024
- ]
4025
- },
4026
- "boolean":{"type":"boolean"},
4027
- "integer":{"type":"integer"},
4028
- "long":{"type":"long"},
4029
- "string":{"type":"string"},
4030
- "timestamp":{"type":"timestamp"}
4031
- }
4032
- }