aws-sdk-core 2.11.502 → 3.94.0

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