aws-sdk-core 2.11.632 → 3.0.0.rc1

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