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,28 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListApplications": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults",
7
- "result_key": "applications"
8
- },
9
- "ListAssociatedAttributeGroups": {
10
- "input_token": "nextToken",
11
- "output_token": "nextToken",
12
- "limit_key": "maxResults",
13
- "result_key": "attributeGroups"
14
- },
15
- "ListAssociatedResources": {
16
- "input_token": "nextToken",
17
- "output_token": "nextToken",
18
- "limit_key": "maxResults",
19
- "result_key": "resources"
20
- },
21
- "ListAttributeGroups": {
22
- "input_token": "nextToken",
23
- "output_token": "nextToken",
24
- "limit_key": "maxResults",
25
- "result_key": "attributeGroups"
26
- }
27
- }
28
- }
@@ -1,4130 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-12-10",
5
- "endpointPrefix":"servicecatalog",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS Service Catalog",
9
- "serviceId":"Service Catalog",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AWS242ServiceCatalogService",
12
- "uid":"servicecatalog-2015-12-10"
13
- },
14
- "operations":{
15
- "AcceptPortfolioShare":{
16
- "name":"AcceptPortfolioShare",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"AcceptPortfolioShareInput"},
22
- "output":{"shape":"AcceptPortfolioShareOutput"},
23
- "errors":[
24
- {"shape":"InvalidParametersException"},
25
- {"shape":"ResourceNotFoundException"},
26
- {"shape":"LimitExceededException"}
27
- ]
28
- },
29
- "AssociateBudgetWithResource":{
30
- "name":"AssociateBudgetWithResource",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"AssociateBudgetWithResourceInput"},
36
- "output":{"shape":"AssociateBudgetWithResourceOutput"},
37
- "errors":[
38
- {"shape":"InvalidParametersException"},
39
- {"shape":"DuplicateResourceException"},
40
- {"shape":"LimitExceededException"},
41
- {"shape":"ResourceNotFoundException"}
42
- ]
43
- },
44
- "AssociatePrincipalWithPortfolio":{
45
- "name":"AssociatePrincipalWithPortfolio",
46
- "http":{
47
- "method":"POST",
48
- "requestUri":"/"
49
- },
50
- "input":{"shape":"AssociatePrincipalWithPortfolioInput"},
51
- "output":{"shape":"AssociatePrincipalWithPortfolioOutput"},
52
- "errors":[
53
- {"shape":"InvalidParametersException"},
54
- {"shape":"ResourceNotFoundException"},
55
- {"shape":"LimitExceededException"}
56
- ]
57
- },
58
- "AssociateProductWithPortfolio":{
59
- "name":"AssociateProductWithPortfolio",
60
- "http":{
61
- "method":"POST",
62
- "requestUri":"/"
63
- },
64
- "input":{"shape":"AssociateProductWithPortfolioInput"},
65
- "output":{"shape":"AssociateProductWithPortfolioOutput"},
66
- "errors":[
67
- {"shape":"InvalidParametersException"},
68
- {"shape":"ResourceNotFoundException"},
69
- {"shape":"LimitExceededException"}
70
- ]
71
- },
72
- "AssociateServiceActionWithProvisioningArtifact":{
73
- "name":"AssociateServiceActionWithProvisioningArtifact",
74
- "http":{
75
- "method":"POST",
76
- "requestUri":"/"
77
- },
78
- "input":{"shape":"AssociateServiceActionWithProvisioningArtifactInput"},
79
- "output":{"shape":"AssociateServiceActionWithProvisioningArtifactOutput"},
80
- "errors":[
81
- {"shape":"ResourceNotFoundException"},
82
- {"shape":"DuplicateResourceException"},
83
- {"shape":"LimitExceededException"}
84
- ]
85
- },
86
- "AssociateTagOptionWithResource":{
87
- "name":"AssociateTagOptionWithResource",
88
- "http":{
89
- "method":"POST",
90
- "requestUri":"/"
91
- },
92
- "input":{"shape":"AssociateTagOptionWithResourceInput"},
93
- "output":{"shape":"AssociateTagOptionWithResourceOutput"},
94
- "errors":[
95
- {"shape":"TagOptionNotMigratedException"},
96
- {"shape":"ResourceNotFoundException"},
97
- {"shape":"InvalidParametersException"},
98
- {"shape":"LimitExceededException"},
99
- {"shape":"DuplicateResourceException"},
100
- {"shape":"InvalidStateException"}
101
- ]
102
- },
103
- "BatchAssociateServiceActionWithProvisioningArtifact":{
104
- "name":"BatchAssociateServiceActionWithProvisioningArtifact",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactInput"},
110
- "output":{"shape":"BatchAssociateServiceActionWithProvisioningArtifactOutput"},
111
- "errors":[
112
- {"shape":"InvalidParametersException"}
113
- ]
114
- },
115
- "BatchDisassociateServiceActionFromProvisioningArtifact":{
116
- "name":"BatchDisassociateServiceActionFromProvisioningArtifact",
117
- "http":{
118
- "method":"POST",
119
- "requestUri":"/"
120
- },
121
- "input":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactInput"},
122
- "output":{"shape":"BatchDisassociateServiceActionFromProvisioningArtifactOutput"},
123
- "errors":[
124
- {"shape":"InvalidParametersException"}
125
- ]
126
- },
127
- "CopyProduct":{
128
- "name":"CopyProduct",
129
- "http":{
130
- "method":"POST",
131
- "requestUri":"/"
132
- },
133
- "input":{"shape":"CopyProductInput"},
134
- "output":{"shape":"CopyProductOutput"},
135
- "errors":[
136
- {"shape":"ResourceNotFoundException"},
137
- {"shape":"InvalidParametersException"}
138
- ]
139
- },
140
- "CreateConstraint":{
141
- "name":"CreateConstraint",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"CreateConstraintInput"},
147
- "output":{"shape":"CreateConstraintOutput"},
148
- "errors":[
149
- {"shape":"ResourceNotFoundException"},
150
- {"shape":"InvalidParametersException"},
151
- {"shape":"LimitExceededException"},
152
- {"shape":"DuplicateResourceException"}
153
- ]
154
- },
155
- "CreatePortfolio":{
156
- "name":"CreatePortfolio",
157
- "http":{
158
- "method":"POST",
159
- "requestUri":"/"
160
- },
161
- "input":{"shape":"CreatePortfolioInput"},
162
- "output":{"shape":"CreatePortfolioOutput"},
163
- "errors":[
164
- {"shape":"InvalidParametersException"},
165
- {"shape":"LimitExceededException"},
166
- {"shape":"TagOptionNotMigratedException"}
167
- ]
168
- },
169
- "CreatePortfolioShare":{
170
- "name":"CreatePortfolioShare",
171
- "http":{
172
- "method":"POST",
173
- "requestUri":"/"
174
- },
175
- "input":{"shape":"CreatePortfolioShareInput"},
176
- "output":{"shape":"CreatePortfolioShareOutput"},
177
- "errors":[
178
- {"shape":"ResourceNotFoundException"},
179
- {"shape":"LimitExceededException"},
180
- {"shape":"InvalidParametersException"},
181
- {"shape":"OperationNotSupportedException"},
182
- {"shape":"InvalidStateException"}
183
- ]
184
- },
185
- "CreateProduct":{
186
- "name":"CreateProduct",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/"
190
- },
191
- "input":{"shape":"CreateProductInput"},
192
- "output":{"shape":"CreateProductOutput"},
193
- "errors":[
194
- {"shape":"InvalidParametersException"},
195
- {"shape":"LimitExceededException"},
196
- {"shape":"TagOptionNotMigratedException"}
197
- ]
198
- },
199
- "CreateProvisionedProductPlan":{
200
- "name":"CreateProvisionedProductPlan",
201
- "http":{
202
- "method":"POST",
203
- "requestUri":"/"
204
- },
205
- "input":{"shape":"CreateProvisionedProductPlanInput"},
206
- "output":{"shape":"CreateProvisionedProductPlanOutput"},
207
- "errors":[
208
- {"shape":"InvalidParametersException"},
209
- {"shape":"ResourceNotFoundException"},
210
- {"shape":"InvalidStateException"}
211
- ]
212
- },
213
- "CreateProvisioningArtifact":{
214
- "name":"CreateProvisioningArtifact",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"CreateProvisioningArtifactInput"},
220
- "output":{"shape":"CreateProvisioningArtifactOutput"},
221
- "errors":[
222
- {"shape":"ResourceNotFoundException"},
223
- {"shape":"InvalidParametersException"},
224
- {"shape":"LimitExceededException"}
225
- ]
226
- },
227
- "CreateServiceAction":{
228
- "name":"CreateServiceAction",
229
- "http":{
230
- "method":"POST",
231
- "requestUri":"/"
232
- },
233
- "input":{"shape":"CreateServiceActionInput"},
234
- "output":{"shape":"CreateServiceActionOutput"},
235
- "errors":[
236
- {"shape":"InvalidParametersException"},
237
- {"shape":"LimitExceededException"}
238
- ]
239
- },
240
- "CreateTagOption":{
241
- "name":"CreateTagOption",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"CreateTagOptionInput"},
247
- "output":{"shape":"CreateTagOptionOutput"},
248
- "errors":[
249
- {"shape":"TagOptionNotMigratedException"},
250
- {"shape":"DuplicateResourceException"},
251
- {"shape":"LimitExceededException"}
252
- ]
253
- },
254
- "DeleteConstraint":{
255
- "name":"DeleteConstraint",
256
- "http":{
257
- "method":"POST",
258
- "requestUri":"/"
259
- },
260
- "input":{"shape":"DeleteConstraintInput"},
261
- "output":{"shape":"DeleteConstraintOutput"},
262
- "errors":[
263
- {"shape":"ResourceNotFoundException"},
264
- {"shape":"InvalidParametersException"}
265
- ]
266
- },
267
- "DeletePortfolio":{
268
- "name":"DeletePortfolio",
269
- "http":{
270
- "method":"POST",
271
- "requestUri":"/"
272
- },
273
- "input":{"shape":"DeletePortfolioInput"},
274
- "output":{"shape":"DeletePortfolioOutput"},
275
- "errors":[
276
- {"shape":"ResourceNotFoundException"},
277
- {"shape":"InvalidParametersException"},
278
- {"shape":"ResourceInUseException"},
279
- {"shape":"TagOptionNotMigratedException"}
280
- ]
281
- },
282
- "DeletePortfolioShare":{
283
- "name":"DeletePortfolioShare",
284
- "http":{
285
- "method":"POST",
286
- "requestUri":"/"
287
- },
288
- "input":{"shape":"DeletePortfolioShareInput"},
289
- "output":{"shape":"DeletePortfolioShareOutput"},
290
- "errors":[
291
- {"shape":"ResourceNotFoundException"},
292
- {"shape":"InvalidParametersException"},
293
- {"shape":"OperationNotSupportedException"},
294
- {"shape":"InvalidStateException"}
295
- ]
296
- },
297
- "DeleteProduct":{
298
- "name":"DeleteProduct",
299
- "http":{
300
- "method":"POST",
301
- "requestUri":"/"
302
- },
303
- "input":{"shape":"DeleteProductInput"},
304
- "output":{"shape":"DeleteProductOutput"},
305
- "errors":[
306
- {"shape":"ResourceNotFoundException"},
307
- {"shape":"ResourceInUseException"},
308
- {"shape":"InvalidParametersException"},
309
- {"shape":"TagOptionNotMigratedException"}
310
- ]
311
- },
312
- "DeleteProvisionedProductPlan":{
313
- "name":"DeleteProvisionedProductPlan",
314
- "http":{
315
- "method":"POST",
316
- "requestUri":"/"
317
- },
318
- "input":{"shape":"DeleteProvisionedProductPlanInput"},
319
- "output":{"shape":"DeleteProvisionedProductPlanOutput"},
320
- "errors":[
321
- {"shape":"InvalidParametersException"},
322
- {"shape":"ResourceNotFoundException"}
323
- ]
324
- },
325
- "DeleteProvisioningArtifact":{
326
- "name":"DeleteProvisioningArtifact",
327
- "http":{
328
- "method":"POST",
329
- "requestUri":"/"
330
- },
331
- "input":{"shape":"DeleteProvisioningArtifactInput"},
332
- "output":{"shape":"DeleteProvisioningArtifactOutput"},
333
- "errors":[
334
- {"shape":"ResourceNotFoundException"},
335
- {"shape":"ResourceInUseException"},
336
- {"shape":"InvalidParametersException"}
337
- ]
338
- },
339
- "DeleteServiceAction":{
340
- "name":"DeleteServiceAction",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"DeleteServiceActionInput"},
346
- "output":{"shape":"DeleteServiceActionOutput"},
347
- "errors":[
348
- {"shape":"ResourceNotFoundException"},
349
- {"shape":"ResourceInUseException"}
350
- ]
351
- },
352
- "DeleteTagOption":{
353
- "name":"DeleteTagOption",
354
- "http":{
355
- "method":"POST",
356
- "requestUri":"/"
357
- },
358
- "input":{"shape":"DeleteTagOptionInput"},
359
- "output":{"shape":"DeleteTagOptionOutput"},
360
- "errors":[
361
- {"shape":"TagOptionNotMigratedException"},
362
- {"shape":"ResourceInUseException"},
363
- {"shape":"ResourceNotFoundException"}
364
- ]
365
- },
366
- "DescribeConstraint":{
367
- "name":"DescribeConstraint",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"DescribeConstraintInput"},
373
- "output":{"shape":"DescribeConstraintOutput"},
374
- "errors":[
375
- {"shape":"ResourceNotFoundException"}
376
- ]
377
- },
378
- "DescribeCopyProductStatus":{
379
- "name":"DescribeCopyProductStatus",
380
- "http":{
381
- "method":"POST",
382
- "requestUri":"/"
383
- },
384
- "input":{"shape":"DescribeCopyProductStatusInput"},
385
- "output":{"shape":"DescribeCopyProductStatusOutput"},
386
- "errors":[
387
- {"shape":"ResourceNotFoundException"}
388
- ]
389
- },
390
- "DescribePortfolio":{
391
- "name":"DescribePortfolio",
392
- "http":{
393
- "method":"POST",
394
- "requestUri":"/"
395
- },
396
- "input":{"shape":"DescribePortfolioInput"},
397
- "output":{"shape":"DescribePortfolioOutput"},
398
- "errors":[
399
- {"shape":"ResourceNotFoundException"}
400
- ]
401
- },
402
- "DescribePortfolioShareStatus":{
403
- "name":"DescribePortfolioShareStatus",
404
- "http":{
405
- "method":"POST",
406
- "requestUri":"/"
407
- },
408
- "input":{"shape":"DescribePortfolioShareStatusInput"},
409
- "output":{"shape":"DescribePortfolioShareStatusOutput"},
410
- "errors":[
411
- {"shape":"ResourceNotFoundException"},
412
- {"shape":"InvalidParametersException"},
413
- {"shape":"OperationNotSupportedException"}
414
- ]
415
- },
416
- "DescribeProduct":{
417
- "name":"DescribeProduct",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"DescribeProductInput"},
423
- "output":{"shape":"DescribeProductOutput"},
424
- "errors":[
425
- {"shape":"ResourceNotFoundException"},
426
- {"shape":"InvalidParametersException"}
427
- ]
428
- },
429
- "DescribeProductAsAdmin":{
430
- "name":"DescribeProductAsAdmin",
431
- "http":{
432
- "method":"POST",
433
- "requestUri":"/"
434
- },
435
- "input":{"shape":"DescribeProductAsAdminInput"},
436
- "output":{"shape":"DescribeProductAsAdminOutput"},
437
- "errors":[
438
- {"shape":"ResourceNotFoundException"},
439
- {"shape":"InvalidParametersException"}
440
- ]
441
- },
442
- "DescribeProductView":{
443
- "name":"DescribeProductView",
444
- "http":{
445
- "method":"POST",
446
- "requestUri":"/"
447
- },
448
- "input":{"shape":"DescribeProductViewInput"},
449
- "output":{"shape":"DescribeProductViewOutput"},
450
- "errors":[
451
- {"shape":"ResourceNotFoundException"},
452
- {"shape":"InvalidParametersException"}
453
- ]
454
- },
455
- "DescribeProvisionedProduct":{
456
- "name":"DescribeProvisionedProduct",
457
- "http":{
458
- "method":"POST",
459
- "requestUri":"/"
460
- },
461
- "input":{"shape":"DescribeProvisionedProductInput"},
462
- "output":{"shape":"DescribeProvisionedProductOutput"},
463
- "errors":[
464
- {"shape":"ResourceNotFoundException"},
465
- {"shape":"InvalidParametersException"}
466
- ]
467
- },
468
- "DescribeProvisionedProductPlan":{
469
- "name":"DescribeProvisionedProductPlan",
470
- "http":{
471
- "method":"POST",
472
- "requestUri":"/"
473
- },
474
- "input":{"shape":"DescribeProvisionedProductPlanInput"},
475
- "output":{"shape":"DescribeProvisionedProductPlanOutput"},
476
- "errors":[
477
- {"shape":"ResourceNotFoundException"},
478
- {"shape":"InvalidParametersException"}
479
- ]
480
- },
481
- "DescribeProvisioningArtifact":{
482
- "name":"DescribeProvisioningArtifact",
483
- "http":{
484
- "method":"POST",
485
- "requestUri":"/"
486
- },
487
- "input":{"shape":"DescribeProvisioningArtifactInput"},
488
- "output":{"shape":"DescribeProvisioningArtifactOutput"},
489
- "errors":[
490
- {"shape":"ResourceNotFoundException"},
491
- {"shape":"InvalidParametersException"}
492
- ]
493
- },
494
- "DescribeProvisioningParameters":{
495
- "name":"DescribeProvisioningParameters",
496
- "http":{
497
- "method":"POST",
498
- "requestUri":"/"
499
- },
500
- "input":{"shape":"DescribeProvisioningParametersInput"},
501
- "output":{"shape":"DescribeProvisioningParametersOutput"},
502
- "errors":[
503
- {"shape":"InvalidParametersException"},
504
- {"shape":"ResourceNotFoundException"}
505
- ]
506
- },
507
- "DescribeRecord":{
508
- "name":"DescribeRecord",
509
- "http":{
510
- "method":"POST",
511
- "requestUri":"/"
512
- },
513
- "input":{"shape":"DescribeRecordInput"},
514
- "output":{"shape":"DescribeRecordOutput"},
515
- "errors":[
516
- {"shape":"ResourceNotFoundException"}
517
- ]
518
- },
519
- "DescribeServiceAction":{
520
- "name":"DescribeServiceAction",
521
- "http":{
522
- "method":"POST",
523
- "requestUri":"/"
524
- },
525
- "input":{"shape":"DescribeServiceActionInput"},
526
- "output":{"shape":"DescribeServiceActionOutput"},
527
- "errors":[
528
- {"shape":"ResourceNotFoundException"}
529
- ]
530
- },
531
- "DescribeServiceActionExecutionParameters":{
532
- "name":"DescribeServiceActionExecutionParameters",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"DescribeServiceActionExecutionParametersInput"},
538
- "output":{"shape":"DescribeServiceActionExecutionParametersOutput"},
539
- "errors":[
540
- {"shape":"InvalidParametersException"},
541
- {"shape":"ResourceNotFoundException"}
542
- ]
543
- },
544
- "DescribeTagOption":{
545
- "name":"DescribeTagOption",
546
- "http":{
547
- "method":"POST",
548
- "requestUri":"/"
549
- },
550
- "input":{"shape":"DescribeTagOptionInput"},
551
- "output":{"shape":"DescribeTagOptionOutput"},
552
- "errors":[
553
- {"shape":"TagOptionNotMigratedException"},
554
- {"shape":"ResourceNotFoundException"}
555
- ]
556
- },
557
- "DisableAWSOrganizationsAccess":{
558
- "name":"DisableAWSOrganizationsAccess",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"DisableAWSOrganizationsAccessInput"},
564
- "output":{"shape":"DisableAWSOrganizationsAccessOutput"},
565
- "errors":[
566
- {"shape":"ResourceNotFoundException"},
567
- {"shape":"InvalidStateException"},
568
- {"shape":"OperationNotSupportedException"}
569
- ]
570
- },
571
- "DisassociateBudgetFromResource":{
572
- "name":"DisassociateBudgetFromResource",
573
- "http":{
574
- "method":"POST",
575
- "requestUri":"/"
576
- },
577
- "input":{"shape":"DisassociateBudgetFromResourceInput"},
578
- "output":{"shape":"DisassociateBudgetFromResourceOutput"},
579
- "errors":[
580
- {"shape":"ResourceNotFoundException"}
581
- ]
582
- },
583
- "DisassociatePrincipalFromPortfolio":{
584
- "name":"DisassociatePrincipalFromPortfolio",
585
- "http":{
586
- "method":"POST",
587
- "requestUri":"/"
588
- },
589
- "input":{"shape":"DisassociatePrincipalFromPortfolioInput"},
590
- "output":{"shape":"DisassociatePrincipalFromPortfolioOutput"},
591
- "errors":[
592
- {"shape":"InvalidParametersException"},
593
- {"shape":"ResourceNotFoundException"}
594
- ]
595
- },
596
- "DisassociateProductFromPortfolio":{
597
- "name":"DisassociateProductFromPortfolio",
598
- "http":{
599
- "method":"POST",
600
- "requestUri":"/"
601
- },
602
- "input":{"shape":"DisassociateProductFromPortfolioInput"},
603
- "output":{"shape":"DisassociateProductFromPortfolioOutput"},
604
- "errors":[
605
- {"shape":"ResourceNotFoundException"},
606
- {"shape":"ResourceInUseException"},
607
- {"shape":"InvalidParametersException"}
608
- ]
609
- },
610
- "DisassociateServiceActionFromProvisioningArtifact":{
611
- "name":"DisassociateServiceActionFromProvisioningArtifact",
612
- "http":{
613
- "method":"POST",
614
- "requestUri":"/"
615
- },
616
- "input":{"shape":"DisassociateServiceActionFromProvisioningArtifactInput"},
617
- "output":{"shape":"DisassociateServiceActionFromProvisioningArtifactOutput"},
618
- "errors":[
619
- {"shape":"ResourceNotFoundException"}
620
- ]
621
- },
622
- "DisassociateTagOptionFromResource":{
623
- "name":"DisassociateTagOptionFromResource",
624
- "http":{
625
- "method":"POST",
626
- "requestUri":"/"
627
- },
628
- "input":{"shape":"DisassociateTagOptionFromResourceInput"},
629
- "output":{"shape":"DisassociateTagOptionFromResourceOutput"},
630
- "errors":[
631
- {"shape":"TagOptionNotMigratedException"},
632
- {"shape":"ResourceNotFoundException"}
633
- ]
634
- },
635
- "EnableAWSOrganizationsAccess":{
636
- "name":"EnableAWSOrganizationsAccess",
637
- "http":{
638
- "method":"POST",
639
- "requestUri":"/"
640
- },
641
- "input":{"shape":"EnableAWSOrganizationsAccessInput"},
642
- "output":{"shape":"EnableAWSOrganizationsAccessOutput"},
643
- "errors":[
644
- {"shape":"ResourceNotFoundException"},
645
- {"shape":"InvalidStateException"},
646
- {"shape":"OperationNotSupportedException"}
647
- ]
648
- },
649
- "ExecuteProvisionedProductPlan":{
650
- "name":"ExecuteProvisionedProductPlan",
651
- "http":{
652
- "method":"POST",
653
- "requestUri":"/"
654
- },
655
- "input":{"shape":"ExecuteProvisionedProductPlanInput"},
656
- "output":{"shape":"ExecuteProvisionedProductPlanOutput"},
657
- "errors":[
658
- {"shape":"InvalidParametersException"},
659
- {"shape":"ResourceNotFoundException"},
660
- {"shape":"InvalidStateException"}
661
- ]
662
- },
663
- "ExecuteProvisionedProductServiceAction":{
664
- "name":"ExecuteProvisionedProductServiceAction",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"ExecuteProvisionedProductServiceActionInput"},
670
- "output":{"shape":"ExecuteProvisionedProductServiceActionOutput"},
671
- "errors":[
672
- {"shape":"InvalidParametersException"},
673
- {"shape":"ResourceNotFoundException"},
674
- {"shape":"InvalidStateException"}
675
- ]
676
- },
677
- "GetAWSOrganizationsAccessStatus":{
678
- "name":"GetAWSOrganizationsAccessStatus",
679
- "http":{
680
- "method":"POST",
681
- "requestUri":"/"
682
- },
683
- "input":{"shape":"GetAWSOrganizationsAccessStatusInput"},
684
- "output":{"shape":"GetAWSOrganizationsAccessStatusOutput"},
685
- "errors":[
686
- {"shape":"ResourceNotFoundException"},
687
- {"shape":"OperationNotSupportedException"}
688
- ]
689
- },
690
- "GetProvisionedProductOutputs":{
691
- "name":"GetProvisionedProductOutputs",
692
- "http":{
693
- "method":"POST",
694
- "requestUri":"/"
695
- },
696
- "input":{"shape":"GetProvisionedProductOutputsInput"},
697
- "output":{"shape":"GetProvisionedProductOutputsOutput"},
698
- "errors":[
699
- {"shape":"InvalidParametersException"},
700
- {"shape":"ResourceNotFoundException"}
701
- ]
702
- },
703
- "ImportAsProvisionedProduct":{
704
- "name":"ImportAsProvisionedProduct",
705
- "http":{
706
- "method":"POST",
707
- "requestUri":"/"
708
- },
709
- "input":{"shape":"ImportAsProvisionedProductInput"},
710
- "output":{"shape":"ImportAsProvisionedProductOutput"},
711
- "errors":[
712
- {"shape":"DuplicateResourceException"},
713
- {"shape":"InvalidStateException"},
714
- {"shape":"ResourceNotFoundException"},
715
- {"shape":"InvalidParametersException"}
716
- ]
717
- },
718
- "ListAcceptedPortfolioShares":{
719
- "name":"ListAcceptedPortfolioShares",
720
- "http":{
721
- "method":"POST",
722
- "requestUri":"/"
723
- },
724
- "input":{"shape":"ListAcceptedPortfolioSharesInput"},
725
- "output":{"shape":"ListAcceptedPortfolioSharesOutput"},
726
- "errors":[
727
- {"shape":"InvalidParametersException"},
728
- {"shape":"OperationNotSupportedException"}
729
- ]
730
- },
731
- "ListBudgetsForResource":{
732
- "name":"ListBudgetsForResource",
733
- "http":{
734
- "method":"POST",
735
- "requestUri":"/"
736
- },
737
- "input":{"shape":"ListBudgetsForResourceInput"},
738
- "output":{"shape":"ListBudgetsForResourceOutput"},
739
- "errors":[
740
- {"shape":"ResourceNotFoundException"},
741
- {"shape":"InvalidParametersException"}
742
- ]
743
- },
744
- "ListConstraintsForPortfolio":{
745
- "name":"ListConstraintsForPortfolio",
746
- "http":{
747
- "method":"POST",
748
- "requestUri":"/"
749
- },
750
- "input":{"shape":"ListConstraintsForPortfolioInput"},
751
- "output":{"shape":"ListConstraintsForPortfolioOutput"},
752
- "errors":[
753
- {"shape":"ResourceNotFoundException"},
754
- {"shape":"InvalidParametersException"}
755
- ]
756
- },
757
- "ListLaunchPaths":{
758
- "name":"ListLaunchPaths",
759
- "http":{
760
- "method":"POST",
761
- "requestUri":"/"
762
- },
763
- "input":{"shape":"ListLaunchPathsInput"},
764
- "output":{"shape":"ListLaunchPathsOutput"},
765
- "errors":[
766
- {"shape":"InvalidParametersException"},
767
- {"shape":"ResourceNotFoundException"}
768
- ]
769
- },
770
- "ListOrganizationPortfolioAccess":{
771
- "name":"ListOrganizationPortfolioAccess",
772
- "http":{
773
- "method":"POST",
774
- "requestUri":"/"
775
- },
776
- "input":{"shape":"ListOrganizationPortfolioAccessInput"},
777
- "output":{"shape":"ListOrganizationPortfolioAccessOutput"},
778
- "errors":[
779
- {"shape":"ResourceNotFoundException"},
780
- {"shape":"InvalidParametersException"},
781
- {"shape":"OperationNotSupportedException"}
782
- ]
783
- },
784
- "ListPortfolioAccess":{
785
- "name":"ListPortfolioAccess",
786
- "http":{
787
- "method":"POST",
788
- "requestUri":"/"
789
- },
790
- "input":{"shape":"ListPortfolioAccessInput"},
791
- "output":{"shape":"ListPortfolioAccessOutput"},
792
- "errors":[
793
- {"shape":"ResourceNotFoundException"},
794
- {"shape":"InvalidParametersException"}
795
- ]
796
- },
797
- "ListPortfolios":{
798
- "name":"ListPortfolios",
799
- "http":{
800
- "method":"POST",
801
- "requestUri":"/"
802
- },
803
- "input":{"shape":"ListPortfoliosInput"},
804
- "output":{"shape":"ListPortfoliosOutput"},
805
- "errors":[
806
- {"shape":"InvalidParametersException"}
807
- ]
808
- },
809
- "ListPortfoliosForProduct":{
810
- "name":"ListPortfoliosForProduct",
811
- "http":{
812
- "method":"POST",
813
- "requestUri":"/"
814
- },
815
- "input":{"shape":"ListPortfoliosForProductInput"},
816
- "output":{"shape":"ListPortfoliosForProductOutput"},
817
- "errors":[
818
- {"shape":"InvalidParametersException"},
819
- {"shape":"ResourceNotFoundException"}
820
- ]
821
- },
822
- "ListPrincipalsForPortfolio":{
823
- "name":"ListPrincipalsForPortfolio",
824
- "http":{
825
- "method":"POST",
826
- "requestUri":"/"
827
- },
828
- "input":{"shape":"ListPrincipalsForPortfolioInput"},
829
- "output":{"shape":"ListPrincipalsForPortfolioOutput"},
830
- "errors":[
831
- {"shape":"ResourceNotFoundException"},
832
- {"shape":"InvalidParametersException"}
833
- ]
834
- },
835
- "ListProvisionedProductPlans":{
836
- "name":"ListProvisionedProductPlans",
837
- "http":{
838
- "method":"POST",
839
- "requestUri":"/"
840
- },
841
- "input":{"shape":"ListProvisionedProductPlansInput"},
842
- "output":{"shape":"ListProvisionedProductPlansOutput"},
843
- "errors":[
844
- {"shape":"ResourceNotFoundException"},
845
- {"shape":"InvalidParametersException"}
846
- ]
847
- },
848
- "ListProvisioningArtifacts":{
849
- "name":"ListProvisioningArtifacts",
850
- "http":{
851
- "method":"POST",
852
- "requestUri":"/"
853
- },
854
- "input":{"shape":"ListProvisioningArtifactsInput"},
855
- "output":{"shape":"ListProvisioningArtifactsOutput"},
856
- "errors":[
857
- {"shape":"ResourceNotFoundException"},
858
- {"shape":"InvalidParametersException"}
859
- ]
860
- },
861
- "ListProvisioningArtifactsForServiceAction":{
862
- "name":"ListProvisioningArtifactsForServiceAction",
863
- "http":{
864
- "method":"POST",
865
- "requestUri":"/"
866
- },
867
- "input":{"shape":"ListProvisioningArtifactsForServiceActionInput"},
868
- "output":{"shape":"ListProvisioningArtifactsForServiceActionOutput"},
869
- "errors":[
870
- {"shape":"ResourceNotFoundException"},
871
- {"shape":"InvalidParametersException"}
872
- ]
873
- },
874
- "ListRecordHistory":{
875
- "name":"ListRecordHistory",
876
- "http":{
877
- "method":"POST",
878
- "requestUri":"/"
879
- },
880
- "input":{"shape":"ListRecordHistoryInput"},
881
- "output":{"shape":"ListRecordHistoryOutput"},
882
- "errors":[
883
- {"shape":"InvalidParametersException"}
884
- ]
885
- },
886
- "ListResourcesForTagOption":{
887
- "name":"ListResourcesForTagOption",
888
- "http":{
889
- "method":"POST",
890
- "requestUri":"/"
891
- },
892
- "input":{"shape":"ListResourcesForTagOptionInput"},
893
- "output":{"shape":"ListResourcesForTagOptionOutput"},
894
- "errors":[
895
- {"shape":"TagOptionNotMigratedException"},
896
- {"shape":"ResourceNotFoundException"},
897
- {"shape":"InvalidParametersException"}
898
- ]
899
- },
900
- "ListServiceActions":{
901
- "name":"ListServiceActions",
902
- "http":{
903
- "method":"POST",
904
- "requestUri":"/"
905
- },
906
- "input":{"shape":"ListServiceActionsInput"},
907
- "output":{"shape":"ListServiceActionsOutput"},
908
- "errors":[
909
- {"shape":"InvalidParametersException"}
910
- ]
911
- },
912
- "ListServiceActionsForProvisioningArtifact":{
913
- "name":"ListServiceActionsForProvisioningArtifact",
914
- "http":{
915
- "method":"POST",
916
- "requestUri":"/"
917
- },
918
- "input":{"shape":"ListServiceActionsForProvisioningArtifactInput"},
919
- "output":{"shape":"ListServiceActionsForProvisioningArtifactOutput"},
920
- "errors":[
921
- {"shape":"ResourceNotFoundException"},
922
- {"shape":"InvalidParametersException"}
923
- ]
924
- },
925
- "ListStackInstancesForProvisionedProduct":{
926
- "name":"ListStackInstancesForProvisionedProduct",
927
- "http":{
928
- "method":"POST",
929
- "requestUri":"/"
930
- },
931
- "input":{"shape":"ListStackInstancesForProvisionedProductInput"},
932
- "output":{"shape":"ListStackInstancesForProvisionedProductOutput"},
933
- "errors":[
934
- {"shape":"InvalidParametersException"},
935
- {"shape":"ResourceNotFoundException"}
936
- ]
937
- },
938
- "ListTagOptions":{
939
- "name":"ListTagOptions",
940
- "http":{
941
- "method":"POST",
942
- "requestUri":"/"
943
- },
944
- "input":{"shape":"ListTagOptionsInput"},
945
- "output":{"shape":"ListTagOptionsOutput"},
946
- "errors":[
947
- {"shape":"TagOptionNotMigratedException"},
948
- {"shape":"InvalidParametersException"}
949
- ]
950
- },
951
- "ProvisionProduct":{
952
- "name":"ProvisionProduct",
953
- "http":{
954
- "method":"POST",
955
- "requestUri":"/"
956
- },
957
- "input":{"shape":"ProvisionProductInput"},
958
- "output":{"shape":"ProvisionProductOutput"},
959
- "errors":[
960
- {"shape":"InvalidParametersException"},
961
- {"shape":"ResourceNotFoundException"},
962
- {"shape":"DuplicateResourceException"}
963
- ]
964
- },
965
- "RejectPortfolioShare":{
966
- "name":"RejectPortfolioShare",
967
- "http":{
968
- "method":"POST",
969
- "requestUri":"/"
970
- },
971
- "input":{"shape":"RejectPortfolioShareInput"},
972
- "output":{"shape":"RejectPortfolioShareOutput"},
973
- "errors":[
974
- {"shape":"ResourceNotFoundException"}
975
- ]
976
- },
977
- "ScanProvisionedProducts":{
978
- "name":"ScanProvisionedProducts",
979
- "http":{
980
- "method":"POST",
981
- "requestUri":"/"
982
- },
983
- "input":{"shape":"ScanProvisionedProductsInput"},
984
- "output":{"shape":"ScanProvisionedProductsOutput"},
985
- "errors":[
986
- {"shape":"InvalidParametersException"}
987
- ]
988
- },
989
- "SearchProducts":{
990
- "name":"SearchProducts",
991
- "http":{
992
- "method":"POST",
993
- "requestUri":"/"
994
- },
995
- "input":{"shape":"SearchProductsInput"},
996
- "output":{"shape":"SearchProductsOutput"},
997
- "errors":[
998
- {"shape":"InvalidParametersException"}
999
- ]
1000
- },
1001
- "SearchProductsAsAdmin":{
1002
- "name":"SearchProductsAsAdmin",
1003
- "http":{
1004
- "method":"POST",
1005
- "requestUri":"/"
1006
- },
1007
- "input":{"shape":"SearchProductsAsAdminInput"},
1008
- "output":{"shape":"SearchProductsAsAdminOutput"},
1009
- "errors":[
1010
- {"shape":"ResourceNotFoundException"},
1011
- {"shape":"InvalidParametersException"}
1012
- ]
1013
- },
1014
- "SearchProvisionedProducts":{
1015
- "name":"SearchProvisionedProducts",
1016
- "http":{
1017
- "method":"POST",
1018
- "requestUri":"/"
1019
- },
1020
- "input":{"shape":"SearchProvisionedProductsInput"},
1021
- "output":{"shape":"SearchProvisionedProductsOutput"},
1022
- "errors":[
1023
- {"shape":"InvalidParametersException"}
1024
- ]
1025
- },
1026
- "TerminateProvisionedProduct":{
1027
- "name":"TerminateProvisionedProduct",
1028
- "http":{
1029
- "method":"POST",
1030
- "requestUri":"/"
1031
- },
1032
- "input":{"shape":"TerminateProvisionedProductInput"},
1033
- "output":{"shape":"TerminateProvisionedProductOutput"},
1034
- "errors":[
1035
- {"shape":"ResourceNotFoundException"}
1036
- ]
1037
- },
1038
- "UpdateConstraint":{
1039
- "name":"UpdateConstraint",
1040
- "http":{
1041
- "method":"POST",
1042
- "requestUri":"/"
1043
- },
1044
- "input":{"shape":"UpdateConstraintInput"},
1045
- "output":{"shape":"UpdateConstraintOutput"},
1046
- "errors":[
1047
- {"shape":"ResourceNotFoundException"},
1048
- {"shape":"InvalidParametersException"}
1049
- ]
1050
- },
1051
- "UpdatePortfolio":{
1052
- "name":"UpdatePortfolio",
1053
- "http":{
1054
- "method":"POST",
1055
- "requestUri":"/"
1056
- },
1057
- "input":{"shape":"UpdatePortfolioInput"},
1058
- "output":{"shape":"UpdatePortfolioOutput"},
1059
- "errors":[
1060
- {"shape":"InvalidParametersException"},
1061
- {"shape":"ResourceNotFoundException"},
1062
- {"shape":"LimitExceededException"},
1063
- {"shape":"TagOptionNotMigratedException"}
1064
- ]
1065
- },
1066
- "UpdateProduct":{
1067
- "name":"UpdateProduct",
1068
- "http":{
1069
- "method":"POST",
1070
- "requestUri":"/"
1071
- },
1072
- "input":{"shape":"UpdateProductInput"},
1073
- "output":{"shape":"UpdateProductOutput"},
1074
- "errors":[
1075
- {"shape":"ResourceNotFoundException"},
1076
- {"shape":"InvalidParametersException"},
1077
- {"shape":"TagOptionNotMigratedException"}
1078
- ]
1079
- },
1080
- "UpdateProvisionedProduct":{
1081
- "name":"UpdateProvisionedProduct",
1082
- "http":{
1083
- "method":"POST",
1084
- "requestUri":"/"
1085
- },
1086
- "input":{"shape":"UpdateProvisionedProductInput"},
1087
- "output":{"shape":"UpdateProvisionedProductOutput"},
1088
- "errors":[
1089
- {"shape":"InvalidParametersException"},
1090
- {"shape":"ResourceNotFoundException"}
1091
- ]
1092
- },
1093
- "UpdateProvisionedProductProperties":{
1094
- "name":"UpdateProvisionedProductProperties",
1095
- "http":{
1096
- "method":"POST",
1097
- "requestUri":"/"
1098
- },
1099
- "input":{"shape":"UpdateProvisionedProductPropertiesInput"},
1100
- "output":{"shape":"UpdateProvisionedProductPropertiesOutput"},
1101
- "errors":[
1102
- {"shape":"InvalidParametersException"},
1103
- {"shape":"ResourceNotFoundException"},
1104
- {"shape":"InvalidStateException"}
1105
- ]
1106
- },
1107
- "UpdateProvisioningArtifact":{
1108
- "name":"UpdateProvisioningArtifact",
1109
- "http":{
1110
- "method":"POST",
1111
- "requestUri":"/"
1112
- },
1113
- "input":{"shape":"UpdateProvisioningArtifactInput"},
1114
- "output":{"shape":"UpdateProvisioningArtifactOutput"},
1115
- "errors":[
1116
- {"shape":"ResourceNotFoundException"},
1117
- {"shape":"InvalidParametersException"}
1118
- ]
1119
- },
1120
- "UpdateServiceAction":{
1121
- "name":"UpdateServiceAction",
1122
- "http":{
1123
- "method":"POST",
1124
- "requestUri":"/"
1125
- },
1126
- "input":{"shape":"UpdateServiceActionInput"},
1127
- "output":{"shape":"UpdateServiceActionOutput"},
1128
- "errors":[
1129
- {"shape":"ResourceNotFoundException"},
1130
- {"shape":"InvalidParametersException"}
1131
- ]
1132
- },
1133
- "UpdateTagOption":{
1134
- "name":"UpdateTagOption",
1135
- "http":{
1136
- "method":"POST",
1137
- "requestUri":"/"
1138
- },
1139
- "input":{"shape":"UpdateTagOptionInput"},
1140
- "output":{"shape":"UpdateTagOptionOutput"},
1141
- "errors":[
1142
- {"shape":"TagOptionNotMigratedException"},
1143
- {"shape":"ResourceNotFoundException"},
1144
- {"shape":"DuplicateResourceException"},
1145
- {"shape":"InvalidParametersException"}
1146
- ]
1147
- }
1148
- },
1149
- "shapes":{
1150
- "AcceptLanguage":{
1151
- "type":"string",
1152
- "max":100
1153
- },
1154
- "AcceptPortfolioShareInput":{
1155
- "type":"structure",
1156
- "required":["PortfolioId"],
1157
- "members":{
1158
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1159
- "PortfolioId":{"shape":"Id"},
1160
- "PortfolioShareType":{"shape":"PortfolioShareType"}
1161
- }
1162
- },
1163
- "AcceptPortfolioShareOutput":{
1164
- "type":"structure",
1165
- "members":{
1166
- }
1167
- },
1168
- "AccessLevelFilter":{
1169
- "type":"structure",
1170
- "members":{
1171
- "Key":{"shape":"AccessLevelFilterKey"},
1172
- "Value":{"shape":"AccessLevelFilterValue"}
1173
- }
1174
- },
1175
- "AccessLevelFilterKey":{
1176
- "type":"string",
1177
- "enum":[
1178
- "Account",
1179
- "Role",
1180
- "User"
1181
- ]
1182
- },
1183
- "AccessLevelFilterValue":{"type":"string"},
1184
- "AccessStatus":{
1185
- "type":"string",
1186
- "enum":[
1187
- "ENABLED",
1188
- "UNDER_CHANGE",
1189
- "DISABLED"
1190
- ]
1191
- },
1192
- "AccountId":{
1193
- "type":"string",
1194
- "pattern":"^[0-9]{12}$"
1195
- },
1196
- "AccountIds":{
1197
- "type":"list",
1198
- "member":{"shape":"AccountId"}
1199
- },
1200
- "AddTags":{
1201
- "type":"list",
1202
- "member":{"shape":"Tag"},
1203
- "max":20
1204
- },
1205
- "AllowedValue":{"type":"string"},
1206
- "AllowedValues":{
1207
- "type":"list",
1208
- "member":{"shape":"AllowedValue"}
1209
- },
1210
- "ApproximateCount":{"type":"integer"},
1211
- "AssociateBudgetWithResourceInput":{
1212
- "type":"structure",
1213
- "required":[
1214
- "BudgetName",
1215
- "ResourceId"
1216
- ],
1217
- "members":{
1218
- "BudgetName":{"shape":"BudgetName"},
1219
- "ResourceId":{"shape":"Id"}
1220
- }
1221
- },
1222
- "AssociateBudgetWithResourceOutput":{
1223
- "type":"structure",
1224
- "members":{
1225
- }
1226
- },
1227
- "AssociatePrincipalWithPortfolioInput":{
1228
- "type":"structure",
1229
- "required":[
1230
- "PortfolioId",
1231
- "PrincipalARN",
1232
- "PrincipalType"
1233
- ],
1234
- "members":{
1235
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1236
- "PortfolioId":{"shape":"Id"},
1237
- "PrincipalARN":{"shape":"PrincipalARN"},
1238
- "PrincipalType":{"shape":"PrincipalType"}
1239
- }
1240
- },
1241
- "AssociatePrincipalWithPortfolioOutput":{
1242
- "type":"structure",
1243
- "members":{
1244
- }
1245
- },
1246
- "AssociateProductWithPortfolioInput":{
1247
- "type":"structure",
1248
- "required":[
1249
- "ProductId",
1250
- "PortfolioId"
1251
- ],
1252
- "members":{
1253
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1254
- "ProductId":{"shape":"Id"},
1255
- "PortfolioId":{"shape":"Id"},
1256
- "SourcePortfolioId":{"shape":"Id"}
1257
- }
1258
- },
1259
- "AssociateProductWithPortfolioOutput":{
1260
- "type":"structure",
1261
- "members":{
1262
- }
1263
- },
1264
- "AssociateServiceActionWithProvisioningArtifactInput":{
1265
- "type":"structure",
1266
- "required":[
1267
- "ProductId",
1268
- "ProvisioningArtifactId",
1269
- "ServiceActionId"
1270
- ],
1271
- "members":{
1272
- "ProductId":{"shape":"Id"},
1273
- "ProvisioningArtifactId":{"shape":"Id"},
1274
- "ServiceActionId":{"shape":"Id"},
1275
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1276
- }
1277
- },
1278
- "AssociateServiceActionWithProvisioningArtifactOutput":{
1279
- "type":"structure",
1280
- "members":{
1281
- }
1282
- },
1283
- "AssociateTagOptionWithResourceInput":{
1284
- "type":"structure",
1285
- "required":[
1286
- "ResourceId",
1287
- "TagOptionId"
1288
- ],
1289
- "members":{
1290
- "ResourceId":{"shape":"ResourceId"},
1291
- "TagOptionId":{"shape":"TagOptionId"}
1292
- }
1293
- },
1294
- "AssociateTagOptionWithResourceOutput":{
1295
- "type":"structure",
1296
- "members":{
1297
- }
1298
- },
1299
- "AttributeValue":{"type":"string"},
1300
- "BatchAssociateServiceActionWithProvisioningArtifactInput":{
1301
- "type":"structure",
1302
- "required":["ServiceActionAssociations"],
1303
- "members":{
1304
- "ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
1305
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1306
- }
1307
- },
1308
- "BatchAssociateServiceActionWithProvisioningArtifactOutput":{
1309
- "type":"structure",
1310
- "members":{
1311
- "FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
1312
- }
1313
- },
1314
- "BatchDisassociateServiceActionFromProvisioningArtifactInput":{
1315
- "type":"structure",
1316
- "required":["ServiceActionAssociations"],
1317
- "members":{
1318
- "ServiceActionAssociations":{"shape":"ServiceActionAssociations"},
1319
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1320
- }
1321
- },
1322
- "BatchDisassociateServiceActionFromProvisioningArtifactOutput":{
1323
- "type":"structure",
1324
- "members":{
1325
- "FailedServiceActionAssociations":{"shape":"FailedServiceActionAssociations"}
1326
- }
1327
- },
1328
- "BudgetDetail":{
1329
- "type":"structure",
1330
- "members":{
1331
- "BudgetName":{"shape":"BudgetName"}
1332
- }
1333
- },
1334
- "BudgetName":{
1335
- "type":"string",
1336
- "max":100,
1337
- "min":1
1338
- },
1339
- "Budgets":{
1340
- "type":"list",
1341
- "member":{"shape":"BudgetDetail"}
1342
- },
1343
- "CausingEntity":{"type":"string"},
1344
- "ChangeAction":{
1345
- "type":"string",
1346
- "enum":[
1347
- "ADD",
1348
- "MODIFY",
1349
- "REMOVE"
1350
- ]
1351
- },
1352
- "CloudWatchDashboard":{
1353
- "type":"structure",
1354
- "members":{
1355
- "Name":{"shape":"CloudWatchDashboardName"}
1356
- }
1357
- },
1358
- "CloudWatchDashboardName":{"type":"string"},
1359
- "CloudWatchDashboards":{
1360
- "type":"list",
1361
- "member":{"shape":"CloudWatchDashboard"}
1362
- },
1363
- "ConstraintDescription":{
1364
- "type":"string",
1365
- "max":2000
1366
- },
1367
- "ConstraintDetail":{
1368
- "type":"structure",
1369
- "members":{
1370
- "ConstraintId":{"shape":"Id"},
1371
- "Type":{"shape":"ConstraintType"},
1372
- "Description":{"shape":"ConstraintDescription"},
1373
- "Owner":{"shape":"AccountId"},
1374
- "ProductId":{"shape":"Id"},
1375
- "PortfolioId":{"shape":"Id"}
1376
- }
1377
- },
1378
- "ConstraintDetails":{
1379
- "type":"list",
1380
- "member":{"shape":"ConstraintDetail"}
1381
- },
1382
- "ConstraintParameters":{"type":"string"},
1383
- "ConstraintSummaries":{
1384
- "type":"list",
1385
- "member":{"shape":"ConstraintSummary"}
1386
- },
1387
- "ConstraintSummary":{
1388
- "type":"structure",
1389
- "members":{
1390
- "Type":{"shape":"ConstraintType"},
1391
- "Description":{"shape":"ConstraintDescription"}
1392
- }
1393
- },
1394
- "ConstraintType":{
1395
- "type":"string",
1396
- "max":1024,
1397
- "min":1
1398
- },
1399
- "CopyOption":{
1400
- "type":"string",
1401
- "enum":["CopyTags"]
1402
- },
1403
- "CopyOptions":{
1404
- "type":"list",
1405
- "member":{"shape":"CopyOption"}
1406
- },
1407
- "CopyProductInput":{
1408
- "type":"structure",
1409
- "required":[
1410
- "SourceProductArn",
1411
- "IdempotencyToken"
1412
- ],
1413
- "members":{
1414
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1415
- "SourceProductArn":{"shape":"ProductArn"},
1416
- "TargetProductId":{"shape":"Id"},
1417
- "TargetProductName":{"shape":"ProductViewName"},
1418
- "SourceProvisioningArtifactIdentifiers":{"shape":"SourceProvisioningArtifactProperties"},
1419
- "CopyOptions":{"shape":"CopyOptions"},
1420
- "IdempotencyToken":{
1421
- "shape":"IdempotencyToken",
1422
- "idempotencyToken":true
1423
- }
1424
- }
1425
- },
1426
- "CopyProductOutput":{
1427
- "type":"structure",
1428
- "members":{
1429
- "CopyProductToken":{"shape":"Id"}
1430
- }
1431
- },
1432
- "CopyProductStatus":{
1433
- "type":"string",
1434
- "enum":[
1435
- "SUCCEEDED",
1436
- "IN_PROGRESS",
1437
- "FAILED"
1438
- ]
1439
- },
1440
- "CreateConstraintInput":{
1441
- "type":"structure",
1442
- "required":[
1443
- "PortfolioId",
1444
- "ProductId",
1445
- "Parameters",
1446
- "Type",
1447
- "IdempotencyToken"
1448
- ],
1449
- "members":{
1450
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1451
- "PortfolioId":{"shape":"Id"},
1452
- "ProductId":{"shape":"Id"},
1453
- "Parameters":{"shape":"ConstraintParameters"},
1454
- "Type":{"shape":"ConstraintType"},
1455
- "Description":{"shape":"ConstraintDescription"},
1456
- "IdempotencyToken":{
1457
- "shape":"IdempotencyToken",
1458
- "idempotencyToken":true
1459
- }
1460
- }
1461
- },
1462
- "CreateConstraintOutput":{
1463
- "type":"structure",
1464
- "members":{
1465
- "ConstraintDetail":{"shape":"ConstraintDetail"},
1466
- "ConstraintParameters":{"shape":"ConstraintParameters"},
1467
- "Status":{"shape":"Status"}
1468
- }
1469
- },
1470
- "CreatePortfolioInput":{
1471
- "type":"structure",
1472
- "required":[
1473
- "DisplayName",
1474
- "ProviderName",
1475
- "IdempotencyToken"
1476
- ],
1477
- "members":{
1478
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1479
- "DisplayName":{"shape":"PortfolioDisplayName"},
1480
- "Description":{"shape":"PortfolioDescription"},
1481
- "ProviderName":{"shape":"ProviderName"},
1482
- "Tags":{"shape":"AddTags"},
1483
- "IdempotencyToken":{
1484
- "shape":"IdempotencyToken",
1485
- "idempotencyToken":true
1486
- }
1487
- }
1488
- },
1489
- "CreatePortfolioOutput":{
1490
- "type":"structure",
1491
- "members":{
1492
- "PortfolioDetail":{"shape":"PortfolioDetail"},
1493
- "Tags":{"shape":"Tags"}
1494
- }
1495
- },
1496
- "CreatePortfolioShareInput":{
1497
- "type":"structure",
1498
- "required":["PortfolioId"],
1499
- "members":{
1500
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1501
- "PortfolioId":{"shape":"Id"},
1502
- "AccountId":{"shape":"AccountId"},
1503
- "OrganizationNode":{"shape":"OrganizationNode"}
1504
- }
1505
- },
1506
- "CreatePortfolioShareOutput":{
1507
- "type":"structure",
1508
- "members":{
1509
- "PortfolioShareToken":{"shape":"Id"}
1510
- }
1511
- },
1512
- "CreateProductInput":{
1513
- "type":"structure",
1514
- "required":[
1515
- "Name",
1516
- "Owner",
1517
- "ProductType",
1518
- "ProvisioningArtifactParameters",
1519
- "IdempotencyToken"
1520
- ],
1521
- "members":{
1522
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1523
- "Name":{"shape":"ProductViewName"},
1524
- "Owner":{"shape":"ProductViewOwner"},
1525
- "Description":{"shape":"ProductViewShortDescription"},
1526
- "Distributor":{"shape":"ProductViewOwner"},
1527
- "SupportDescription":{"shape":"SupportDescription"},
1528
- "SupportEmail":{"shape":"SupportEmail"},
1529
- "SupportUrl":{"shape":"SupportUrl"},
1530
- "ProductType":{"shape":"ProductType"},
1531
- "Tags":{"shape":"AddTags"},
1532
- "ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactProperties"},
1533
- "IdempotencyToken":{
1534
- "shape":"IdempotencyToken",
1535
- "idempotencyToken":true
1536
- }
1537
- }
1538
- },
1539
- "CreateProductOutput":{
1540
- "type":"structure",
1541
- "members":{
1542
- "ProductViewDetail":{"shape":"ProductViewDetail"},
1543
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1544
- "Tags":{"shape":"Tags"}
1545
- }
1546
- },
1547
- "CreateProvisionedProductPlanInput":{
1548
- "type":"structure",
1549
- "required":[
1550
- "PlanName",
1551
- "PlanType",
1552
- "ProductId",
1553
- "ProvisionedProductName",
1554
- "ProvisioningArtifactId",
1555
- "IdempotencyToken"
1556
- ],
1557
- "members":{
1558
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1559
- "PlanName":{"shape":"ProvisionedProductPlanName"},
1560
- "PlanType":{"shape":"ProvisionedProductPlanType"},
1561
- "NotificationArns":{"shape":"NotificationArns"},
1562
- "PathId":{"shape":"Id"},
1563
- "ProductId":{"shape":"Id"},
1564
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
1565
- "ProvisioningArtifactId":{"shape":"Id"},
1566
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
1567
- "IdempotencyToken":{
1568
- "shape":"IdempotencyToken",
1569
- "idempotencyToken":true
1570
- },
1571
- "Tags":{"shape":"Tags"}
1572
- }
1573
- },
1574
- "CreateProvisionedProductPlanOutput":{
1575
- "type":"structure",
1576
- "members":{
1577
- "PlanName":{"shape":"ProvisionedProductPlanName"},
1578
- "PlanId":{"shape":"Id"},
1579
- "ProvisionProductId":{"shape":"Id"},
1580
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
1581
- "ProvisioningArtifactId":{"shape":"Id"}
1582
- }
1583
- },
1584
- "CreateProvisioningArtifactInput":{
1585
- "type":"structure",
1586
- "required":[
1587
- "ProductId",
1588
- "Parameters",
1589
- "IdempotencyToken"
1590
- ],
1591
- "members":{
1592
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1593
- "ProductId":{"shape":"Id"},
1594
- "Parameters":{"shape":"ProvisioningArtifactProperties"},
1595
- "IdempotencyToken":{
1596
- "shape":"IdempotencyToken",
1597
- "idempotencyToken":true
1598
- }
1599
- }
1600
- },
1601
- "CreateProvisioningArtifactOutput":{
1602
- "type":"structure",
1603
- "members":{
1604
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1605
- "Info":{"shape":"ProvisioningArtifactInfo"},
1606
- "Status":{"shape":"Status"}
1607
- }
1608
- },
1609
- "CreateServiceActionInput":{
1610
- "type":"structure",
1611
- "required":[
1612
- "Name",
1613
- "DefinitionType",
1614
- "Definition",
1615
- "IdempotencyToken"
1616
- ],
1617
- "members":{
1618
- "Name":{"shape":"ServiceActionName"},
1619
- "DefinitionType":{"shape":"ServiceActionDefinitionType"},
1620
- "Definition":{"shape":"ServiceActionDefinitionMap"},
1621
- "Description":{"shape":"ServiceActionDescription"},
1622
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1623
- "IdempotencyToken":{
1624
- "shape":"IdempotencyToken",
1625
- "idempotencyToken":true
1626
- }
1627
- }
1628
- },
1629
- "CreateServiceActionOutput":{
1630
- "type":"structure",
1631
- "members":{
1632
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
1633
- }
1634
- },
1635
- "CreateTagOptionInput":{
1636
- "type":"structure",
1637
- "required":[
1638
- "Key",
1639
- "Value"
1640
- ],
1641
- "members":{
1642
- "Key":{"shape":"TagOptionKey"},
1643
- "Value":{"shape":"TagOptionValue"}
1644
- }
1645
- },
1646
- "CreateTagOptionOutput":{
1647
- "type":"structure",
1648
- "members":{
1649
- "TagOptionDetail":{"shape":"TagOptionDetail"}
1650
- }
1651
- },
1652
- "CreatedTime":{"type":"timestamp"},
1653
- "CreationTime":{"type":"timestamp"},
1654
- "DefaultValue":{"type":"string"},
1655
- "DeleteConstraintInput":{
1656
- "type":"structure",
1657
- "required":["Id"],
1658
- "members":{
1659
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1660
- "Id":{"shape":"Id"}
1661
- }
1662
- },
1663
- "DeleteConstraintOutput":{
1664
- "type":"structure",
1665
- "members":{
1666
- }
1667
- },
1668
- "DeletePortfolioInput":{
1669
- "type":"structure",
1670
- "required":["Id"],
1671
- "members":{
1672
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1673
- "Id":{"shape":"Id"}
1674
- }
1675
- },
1676
- "DeletePortfolioOutput":{
1677
- "type":"structure",
1678
- "members":{
1679
- }
1680
- },
1681
- "DeletePortfolioShareInput":{
1682
- "type":"structure",
1683
- "required":["PortfolioId"],
1684
- "members":{
1685
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1686
- "PortfolioId":{"shape":"Id"},
1687
- "AccountId":{"shape":"AccountId"},
1688
- "OrganizationNode":{"shape":"OrganizationNode"}
1689
- }
1690
- },
1691
- "DeletePortfolioShareOutput":{
1692
- "type":"structure",
1693
- "members":{
1694
- "PortfolioShareToken":{"shape":"Id"}
1695
- }
1696
- },
1697
- "DeleteProductInput":{
1698
- "type":"structure",
1699
- "required":["Id"],
1700
- "members":{
1701
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1702
- "Id":{"shape":"Id"}
1703
- }
1704
- },
1705
- "DeleteProductOutput":{
1706
- "type":"structure",
1707
- "members":{
1708
- }
1709
- },
1710
- "DeleteProvisionedProductPlanInput":{
1711
- "type":"structure",
1712
- "required":["PlanId"],
1713
- "members":{
1714
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1715
- "PlanId":{"shape":"Id"},
1716
- "IgnoreErrors":{"shape":"IgnoreErrors"}
1717
- }
1718
- },
1719
- "DeleteProvisionedProductPlanOutput":{
1720
- "type":"structure",
1721
- "members":{
1722
- }
1723
- },
1724
- "DeleteProvisioningArtifactInput":{
1725
- "type":"structure",
1726
- "required":[
1727
- "ProductId",
1728
- "ProvisioningArtifactId"
1729
- ],
1730
- "members":{
1731
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1732
- "ProductId":{"shape":"Id"},
1733
- "ProvisioningArtifactId":{"shape":"Id"}
1734
- }
1735
- },
1736
- "DeleteProvisioningArtifactOutput":{
1737
- "type":"structure",
1738
- "members":{
1739
- }
1740
- },
1741
- "DeleteServiceActionInput":{
1742
- "type":"structure",
1743
- "required":["Id"],
1744
- "members":{
1745
- "Id":{"shape":"Id"},
1746
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1747
- }
1748
- },
1749
- "DeleteServiceActionOutput":{
1750
- "type":"structure",
1751
- "members":{
1752
- }
1753
- },
1754
- "DeleteTagOptionInput":{
1755
- "type":"structure",
1756
- "required":["Id"],
1757
- "members":{
1758
- "Id":{"shape":"TagOptionId"}
1759
- }
1760
- },
1761
- "DeleteTagOptionOutput":{
1762
- "type":"structure",
1763
- "members":{
1764
- }
1765
- },
1766
- "DescribeConstraintInput":{
1767
- "type":"structure",
1768
- "required":["Id"],
1769
- "members":{
1770
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1771
- "Id":{"shape":"Id"}
1772
- }
1773
- },
1774
- "DescribeConstraintOutput":{
1775
- "type":"structure",
1776
- "members":{
1777
- "ConstraintDetail":{"shape":"ConstraintDetail"},
1778
- "ConstraintParameters":{"shape":"ConstraintParameters"},
1779
- "Status":{"shape":"Status"}
1780
- }
1781
- },
1782
- "DescribeCopyProductStatusInput":{
1783
- "type":"structure",
1784
- "required":["CopyProductToken"],
1785
- "members":{
1786
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1787
- "CopyProductToken":{"shape":"Id"}
1788
- }
1789
- },
1790
- "DescribeCopyProductStatusOutput":{
1791
- "type":"structure",
1792
- "members":{
1793
- "CopyProductStatus":{"shape":"CopyProductStatus"},
1794
- "TargetProductId":{"shape":"Id"},
1795
- "StatusDetail":{"shape":"StatusDetail"}
1796
- }
1797
- },
1798
- "DescribePortfolioInput":{
1799
- "type":"structure",
1800
- "required":["Id"],
1801
- "members":{
1802
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1803
- "Id":{"shape":"Id"}
1804
- }
1805
- },
1806
- "DescribePortfolioOutput":{
1807
- "type":"structure",
1808
- "members":{
1809
- "PortfolioDetail":{"shape":"PortfolioDetail"},
1810
- "Tags":{"shape":"Tags"},
1811
- "TagOptions":{"shape":"TagOptionDetails"},
1812
- "Budgets":{"shape":"Budgets"}
1813
- }
1814
- },
1815
- "DescribePortfolioShareStatusInput":{
1816
- "type":"structure",
1817
- "required":["PortfolioShareToken"],
1818
- "members":{
1819
- "PortfolioShareToken":{"shape":"Id"}
1820
- }
1821
- },
1822
- "DescribePortfolioShareStatusOutput":{
1823
- "type":"structure",
1824
- "members":{
1825
- "PortfolioShareToken":{"shape":"Id"},
1826
- "PortfolioId":{"shape":"Id"},
1827
- "OrganizationNodeValue":{"shape":"OrganizationNodeValue"},
1828
- "Status":{"shape":"ShareStatus"},
1829
- "ShareDetails":{"shape":"ShareDetails"}
1830
- }
1831
- },
1832
- "DescribeProductAsAdminInput":{
1833
- "type":"structure",
1834
- "members":{
1835
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1836
- "Id":{"shape":"Id"},
1837
- "Name":{"shape":"ProductViewName"}
1838
- }
1839
- },
1840
- "DescribeProductAsAdminOutput":{
1841
- "type":"structure",
1842
- "members":{
1843
- "ProductViewDetail":{"shape":"ProductViewDetail"},
1844
- "ProvisioningArtifactSummaries":{"shape":"ProvisioningArtifactSummaries"},
1845
- "Tags":{"shape":"Tags"},
1846
- "TagOptions":{"shape":"TagOptionDetails"},
1847
- "Budgets":{"shape":"Budgets"}
1848
- }
1849
- },
1850
- "DescribeProductInput":{
1851
- "type":"structure",
1852
- "members":{
1853
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1854
- "Id":{"shape":"Id"},
1855
- "Name":{"shape":"ProductViewName"}
1856
- }
1857
- },
1858
- "DescribeProductOutput":{
1859
- "type":"structure",
1860
- "members":{
1861
- "ProductViewSummary":{"shape":"ProductViewSummary"},
1862
- "ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"},
1863
- "Budgets":{"shape":"Budgets"},
1864
- "LaunchPaths":{"shape":"LaunchPaths"}
1865
- }
1866
- },
1867
- "DescribeProductViewInput":{
1868
- "type":"structure",
1869
- "required":["Id"],
1870
- "members":{
1871
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1872
- "Id":{"shape":"Id"}
1873
- }
1874
- },
1875
- "DescribeProductViewOutput":{
1876
- "type":"structure",
1877
- "members":{
1878
- "ProductViewSummary":{"shape":"ProductViewSummary"},
1879
- "ProvisioningArtifacts":{"shape":"ProvisioningArtifacts"}
1880
- }
1881
- },
1882
- "DescribeProvisionedProductInput":{
1883
- "type":"structure",
1884
- "members":{
1885
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1886
- "Id":{"shape":"Id"},
1887
- "Name":{"shape":"ProvisionedProductName"}
1888
- }
1889
- },
1890
- "DescribeProvisionedProductOutput":{
1891
- "type":"structure",
1892
- "members":{
1893
- "ProvisionedProductDetail":{"shape":"ProvisionedProductDetail"},
1894
- "CloudWatchDashboards":{"shape":"CloudWatchDashboards"}
1895
- }
1896
- },
1897
- "DescribeProvisionedProductPlanInput":{
1898
- "type":"structure",
1899
- "required":["PlanId"],
1900
- "members":{
1901
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1902
- "PlanId":{"shape":"Id"},
1903
- "PageSize":{"shape":"PageSize"},
1904
- "PageToken":{"shape":"PageToken"}
1905
- }
1906
- },
1907
- "DescribeProvisionedProductPlanOutput":{
1908
- "type":"structure",
1909
- "members":{
1910
- "ProvisionedProductPlanDetails":{"shape":"ProvisionedProductPlanDetails"},
1911
- "ResourceChanges":{"shape":"ResourceChanges"},
1912
- "NextPageToken":{"shape":"PageToken"}
1913
- }
1914
- },
1915
- "DescribeProvisioningArtifactInput":{
1916
- "type":"structure",
1917
- "members":{
1918
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1919
- "ProvisioningArtifactId":{"shape":"Id"},
1920
- "ProductId":{"shape":"Id"},
1921
- "ProvisioningArtifactName":{"shape":"ProvisioningArtifactName"},
1922
- "ProductName":{"shape":"ProductViewName"},
1923
- "Verbose":{"shape":"Verbose"}
1924
- }
1925
- },
1926
- "DescribeProvisioningArtifactOutput":{
1927
- "type":"structure",
1928
- "members":{
1929
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
1930
- "Info":{"shape":"ProvisioningArtifactInfo"},
1931
- "Status":{"shape":"Status"}
1932
- }
1933
- },
1934
- "DescribeProvisioningParametersInput":{
1935
- "type":"structure",
1936
- "members":{
1937
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1938
- "ProductId":{"shape":"Id"},
1939
- "ProductName":{"shape":"ProductViewName"},
1940
- "ProvisioningArtifactId":{"shape":"Id"},
1941
- "ProvisioningArtifactName":{"shape":"ProvisioningArtifactName"},
1942
- "PathId":{"shape":"Id"},
1943
- "PathName":{"shape":"PortfolioDisplayName"}
1944
- }
1945
- },
1946
- "DescribeProvisioningParametersOutput":{
1947
- "type":"structure",
1948
- "members":{
1949
- "ProvisioningArtifactParameters":{"shape":"ProvisioningArtifactParameters"},
1950
- "ConstraintSummaries":{"shape":"ConstraintSummaries"},
1951
- "UsageInstructions":{"shape":"UsageInstructions"},
1952
- "TagOptions":{"shape":"TagOptionSummaries"},
1953
- "ProvisioningArtifactPreferences":{"shape":"ProvisioningArtifactPreferences"},
1954
- "ProvisioningArtifactOutputs":{"shape":"ProvisioningArtifactOutputs"}
1955
- }
1956
- },
1957
- "DescribeRecordInput":{
1958
- "type":"structure",
1959
- "required":["Id"],
1960
- "members":{
1961
- "AcceptLanguage":{"shape":"AcceptLanguage"},
1962
- "Id":{"shape":"Id"},
1963
- "PageToken":{"shape":"PageToken"},
1964
- "PageSize":{"shape":"PageSize"}
1965
- }
1966
- },
1967
- "DescribeRecordOutput":{
1968
- "type":"structure",
1969
- "members":{
1970
- "RecordDetail":{"shape":"RecordDetail"},
1971
- "RecordOutputs":{"shape":"RecordOutputs"},
1972
- "NextPageToken":{"shape":"PageToken"}
1973
- }
1974
- },
1975
- "DescribeServiceActionExecutionParametersInput":{
1976
- "type":"structure",
1977
- "required":[
1978
- "ProvisionedProductId",
1979
- "ServiceActionId"
1980
- ],
1981
- "members":{
1982
- "ProvisionedProductId":{"shape":"Id"},
1983
- "ServiceActionId":{"shape":"Id"},
1984
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1985
- }
1986
- },
1987
- "DescribeServiceActionExecutionParametersOutput":{
1988
- "type":"structure",
1989
- "members":{
1990
- "ServiceActionParameters":{"shape":"ExecutionParameters"}
1991
- }
1992
- },
1993
- "DescribeServiceActionInput":{
1994
- "type":"structure",
1995
- "required":["Id"],
1996
- "members":{
1997
- "Id":{"shape":"Id"},
1998
- "AcceptLanguage":{"shape":"AcceptLanguage"}
1999
- }
2000
- },
2001
- "DescribeServiceActionOutput":{
2002
- "type":"structure",
2003
- "members":{
2004
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
2005
- }
2006
- },
2007
- "DescribeTagOptionInput":{
2008
- "type":"structure",
2009
- "required":["Id"],
2010
- "members":{
2011
- "Id":{"shape":"TagOptionId"}
2012
- }
2013
- },
2014
- "DescribeTagOptionOutput":{
2015
- "type":"structure",
2016
- "members":{
2017
- "TagOptionDetail":{"shape":"TagOptionDetail"}
2018
- }
2019
- },
2020
- "Description":{"type":"string"},
2021
- "DisableAWSOrganizationsAccessInput":{
2022
- "type":"structure",
2023
- "members":{
2024
- }
2025
- },
2026
- "DisableAWSOrganizationsAccessOutput":{
2027
- "type":"structure",
2028
- "members":{
2029
- }
2030
- },
2031
- "DisableTemplateValidation":{"type":"boolean"},
2032
- "DisassociateBudgetFromResourceInput":{
2033
- "type":"structure",
2034
- "required":[
2035
- "BudgetName",
2036
- "ResourceId"
2037
- ],
2038
- "members":{
2039
- "BudgetName":{"shape":"BudgetName"},
2040
- "ResourceId":{"shape":"Id"}
2041
- }
2042
- },
2043
- "DisassociateBudgetFromResourceOutput":{
2044
- "type":"structure",
2045
- "members":{
2046
- }
2047
- },
2048
- "DisassociatePrincipalFromPortfolioInput":{
2049
- "type":"structure",
2050
- "required":[
2051
- "PortfolioId",
2052
- "PrincipalARN"
2053
- ],
2054
- "members":{
2055
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2056
- "PortfolioId":{"shape":"Id"},
2057
- "PrincipalARN":{"shape":"PrincipalARN"}
2058
- }
2059
- },
2060
- "DisassociatePrincipalFromPortfolioOutput":{
2061
- "type":"structure",
2062
- "members":{
2063
- }
2064
- },
2065
- "DisassociateProductFromPortfolioInput":{
2066
- "type":"structure",
2067
- "required":[
2068
- "ProductId",
2069
- "PortfolioId"
2070
- ],
2071
- "members":{
2072
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2073
- "ProductId":{"shape":"Id"},
2074
- "PortfolioId":{"shape":"Id"}
2075
- }
2076
- },
2077
- "DisassociateProductFromPortfolioOutput":{
2078
- "type":"structure",
2079
- "members":{
2080
- }
2081
- },
2082
- "DisassociateServiceActionFromProvisioningArtifactInput":{
2083
- "type":"structure",
2084
- "required":[
2085
- "ProductId",
2086
- "ProvisioningArtifactId",
2087
- "ServiceActionId"
2088
- ],
2089
- "members":{
2090
- "ProductId":{"shape":"Id"},
2091
- "ProvisioningArtifactId":{"shape":"Id"},
2092
- "ServiceActionId":{"shape":"Id"},
2093
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2094
- }
2095
- },
2096
- "DisassociateServiceActionFromProvisioningArtifactOutput":{
2097
- "type":"structure",
2098
- "members":{
2099
- }
2100
- },
2101
- "DisassociateTagOptionFromResourceInput":{
2102
- "type":"structure",
2103
- "required":[
2104
- "ResourceId",
2105
- "TagOptionId"
2106
- ],
2107
- "members":{
2108
- "ResourceId":{"shape":"ResourceId"},
2109
- "TagOptionId":{"shape":"TagOptionId"}
2110
- }
2111
- },
2112
- "DisassociateTagOptionFromResourceOutput":{
2113
- "type":"structure",
2114
- "members":{
2115
- }
2116
- },
2117
- "DuplicateResourceException":{
2118
- "type":"structure",
2119
- "members":{
2120
- },
2121
- "exception":true
2122
- },
2123
- "EnableAWSOrganizationsAccessInput":{
2124
- "type":"structure",
2125
- "members":{
2126
- }
2127
- },
2128
- "EnableAWSOrganizationsAccessOutput":{
2129
- "type":"structure",
2130
- "members":{
2131
- }
2132
- },
2133
- "Error":{"type":"string"},
2134
- "ErrorCode":{"type":"string"},
2135
- "ErrorDescription":{"type":"string"},
2136
- "EvaluationType":{
2137
- "type":"string",
2138
- "enum":[
2139
- "STATIC",
2140
- "DYNAMIC"
2141
- ]
2142
- },
2143
- "ExecuteProvisionedProductPlanInput":{
2144
- "type":"structure",
2145
- "required":[
2146
- "PlanId",
2147
- "IdempotencyToken"
2148
- ],
2149
- "members":{
2150
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2151
- "PlanId":{"shape":"Id"},
2152
- "IdempotencyToken":{
2153
- "shape":"IdempotencyToken",
2154
- "idempotencyToken":true
2155
- }
2156
- }
2157
- },
2158
- "ExecuteProvisionedProductPlanOutput":{
2159
- "type":"structure",
2160
- "members":{
2161
- "RecordDetail":{"shape":"RecordDetail"}
2162
- }
2163
- },
2164
- "ExecuteProvisionedProductServiceActionInput":{
2165
- "type":"structure",
2166
- "required":[
2167
- "ProvisionedProductId",
2168
- "ServiceActionId",
2169
- "ExecuteToken"
2170
- ],
2171
- "members":{
2172
- "ProvisionedProductId":{"shape":"Id"},
2173
- "ServiceActionId":{"shape":"Id"},
2174
- "ExecuteToken":{
2175
- "shape":"IdempotencyToken",
2176
- "idempotencyToken":true
2177
- },
2178
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2179
- "Parameters":{"shape":"ExecutionParameterMap"}
2180
- }
2181
- },
2182
- "ExecuteProvisionedProductServiceActionOutput":{
2183
- "type":"structure",
2184
- "members":{
2185
- "RecordDetail":{"shape":"RecordDetail"}
2186
- }
2187
- },
2188
- "ExecutionParameter":{
2189
- "type":"structure",
2190
- "members":{
2191
- "Name":{"shape":"ExecutionParameterKey"},
2192
- "Type":{"shape":"ExecutionParameterType"},
2193
- "DefaultValues":{"shape":"ExecutionParameterValueList"}
2194
- }
2195
- },
2196
- "ExecutionParameterKey":{
2197
- "type":"string",
2198
- "max":50,
2199
- "min":1
2200
- },
2201
- "ExecutionParameterMap":{
2202
- "type":"map",
2203
- "key":{"shape":"ExecutionParameterKey"},
2204
- "value":{"shape":"ExecutionParameterValueList"},
2205
- "max":200,
2206
- "min":1
2207
- },
2208
- "ExecutionParameterType":{
2209
- "type":"string",
2210
- "max":1024,
2211
- "min":1
2212
- },
2213
- "ExecutionParameterValue":{
2214
- "type":"string",
2215
- "max":512,
2216
- "min":0
2217
- },
2218
- "ExecutionParameterValueList":{
2219
- "type":"list",
2220
- "member":{"shape":"ExecutionParameterValue"},
2221
- "max":25,
2222
- "min":0
2223
- },
2224
- "ExecutionParameters":{
2225
- "type":"list",
2226
- "member":{"shape":"ExecutionParameter"}
2227
- },
2228
- "FailedServiceActionAssociation":{
2229
- "type":"structure",
2230
- "members":{
2231
- "ServiceActionId":{"shape":"Id"},
2232
- "ProductId":{"shape":"Id"},
2233
- "ProvisioningArtifactId":{"shape":"Id"},
2234
- "ErrorCode":{"shape":"ServiceActionAssociationErrorCode"},
2235
- "ErrorMessage":{"shape":"ServiceActionAssociationErrorMessage"}
2236
- }
2237
- },
2238
- "FailedServiceActionAssociations":{
2239
- "type":"list",
2240
- "member":{"shape":"FailedServiceActionAssociation"},
2241
- "max":50
2242
- },
2243
- "GetAWSOrganizationsAccessStatusInput":{
2244
- "type":"structure",
2245
- "members":{
2246
- }
2247
- },
2248
- "GetAWSOrganizationsAccessStatusOutput":{
2249
- "type":"structure",
2250
- "members":{
2251
- "AccessStatus":{"shape":"AccessStatus"}
2252
- }
2253
- },
2254
- "GetProvisionedProductOutputsInput":{
2255
- "type":"structure",
2256
- "members":{
2257
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2258
- "ProvisionedProductId":{"shape":"Id"},
2259
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2260
- "OutputKeys":{"shape":"OutputKeys"},
2261
- "PageSize":{"shape":"PageSize"},
2262
- "PageToken":{"shape":"PageToken"}
2263
- }
2264
- },
2265
- "GetProvisionedProductOutputsOutput":{
2266
- "type":"structure",
2267
- "members":{
2268
- "Outputs":{"shape":"RecordOutputs"},
2269
- "NextPageToken":{"shape":"PageToken"}
2270
- }
2271
- },
2272
- "HasDefaultPath":{"type":"boolean"},
2273
- "Id":{
2274
- "type":"string",
2275
- "max":100,
2276
- "min":1,
2277
- "pattern":"^[a-zA-Z0-9_\\-]*"
2278
- },
2279
- "IdempotencyToken":{
2280
- "type":"string",
2281
- "max":128,
2282
- "min":1,
2283
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
2284
- },
2285
- "IgnoreErrors":{"type":"boolean"},
2286
- "ImportAsProvisionedProductInput":{
2287
- "type":"structure",
2288
- "required":[
2289
- "ProductId",
2290
- "ProvisioningArtifactId",
2291
- "ProvisionedProductName",
2292
- "PhysicalId",
2293
- "IdempotencyToken"
2294
- ],
2295
- "members":{
2296
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2297
- "ProductId":{"shape":"Id"},
2298
- "ProvisioningArtifactId":{"shape":"Id"},
2299
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2300
- "PhysicalId":{"shape":"PhysicalId"},
2301
- "IdempotencyToken":{
2302
- "shape":"IdempotencyToken",
2303
- "idempotencyToken":true
2304
- }
2305
- }
2306
- },
2307
- "ImportAsProvisionedProductOutput":{
2308
- "type":"structure",
2309
- "members":{
2310
- "RecordDetail":{"shape":"RecordDetail"}
2311
- }
2312
- },
2313
- "InstructionType":{"type":"string"},
2314
- "InstructionValue":{"type":"string"},
2315
- "InvalidParametersException":{
2316
- "type":"structure",
2317
- "members":{
2318
- },
2319
- "exception":true
2320
- },
2321
- "InvalidStateException":{
2322
- "type":"structure",
2323
- "members":{
2324
- },
2325
- "exception":true
2326
- },
2327
- "LastRequestId":{"type":"string"},
2328
- "LaunchPath":{
2329
- "type":"structure",
2330
- "members":{
2331
- "Id":{"shape":"Id"},
2332
- "Name":{"shape":"PortfolioName"}
2333
- }
2334
- },
2335
- "LaunchPathSummaries":{
2336
- "type":"list",
2337
- "member":{"shape":"LaunchPathSummary"}
2338
- },
2339
- "LaunchPathSummary":{
2340
- "type":"structure",
2341
- "members":{
2342
- "Id":{"shape":"Id"},
2343
- "ConstraintSummaries":{"shape":"ConstraintSummaries"},
2344
- "Tags":{"shape":"Tags"},
2345
- "Name":{"shape":"PortfolioName"}
2346
- }
2347
- },
2348
- "LaunchPaths":{
2349
- "type":"list",
2350
- "member":{"shape":"LaunchPath"}
2351
- },
2352
- "LimitExceededException":{
2353
- "type":"structure",
2354
- "members":{
2355
- },
2356
- "exception":true
2357
- },
2358
- "ListAcceptedPortfolioSharesInput":{
2359
- "type":"structure",
2360
- "members":{
2361
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2362
- "PageToken":{"shape":"PageToken"},
2363
- "PageSize":{"shape":"PageSize"},
2364
- "PortfolioShareType":{"shape":"PortfolioShareType"}
2365
- }
2366
- },
2367
- "ListAcceptedPortfolioSharesOutput":{
2368
- "type":"structure",
2369
- "members":{
2370
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2371
- "NextPageToken":{"shape":"PageToken"}
2372
- }
2373
- },
2374
- "ListBudgetsForResourceInput":{
2375
- "type":"structure",
2376
- "required":["ResourceId"],
2377
- "members":{
2378
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2379
- "ResourceId":{"shape":"Id"},
2380
- "PageSize":{"shape":"PageSize"},
2381
- "PageToken":{"shape":"PageToken"}
2382
- }
2383
- },
2384
- "ListBudgetsForResourceOutput":{
2385
- "type":"structure",
2386
- "members":{
2387
- "Budgets":{"shape":"Budgets"},
2388
- "NextPageToken":{"shape":"PageToken"}
2389
- }
2390
- },
2391
- "ListConstraintsForPortfolioInput":{
2392
- "type":"structure",
2393
- "required":["PortfolioId"],
2394
- "members":{
2395
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2396
- "PortfolioId":{"shape":"Id"},
2397
- "ProductId":{"shape":"Id"},
2398
- "PageSize":{"shape":"PageSize"},
2399
- "PageToken":{"shape":"PageToken"}
2400
- }
2401
- },
2402
- "ListConstraintsForPortfolioOutput":{
2403
- "type":"structure",
2404
- "members":{
2405
- "ConstraintDetails":{"shape":"ConstraintDetails"},
2406
- "NextPageToken":{"shape":"PageToken"}
2407
- }
2408
- },
2409
- "ListLaunchPathsInput":{
2410
- "type":"structure",
2411
- "required":["ProductId"],
2412
- "members":{
2413
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2414
- "ProductId":{"shape":"Id"},
2415
- "PageSize":{"shape":"PageSize"},
2416
- "PageToken":{"shape":"PageToken"}
2417
- }
2418
- },
2419
- "ListLaunchPathsOutput":{
2420
- "type":"structure",
2421
- "members":{
2422
- "LaunchPathSummaries":{"shape":"LaunchPathSummaries"},
2423
- "NextPageToken":{"shape":"PageToken"}
2424
- }
2425
- },
2426
- "ListOrganizationPortfolioAccessInput":{
2427
- "type":"structure",
2428
- "required":[
2429
- "PortfolioId",
2430
- "OrganizationNodeType"
2431
- ],
2432
- "members":{
2433
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2434
- "PortfolioId":{"shape":"Id"},
2435
- "OrganizationNodeType":{"shape":"OrganizationNodeType"},
2436
- "PageToken":{"shape":"PageToken"},
2437
- "PageSize":{"shape":"PageSize"}
2438
- }
2439
- },
2440
- "ListOrganizationPortfolioAccessOutput":{
2441
- "type":"structure",
2442
- "members":{
2443
- "OrganizationNodes":{"shape":"OrganizationNodes"},
2444
- "NextPageToken":{"shape":"PageToken"}
2445
- }
2446
- },
2447
- "ListPortfolioAccessInput":{
2448
- "type":"structure",
2449
- "required":["PortfolioId"],
2450
- "members":{
2451
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2452
- "PortfolioId":{"shape":"Id"},
2453
- "OrganizationParentId":{"shape":"Id"},
2454
- "PageToken":{"shape":"PageToken"},
2455
- "PageSize":{"shape":"PageSizeMax100"}
2456
- }
2457
- },
2458
- "ListPortfolioAccessOutput":{
2459
- "type":"structure",
2460
- "members":{
2461
- "AccountIds":{"shape":"AccountIds"},
2462
- "NextPageToken":{"shape":"PageToken"}
2463
- }
2464
- },
2465
- "ListPortfoliosForProductInput":{
2466
- "type":"structure",
2467
- "required":["ProductId"],
2468
- "members":{
2469
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2470
- "ProductId":{"shape":"Id"},
2471
- "PageToken":{"shape":"PageToken"},
2472
- "PageSize":{"shape":"PageSize"}
2473
- }
2474
- },
2475
- "ListPortfoliosForProductOutput":{
2476
- "type":"structure",
2477
- "members":{
2478
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2479
- "NextPageToken":{"shape":"PageToken"}
2480
- }
2481
- },
2482
- "ListPortfoliosInput":{
2483
- "type":"structure",
2484
- "members":{
2485
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2486
- "PageToken":{"shape":"PageToken"},
2487
- "PageSize":{"shape":"PageSize"}
2488
- }
2489
- },
2490
- "ListPortfoliosOutput":{
2491
- "type":"structure",
2492
- "members":{
2493
- "PortfolioDetails":{"shape":"PortfolioDetails"},
2494
- "NextPageToken":{"shape":"PageToken"}
2495
- }
2496
- },
2497
- "ListPrincipalsForPortfolioInput":{
2498
- "type":"structure",
2499
- "required":["PortfolioId"],
2500
- "members":{
2501
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2502
- "PortfolioId":{"shape":"Id"},
2503
- "PageSize":{"shape":"PageSize"},
2504
- "PageToken":{"shape":"PageToken"}
2505
- }
2506
- },
2507
- "ListPrincipalsForPortfolioOutput":{
2508
- "type":"structure",
2509
- "members":{
2510
- "Principals":{"shape":"Principals"},
2511
- "NextPageToken":{"shape":"PageToken"}
2512
- }
2513
- },
2514
- "ListProvisionedProductPlansInput":{
2515
- "type":"structure",
2516
- "members":{
2517
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2518
- "ProvisionProductId":{"shape":"Id"},
2519
- "PageSize":{"shape":"PageSize"},
2520
- "PageToken":{"shape":"PageToken"},
2521
- "AccessLevelFilter":{"shape":"AccessLevelFilter"}
2522
- }
2523
- },
2524
- "ListProvisionedProductPlansOutput":{
2525
- "type":"structure",
2526
- "members":{
2527
- "ProvisionedProductPlans":{"shape":"ProvisionedProductPlans"},
2528
- "NextPageToken":{"shape":"PageToken"}
2529
- }
2530
- },
2531
- "ListProvisioningArtifactsForServiceActionInput":{
2532
- "type":"structure",
2533
- "required":["ServiceActionId"],
2534
- "members":{
2535
- "ServiceActionId":{"shape":"Id"},
2536
- "PageSize":{"shape":"PageSize"},
2537
- "PageToken":{"shape":"PageToken"},
2538
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2539
- }
2540
- },
2541
- "ListProvisioningArtifactsForServiceActionOutput":{
2542
- "type":"structure",
2543
- "members":{
2544
- "ProvisioningArtifactViews":{"shape":"ProvisioningArtifactViews"},
2545
- "NextPageToken":{"shape":"PageToken"}
2546
- }
2547
- },
2548
- "ListProvisioningArtifactsInput":{
2549
- "type":"structure",
2550
- "required":["ProductId"],
2551
- "members":{
2552
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2553
- "ProductId":{"shape":"Id"}
2554
- }
2555
- },
2556
- "ListProvisioningArtifactsOutput":{
2557
- "type":"structure",
2558
- "members":{
2559
- "ProvisioningArtifactDetails":{"shape":"ProvisioningArtifactDetails"},
2560
- "NextPageToken":{"shape":"PageToken"}
2561
- }
2562
- },
2563
- "ListRecordHistoryInput":{
2564
- "type":"structure",
2565
- "members":{
2566
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2567
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
2568
- "SearchFilter":{"shape":"ListRecordHistorySearchFilter"},
2569
- "PageSize":{"shape":"PageSize"},
2570
- "PageToken":{"shape":"PageToken"}
2571
- }
2572
- },
2573
- "ListRecordHistoryOutput":{
2574
- "type":"structure",
2575
- "members":{
2576
- "RecordDetails":{"shape":"RecordDetails"},
2577
- "NextPageToken":{"shape":"PageToken"}
2578
- }
2579
- },
2580
- "ListRecordHistorySearchFilter":{
2581
- "type":"structure",
2582
- "members":{
2583
- "Key":{"shape":"SearchFilterKey"},
2584
- "Value":{"shape":"SearchFilterValue"}
2585
- }
2586
- },
2587
- "ListResourcesForTagOptionInput":{
2588
- "type":"structure",
2589
- "required":["TagOptionId"],
2590
- "members":{
2591
- "TagOptionId":{"shape":"TagOptionId"},
2592
- "ResourceType":{"shape":"ResourceType"},
2593
- "PageSize":{"shape":"PageSize"},
2594
- "PageToken":{"shape":"PageToken"}
2595
- }
2596
- },
2597
- "ListResourcesForTagOptionOutput":{
2598
- "type":"structure",
2599
- "members":{
2600
- "ResourceDetails":{"shape":"ResourceDetails"},
2601
- "PageToken":{"shape":"PageToken"}
2602
- }
2603
- },
2604
- "ListServiceActionsForProvisioningArtifactInput":{
2605
- "type":"structure",
2606
- "required":[
2607
- "ProductId",
2608
- "ProvisioningArtifactId"
2609
- ],
2610
- "members":{
2611
- "ProductId":{"shape":"Id"},
2612
- "ProvisioningArtifactId":{"shape":"Id"},
2613
- "PageSize":{"shape":"PageSize"},
2614
- "PageToken":{"shape":"PageToken"},
2615
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2616
- }
2617
- },
2618
- "ListServiceActionsForProvisioningArtifactOutput":{
2619
- "type":"structure",
2620
- "members":{
2621
- "ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
2622
- "NextPageToken":{"shape":"PageToken"}
2623
- }
2624
- },
2625
- "ListServiceActionsInput":{
2626
- "type":"structure",
2627
- "members":{
2628
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2629
- "PageSize":{"shape":"PageSize"},
2630
- "PageToken":{"shape":"PageToken"}
2631
- }
2632
- },
2633
- "ListServiceActionsOutput":{
2634
- "type":"structure",
2635
- "members":{
2636
- "ServiceActionSummaries":{"shape":"ServiceActionSummaries"},
2637
- "NextPageToken":{"shape":"PageToken"}
2638
- }
2639
- },
2640
- "ListStackInstancesForProvisionedProductInput":{
2641
- "type":"structure",
2642
- "required":["ProvisionedProductId"],
2643
- "members":{
2644
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2645
- "ProvisionedProductId":{"shape":"Id"},
2646
- "PageToken":{"shape":"PageToken"},
2647
- "PageSize":{"shape":"PageSize"}
2648
- }
2649
- },
2650
- "ListStackInstancesForProvisionedProductOutput":{
2651
- "type":"structure",
2652
- "members":{
2653
- "StackInstances":{"shape":"StackInstances"},
2654
- "NextPageToken":{"shape":"PageToken"}
2655
- }
2656
- },
2657
- "ListTagOptionsFilters":{
2658
- "type":"structure",
2659
- "members":{
2660
- "Key":{"shape":"TagOptionKey"},
2661
- "Value":{"shape":"TagOptionValue"},
2662
- "Active":{"shape":"TagOptionActive"}
2663
- }
2664
- },
2665
- "ListTagOptionsInput":{
2666
- "type":"structure",
2667
- "members":{
2668
- "Filters":{"shape":"ListTagOptionsFilters"},
2669
- "PageSize":{"shape":"PageSize"},
2670
- "PageToken":{"shape":"PageToken"}
2671
- }
2672
- },
2673
- "ListTagOptionsOutput":{
2674
- "type":"structure",
2675
- "members":{
2676
- "TagOptionDetails":{"shape":"TagOptionDetails"},
2677
- "PageToken":{"shape":"PageToken"}
2678
- }
2679
- },
2680
- "LogicalResourceId":{"type":"string"},
2681
- "Message":{"type":"string"},
2682
- "Namespaces":{
2683
- "type":"list",
2684
- "member":{"shape":"AccountId"}
2685
- },
2686
- "NoEcho":{"type":"boolean"},
2687
- "NotificationArn":{
2688
- "type":"string",
2689
- "max":1224,
2690
- "min":1,
2691
- "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
2692
- },
2693
- "NotificationArns":{
2694
- "type":"list",
2695
- "member":{"shape":"NotificationArn"},
2696
- "max":5
2697
- },
2698
- "OperationNotSupportedException":{
2699
- "type":"structure",
2700
- "members":{
2701
- },
2702
- "exception":true
2703
- },
2704
- "OrganizationNode":{
2705
- "type":"structure",
2706
- "members":{
2707
- "Type":{"shape":"OrganizationNodeType"},
2708
- "Value":{"shape":"OrganizationNodeValue"}
2709
- }
2710
- },
2711
- "OrganizationNodeType":{
2712
- "type":"string",
2713
- "enum":[
2714
- "ORGANIZATION",
2715
- "ORGANIZATIONAL_UNIT",
2716
- "ACCOUNT"
2717
- ]
2718
- },
2719
- "OrganizationNodeValue":{
2720
- "type":"string",
2721
- "pattern":"(^[0-9]{12}$)|(^arn:aws:organizations::\\d{12}:organization\\/o-[a-z0-9]{10,32})|(^o-[a-z0-9]{10,32}$)|(^arn:aws:organizations::\\d{12}:ou\\/o-[a-z0-9]{10,32}\\/ou-[0-9a-z]{4,32}-[0-9a-z]{8,32}$)|(^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$)"
2722
- },
2723
- "OrganizationNodes":{
2724
- "type":"list",
2725
- "member":{"shape":"OrganizationNode"}
2726
- },
2727
- "OutputDescription":{
2728
- "type":"string",
2729
- "max":1024
2730
- },
2731
- "OutputKey":{"type":"string"},
2732
- "OutputKeys":{
2733
- "type":"list",
2734
- "member":{"shape":"OutputKey"},
2735
- "max":60
2736
- },
2737
- "OutputValue":{"type":"string"},
2738
- "PageSize":{
2739
- "type":"integer",
2740
- "max":20,
2741
- "min":0
2742
- },
2743
- "PageSizeMax100":{
2744
- "type":"integer",
2745
- "max":100,
2746
- "min":0
2747
- },
2748
- "PageToken":{
2749
- "type":"string",
2750
- "max":2024,
2751
- "pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
2752
- },
2753
- "ParameterConstraints":{
2754
- "type":"structure",
2755
- "members":{
2756
- "AllowedValues":{"shape":"AllowedValues"}
2757
- }
2758
- },
2759
- "ParameterKey":{
2760
- "type":"string",
2761
- "max":1000,
2762
- "min":1
2763
- },
2764
- "ParameterType":{"type":"string"},
2765
- "ParameterValue":{
2766
- "type":"string",
2767
- "max":4096
2768
- },
2769
- "PhysicalId":{"type":"string"},
2770
- "PhysicalResourceId":{"type":"string"},
2771
- "PlanResourceType":{
2772
- "type":"string",
2773
- "max":256,
2774
- "min":1
2775
- },
2776
- "PortfolioDescription":{
2777
- "type":"string",
2778
- "max":2000
2779
- },
2780
- "PortfolioDetail":{
2781
- "type":"structure",
2782
- "members":{
2783
- "Id":{"shape":"Id"},
2784
- "ARN":{"shape":"ResourceARN"},
2785
- "DisplayName":{"shape":"PortfolioDisplayName"},
2786
- "Description":{"shape":"PortfolioDescription"},
2787
- "CreatedTime":{"shape":"CreationTime"},
2788
- "ProviderName":{"shape":"ProviderName"}
2789
- }
2790
- },
2791
- "PortfolioDetails":{
2792
- "type":"list",
2793
- "member":{"shape":"PortfolioDetail"}
2794
- },
2795
- "PortfolioDisplayName":{
2796
- "type":"string",
2797
- "max":100,
2798
- "min":1
2799
- },
2800
- "PortfolioName":{"type":"string"},
2801
- "PortfolioShareType":{
2802
- "type":"string",
2803
- "enum":[
2804
- "IMPORTED",
2805
- "AWS_SERVICECATALOG",
2806
- "AWS_ORGANIZATIONS"
2807
- ]
2808
- },
2809
- "Principal":{
2810
- "type":"structure",
2811
- "members":{
2812
- "PrincipalARN":{"shape":"PrincipalARN"},
2813
- "PrincipalType":{"shape":"PrincipalType"}
2814
- }
2815
- },
2816
- "PrincipalARN":{
2817
- "type":"string",
2818
- "max":1000,
2819
- "min":1
2820
- },
2821
- "PrincipalType":{
2822
- "type":"string",
2823
- "enum":["IAM"]
2824
- },
2825
- "Principals":{
2826
- "type":"list",
2827
- "member":{"shape":"Principal"}
2828
- },
2829
- "ProductArn":{
2830
- "type":"string",
2831
- "max":1224,
2832
- "min":1,
2833
- "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
2834
- },
2835
- "ProductSource":{
2836
- "type":"string",
2837
- "enum":["ACCOUNT"]
2838
- },
2839
- "ProductType":{
2840
- "type":"string",
2841
- "enum":[
2842
- "CLOUD_FORMATION_TEMPLATE",
2843
- "MARKETPLACE"
2844
- ],
2845
- "max":8191
2846
- },
2847
- "ProductViewAggregationType":{"type":"string"},
2848
- "ProductViewAggregationValue":{
2849
- "type":"structure",
2850
- "members":{
2851
- "Value":{"shape":"AttributeValue"},
2852
- "ApproximateCount":{"shape":"ApproximateCount"}
2853
- }
2854
- },
2855
- "ProductViewAggregationValues":{
2856
- "type":"list",
2857
- "member":{"shape":"ProductViewAggregationValue"}
2858
- },
2859
- "ProductViewAggregations":{
2860
- "type":"map",
2861
- "key":{"shape":"ProductViewAggregationType"},
2862
- "value":{"shape":"ProductViewAggregationValues"}
2863
- },
2864
- "ProductViewDetail":{
2865
- "type":"structure",
2866
- "members":{
2867
- "ProductViewSummary":{"shape":"ProductViewSummary"},
2868
- "Status":{"shape":"Status"},
2869
- "ProductARN":{"shape":"ResourceARN"},
2870
- "CreatedTime":{"shape":"CreatedTime"}
2871
- }
2872
- },
2873
- "ProductViewDetails":{
2874
- "type":"list",
2875
- "member":{"shape":"ProductViewDetail"}
2876
- },
2877
- "ProductViewDistributor":{"type":"string"},
2878
- "ProductViewFilterBy":{
2879
- "type":"string",
2880
- "enum":[
2881
- "FullTextSearch",
2882
- "Owner",
2883
- "ProductType",
2884
- "SourceProductId"
2885
- ]
2886
- },
2887
- "ProductViewFilterValue":{"type":"string"},
2888
- "ProductViewFilterValues":{
2889
- "type":"list",
2890
- "member":{"shape":"ProductViewFilterValue"}
2891
- },
2892
- "ProductViewFilters":{
2893
- "type":"map",
2894
- "key":{"shape":"ProductViewFilterBy"},
2895
- "value":{"shape":"ProductViewFilterValues"}
2896
- },
2897
- "ProductViewName":{
2898
- "type":"string",
2899
- "max":8191
2900
- },
2901
- "ProductViewOwner":{
2902
- "type":"string",
2903
- "max":8191
2904
- },
2905
- "ProductViewShortDescription":{
2906
- "type":"string",
2907
- "max":8191
2908
- },
2909
- "ProductViewSortBy":{
2910
- "type":"string",
2911
- "enum":[
2912
- "Title",
2913
- "VersionCount",
2914
- "CreationDate"
2915
- ]
2916
- },
2917
- "ProductViewSummaries":{
2918
- "type":"list",
2919
- "member":{"shape":"ProductViewSummary"}
2920
- },
2921
- "ProductViewSummary":{
2922
- "type":"structure",
2923
- "members":{
2924
- "Id":{"shape":"Id"},
2925
- "ProductId":{"shape":"Id"},
2926
- "Name":{"shape":"ProductViewName"},
2927
- "Owner":{"shape":"ProductViewOwner"},
2928
- "ShortDescription":{"shape":"ProductViewShortDescription"},
2929
- "Type":{"shape":"ProductType"},
2930
- "Distributor":{"shape":"ProductViewDistributor"},
2931
- "HasDefaultPath":{"shape":"HasDefaultPath"},
2932
- "SupportEmail":{"shape":"SupportEmail"},
2933
- "SupportDescription":{"shape":"SupportDescription"},
2934
- "SupportUrl":{"shape":"SupportUrl"}
2935
- }
2936
- },
2937
- "PropertyKey":{
2938
- "type":"string",
2939
- "enum":[
2940
- "OWNER",
2941
- "LAUNCH_ROLE"
2942
- ],
2943
- "max":128,
2944
- "min":1
2945
- },
2946
- "PropertyName":{"type":"string"},
2947
- "PropertyValue":{
2948
- "type":"string",
2949
- "max":1024,
2950
- "min":0
2951
- },
2952
- "ProviderName":{
2953
- "type":"string",
2954
- "max":50,
2955
- "min":1
2956
- },
2957
- "ProvisionProductInput":{
2958
- "type":"structure",
2959
- "required":[
2960
- "ProvisionedProductName",
2961
- "ProvisionToken"
2962
- ],
2963
- "members":{
2964
- "AcceptLanguage":{"shape":"AcceptLanguage"},
2965
- "ProductId":{"shape":"Id"},
2966
- "ProductName":{"shape":"ProductViewName"},
2967
- "ProvisioningArtifactId":{"shape":"Id"},
2968
- "ProvisioningArtifactName":{"shape":"ProvisioningArtifactName"},
2969
- "PathId":{"shape":"Id"},
2970
- "PathName":{"shape":"PortfolioDisplayName"},
2971
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2972
- "ProvisioningParameters":{"shape":"ProvisioningParameters"},
2973
- "ProvisioningPreferences":{"shape":"ProvisioningPreferences"},
2974
- "Tags":{"shape":"Tags"},
2975
- "NotificationArns":{"shape":"NotificationArns"},
2976
- "ProvisionToken":{
2977
- "shape":"IdempotencyToken",
2978
- "idempotencyToken":true
2979
- }
2980
- }
2981
- },
2982
- "ProvisionProductOutput":{
2983
- "type":"structure",
2984
- "members":{
2985
- "RecordDetail":{"shape":"RecordDetail"}
2986
- }
2987
- },
2988
- "ProvisionedProductAttribute":{
2989
- "type":"structure",
2990
- "members":{
2991
- "Name":{"shape":"ProvisionedProductNameOrArn"},
2992
- "Arn":{"shape":"ProvisionedProductNameOrArn"},
2993
- "Type":{"shape":"ProvisionedProductType"},
2994
- "Id":{"shape":"Id"},
2995
- "Status":{"shape":"ProvisionedProductStatus"},
2996
- "StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
2997
- "CreatedTime":{"shape":"CreatedTime"},
2998
- "IdempotencyToken":{"shape":"IdempotencyToken"},
2999
- "LastRecordId":{"shape":"Id"},
3000
- "LastProvisioningRecordId":{"shape":"Id"},
3001
- "LastSuccessfulProvisioningRecordId":{"shape":"Id"},
3002
- "Tags":{"shape":"Tags"},
3003
- "PhysicalId":{"shape":"PhysicalId"},
3004
- "ProductId":{"shape":"Id"},
3005
- "ProductName":{"shape":"ProductViewName"},
3006
- "ProvisioningArtifactId":{"shape":"Id"},
3007
- "ProvisioningArtifactName":{"shape":"ProvisioningArtifactName"},
3008
- "UserArn":{"shape":"UserArn"},
3009
- "UserArnSession":{"shape":"UserArnSession"}
3010
- }
3011
- },
3012
- "ProvisionedProductAttributes":{
3013
- "type":"list",
3014
- "member":{"shape":"ProvisionedProductAttribute"}
3015
- },
3016
- "ProvisionedProductDetail":{
3017
- "type":"structure",
3018
- "members":{
3019
- "Name":{"shape":"ProvisionedProductNameOrArn"},
3020
- "Arn":{"shape":"ProvisionedProductNameOrArn"},
3021
- "Type":{"shape":"ProvisionedProductType"},
3022
- "Id":{"shape":"ProvisionedProductId"},
3023
- "Status":{"shape":"ProvisionedProductStatus"},
3024
- "StatusMessage":{"shape":"ProvisionedProductStatusMessage"},
3025
- "CreatedTime":{"shape":"CreatedTime"},
3026
- "IdempotencyToken":{"shape":"IdempotencyToken"},
3027
- "LastRecordId":{"shape":"LastRequestId"},
3028
- "LastProvisioningRecordId":{"shape":"Id"},
3029
- "LastSuccessfulProvisioningRecordId":{"shape":"Id"},
3030
- "ProductId":{"shape":"Id"},
3031
- "ProvisioningArtifactId":{"shape":"Id"},
3032
- "LaunchRoleArn":{"shape":"RoleArn"}
3033
- }
3034
- },
3035
- "ProvisionedProductDetails":{
3036
- "type":"list",
3037
- "member":{"shape":"ProvisionedProductDetail"}
3038
- },
3039
- "ProvisionedProductFilters":{
3040
- "type":"map",
3041
- "key":{"shape":"ProvisionedProductViewFilterBy"},
3042
- "value":{"shape":"ProvisionedProductViewFilterValues"}
3043
- },
3044
- "ProvisionedProductId":{"type":"string"},
3045
- "ProvisionedProductName":{
3046
- "type":"string",
3047
- "max":128,
3048
- "min":1,
3049
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]*"
3050
- },
3051
- "ProvisionedProductNameOrArn":{
3052
- "type":"string",
3053
- "max":1224,
3054
- "min":1,
3055
- "pattern":"[a-zA-Z0-9][a-zA-Z0-9._-]{0,127}|arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}"
3056
- },
3057
- "ProvisionedProductPlanDetails":{
3058
- "type":"structure",
3059
- "members":{
3060
- "CreatedTime":{"shape":"CreatedTime"},
3061
- "PathId":{"shape":"Id"},
3062
- "ProductId":{"shape":"Id"},
3063
- "PlanName":{"shape":"ProvisionedProductPlanName"},
3064
- "PlanId":{"shape":"Id"},
3065
- "ProvisionProductId":{"shape":"Id"},
3066
- "ProvisionProductName":{"shape":"ProvisionedProductName"},
3067
- "PlanType":{"shape":"ProvisionedProductPlanType"},
3068
- "ProvisioningArtifactId":{"shape":"Id"},
3069
- "Status":{"shape":"ProvisionedProductPlanStatus"},
3070
- "UpdatedTime":{"shape":"UpdatedTime"},
3071
- "NotificationArns":{"shape":"NotificationArns"},
3072
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
3073
- "Tags":{"shape":"Tags"},
3074
- "StatusMessage":{"shape":"StatusMessage"}
3075
- }
3076
- },
3077
- "ProvisionedProductPlanName":{"type":"string"},
3078
- "ProvisionedProductPlanStatus":{
3079
- "type":"string",
3080
- "enum":[
3081
- "CREATE_IN_PROGRESS",
3082
- "CREATE_SUCCESS",
3083
- "CREATE_FAILED",
3084
- "EXECUTE_IN_PROGRESS",
3085
- "EXECUTE_SUCCESS",
3086
- "EXECUTE_FAILED"
3087
- ]
3088
- },
3089
- "ProvisionedProductPlanSummary":{
3090
- "type":"structure",
3091
- "members":{
3092
- "PlanName":{"shape":"ProvisionedProductPlanName"},
3093
- "PlanId":{"shape":"Id"},
3094
- "ProvisionProductId":{"shape":"Id"},
3095
- "ProvisionProductName":{"shape":"ProvisionedProductName"},
3096
- "PlanType":{"shape":"ProvisionedProductPlanType"},
3097
- "ProvisioningArtifactId":{"shape":"Id"}
3098
- }
3099
- },
3100
- "ProvisionedProductPlanType":{
3101
- "type":"string",
3102
- "enum":["CLOUDFORMATION"]
3103
- },
3104
- "ProvisionedProductPlans":{
3105
- "type":"list",
3106
- "member":{"shape":"ProvisionedProductPlanSummary"}
3107
- },
3108
- "ProvisionedProductProperties":{
3109
- "type":"map",
3110
- "key":{"shape":"PropertyKey"},
3111
- "value":{"shape":"PropertyValue"},
3112
- "max":100,
3113
- "min":1
3114
- },
3115
- "ProvisionedProductStatus":{
3116
- "type":"string",
3117
- "enum":[
3118
- "AVAILABLE",
3119
- "UNDER_CHANGE",
3120
- "TAINTED",
3121
- "ERROR",
3122
- "PLAN_IN_PROGRESS"
3123
- ]
3124
- },
3125
- "ProvisionedProductStatusMessage":{"type":"string"},
3126
- "ProvisionedProductType":{"type":"string"},
3127
- "ProvisionedProductViewFilterBy":{
3128
- "type":"string",
3129
- "enum":["SearchQuery"]
3130
- },
3131
- "ProvisionedProductViewFilterValue":{"type":"string"},
3132
- "ProvisionedProductViewFilterValues":{
3133
- "type":"list",
3134
- "member":{"shape":"ProvisionedProductViewFilterValue"}
3135
- },
3136
- "ProvisioningArtifact":{
3137
- "type":"structure",
3138
- "members":{
3139
- "Id":{"shape":"Id"},
3140
- "Name":{"shape":"ProvisioningArtifactName"},
3141
- "Description":{"shape":"ProvisioningArtifactDescription"},
3142
- "CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
3143
- "Guidance":{"shape":"ProvisioningArtifactGuidance"}
3144
- }
3145
- },
3146
- "ProvisioningArtifactActive":{"type":"boolean"},
3147
- "ProvisioningArtifactCreatedTime":{"type":"timestamp"},
3148
- "ProvisioningArtifactDescription":{
3149
- "type":"string",
3150
- "max":8192
3151
- },
3152
- "ProvisioningArtifactDetail":{
3153
- "type":"structure",
3154
- "members":{
3155
- "Id":{"shape":"Id"},
3156
- "Name":{"shape":"ProvisioningArtifactName"},
3157
- "Description":{"shape":"ProvisioningArtifactName"},
3158
- "Type":{"shape":"ProvisioningArtifactType"},
3159
- "CreatedTime":{"shape":"CreationTime"},
3160
- "Active":{"shape":"ProvisioningArtifactActive"},
3161
- "Guidance":{"shape":"ProvisioningArtifactGuidance"}
3162
- }
3163
- },
3164
- "ProvisioningArtifactDetails":{
3165
- "type":"list",
3166
- "member":{"shape":"ProvisioningArtifactDetail"}
3167
- },
3168
- "ProvisioningArtifactGuidance":{
3169
- "type":"string",
3170
- "enum":[
3171
- "DEFAULT",
3172
- "DEPRECATED"
3173
- ]
3174
- },
3175
- "ProvisioningArtifactInfo":{
3176
- "type":"map",
3177
- "key":{"shape":"ProvisioningArtifactInfoKey"},
3178
- "value":{"shape":"ProvisioningArtifactInfoValue"},
3179
- "max":100,
3180
- "min":1
3181
- },
3182
- "ProvisioningArtifactInfoKey":{"type":"string"},
3183
- "ProvisioningArtifactInfoValue":{"type":"string"},
3184
- "ProvisioningArtifactName":{
3185
- "type":"string",
3186
- "max":8192
3187
- },
3188
- "ProvisioningArtifactOutput":{
3189
- "type":"structure",
3190
- "members":{
3191
- "Key":{"shape":"ProvisioningArtifactOutputKey"},
3192
- "Description":{"shape":"OutputDescription"}
3193
- }
3194
- },
3195
- "ProvisioningArtifactOutputKey":{
3196
- "type":"string",
3197
- "max":255,
3198
- "min":1,
3199
- "pattern":"[a-zA-Z0-9]*"
3200
- },
3201
- "ProvisioningArtifactOutputs":{
3202
- "type":"list",
3203
- "member":{"shape":"ProvisioningArtifactOutput"},
3204
- "max":60
3205
- },
3206
- "ProvisioningArtifactParameter":{
3207
- "type":"structure",
3208
- "members":{
3209
- "ParameterKey":{"shape":"ParameterKey"},
3210
- "DefaultValue":{"shape":"DefaultValue"},
3211
- "ParameterType":{"shape":"ParameterType"},
3212
- "IsNoEcho":{"shape":"NoEcho"},
3213
- "Description":{"shape":"Description"},
3214
- "ParameterConstraints":{"shape":"ParameterConstraints"}
3215
- }
3216
- },
3217
- "ProvisioningArtifactParameters":{
3218
- "type":"list",
3219
- "member":{"shape":"ProvisioningArtifactParameter"}
3220
- },
3221
- "ProvisioningArtifactPreferences":{
3222
- "type":"structure",
3223
- "members":{
3224
- "StackSetAccounts":{"shape":"StackSetAccounts"},
3225
- "StackSetRegions":{"shape":"StackSetRegions"}
3226
- }
3227
- },
3228
- "ProvisioningArtifactProperties":{
3229
- "type":"structure",
3230
- "required":["Info"],
3231
- "members":{
3232
- "Name":{"shape":"ProvisioningArtifactName"},
3233
- "Description":{"shape":"ProvisioningArtifactDescription"},
3234
- "Info":{"shape":"ProvisioningArtifactInfo"},
3235
- "Type":{"shape":"ProvisioningArtifactType"},
3236
- "DisableTemplateValidation":{"shape":"DisableTemplateValidation"}
3237
- }
3238
- },
3239
- "ProvisioningArtifactPropertyName":{
3240
- "type":"string",
3241
- "enum":["Id"]
3242
- },
3243
- "ProvisioningArtifactPropertyValue":{"type":"string"},
3244
- "ProvisioningArtifactSummaries":{
3245
- "type":"list",
3246
- "member":{"shape":"ProvisioningArtifactSummary"}
3247
- },
3248
- "ProvisioningArtifactSummary":{
3249
- "type":"structure",
3250
- "members":{
3251
- "Id":{"shape":"Id"},
3252
- "Name":{"shape":"ProvisioningArtifactName"},
3253
- "Description":{"shape":"ProvisioningArtifactDescription"},
3254
- "CreatedTime":{"shape":"ProvisioningArtifactCreatedTime"},
3255
- "ProvisioningArtifactMetadata":{"shape":"ProvisioningArtifactInfo"}
3256
- }
3257
- },
3258
- "ProvisioningArtifactType":{
3259
- "type":"string",
3260
- "enum":[
3261
- "CLOUD_FORMATION_TEMPLATE",
3262
- "MARKETPLACE_AMI",
3263
- "MARKETPLACE_CAR"
3264
- ]
3265
- },
3266
- "ProvisioningArtifactView":{
3267
- "type":"structure",
3268
- "members":{
3269
- "ProductViewSummary":{"shape":"ProductViewSummary"},
3270
- "ProvisioningArtifact":{"shape":"ProvisioningArtifact"}
3271
- }
3272
- },
3273
- "ProvisioningArtifactViews":{
3274
- "type":"list",
3275
- "member":{"shape":"ProvisioningArtifactView"}
3276
- },
3277
- "ProvisioningArtifacts":{
3278
- "type":"list",
3279
- "member":{"shape":"ProvisioningArtifact"}
3280
- },
3281
- "ProvisioningParameter":{
3282
- "type":"structure",
3283
- "members":{
3284
- "Key":{"shape":"ParameterKey"},
3285
- "Value":{"shape":"ParameterValue"}
3286
- }
3287
- },
3288
- "ProvisioningParameters":{
3289
- "type":"list",
3290
- "member":{"shape":"ProvisioningParameter"}
3291
- },
3292
- "ProvisioningPreferences":{
3293
- "type":"structure",
3294
- "members":{
3295
- "StackSetAccounts":{"shape":"StackSetAccounts"},
3296
- "StackSetRegions":{"shape":"StackSetRegions"},
3297
- "StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
3298
- "StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
3299
- "StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
3300
- "StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"}
3301
- }
3302
- },
3303
- "RecordDetail":{
3304
- "type":"structure",
3305
- "members":{
3306
- "RecordId":{"shape":"Id"},
3307
- "ProvisionedProductName":{"shape":"ProvisionedProductName"},
3308
- "Status":{"shape":"RecordStatus"},
3309
- "CreatedTime":{"shape":"CreatedTime"},
3310
- "UpdatedTime":{"shape":"UpdatedTime"},
3311
- "ProvisionedProductType":{"shape":"ProvisionedProductType"},
3312
- "RecordType":{"shape":"RecordType"},
3313
- "ProvisionedProductId":{"shape":"Id"},
3314
- "ProductId":{"shape":"Id"},
3315
- "ProvisioningArtifactId":{"shape":"Id"},
3316
- "PathId":{"shape":"Id"},
3317
- "RecordErrors":{"shape":"RecordErrors"},
3318
- "RecordTags":{"shape":"RecordTags"},
3319
- "LaunchRoleArn":{"shape":"RoleArn"}
3320
- }
3321
- },
3322
- "RecordDetails":{
3323
- "type":"list",
3324
- "member":{"shape":"RecordDetail"}
3325
- },
3326
- "RecordError":{
3327
- "type":"structure",
3328
- "members":{
3329
- "Code":{"shape":"ErrorCode"},
3330
- "Description":{"shape":"ErrorDescription"}
3331
- }
3332
- },
3333
- "RecordErrors":{
3334
- "type":"list",
3335
- "member":{"shape":"RecordError"}
3336
- },
3337
- "RecordOutput":{
3338
- "type":"structure",
3339
- "members":{
3340
- "OutputKey":{"shape":"OutputKey"},
3341
- "OutputValue":{"shape":"OutputValue"},
3342
- "Description":{"shape":"Description"}
3343
- }
3344
- },
3345
- "RecordOutputs":{
3346
- "type":"list",
3347
- "member":{"shape":"RecordOutput"}
3348
- },
3349
- "RecordStatus":{
3350
- "type":"string",
3351
- "enum":[
3352
- "CREATED",
3353
- "IN_PROGRESS",
3354
- "IN_PROGRESS_IN_ERROR",
3355
- "SUCCEEDED",
3356
- "FAILED"
3357
- ]
3358
- },
3359
- "RecordTag":{
3360
- "type":"structure",
3361
- "members":{
3362
- "Key":{"shape":"RecordTagKey"},
3363
- "Value":{"shape":"RecordTagValue"}
3364
- }
3365
- },
3366
- "RecordTagKey":{
3367
- "type":"string",
3368
- "max":128,
3369
- "min":1,
3370
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
3371
- },
3372
- "RecordTagValue":{
3373
- "type":"string",
3374
- "max":256,
3375
- "min":1,
3376
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
3377
- },
3378
- "RecordTags":{
3379
- "type":"list",
3380
- "member":{"shape":"RecordTag"},
3381
- "max":50
3382
- },
3383
- "RecordType":{"type":"string"},
3384
- "Region":{"type":"string"},
3385
- "RejectPortfolioShareInput":{
3386
- "type":"structure",
3387
- "required":["PortfolioId"],
3388
- "members":{
3389
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3390
- "PortfolioId":{"shape":"Id"},
3391
- "PortfolioShareType":{"shape":"PortfolioShareType"}
3392
- }
3393
- },
3394
- "RejectPortfolioShareOutput":{
3395
- "type":"structure",
3396
- "members":{
3397
- }
3398
- },
3399
- "Replacement":{
3400
- "type":"string",
3401
- "enum":[
3402
- "TRUE",
3403
- "FALSE",
3404
- "CONDITIONAL"
3405
- ]
3406
- },
3407
- "RequiresRecreation":{
3408
- "type":"string",
3409
- "enum":[
3410
- "NEVER",
3411
- "CONDITIONALLY",
3412
- "ALWAYS"
3413
- ]
3414
- },
3415
- "ResourceARN":{
3416
- "type":"string",
3417
- "max":150,
3418
- "min":1
3419
- },
3420
- "ResourceAttribute":{
3421
- "type":"string",
3422
- "enum":[
3423
- "PROPERTIES",
3424
- "METADATA",
3425
- "CREATIONPOLICY",
3426
- "UPDATEPOLICY",
3427
- "DELETIONPOLICY",
3428
- "TAGS"
3429
- ]
3430
- },
3431
- "ResourceChange":{
3432
- "type":"structure",
3433
- "members":{
3434
- "Action":{"shape":"ChangeAction"},
3435
- "LogicalResourceId":{"shape":"LogicalResourceId"},
3436
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
3437
- "ResourceType":{"shape":"PlanResourceType"},
3438
- "Replacement":{"shape":"Replacement"},
3439
- "Scope":{"shape":"Scope"},
3440
- "Details":{"shape":"ResourceChangeDetails"}
3441
- }
3442
- },
3443
- "ResourceChangeDetail":{
3444
- "type":"structure",
3445
- "members":{
3446
- "Target":{"shape":"ResourceTargetDefinition"},
3447
- "Evaluation":{"shape":"EvaluationType"},
3448
- "CausingEntity":{"shape":"CausingEntity"}
3449
- }
3450
- },
3451
- "ResourceChangeDetails":{
3452
- "type":"list",
3453
- "member":{"shape":"ResourceChangeDetail"}
3454
- },
3455
- "ResourceChanges":{
3456
- "type":"list",
3457
- "member":{"shape":"ResourceChange"}
3458
- },
3459
- "ResourceDetail":{
3460
- "type":"structure",
3461
- "members":{
3462
- "Id":{"shape":"ResourceDetailId"},
3463
- "ARN":{"shape":"ResourceDetailARN"},
3464
- "Name":{"shape":"ResourceDetailName"},
3465
- "Description":{"shape":"ResourceDetailDescription"},
3466
- "CreatedTime":{"shape":"ResourceDetailCreatedTime"}
3467
- }
3468
- },
3469
- "ResourceDetailARN":{"type":"string"},
3470
- "ResourceDetailCreatedTime":{"type":"timestamp"},
3471
- "ResourceDetailDescription":{"type":"string"},
3472
- "ResourceDetailId":{"type":"string"},
3473
- "ResourceDetailName":{"type":"string"},
3474
- "ResourceDetails":{
3475
- "type":"list",
3476
- "member":{"shape":"ResourceDetail"}
3477
- },
3478
- "ResourceId":{"type":"string"},
3479
- "ResourceInUseException":{
3480
- "type":"structure",
3481
- "members":{
3482
- },
3483
- "exception":true
3484
- },
3485
- "ResourceNotFoundException":{
3486
- "type":"structure",
3487
- "members":{
3488
- },
3489
- "exception":true
3490
- },
3491
- "ResourceTargetDefinition":{
3492
- "type":"structure",
3493
- "members":{
3494
- "Attribute":{"shape":"ResourceAttribute"},
3495
- "Name":{"shape":"PropertyName"},
3496
- "RequiresRecreation":{"shape":"RequiresRecreation"}
3497
- }
3498
- },
3499
- "ResourceType":{"type":"string"},
3500
- "RetainPhysicalResources":{"type":"boolean"},
3501
- "RoleArn":{
3502
- "type":"string",
3503
- "max":1224,
3504
- "min":1,
3505
- "pattern":"arn:[a-z0-9-\\.]{1,63}:iam::[a-z0-9-\\.]{0,63}:role\\/.{0,1023}"
3506
- },
3507
- "ScanProvisionedProductsInput":{
3508
- "type":"structure",
3509
- "members":{
3510
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3511
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
3512
- "PageSize":{"shape":"PageSize"},
3513
- "PageToken":{"shape":"PageToken"}
3514
- }
3515
- },
3516
- "ScanProvisionedProductsOutput":{
3517
- "type":"structure",
3518
- "members":{
3519
- "ProvisionedProducts":{"shape":"ProvisionedProductDetails"},
3520
- "NextPageToken":{"shape":"PageToken"}
3521
- }
3522
- },
3523
- "Scope":{
3524
- "type":"list",
3525
- "member":{"shape":"ResourceAttribute"}
3526
- },
3527
- "SearchFilterKey":{"type":"string"},
3528
- "SearchFilterValue":{"type":"string"},
3529
- "SearchProductsAsAdminInput":{
3530
- "type":"structure",
3531
- "members":{
3532
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3533
- "PortfolioId":{"shape":"Id"},
3534
- "Filters":{"shape":"ProductViewFilters"},
3535
- "SortBy":{"shape":"ProductViewSortBy"},
3536
- "SortOrder":{"shape":"SortOrder"},
3537
- "PageToken":{"shape":"PageToken"},
3538
- "PageSize":{"shape":"PageSize"},
3539
- "ProductSource":{"shape":"ProductSource"}
3540
- }
3541
- },
3542
- "SearchProductsAsAdminOutput":{
3543
- "type":"structure",
3544
- "members":{
3545
- "ProductViewDetails":{"shape":"ProductViewDetails"},
3546
- "NextPageToken":{"shape":"PageToken"}
3547
- }
3548
- },
3549
- "SearchProductsInput":{
3550
- "type":"structure",
3551
- "members":{
3552
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3553
- "Filters":{"shape":"ProductViewFilters"},
3554
- "PageSize":{"shape":"PageSize"},
3555
- "SortBy":{"shape":"ProductViewSortBy"},
3556
- "SortOrder":{"shape":"SortOrder"},
3557
- "PageToken":{"shape":"PageToken"}
3558
- }
3559
- },
3560
- "SearchProductsOutput":{
3561
- "type":"structure",
3562
- "members":{
3563
- "ProductViewSummaries":{"shape":"ProductViewSummaries"},
3564
- "ProductViewAggregations":{"shape":"ProductViewAggregations"},
3565
- "NextPageToken":{"shape":"PageToken"}
3566
- }
3567
- },
3568
- "SearchProvisionedProductsInput":{
3569
- "type":"structure",
3570
- "members":{
3571
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3572
- "AccessLevelFilter":{"shape":"AccessLevelFilter"},
3573
- "Filters":{"shape":"ProvisionedProductFilters"},
3574
- "SortBy":{"shape":"SortField"},
3575
- "SortOrder":{"shape":"SortOrder"},
3576
- "PageSize":{"shape":"SearchProvisionedProductsPageSize"},
3577
- "PageToken":{"shape":"PageToken"}
3578
- }
3579
- },
3580
- "SearchProvisionedProductsOutput":{
3581
- "type":"structure",
3582
- "members":{
3583
- "ProvisionedProducts":{"shape":"ProvisionedProductAttributes"},
3584
- "TotalResultsCount":{"shape":"TotalResultsCount"},
3585
- "NextPageToken":{"shape":"PageToken"}
3586
- }
3587
- },
3588
- "SearchProvisionedProductsPageSize":{
3589
- "type":"integer",
3590
- "max":100,
3591
- "min":0
3592
- },
3593
- "ServiceActionAssociation":{
3594
- "type":"structure",
3595
- "required":[
3596
- "ServiceActionId",
3597
- "ProductId",
3598
- "ProvisioningArtifactId"
3599
- ],
3600
- "members":{
3601
- "ServiceActionId":{"shape":"Id"},
3602
- "ProductId":{"shape":"Id"},
3603
- "ProvisioningArtifactId":{"shape":"Id"}
3604
- }
3605
- },
3606
- "ServiceActionAssociationErrorCode":{
3607
- "type":"string",
3608
- "enum":[
3609
- "DUPLICATE_RESOURCE",
3610
- "INTERNAL_FAILURE",
3611
- "LIMIT_EXCEEDED",
3612
- "RESOURCE_NOT_FOUND",
3613
- "THROTTLING"
3614
- ]
3615
- },
3616
- "ServiceActionAssociationErrorMessage":{
3617
- "type":"string",
3618
- "max":1024,
3619
- "min":1
3620
- },
3621
- "ServiceActionAssociations":{
3622
- "type":"list",
3623
- "member":{"shape":"ServiceActionAssociation"},
3624
- "max":50,
3625
- "min":1
3626
- },
3627
- "ServiceActionDefinitionKey":{
3628
- "type":"string",
3629
- "enum":[
3630
- "Name",
3631
- "Version",
3632
- "AssumeRole",
3633
- "Parameters"
3634
- ]
3635
- },
3636
- "ServiceActionDefinitionMap":{
3637
- "type":"map",
3638
- "key":{"shape":"ServiceActionDefinitionKey"},
3639
- "value":{"shape":"ServiceActionDefinitionValue"},
3640
- "max":100,
3641
- "min":1
3642
- },
3643
- "ServiceActionDefinitionType":{
3644
- "type":"string",
3645
- "enum":["SSM_AUTOMATION"]
3646
- },
3647
- "ServiceActionDefinitionValue":{
3648
- "type":"string",
3649
- "max":1024,
3650
- "min":1
3651
- },
3652
- "ServiceActionDescription":{
3653
- "type":"string",
3654
- "max":1024
3655
- },
3656
- "ServiceActionDetail":{
3657
- "type":"structure",
3658
- "members":{
3659
- "ServiceActionSummary":{"shape":"ServiceActionSummary"},
3660
- "Definition":{"shape":"ServiceActionDefinitionMap"}
3661
- }
3662
- },
3663
- "ServiceActionName":{
3664
- "type":"string",
3665
- "max":256,
3666
- "min":1,
3667
- "pattern":"^[a-zA-Z0-9_\\-.]*"
3668
- },
3669
- "ServiceActionSummaries":{
3670
- "type":"list",
3671
- "member":{"shape":"ServiceActionSummary"}
3672
- },
3673
- "ServiceActionSummary":{
3674
- "type":"structure",
3675
- "members":{
3676
- "Id":{"shape":"Id"},
3677
- "Name":{"shape":"ServiceActionName"},
3678
- "Description":{"shape":"ServiceActionDescription"},
3679
- "DefinitionType":{"shape":"ServiceActionDefinitionType"}
3680
- }
3681
- },
3682
- "ShareDetails":{
3683
- "type":"structure",
3684
- "members":{
3685
- "SuccessfulShares":{"shape":"SuccessfulShares"},
3686
- "ShareErrors":{"shape":"ShareErrors"}
3687
- }
3688
- },
3689
- "ShareError":{
3690
- "type":"structure",
3691
- "members":{
3692
- "Accounts":{"shape":"Namespaces"},
3693
- "Message":{"shape":"Message"},
3694
- "Error":{"shape":"Error"}
3695
- }
3696
- },
3697
- "ShareErrors":{
3698
- "type":"list",
3699
- "member":{"shape":"ShareError"}
3700
- },
3701
- "ShareStatus":{
3702
- "type":"string",
3703
- "enum":[
3704
- "NOT_STARTED",
3705
- "IN_PROGRESS",
3706
- "COMPLETED",
3707
- "COMPLETED_WITH_ERRORS",
3708
- "ERROR"
3709
- ]
3710
- },
3711
- "SortField":{"type":"string"},
3712
- "SortOrder":{
3713
- "type":"string",
3714
- "enum":[
3715
- "ASCENDING",
3716
- "DESCENDING"
3717
- ]
3718
- },
3719
- "SourceProvisioningArtifactProperties":{
3720
- "type":"list",
3721
- "member":{"shape":"SourceProvisioningArtifactPropertiesMap"}
3722
- },
3723
- "SourceProvisioningArtifactPropertiesMap":{
3724
- "type":"map",
3725
- "key":{"shape":"ProvisioningArtifactPropertyName"},
3726
- "value":{"shape":"ProvisioningArtifactPropertyValue"}
3727
- },
3728
- "StackInstance":{
3729
- "type":"structure",
3730
- "members":{
3731
- "Account":{"shape":"AccountId"},
3732
- "Region":{"shape":"Region"},
3733
- "StackInstanceStatus":{"shape":"StackInstanceStatus"}
3734
- }
3735
- },
3736
- "StackInstanceStatus":{
3737
- "type":"string",
3738
- "enum":[
3739
- "CURRENT",
3740
- "OUTDATED",
3741
- "INOPERABLE"
3742
- ]
3743
- },
3744
- "StackInstances":{
3745
- "type":"list",
3746
- "member":{"shape":"StackInstance"}
3747
- },
3748
- "StackSetAccounts":{
3749
- "type":"list",
3750
- "member":{"shape":"AccountId"}
3751
- },
3752
- "StackSetFailureToleranceCount":{
3753
- "type":"integer",
3754
- "min":0
3755
- },
3756
- "StackSetFailureTolerancePercentage":{
3757
- "type":"integer",
3758
- "max":100,
3759
- "min":0
3760
- },
3761
- "StackSetMaxConcurrencyCount":{
3762
- "type":"integer",
3763
- "min":1
3764
- },
3765
- "StackSetMaxConcurrencyPercentage":{
3766
- "type":"integer",
3767
- "max":100,
3768
- "min":1
3769
- },
3770
- "StackSetOperationType":{
3771
- "type":"string",
3772
- "enum":[
3773
- "CREATE",
3774
- "UPDATE",
3775
- "DELETE"
3776
- ]
3777
- },
3778
- "StackSetRegions":{
3779
- "type":"list",
3780
- "member":{"shape":"Region"}
3781
- },
3782
- "Status":{
3783
- "type":"string",
3784
- "enum":[
3785
- "AVAILABLE",
3786
- "CREATING",
3787
- "FAILED"
3788
- ]
3789
- },
3790
- "StatusDetail":{"type":"string"},
3791
- "StatusMessage":{
3792
- "type":"string",
3793
- "pattern":"[\\u0009\\u000a\\u000d\\u0020-\\uD7FF\\uE000-\\uFFFD]*"
3794
- },
3795
- "SuccessfulShares":{
3796
- "type":"list",
3797
- "member":{"shape":"AccountId"}
3798
- },
3799
- "SupportDescription":{
3800
- "type":"string",
3801
- "max":8191
3802
- },
3803
- "SupportEmail":{
3804
- "type":"string",
3805
- "max":254
3806
- },
3807
- "SupportUrl":{
3808
- "type":"string",
3809
- "max":2083
3810
- },
3811
- "Tag":{
3812
- "type":"structure",
3813
- "required":[
3814
- "Key",
3815
- "Value"
3816
- ],
3817
- "members":{
3818
- "Key":{"shape":"TagKey"},
3819
- "Value":{"shape":"TagValue"}
3820
- }
3821
- },
3822
- "TagKey":{
3823
- "type":"string",
3824
- "max":128,
3825
- "min":1,
3826
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3827
- },
3828
- "TagKeys":{
3829
- "type":"list",
3830
- "member":{"shape":"TagKey"}
3831
- },
3832
- "TagOptionActive":{"type":"boolean"},
3833
- "TagOptionDetail":{
3834
- "type":"structure",
3835
- "members":{
3836
- "Key":{"shape":"TagOptionKey"},
3837
- "Value":{"shape":"TagOptionValue"},
3838
- "Active":{"shape":"TagOptionActive"},
3839
- "Id":{"shape":"TagOptionId"}
3840
- }
3841
- },
3842
- "TagOptionDetails":{
3843
- "type":"list",
3844
- "member":{"shape":"TagOptionDetail"}
3845
- },
3846
- "TagOptionId":{
3847
- "type":"string",
3848
- "max":100,
3849
- "min":1
3850
- },
3851
- "TagOptionKey":{
3852
- "type":"string",
3853
- "max":128,
3854
- "min":1,
3855
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3856
- },
3857
- "TagOptionNotMigratedException":{
3858
- "type":"structure",
3859
- "members":{
3860
- },
3861
- "exception":true
3862
- },
3863
- "TagOptionSummaries":{
3864
- "type":"list",
3865
- "member":{"shape":"TagOptionSummary"}
3866
- },
3867
- "TagOptionSummary":{
3868
- "type":"structure",
3869
- "members":{
3870
- "Key":{"shape":"TagOptionKey"},
3871
- "Values":{"shape":"TagOptionValues"}
3872
- }
3873
- },
3874
- "TagOptionValue":{
3875
- "type":"string",
3876
- "max":256,
3877
- "min":1,
3878
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3879
- },
3880
- "TagOptionValues":{
3881
- "type":"list",
3882
- "member":{"shape":"TagOptionValue"}
3883
- },
3884
- "TagValue":{
3885
- "type":"string",
3886
- "max":256,
3887
- "min":1,
3888
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3889
- },
3890
- "Tags":{
3891
- "type":"list",
3892
- "member":{"shape":"Tag"},
3893
- "max":50
3894
- },
3895
- "TerminateProvisionedProductInput":{
3896
- "type":"structure",
3897
- "required":["TerminateToken"],
3898
- "members":{
3899
- "ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
3900
- "ProvisionedProductId":{"shape":"Id"},
3901
- "TerminateToken":{
3902
- "shape":"IdempotencyToken",
3903
- "idempotencyToken":true
3904
- },
3905
- "IgnoreErrors":{"shape":"IgnoreErrors"},
3906
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3907
- "RetainPhysicalResources":{"shape":"RetainPhysicalResources"}
3908
- }
3909
- },
3910
- "TerminateProvisionedProductOutput":{
3911
- "type":"structure",
3912
- "members":{
3913
- "RecordDetail":{"shape":"RecordDetail"}
3914
- }
3915
- },
3916
- "TotalResultsCount":{"type":"integer"},
3917
- "UpdateConstraintInput":{
3918
- "type":"structure",
3919
- "required":["Id"],
3920
- "members":{
3921
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3922
- "Id":{"shape":"Id"},
3923
- "Description":{"shape":"ConstraintDescription"},
3924
- "Parameters":{"shape":"ConstraintParameters"}
3925
- }
3926
- },
3927
- "UpdateConstraintOutput":{
3928
- "type":"structure",
3929
- "members":{
3930
- "ConstraintDetail":{"shape":"ConstraintDetail"},
3931
- "ConstraintParameters":{"shape":"ConstraintParameters"},
3932
- "Status":{"shape":"Status"}
3933
- }
3934
- },
3935
- "UpdatePortfolioInput":{
3936
- "type":"structure",
3937
- "required":["Id"],
3938
- "members":{
3939
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3940
- "Id":{"shape":"Id"},
3941
- "DisplayName":{"shape":"PortfolioDisplayName"},
3942
- "Description":{"shape":"PortfolioDescription"},
3943
- "ProviderName":{"shape":"ProviderName"},
3944
- "AddTags":{"shape":"AddTags"},
3945
- "RemoveTags":{"shape":"TagKeys"}
3946
- }
3947
- },
3948
- "UpdatePortfolioOutput":{
3949
- "type":"structure",
3950
- "members":{
3951
- "PortfolioDetail":{"shape":"PortfolioDetail"},
3952
- "Tags":{"shape":"Tags"}
3953
- }
3954
- },
3955
- "UpdateProductInput":{
3956
- "type":"structure",
3957
- "required":["Id"],
3958
- "members":{
3959
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3960
- "Id":{"shape":"Id"},
3961
- "Name":{"shape":"ProductViewName"},
3962
- "Owner":{"shape":"ProductViewOwner"},
3963
- "Description":{"shape":"ProductViewShortDescription"},
3964
- "Distributor":{"shape":"ProductViewOwner"},
3965
- "SupportDescription":{"shape":"SupportDescription"},
3966
- "SupportEmail":{"shape":"SupportEmail"},
3967
- "SupportUrl":{"shape":"SupportUrl"},
3968
- "AddTags":{"shape":"AddTags"},
3969
- "RemoveTags":{"shape":"TagKeys"}
3970
- }
3971
- },
3972
- "UpdateProductOutput":{
3973
- "type":"structure",
3974
- "members":{
3975
- "ProductViewDetail":{"shape":"ProductViewDetail"},
3976
- "Tags":{"shape":"Tags"}
3977
- }
3978
- },
3979
- "UpdateProvisionedProductInput":{
3980
- "type":"structure",
3981
- "required":["UpdateToken"],
3982
- "members":{
3983
- "AcceptLanguage":{"shape":"AcceptLanguage"},
3984
- "ProvisionedProductName":{"shape":"ProvisionedProductNameOrArn"},
3985
- "ProvisionedProductId":{"shape":"Id"},
3986
- "ProductId":{"shape":"Id"},
3987
- "ProductName":{"shape":"ProductViewName"},
3988
- "ProvisioningArtifactId":{"shape":"Id"},
3989
- "ProvisioningArtifactName":{"shape":"ProvisioningArtifactName"},
3990
- "PathId":{"shape":"Id"},
3991
- "PathName":{"shape":"PortfolioDisplayName"},
3992
- "ProvisioningParameters":{"shape":"UpdateProvisioningParameters"},
3993
- "ProvisioningPreferences":{"shape":"UpdateProvisioningPreferences"},
3994
- "Tags":{"shape":"Tags"},
3995
- "UpdateToken":{
3996
- "shape":"IdempotencyToken",
3997
- "idempotencyToken":true
3998
- }
3999
- }
4000
- },
4001
- "UpdateProvisionedProductOutput":{
4002
- "type":"structure",
4003
- "members":{
4004
- "RecordDetail":{"shape":"RecordDetail"}
4005
- }
4006
- },
4007
- "UpdateProvisionedProductPropertiesInput":{
4008
- "type":"structure",
4009
- "required":[
4010
- "ProvisionedProductId",
4011
- "ProvisionedProductProperties",
4012
- "IdempotencyToken"
4013
- ],
4014
- "members":{
4015
- "AcceptLanguage":{"shape":"AcceptLanguage"},
4016
- "ProvisionedProductId":{"shape":"Id"},
4017
- "ProvisionedProductProperties":{"shape":"ProvisionedProductProperties"},
4018
- "IdempotencyToken":{
4019
- "shape":"IdempotencyToken",
4020
- "idempotencyToken":true
4021
- }
4022
- }
4023
- },
4024
- "UpdateProvisionedProductPropertiesOutput":{
4025
- "type":"structure",
4026
- "members":{
4027
- "ProvisionedProductId":{"shape":"Id"},
4028
- "ProvisionedProductProperties":{"shape":"ProvisionedProductProperties"},
4029
- "RecordId":{"shape":"Id"},
4030
- "Status":{"shape":"RecordStatus"}
4031
- }
4032
- },
4033
- "UpdateProvisioningArtifactInput":{
4034
- "type":"structure",
4035
- "required":[
4036
- "ProductId",
4037
- "ProvisioningArtifactId"
4038
- ],
4039
- "members":{
4040
- "AcceptLanguage":{"shape":"AcceptLanguage"},
4041
- "ProductId":{"shape":"Id"},
4042
- "ProvisioningArtifactId":{"shape":"Id"},
4043
- "Name":{"shape":"ProvisioningArtifactName"},
4044
- "Description":{"shape":"ProvisioningArtifactDescription"},
4045
- "Active":{"shape":"ProvisioningArtifactActive"},
4046
- "Guidance":{"shape":"ProvisioningArtifactGuidance"}
4047
- }
4048
- },
4049
- "UpdateProvisioningArtifactOutput":{
4050
- "type":"structure",
4051
- "members":{
4052
- "ProvisioningArtifactDetail":{"shape":"ProvisioningArtifactDetail"},
4053
- "Info":{"shape":"ProvisioningArtifactInfo"},
4054
- "Status":{"shape":"Status"}
4055
- }
4056
- },
4057
- "UpdateProvisioningParameter":{
4058
- "type":"structure",
4059
- "members":{
4060
- "Key":{"shape":"ParameterKey"},
4061
- "Value":{"shape":"ParameterValue"},
4062
- "UsePreviousValue":{"shape":"UsePreviousValue"}
4063
- }
4064
- },
4065
- "UpdateProvisioningParameters":{
4066
- "type":"list",
4067
- "member":{"shape":"UpdateProvisioningParameter"}
4068
- },
4069
- "UpdateProvisioningPreferences":{
4070
- "type":"structure",
4071
- "members":{
4072
- "StackSetAccounts":{"shape":"StackSetAccounts"},
4073
- "StackSetRegions":{"shape":"StackSetRegions"},
4074
- "StackSetFailureToleranceCount":{"shape":"StackSetFailureToleranceCount"},
4075
- "StackSetFailureTolerancePercentage":{"shape":"StackSetFailureTolerancePercentage"},
4076
- "StackSetMaxConcurrencyCount":{"shape":"StackSetMaxConcurrencyCount"},
4077
- "StackSetMaxConcurrencyPercentage":{"shape":"StackSetMaxConcurrencyPercentage"},
4078
- "StackSetOperationType":{"shape":"StackSetOperationType"}
4079
- }
4080
- },
4081
- "UpdateServiceActionInput":{
4082
- "type":"structure",
4083
- "required":["Id"],
4084
- "members":{
4085
- "Id":{"shape":"Id"},
4086
- "Name":{"shape":"ServiceActionName"},
4087
- "Definition":{"shape":"ServiceActionDefinitionMap"},
4088
- "Description":{"shape":"ServiceActionDescription"},
4089
- "AcceptLanguage":{"shape":"AcceptLanguage"}
4090
- }
4091
- },
4092
- "UpdateServiceActionOutput":{
4093
- "type":"structure",
4094
- "members":{
4095
- "ServiceActionDetail":{"shape":"ServiceActionDetail"}
4096
- }
4097
- },
4098
- "UpdateTagOptionInput":{
4099
- "type":"structure",
4100
- "required":["Id"],
4101
- "members":{
4102
- "Id":{"shape":"TagOptionId"},
4103
- "Value":{"shape":"TagOptionValue"},
4104
- "Active":{"shape":"TagOptionActive"}
4105
- }
4106
- },
4107
- "UpdateTagOptionOutput":{
4108
- "type":"structure",
4109
- "members":{
4110
- "TagOptionDetail":{"shape":"TagOptionDetail"}
4111
- }
4112
- },
4113
- "UpdatedTime":{"type":"timestamp"},
4114
- "UsageInstruction":{
4115
- "type":"structure",
4116
- "members":{
4117
- "Type":{"shape":"InstructionType"},
4118
- "Value":{"shape":"InstructionValue"}
4119
- }
4120
- },
4121
- "UsageInstructions":{
4122
- "type":"list",
4123
- "member":{"shape":"UsageInstruction"}
4124
- },
4125
- "UsePreviousValue":{"type":"boolean"},
4126
- "UserArn":{"type":"string"},
4127
- "UserArnSession":{"type":"string"},
4128
- "Verbose":{"type":"boolean"}
4129
- }
4130
- }