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