aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -0,0 +1,1566 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::STS
11
+ module Types
12
+
13
+ # @!attribute [rw] role_arn
14
+ # The Amazon Resource Name (ARN) of the role to assume.
15
+ # @return [String]
16
+ #
17
+ # @!attribute [rw] role_session_name
18
+ # An identifier for the assumed role session.
19
+ #
20
+ # Use the role session name to uniquely identify a session when the
21
+ # same role is assumed by different principals or for different
22
+ # reasons. In cross-account scenarios, the role session name is
23
+ # visible to, and can be logged by the account that owns the role. The
24
+ # role session name is also used in the ARN of the assumed role
25
+ # principal. This means that subsequent cross-account API requests
26
+ # that use the temporary security credentials will expose the role
27
+ # session name to the external account in their CloudTrail logs.
28
+ #
29
+ # The regex used to validate this parameter is a string of characters
30
+ # consisting of upper- and lower-case alphanumeric characters with no
31
+ # spaces. You can also include underscores or any of the following
32
+ # characters: =,.@-
33
+ # @return [String]
34
+ #
35
+ # @!attribute [rw] policy_arns
36
+ # The Amazon Resource Names (ARNs) of the IAM managed policies that
37
+ # you want to use as managed session policies. The policies must exist
38
+ # in the same account as the role.
39
+ #
40
+ # This parameter is optional. You can provide up to 10 managed policy
41
+ # ARNs. However, the plaintext that you use for both inline and
42
+ # managed session policies can't exceed 2,048 characters. For more
43
+ # information about ARNs, see [Amazon Resource Names (ARNs) and Amazon
44
+ # Web Services Service Namespaces][1] in the Amazon Web Services
45
+ # General Reference.
46
+ #
47
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
48
+ # session policy, managed policy ARNs, and session tags into a packed
49
+ # binary format that has a separate limit. Your request can fail for
50
+ # this limit even if your plaintext meets the other requirements. The
51
+ # `PackedPolicySize` response element indicates by percentage how
52
+ # close the policies and tags for your request are to the upper size
53
+ # limit.
54
+ #
55
+ # </note>
56
+ #
57
+ # Passing policies to this operation returns new temporary
58
+ # credentials. The resulting session's permissions are the
59
+ # intersection of the role's identity-based policy and the session
60
+ # policies. You can use the role's temporary credentials in
61
+ # subsequent Amazon Web Services API calls to access resources in the
62
+ # account that owns the role. You cannot use session policies to grant
63
+ # more permissions than those allowed by the identity-based policy of
64
+ # the role that is being assumed. For more information, see [Session
65
+ # Policies][2] in the *IAM User Guide*.
66
+ #
67
+ #
68
+ #
69
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
70
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
71
+ # @return [Array<Types::PolicyDescriptorType>]
72
+ #
73
+ # @!attribute [rw] policy
74
+ # An IAM policy in JSON format that you want to use as an inline
75
+ # session policy.
76
+ #
77
+ # This parameter is optional. Passing policies to this operation
78
+ # returns new temporary credentials. The resulting session's
79
+ # permissions are the intersection of the role's identity-based
80
+ # policy and the session policies. You can use the role's temporary
81
+ # credentials in subsequent Amazon Web Services API calls to access
82
+ # resources in the account that owns the role. You cannot use session
83
+ # policies to grant more permissions than those allowed by the
84
+ # identity-based policy of the role that is being assumed. For more
85
+ # information, see [Session Policies][1] in the *IAM User Guide*.
86
+ #
87
+ # The plaintext that you use for both inline and managed session
88
+ # policies can't exceed 2,048 characters. The JSON policy characters
89
+ # can be any ASCII character from the space character to the end of
90
+ # the valid character list (\\u0020 through \\u00FF). It can also
91
+ # include the tab (\\u0009), linefeed (\\u000A), and carriage return
92
+ # (\\u000D) characters.
93
+ #
94
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
95
+ # session policy, managed policy ARNs, and session tags into a packed
96
+ # binary format that has a separate limit. Your request can fail for
97
+ # this limit even if your plaintext meets the other requirements. The
98
+ # `PackedPolicySize` response element indicates by percentage how
99
+ # close the policies and tags for your request are to the upper size
100
+ # limit.
101
+ #
102
+ # </note>
103
+ #
104
+ #
105
+ #
106
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
107
+ # @return [String]
108
+ #
109
+ # @!attribute [rw] duration_seconds
110
+ # The duration, in seconds, of the role session. The value specified
111
+ # can range from 900 seconds (15 minutes) up to the maximum session
112
+ # duration set for the role. The maximum session duration setting can
113
+ # have a value from 1 hour to 12 hours. If you specify a value higher
114
+ # than this setting or the administrator setting (whichever is lower),
115
+ # the operation fails. For example, if you specify a session duration
116
+ # of 12 hours, but your administrator set the maximum session duration
117
+ # to 6 hours, your operation fails.
118
+ #
119
+ # Role chaining limits your Amazon Web Services CLI or Amazon Web
120
+ # Services API role session to a maximum of one hour. When you use the
121
+ # `AssumeRole` API operation to assume a role, you can specify the
122
+ # duration of your role session with the `DurationSeconds` parameter.
123
+ # You can specify a parameter value of up to 43200 seconds (12 hours),
124
+ # depending on the maximum session duration setting for your role.
125
+ # However, if you assume a role using role chaining and provide a
126
+ # `DurationSeconds` parameter value greater than one hour, the
127
+ # operation fails. To learn how to view the maximum value for your
128
+ # role, see [View the Maximum Session Duration Setting for a Role][1]
129
+ # in the *IAM User Guide*.
130
+ #
131
+ # By default, the value is set to `3600` seconds.
132
+ #
133
+ # <note markdown="1"> The `DurationSeconds` parameter is separate from the duration of a
134
+ # console session that you might request using the returned
135
+ # credentials. The request to the federation endpoint for a console
136
+ # sign-in token takes a `SessionDuration` parameter that specifies the
137
+ # maximum length of the console session. For more information, see
138
+ # [Creating a URL that Enables Federated Users to Access the Amazon
139
+ # Web Services Management Console][2] in the *IAM User Guide*.
140
+ #
141
+ # </note>
142
+ #
143
+ #
144
+ #
145
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session
146
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html
147
+ # @return [Integer]
148
+ #
149
+ # @!attribute [rw] tags
150
+ # A list of session tags that you want to pass. Each session tag
151
+ # consists of a key name and an associated value. For more information
152
+ # about session tags, see [Tagging Amazon Web Services STS
153
+ # Sessions][1] in the *IAM User Guide*.
154
+ #
155
+ # This parameter is optional. You can pass up to 50 session tags. The
156
+ # plaintext session tag keys can’t exceed 128 characters, and the
157
+ # values can’t exceed 256 characters. For these and additional limits,
158
+ # see [IAM and STS Character Limits][2] in the *IAM User Guide*.
159
+ #
160
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
161
+ # session policy, managed policy ARNs, and session tags into a packed
162
+ # binary format that has a separate limit. Your request can fail for
163
+ # this limit even if your plaintext meets the other requirements. The
164
+ # `PackedPolicySize` response element indicates by percentage how
165
+ # close the policies and tags for your request are to the upper size
166
+ # limit.
167
+ #
168
+ # </note>
169
+ #
170
+ # You can pass a session tag with the same key as a tag that is
171
+ # already attached to the role. When you do, session tags override a
172
+ # role tag with the same key.
173
+ #
174
+ # Tag key–value pairs are not case sensitive, but case is preserved.
175
+ # This means that you cannot have separate `Department` and
176
+ # `department` tag keys. Assume that the role has the
177
+ # `Department`=`Marketing` tag and you pass the
178
+ # `department`=`engineering` session tag. `Department` and
179
+ # `department` are not saved as separate tags, and the session tag
180
+ # passed in the request takes precedence over the role tag.
181
+ #
182
+ # Additionally, if you used temporary credentials to perform this
183
+ # operation, the new session inherits any transitive session tags from
184
+ # the calling session. If you pass a session tag with the same key as
185
+ # an inherited tag, the operation fails. To view the inherited tags
186
+ # for a session, see the CloudTrail logs. For more information, see
187
+ # [Viewing Session Tags in CloudTrail][3] in the *IAM User Guide*.
188
+ #
189
+ #
190
+ #
191
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
192
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length
193
+ # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_ctlogs
194
+ # @return [Array<Types::Tag>]
195
+ #
196
+ # @!attribute [rw] transitive_tag_keys
197
+ # A list of keys for session tags that you want to set as transitive.
198
+ # If you set a tag key as transitive, the corresponding key and value
199
+ # passes to subsequent sessions in a role chain. For more information,
200
+ # see [Chaining Roles with Session Tags][1] in the *IAM User Guide*.
201
+ #
202
+ # This parameter is optional. When you set session tags as transitive,
203
+ # the session policy and session tags packed binary limit is not
204
+ # affected.
205
+ #
206
+ # If you choose not to specify a transitive tag key, then no tags are
207
+ # passed from this session to any subsequent sessions.
208
+ #
209
+ #
210
+ #
211
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining
212
+ # @return [Array<String>]
213
+ #
214
+ # @!attribute [rw] external_id
215
+ # A unique identifier that might be required when you assume a role in
216
+ # another account. If the administrator of the account to which the
217
+ # role belongs provided you with an external ID, then provide that
218
+ # value in the `ExternalId` parameter. This value can be any string,
219
+ # such as a passphrase or account number. A cross-account role is
220
+ # usually set up to trust everyone in an account. Therefore, the
221
+ # administrator of the trusting account might send an external ID to
222
+ # the administrator of the trusted account. That way, only someone
223
+ # with the ID can assume the role, rather than everyone in the
224
+ # account. For more information about the external ID, see [How to Use
225
+ # an External ID When Granting Access to Your Amazon Web Services
226
+ # Resources to a Third Party][1] in the *IAM User Guide*.
227
+ #
228
+ # The regex used to validate this parameter is a string of characters
229
+ # consisting of upper- and lower-case alphanumeric characters with no
230
+ # spaces. You can also include underscores or any of the following
231
+ # characters: =,.@:/-
232
+ #
233
+ #
234
+ #
235
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html
236
+ # @return [String]
237
+ #
238
+ # @!attribute [rw] serial_number
239
+ # The identification number of the MFA device that is associated with
240
+ # the user who is making the `AssumeRole` call. Specify this value if
241
+ # the trust policy of the role being assumed includes a condition that
242
+ # requires MFA authentication. The value is either the serial number
243
+ # for a hardware device (such as `GAHT12345678`) or an Amazon Resource
244
+ # Name (ARN) for a virtual device (such as
245
+ # `arn:aws:iam::123456789012:mfa/user`).
246
+ #
247
+ # The regex used to validate this parameter is a string of characters
248
+ # consisting of upper- and lower-case alphanumeric characters with no
249
+ # spaces. You can also include underscores or any of the following
250
+ # characters: =,.@-
251
+ # @return [String]
252
+ #
253
+ # @!attribute [rw] token_code
254
+ # The value provided by the MFA device, if the trust policy of the
255
+ # role being assumed requires MFA. (In other words, if the policy
256
+ # includes a condition that tests for MFA). If the role being assumed
257
+ # requires MFA and if the `TokenCode` value is missing or expired, the
258
+ # `AssumeRole` call returns an "access denied" error.
259
+ #
260
+ # The format for this parameter, as described by its regex pattern, is
261
+ # a sequence of six numeric digits.
262
+ # @return [String]
263
+ #
264
+ # @!attribute [rw] source_identity
265
+ # The source identity specified by the principal that is calling the
266
+ # `AssumeRole` operation.
267
+ #
268
+ # You can require users to specify a source identity when they assume
269
+ # a role. You do this by using the `sts:SourceIdentity` condition key
270
+ # in a role trust policy. You can use source identity information in
271
+ # CloudTrail logs to determine who took actions with a role. You can
272
+ # use the `aws:SourceIdentity` condition key to further control access
273
+ # to Amazon Web Services resources based on the value of source
274
+ # identity. For more information about using source identity, see
275
+ # [Monitor and control actions taken with assumed roles][1] in the
276
+ # *IAM User Guide*.
277
+ #
278
+ # The regex used to validate this parameter is a string of characters
279
+ # consisting of upper- and lower-case alphanumeric characters with no
280
+ # spaces. You can also include underscores or any of the following
281
+ # characters: =,.@-. You cannot use a value that begins with the text
282
+ # `aws:`. This prefix is reserved for Amazon Web Services internal
283
+ # use.
284
+ #
285
+ #
286
+ #
287
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
288
+ # @return [String]
289
+ #
290
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleRequest AWS API Documentation
291
+ #
292
+ class AssumeRoleRequest < Struct.new(
293
+ :role_arn,
294
+ :role_session_name,
295
+ :policy_arns,
296
+ :policy,
297
+ :duration_seconds,
298
+ :tags,
299
+ :transitive_tag_keys,
300
+ :external_id,
301
+ :serial_number,
302
+ :token_code,
303
+ :source_identity)
304
+ SENSITIVE = []
305
+ include Aws::Structure
306
+ end
307
+
308
+ # Contains the response to a successful AssumeRole request, including
309
+ # temporary Amazon Web Services credentials that can be used to make
310
+ # Amazon Web Services requests.
311
+ #
312
+ # @!attribute [rw] credentials
313
+ # The temporary security credentials, which include an access key ID,
314
+ # a secret access key, and a security (or session) token.
315
+ #
316
+ # <note markdown="1"> The size of the security token that STS API operations return is not
317
+ # fixed. We strongly recommend that you make no assumptions about the
318
+ # maximum size.
319
+ #
320
+ # </note>
321
+ # @return [Types::Credentials]
322
+ #
323
+ # @!attribute [rw] assumed_role_user
324
+ # The Amazon Resource Name (ARN) and the assumed role ID, which are
325
+ # identifiers that you can use to refer to the resulting temporary
326
+ # security credentials. For example, you can reference these
327
+ # credentials as a principal in a resource-based policy by using the
328
+ # ARN or assumed role ID. The ARN and ID include the `RoleSessionName`
329
+ # that you specified when you called `AssumeRole`.
330
+ # @return [Types::AssumedRoleUser]
331
+ #
332
+ # @!attribute [rw] packed_policy_size
333
+ # A percentage value that indicates the packed size of the session
334
+ # policies and session tags combined passed in the request. The
335
+ # request fails if the packed size is greater than 100 percent, which
336
+ # means the policies and tags exceeded the allowed space.
337
+ # @return [Integer]
338
+ #
339
+ # @!attribute [rw] source_identity
340
+ # The source identity specified by the principal that is calling the
341
+ # `AssumeRole` operation.
342
+ #
343
+ # You can require users to specify a source identity when they assume
344
+ # a role. You do this by using the `sts:SourceIdentity` condition key
345
+ # in a role trust policy. You can use source identity information in
346
+ # CloudTrail logs to determine who took actions with a role. You can
347
+ # use the `aws:SourceIdentity` condition key to further control access
348
+ # to Amazon Web Services resources based on the value of source
349
+ # identity. For more information about using source identity, see
350
+ # [Monitor and control actions taken with assumed roles][1] in the
351
+ # *IAM User Guide*.
352
+ #
353
+ # The regex used to validate this parameter is a string of characters
354
+ # consisting of upper- and lower-case alphanumeric characters with no
355
+ # spaces. You can also include underscores or any of the following
356
+ # characters: =,.@-
357
+ #
358
+ #
359
+ #
360
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
361
+ # @return [String]
362
+ #
363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleResponse AWS API Documentation
364
+ #
365
+ class AssumeRoleResponse < Struct.new(
366
+ :credentials,
367
+ :assumed_role_user,
368
+ :packed_policy_size,
369
+ :source_identity)
370
+ SENSITIVE = []
371
+ include Aws::Structure
372
+ end
373
+
374
+ # @!attribute [rw] role_arn
375
+ # The Amazon Resource Name (ARN) of the role that the caller is
376
+ # assuming.
377
+ # @return [String]
378
+ #
379
+ # @!attribute [rw] principal_arn
380
+ # The Amazon Resource Name (ARN) of the SAML provider in IAM that
381
+ # describes the IdP.
382
+ # @return [String]
383
+ #
384
+ # @!attribute [rw] saml_assertion
385
+ # The base64 encoded SAML authentication response provided by the IdP.
386
+ #
387
+ # For more information, see [Configuring a Relying Party and Adding
388
+ # Claims][1] in the *IAM User Guide*.
389
+ #
390
+ #
391
+ #
392
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html
393
+ # @return [String]
394
+ #
395
+ # @!attribute [rw] policy_arns
396
+ # The Amazon Resource Names (ARNs) of the IAM managed policies that
397
+ # you want to use as managed session policies. The policies must exist
398
+ # in the same account as the role.
399
+ #
400
+ # This parameter is optional. You can provide up to 10 managed policy
401
+ # ARNs. However, the plaintext that you use for both inline and
402
+ # managed session policies can't exceed 2,048 characters. For more
403
+ # information about ARNs, see [Amazon Resource Names (ARNs) and Amazon
404
+ # Web Services Service Namespaces][1] in the Amazon Web Services
405
+ # General Reference.
406
+ #
407
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
408
+ # session policy, managed policy ARNs, and session tags into a packed
409
+ # binary format that has a separate limit. Your request can fail for
410
+ # this limit even if your plaintext meets the other requirements. The
411
+ # `PackedPolicySize` response element indicates by percentage how
412
+ # close the policies and tags for your request are to the upper size
413
+ # limit.
414
+ #
415
+ # </note>
416
+ #
417
+ # Passing policies to this operation returns new temporary
418
+ # credentials. The resulting session's permissions are the
419
+ # intersection of the role's identity-based policy and the session
420
+ # policies. You can use the role's temporary credentials in
421
+ # subsequent Amazon Web Services API calls to access resources in the
422
+ # account that owns the role. You cannot use session policies to grant
423
+ # more permissions than those allowed by the identity-based policy of
424
+ # the role that is being assumed. For more information, see [Session
425
+ # Policies][2] in the *IAM User Guide*.
426
+ #
427
+ #
428
+ #
429
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
430
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
431
+ # @return [Array<Types::PolicyDescriptorType>]
432
+ #
433
+ # @!attribute [rw] policy
434
+ # An IAM policy in JSON format that you want to use as an inline
435
+ # session policy.
436
+ #
437
+ # This parameter is optional. Passing policies to this operation
438
+ # returns new temporary credentials. The resulting session's
439
+ # permissions are the intersection of the role's identity-based
440
+ # policy and the session policies. You can use the role's temporary
441
+ # credentials in subsequent Amazon Web Services API calls to access
442
+ # resources in the account that owns the role. You cannot use session
443
+ # policies to grant more permissions than those allowed by the
444
+ # identity-based policy of the role that is being assumed. For more
445
+ # information, see [Session Policies][1] in the *IAM User Guide*.
446
+ #
447
+ # The plaintext that you use for both inline and managed session
448
+ # policies can't exceed 2,048 characters. The JSON policy characters
449
+ # can be any ASCII character from the space character to the end of
450
+ # the valid character list (\\u0020 through \\u00FF). It can also
451
+ # include the tab (\\u0009), linefeed (\\u000A), and carriage return
452
+ # (\\u000D) characters.
453
+ #
454
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
455
+ # session policy, managed policy ARNs, and session tags into a packed
456
+ # binary format that has a separate limit. Your request can fail for
457
+ # this limit even if your plaintext meets the other requirements. The
458
+ # `PackedPolicySize` response element indicates by percentage how
459
+ # close the policies and tags for your request are to the upper size
460
+ # limit.
461
+ #
462
+ # </note>
463
+ #
464
+ #
465
+ #
466
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
467
+ # @return [String]
468
+ #
469
+ # @!attribute [rw] duration_seconds
470
+ # The duration, in seconds, of the role session. Your role session
471
+ # lasts for the duration that you specify for the `DurationSeconds`
472
+ # parameter, or until the time specified in the SAML authentication
473
+ # response's `SessionNotOnOrAfter` value, whichever is shorter. You
474
+ # can provide a `DurationSeconds` value from 900 seconds (15 minutes)
475
+ # up to the maximum session duration setting for the role. This
476
+ # setting can have a value from 1 hour to 12 hours. If you specify a
477
+ # value higher than this setting, the operation fails. For example, if
478
+ # you specify a session duration of 12 hours, but your administrator
479
+ # set the maximum session duration to 6 hours, your operation fails.
480
+ # To learn how to view the maximum value for your role, see [View the
481
+ # Maximum Session Duration Setting for a Role][1] in the *IAM User
482
+ # Guide*.
483
+ #
484
+ # By default, the value is set to `3600` seconds.
485
+ #
486
+ # <note markdown="1"> The `DurationSeconds` parameter is separate from the duration of a
487
+ # console session that you might request using the returned
488
+ # credentials. The request to the federation endpoint for a console
489
+ # sign-in token takes a `SessionDuration` parameter that specifies the
490
+ # maximum length of the console session. For more information, see
491
+ # [Creating a URL that Enables Federated Users to Access the Amazon
492
+ # Web Services Management Console][2] in the *IAM User Guide*.
493
+ #
494
+ # </note>
495
+ #
496
+ #
497
+ #
498
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session
499
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html
500
+ # @return [Integer]
501
+ #
502
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleWithSAMLRequest AWS API Documentation
503
+ #
504
+ class AssumeRoleWithSAMLRequest < Struct.new(
505
+ :role_arn,
506
+ :principal_arn,
507
+ :saml_assertion,
508
+ :policy_arns,
509
+ :policy,
510
+ :duration_seconds)
511
+ SENSITIVE = []
512
+ include Aws::Structure
513
+ end
514
+
515
+ # Contains the response to a successful AssumeRoleWithSAML request,
516
+ # including temporary Amazon Web Services credentials that can be used
517
+ # to make Amazon Web Services requests.
518
+ #
519
+ # @!attribute [rw] credentials
520
+ # The temporary security credentials, which include an access key ID,
521
+ # a secret access key, and a security (or session) token.
522
+ #
523
+ # <note markdown="1"> The size of the security token that STS API operations return is not
524
+ # fixed. We strongly recommend that you make no assumptions about the
525
+ # maximum size.
526
+ #
527
+ # </note>
528
+ # @return [Types::Credentials]
529
+ #
530
+ # @!attribute [rw] assumed_role_user
531
+ # The identifiers for the temporary security credentials that the
532
+ # operation returns.
533
+ # @return [Types::AssumedRoleUser]
534
+ #
535
+ # @!attribute [rw] packed_policy_size
536
+ # A percentage value that indicates the packed size of the session
537
+ # policies and session tags combined passed in the request. The
538
+ # request fails if the packed size is greater than 100 percent, which
539
+ # means the policies and tags exceeded the allowed space.
540
+ # @return [Integer]
541
+ #
542
+ # @!attribute [rw] subject
543
+ # The value of the `NameID` element in the `Subject` element of the
544
+ # SAML assertion.
545
+ # @return [String]
546
+ #
547
+ # @!attribute [rw] subject_type
548
+ # The format of the name ID, as defined by the `Format` attribute in
549
+ # the `NameID` element of the SAML assertion. Typical examples of the
550
+ # format are `transient` or `persistent`.
551
+ #
552
+ # If the format includes the prefix
553
+ # `urn:oasis:names:tc:SAML:2.0:nameid-format`, that prefix is removed.
554
+ # For example, `urn:oasis:names:tc:SAML:2.0:nameid-format:transient`
555
+ # is returned as `transient`. If the format includes any other prefix,
556
+ # the format is returned with no modifications.
557
+ # @return [String]
558
+ #
559
+ # @!attribute [rw] issuer
560
+ # The value of the `Issuer` element of the SAML assertion.
561
+ # @return [String]
562
+ #
563
+ # @!attribute [rw] audience
564
+ # The value of the `Recipient` attribute of the
565
+ # `SubjectConfirmationData` element of the SAML assertion.
566
+ # @return [String]
567
+ #
568
+ # @!attribute [rw] name_qualifier
569
+ # A hash value based on the concatenation of the following:
570
+ #
571
+ # * The `Issuer` response value.
572
+ #
573
+ # * The Amazon Web Services account ID.
574
+ #
575
+ # * The friendly name (the last part of the ARN) of the SAML provider
576
+ # in IAM.
577
+ #
578
+ # The combination of `NameQualifier` and `Subject` can be used to
579
+ # uniquely identify a federated user.
580
+ #
581
+ # The following pseudocode shows how the hash value is calculated:
582
+ #
583
+ # `BASE64 ( SHA1 ( "https://example.com/saml" + "123456789012" +
584
+ # "/MySAMLIdP" ) )`
585
+ # @return [String]
586
+ #
587
+ # @!attribute [rw] source_identity
588
+ # The value in the `SourceIdentity` attribute in the SAML assertion.
589
+ #
590
+ # You can require users to set a source identity value when they
591
+ # assume a role. You do this by using the `sts:SourceIdentity`
592
+ # condition key in a role trust policy. That way, actions that are
593
+ # taken with the role are associated with that user. After the source
594
+ # identity is set, the value cannot be changed. It is present in the
595
+ # request for all actions that are taken by the role and persists
596
+ # across [chained role][1] sessions. You can configure your SAML
597
+ # identity provider to use an attribute associated with your users,
598
+ # like user name or email, as the source identity when calling
599
+ # `AssumeRoleWithSAML`. You do this by adding an attribute to the SAML
600
+ # assertion. For more information about using source identity, see
601
+ # [Monitor and control actions taken with assumed roles][2] in the
602
+ # *IAM User Guide*.
603
+ #
604
+ # The regex used to validate this parameter is a string of characters
605
+ # consisting of upper- and lower-case alphanumeric characters with no
606
+ # spaces. You can also include underscores or any of the following
607
+ # characters: =,.@-
608
+ #
609
+ #
610
+ #
611
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining
612
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
613
+ # @return [String]
614
+ #
615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleWithSAMLResponse AWS API Documentation
616
+ #
617
+ class AssumeRoleWithSAMLResponse < Struct.new(
618
+ :credentials,
619
+ :assumed_role_user,
620
+ :packed_policy_size,
621
+ :subject,
622
+ :subject_type,
623
+ :issuer,
624
+ :audience,
625
+ :name_qualifier,
626
+ :source_identity)
627
+ SENSITIVE = []
628
+ include Aws::Structure
629
+ end
630
+
631
+ # @!attribute [rw] role_arn
632
+ # The Amazon Resource Name (ARN) of the role that the caller is
633
+ # assuming.
634
+ # @return [String]
635
+ #
636
+ # @!attribute [rw] role_session_name
637
+ # An identifier for the assumed role session. Typically, you pass the
638
+ # name or identifier that is associated with the user who is using
639
+ # your application. That way, the temporary security credentials that
640
+ # your application will use are associated with that user. This
641
+ # session name is included as part of the ARN and assumed role ID in
642
+ # the `AssumedRoleUser` response element.
643
+ #
644
+ # The regex used to validate this parameter is a string of characters
645
+ # consisting of upper- and lower-case alphanumeric characters with no
646
+ # spaces. You can also include underscores or any of the following
647
+ # characters: =,.@-
648
+ # @return [String]
649
+ #
650
+ # @!attribute [rw] web_identity_token
651
+ # The OAuth 2.0 access token or OpenID Connect ID token that is
652
+ # provided by the identity provider. Your application must get this
653
+ # token by authenticating the user who is using your application with
654
+ # a web identity provider before the application makes an
655
+ # `AssumeRoleWithWebIdentity` call.
656
+ # @return [String]
657
+ #
658
+ # @!attribute [rw] provider_id
659
+ # The fully qualified host component of the domain name of the OAuth
660
+ # 2.0 identity provider. Do not specify this value for an OpenID
661
+ # Connect identity provider.
662
+ #
663
+ # Currently `www.amazon.com` and `graph.facebook.com` are the only
664
+ # supported identity providers for OAuth 2.0 access tokens. Do not
665
+ # include URL schemes and port numbers.
666
+ #
667
+ # Do not specify this value for OpenID Connect ID tokens.
668
+ # @return [String]
669
+ #
670
+ # @!attribute [rw] policy_arns
671
+ # The Amazon Resource Names (ARNs) of the IAM managed policies that
672
+ # you want to use as managed session policies. The policies must exist
673
+ # in the same account as the role.
674
+ #
675
+ # This parameter is optional. You can provide up to 10 managed policy
676
+ # ARNs. However, the plaintext that you use for both inline and
677
+ # managed session policies can't exceed 2,048 characters. For more
678
+ # information about ARNs, see [Amazon Resource Names (ARNs) and Amazon
679
+ # Web Services Service Namespaces][1] in the Amazon Web Services
680
+ # General Reference.
681
+ #
682
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
683
+ # session policy, managed policy ARNs, and session tags into a packed
684
+ # binary format that has a separate limit. Your request can fail for
685
+ # this limit even if your plaintext meets the other requirements. The
686
+ # `PackedPolicySize` response element indicates by percentage how
687
+ # close the policies and tags for your request are to the upper size
688
+ # limit.
689
+ #
690
+ # </note>
691
+ #
692
+ # Passing policies to this operation returns new temporary
693
+ # credentials. The resulting session's permissions are the
694
+ # intersection of the role's identity-based policy and the session
695
+ # policies. You can use the role's temporary credentials in
696
+ # subsequent Amazon Web Services API calls to access resources in the
697
+ # account that owns the role. You cannot use session policies to grant
698
+ # more permissions than those allowed by the identity-based policy of
699
+ # the role that is being assumed. For more information, see [Session
700
+ # Policies][2] in the *IAM User Guide*.
701
+ #
702
+ #
703
+ #
704
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
705
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
706
+ # @return [Array<Types::PolicyDescriptorType>]
707
+ #
708
+ # @!attribute [rw] policy
709
+ # An IAM policy in JSON format that you want to use as an inline
710
+ # session policy.
711
+ #
712
+ # This parameter is optional. Passing policies to this operation
713
+ # returns new temporary credentials. The resulting session's
714
+ # permissions are the intersection of the role's identity-based
715
+ # policy and the session policies. You can use the role's temporary
716
+ # credentials in subsequent Amazon Web Services API calls to access
717
+ # resources in the account that owns the role. You cannot use session
718
+ # policies to grant more permissions than those allowed by the
719
+ # identity-based policy of the role that is being assumed. For more
720
+ # information, see [Session Policies][1] in the *IAM User Guide*.
721
+ #
722
+ # The plaintext that you use for both inline and managed session
723
+ # policies can't exceed 2,048 characters. The JSON policy characters
724
+ # can be any ASCII character from the space character to the end of
725
+ # the valid character list (\\u0020 through \\u00FF). It can also
726
+ # include the tab (\\u0009), linefeed (\\u000A), and carriage return
727
+ # (\\u000D) characters.
728
+ #
729
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
730
+ # session policy, managed policy ARNs, and session tags into a packed
731
+ # binary format that has a separate limit. Your request can fail for
732
+ # this limit even if your plaintext meets the other requirements. The
733
+ # `PackedPolicySize` response element indicates by percentage how
734
+ # close the policies and tags for your request are to the upper size
735
+ # limit.
736
+ #
737
+ # </note>
738
+ #
739
+ #
740
+ #
741
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
742
+ # @return [String]
743
+ #
744
+ # @!attribute [rw] duration_seconds
745
+ # The duration, in seconds, of the role session. The value can range
746
+ # from 900 seconds (15 minutes) up to the maximum session duration
747
+ # setting for the role. This setting can have a value from 1 hour to
748
+ # 12 hours. If you specify a value higher than this setting, the
749
+ # operation fails. For example, if you specify a session duration of
750
+ # 12 hours, but your administrator set the maximum session duration to
751
+ # 6 hours, your operation fails. To learn how to view the maximum
752
+ # value for your role, see [View the Maximum Session Duration Setting
753
+ # for a Role][1] in the *IAM User Guide*.
754
+ #
755
+ # By default, the value is set to `3600` seconds.
756
+ #
757
+ # <note markdown="1"> The `DurationSeconds` parameter is separate from the duration of a
758
+ # console session that you might request using the returned
759
+ # credentials. The request to the federation endpoint for a console
760
+ # sign-in token takes a `SessionDuration` parameter that specifies the
761
+ # maximum length of the console session. For more information, see
762
+ # [Creating a URL that Enables Federated Users to Access the Amazon
763
+ # Web Services Management Console][2] in the *IAM User Guide*.
764
+ #
765
+ # </note>
766
+ #
767
+ #
768
+ #
769
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session
770
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html
771
+ # @return [Integer]
772
+ #
773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleWithWebIdentityRequest AWS API Documentation
774
+ #
775
+ class AssumeRoleWithWebIdentityRequest < Struct.new(
776
+ :role_arn,
777
+ :role_session_name,
778
+ :web_identity_token,
779
+ :provider_id,
780
+ :policy_arns,
781
+ :policy,
782
+ :duration_seconds)
783
+ SENSITIVE = []
784
+ include Aws::Structure
785
+ end
786
+
787
+ # Contains the response to a successful AssumeRoleWithWebIdentity
788
+ # request, including temporary Amazon Web Services credentials that can
789
+ # be used to make Amazon Web Services requests.
790
+ #
791
+ # @!attribute [rw] credentials
792
+ # The temporary security credentials, which include an access key ID,
793
+ # a secret access key, and a security token.
794
+ #
795
+ # <note markdown="1"> The size of the security token that STS API operations return is not
796
+ # fixed. We strongly recommend that you make no assumptions about the
797
+ # maximum size.
798
+ #
799
+ # </note>
800
+ # @return [Types::Credentials]
801
+ #
802
+ # @!attribute [rw] subject_from_web_identity_token
803
+ # The unique user identifier that is returned by the identity
804
+ # provider. This identifier is associated with the `WebIdentityToken`
805
+ # that was submitted with the `AssumeRoleWithWebIdentity` call. The
806
+ # identifier is typically unique to the user and the application that
807
+ # acquired the `WebIdentityToken` (pairwise identifier). For OpenID
808
+ # Connect ID tokens, this field contains the value returned by the
809
+ # identity provider as the token's `sub` (Subject) claim.
810
+ # @return [String]
811
+ #
812
+ # @!attribute [rw] assumed_role_user
813
+ # The Amazon Resource Name (ARN) and the assumed role ID, which are
814
+ # identifiers that you can use to refer to the resulting temporary
815
+ # security credentials. For example, you can reference these
816
+ # credentials as a principal in a resource-based policy by using the
817
+ # ARN or assumed role ID. The ARN and ID include the `RoleSessionName`
818
+ # that you specified when you called `AssumeRole`.
819
+ # @return [Types::AssumedRoleUser]
820
+ #
821
+ # @!attribute [rw] packed_policy_size
822
+ # A percentage value that indicates the packed size of the session
823
+ # policies and session tags combined passed in the request. The
824
+ # request fails if the packed size is greater than 100 percent, which
825
+ # means the policies and tags exceeded the allowed space.
826
+ # @return [Integer]
827
+ #
828
+ # @!attribute [rw] provider
829
+ # The issuing authority of the web identity token presented. For
830
+ # OpenID Connect ID tokens, this contains the value of the `iss`
831
+ # field. For OAuth 2.0 access tokens, this contains the value of the
832
+ # `ProviderId` parameter that was passed in the
833
+ # `AssumeRoleWithWebIdentity` request.
834
+ # @return [String]
835
+ #
836
+ # @!attribute [rw] audience
837
+ # The intended audience (also known as client ID) of the web identity
838
+ # token. This is traditionally the client identifier issued to the
839
+ # application that requested the web identity token.
840
+ # @return [String]
841
+ #
842
+ # @!attribute [rw] source_identity
843
+ # The value of the source identity that is returned in the JSON web
844
+ # token (JWT) from the identity provider.
845
+ #
846
+ # You can require users to set a source identity value when they
847
+ # assume a role. You do this by using the `sts:SourceIdentity`
848
+ # condition key in a role trust policy. That way, actions that are
849
+ # taken with the role are associated with that user. After the source
850
+ # identity is set, the value cannot be changed. It is present in the
851
+ # request for all actions that are taken by the role and persists
852
+ # across [chained role][1] sessions. You can configure your identity
853
+ # provider to use an attribute associated with your users, like user
854
+ # name or email, as the source identity when calling
855
+ # `AssumeRoleWithWebIdentity`. You do this by adding a claim to the
856
+ # JSON web token. To learn more about OIDC tokens and claims, see
857
+ # [Using Tokens with User Pools][2] in the *Amazon Cognito Developer
858
+ # Guide*. For more information about using source identity, see
859
+ # [Monitor and control actions taken with assumed roles][3] in the
860
+ # *IAM User Guide*.
861
+ #
862
+ # The regex used to validate this parameter is a string of characters
863
+ # consisting of upper- and lower-case alphanumeric characters with no
864
+ # spaces. You can also include underscores or any of the following
865
+ # characters: =,.@-
866
+ #
867
+ #
868
+ #
869
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts#iam-term-role-chaining
870
+ # [2]: https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-with-identity-providers.html
871
+ # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
872
+ # @return [String]
873
+ #
874
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumeRoleWithWebIdentityResponse AWS API Documentation
875
+ #
876
+ class AssumeRoleWithWebIdentityResponse < Struct.new(
877
+ :credentials,
878
+ :subject_from_web_identity_token,
879
+ :assumed_role_user,
880
+ :packed_policy_size,
881
+ :provider,
882
+ :audience,
883
+ :source_identity)
884
+ SENSITIVE = []
885
+ include Aws::Structure
886
+ end
887
+
888
+ # The identifiers for the temporary security credentials that the
889
+ # operation returns.
890
+ #
891
+ # @!attribute [rw] assumed_role_id
892
+ # A unique identifier that contains the role ID and the role session
893
+ # name of the role that is being assumed. The role ID is generated by
894
+ # Amazon Web Services when the role is created.
895
+ # @return [String]
896
+ #
897
+ # @!attribute [rw] arn
898
+ # The ARN of the temporary security credentials that are returned from
899
+ # the AssumeRole action. For more information about ARNs and how to
900
+ # use them in policies, see [IAM Identifiers][1] in the *IAM User
901
+ # Guide*.
902
+ #
903
+ #
904
+ #
905
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
906
+ # @return [String]
907
+ #
908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumedRoleUser AWS API Documentation
909
+ #
910
+ class AssumedRoleUser < Struct.new(
911
+ :assumed_role_id,
912
+ :arn)
913
+ SENSITIVE = []
914
+ include Aws::Structure
915
+ end
916
+
917
+ # Amazon Web Services credentials for API authentication.
918
+ #
919
+ # @!attribute [rw] access_key_id
920
+ # The access key ID that identifies the temporary security
921
+ # credentials.
922
+ # @return [String]
923
+ #
924
+ # @!attribute [rw] secret_access_key
925
+ # The secret access key that can be used to sign requests.
926
+ # @return [String]
927
+ #
928
+ # @!attribute [rw] session_token
929
+ # The token that users must pass to the service API to use the
930
+ # temporary credentials.
931
+ # @return [String]
932
+ #
933
+ # @!attribute [rw] expiration
934
+ # The date on which the current credentials expire.
935
+ # @return [Time]
936
+ #
937
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/Credentials AWS API Documentation
938
+ #
939
+ class Credentials < Struct.new(
940
+ :access_key_id,
941
+ :secret_access_key,
942
+ :session_token,
943
+ :expiration)
944
+ SENSITIVE = []
945
+ include Aws::Structure
946
+ end
947
+
948
+ # @!attribute [rw] encoded_message
949
+ # The encoded message that was returned with the response.
950
+ # @return [String]
951
+ #
952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/DecodeAuthorizationMessageRequest AWS API Documentation
953
+ #
954
+ class DecodeAuthorizationMessageRequest < Struct.new(
955
+ :encoded_message)
956
+ SENSITIVE = []
957
+ include Aws::Structure
958
+ end
959
+
960
+ # A document that contains additional information about the
961
+ # authorization status of a request from an encoded message that is
962
+ # returned in response to an Amazon Web Services request.
963
+ #
964
+ # @!attribute [rw] decoded_message
965
+ # The API returns a response with the decoded message.
966
+ # @return [String]
967
+ #
968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/DecodeAuthorizationMessageResponse AWS API Documentation
969
+ #
970
+ class DecodeAuthorizationMessageResponse < Struct.new(
971
+ :decoded_message)
972
+ SENSITIVE = []
973
+ include Aws::Structure
974
+ end
975
+
976
+ # The web identity token that was passed is expired or is not valid. Get
977
+ # a new identity token from the identity provider and then retry the
978
+ # request.
979
+ #
980
+ # @!attribute [rw] message
981
+ # @return [String]
982
+ #
983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/ExpiredTokenException AWS API Documentation
984
+ #
985
+ class ExpiredTokenException < Struct.new(
986
+ :message)
987
+ SENSITIVE = []
988
+ include Aws::Structure
989
+ end
990
+
991
+ # Identifiers for the federated user that is associated with the
992
+ # credentials.
993
+ #
994
+ # @!attribute [rw] federated_user_id
995
+ # The string that identifies the federated user associated with the
996
+ # credentials, similar to the unique ID of an IAM user.
997
+ # @return [String]
998
+ #
999
+ # @!attribute [rw] arn
1000
+ # The ARN that specifies the federated user that is associated with
1001
+ # the credentials. For more information about ARNs and how to use them
1002
+ # in policies, see [IAM Identifiers][1] in the *IAM User Guide*.
1003
+ #
1004
+ #
1005
+ #
1006
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
1007
+ # @return [String]
1008
+ #
1009
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/FederatedUser AWS API Documentation
1010
+ #
1011
+ class FederatedUser < Struct.new(
1012
+ :federated_user_id,
1013
+ :arn)
1014
+ SENSITIVE = []
1015
+ include Aws::Structure
1016
+ end
1017
+
1018
+ # @!attribute [rw] access_key_id
1019
+ # The identifier of an access key.
1020
+ #
1021
+ # This parameter allows (through its regex pattern) a string of
1022
+ # characters that can consist of any upper- or lowercase letter or
1023
+ # digit.
1024
+ # @return [String]
1025
+ #
1026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetAccessKeyInfoRequest AWS API Documentation
1027
+ #
1028
+ class GetAccessKeyInfoRequest < Struct.new(
1029
+ :access_key_id)
1030
+ SENSITIVE = []
1031
+ include Aws::Structure
1032
+ end
1033
+
1034
+ # @!attribute [rw] account
1035
+ # The number used to identify the Amazon Web Services account.
1036
+ # @return [String]
1037
+ #
1038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetAccessKeyInfoResponse AWS API Documentation
1039
+ #
1040
+ class GetAccessKeyInfoResponse < Struct.new(
1041
+ :account)
1042
+ SENSITIVE = []
1043
+ include Aws::Structure
1044
+ end
1045
+
1046
+ # @api private
1047
+ #
1048
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetCallerIdentityRequest AWS API Documentation
1049
+ #
1050
+ class GetCallerIdentityRequest < Aws::EmptyStructure; end
1051
+
1052
+ # Contains the response to a successful GetCallerIdentity request,
1053
+ # including information about the entity making the request.
1054
+ #
1055
+ # @!attribute [rw] user_id
1056
+ # The unique identifier of the calling entity. The exact value depends
1057
+ # on the type of entity that is making the call. The values returned
1058
+ # are those listed in the **aws:userid** column in the [Principal
1059
+ # table][1] found on the **Policy Variables** reference page in the
1060
+ # *IAM User Guide*.
1061
+ #
1062
+ #
1063
+ #
1064
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_variables.html#principaltable
1065
+ # @return [String]
1066
+ #
1067
+ # @!attribute [rw] account
1068
+ # The Amazon Web Services account ID number of the account that owns
1069
+ # or contains the calling entity.
1070
+ # @return [String]
1071
+ #
1072
+ # @!attribute [rw] arn
1073
+ # The Amazon Web Services ARN associated with the calling entity.
1074
+ # @return [String]
1075
+ #
1076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetCallerIdentityResponse AWS API Documentation
1077
+ #
1078
+ class GetCallerIdentityResponse < Struct.new(
1079
+ :user_id,
1080
+ :account,
1081
+ :arn)
1082
+ SENSITIVE = []
1083
+ include Aws::Structure
1084
+ end
1085
+
1086
+ # @!attribute [rw] name
1087
+ # The name of the federated user. The name is used as an identifier
1088
+ # for the temporary security credentials (such as `Bob`). For example,
1089
+ # you can reference the federated user name in a resource-based
1090
+ # policy, such as in an Amazon S3 bucket policy.
1091
+ #
1092
+ # The regex used to validate this parameter is a string of characters
1093
+ # consisting of upper- and lower-case alphanumeric characters with no
1094
+ # spaces. You can also include underscores or any of the following
1095
+ # characters: =,.@-
1096
+ # @return [String]
1097
+ #
1098
+ # @!attribute [rw] policy
1099
+ # An IAM policy in JSON format that you want to use as an inline
1100
+ # session policy.
1101
+ #
1102
+ # You must pass an inline or managed [session policy][1] to this
1103
+ # operation. You can pass a single JSON policy document to use as an
1104
+ # inline session policy. You can also specify up to 10 managed policy
1105
+ # Amazon Resource Names (ARNs) to use as managed session policies.
1106
+ #
1107
+ # This parameter is optional. However, if you do not pass any session
1108
+ # policies, then the resulting federated user session has no
1109
+ # permissions.
1110
+ #
1111
+ # When you pass session policies, the session permissions are the
1112
+ # intersection of the IAM user policies and the session policies that
1113
+ # you pass. This gives you a way to further restrict the permissions
1114
+ # for a federated user. You cannot use session policies to grant more
1115
+ # permissions than those that are defined in the permissions policy of
1116
+ # the IAM user. For more information, see [Session Policies][1] in the
1117
+ # *IAM User Guide*.
1118
+ #
1119
+ # The resulting credentials can be used to access a resource that has
1120
+ # a resource-based policy. If that policy specifically references the
1121
+ # federated user session in the `Principal` element of the policy, the
1122
+ # session has the permissions allowed by the policy. These permissions
1123
+ # are granted in addition to the permissions that are granted by the
1124
+ # session policies.
1125
+ #
1126
+ # The plaintext that you use for both inline and managed session
1127
+ # policies can't exceed 2,048 characters. The JSON policy characters
1128
+ # can be any ASCII character from the space character to the end of
1129
+ # the valid character list (\\u0020 through \\u00FF). It can also
1130
+ # include the tab (\\u0009), linefeed (\\u000A), and carriage return
1131
+ # (\\u000D) characters.
1132
+ #
1133
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
1134
+ # session policy, managed policy ARNs, and session tags into a packed
1135
+ # binary format that has a separate limit. Your request can fail for
1136
+ # this limit even if your plaintext meets the other requirements. The
1137
+ # `PackedPolicySize` response element indicates by percentage how
1138
+ # close the policies and tags for your request are to the upper size
1139
+ # limit.
1140
+ #
1141
+ # </note>
1142
+ #
1143
+ #
1144
+ #
1145
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
1146
+ # @return [String]
1147
+ #
1148
+ # @!attribute [rw] policy_arns
1149
+ # The Amazon Resource Names (ARNs) of the IAM managed policies that
1150
+ # you want to use as a managed session policy. The policies must exist
1151
+ # in the same account as the IAM user that is requesting federated
1152
+ # access.
1153
+ #
1154
+ # You must pass an inline or managed [session policy][1] to this
1155
+ # operation. You can pass a single JSON policy document to use as an
1156
+ # inline session policy. You can also specify up to 10 managed policy
1157
+ # Amazon Resource Names (ARNs) to use as managed session policies. The
1158
+ # plaintext that you use for both inline and managed session policies
1159
+ # can't exceed 2,048 characters. You can provide up to 10 managed
1160
+ # policy ARNs. For more information about ARNs, see [Amazon Resource
1161
+ # Names (ARNs) and Amazon Web Services Service Namespaces][2] in the
1162
+ # Amazon Web Services General Reference.
1163
+ #
1164
+ # This parameter is optional. However, if you do not pass any session
1165
+ # policies, then the resulting federated user session has no
1166
+ # permissions.
1167
+ #
1168
+ # When you pass session policies, the session permissions are the
1169
+ # intersection of the IAM user policies and the session policies that
1170
+ # you pass. This gives you a way to further restrict the permissions
1171
+ # for a federated user. You cannot use session policies to grant more
1172
+ # permissions than those that are defined in the permissions policy of
1173
+ # the IAM user. For more information, see [Session Policies][1] in the
1174
+ # *IAM User Guide*.
1175
+ #
1176
+ # The resulting credentials can be used to access a resource that has
1177
+ # a resource-based policy. If that policy specifically references the
1178
+ # federated user session in the `Principal` element of the policy, the
1179
+ # session has the permissions allowed by the policy. These permissions
1180
+ # are granted in addition to the permissions that are granted by the
1181
+ # session policies.
1182
+ #
1183
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
1184
+ # session policy, managed policy ARNs, and session tags into a packed
1185
+ # binary format that has a separate limit. Your request can fail for
1186
+ # this limit even if your plaintext meets the other requirements. The
1187
+ # `PackedPolicySize` response element indicates by percentage how
1188
+ # close the policies and tags for your request are to the upper size
1189
+ # limit.
1190
+ #
1191
+ # </note>
1192
+ #
1193
+ #
1194
+ #
1195
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
1196
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1197
+ # @return [Array<Types::PolicyDescriptorType>]
1198
+ #
1199
+ # @!attribute [rw] duration_seconds
1200
+ # The duration, in seconds, that the session should last. Acceptable
1201
+ # durations for federation sessions range from 900 seconds (15
1202
+ # minutes) to 129,600 seconds (36 hours), with 43,200 seconds (12
1203
+ # hours) as the default. Sessions obtained using Amazon Web Services
1204
+ # account root user credentials are restricted to a maximum of 3,600
1205
+ # seconds (one hour). If the specified duration is longer than one
1206
+ # hour, the session obtained by using root user credentials defaults
1207
+ # to one hour.
1208
+ # @return [Integer]
1209
+ #
1210
+ # @!attribute [rw] tags
1211
+ # A list of session tags. Each session tag consists of a key name and
1212
+ # an associated value. For more information about session tags, see
1213
+ # [Passing Session Tags in STS][1] in the *IAM User Guide*.
1214
+ #
1215
+ # This parameter is optional. You can pass up to 50 session tags. The
1216
+ # plaintext session tag keys can’t exceed 128 characters and the
1217
+ # values can’t exceed 256 characters. For these and additional limits,
1218
+ # see [IAM and STS Character Limits][2] in the *IAM User Guide*.
1219
+ #
1220
+ # <note markdown="1"> An Amazon Web Services conversion compresses the passed inline
1221
+ # session policy, managed policy ARNs, and session tags into a packed
1222
+ # binary format that has a separate limit. Your request can fail for
1223
+ # this limit even if your plaintext meets the other requirements. The
1224
+ # `PackedPolicySize` response element indicates by percentage how
1225
+ # close the policies and tags for your request are to the upper size
1226
+ # limit.
1227
+ #
1228
+ # </note>
1229
+ #
1230
+ # You can pass a session tag with the same key as a tag that is
1231
+ # already attached to the user you are federating. When you do,
1232
+ # session tags override a user tag with the same key.
1233
+ #
1234
+ # Tag key–value pairs are not case sensitive, but case is preserved.
1235
+ # This means that you cannot have separate `Department` and
1236
+ # `department` tag keys. Assume that the role has the
1237
+ # `Department`=`Marketing` tag and you pass the
1238
+ # `department`=`engineering` session tag. `Department` and
1239
+ # `department` are not saved as separate tags, and the session tag
1240
+ # passed in the request takes precedence over the role tag.
1241
+ #
1242
+ #
1243
+ #
1244
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
1245
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length
1246
+ # @return [Array<Types::Tag>]
1247
+ #
1248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetFederationTokenRequest AWS API Documentation
1249
+ #
1250
+ class GetFederationTokenRequest < Struct.new(
1251
+ :name,
1252
+ :policy,
1253
+ :policy_arns,
1254
+ :duration_seconds,
1255
+ :tags)
1256
+ SENSITIVE = []
1257
+ include Aws::Structure
1258
+ end
1259
+
1260
+ # Contains the response to a successful GetFederationToken request,
1261
+ # including temporary Amazon Web Services credentials that can be used
1262
+ # to make Amazon Web Services requests.
1263
+ #
1264
+ # @!attribute [rw] credentials
1265
+ # The temporary security credentials, which include an access key ID,
1266
+ # a secret access key, and a security (or session) token.
1267
+ #
1268
+ # <note markdown="1"> The size of the security token that STS API operations return is not
1269
+ # fixed. We strongly recommend that you make no assumptions about the
1270
+ # maximum size.
1271
+ #
1272
+ # </note>
1273
+ # @return [Types::Credentials]
1274
+ #
1275
+ # @!attribute [rw] federated_user
1276
+ # Identifiers for the federated user associated with the credentials
1277
+ # (such as `arn:aws:sts::123456789012:federated-user/Bob` or
1278
+ # `123456789012:Bob`). You can use the federated user's ARN in your
1279
+ # resource-based policies, such as an Amazon S3 bucket policy.
1280
+ # @return [Types::FederatedUser]
1281
+ #
1282
+ # @!attribute [rw] packed_policy_size
1283
+ # A percentage value that indicates the packed size of the session
1284
+ # policies and session tags combined passed in the request. The
1285
+ # request fails if the packed size is greater than 100 percent, which
1286
+ # means the policies and tags exceeded the allowed space.
1287
+ # @return [Integer]
1288
+ #
1289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetFederationTokenResponse AWS API Documentation
1290
+ #
1291
+ class GetFederationTokenResponse < Struct.new(
1292
+ :credentials,
1293
+ :federated_user,
1294
+ :packed_policy_size)
1295
+ SENSITIVE = []
1296
+ include Aws::Structure
1297
+ end
1298
+
1299
+ # @!attribute [rw] duration_seconds
1300
+ # The duration, in seconds, that the credentials should remain valid.
1301
+ # Acceptable durations for IAM user sessions range from 900 seconds
1302
+ # (15 minutes) to 129,600 seconds (36 hours), with 43,200 seconds (12
1303
+ # hours) as the default. Sessions for Amazon Web Services account
1304
+ # owners are restricted to a maximum of 3,600 seconds (one hour). If
1305
+ # the duration is longer than one hour, the session for Amazon Web
1306
+ # Services account owners defaults to one hour.
1307
+ # @return [Integer]
1308
+ #
1309
+ # @!attribute [rw] serial_number
1310
+ # The identification number of the MFA device that is associated with
1311
+ # the IAM user who is making the `GetSessionToken` call. Specify this
1312
+ # value if the IAM user has a policy that requires MFA authentication.
1313
+ # The value is either the serial number for a hardware device (such as
1314
+ # `GAHT12345678`) or an Amazon Resource Name (ARN) for a virtual
1315
+ # device (such as `arn:aws:iam::123456789012:mfa/user`). You can find
1316
+ # the device for an IAM user by going to the Amazon Web Services
1317
+ # Management Console and viewing the user's security credentials.
1318
+ #
1319
+ # The regex used to validate this parameter is a string of characters
1320
+ # consisting of upper- and lower-case alphanumeric characters with no
1321
+ # spaces. You can also include underscores or any of the following
1322
+ # characters: =,.@:/-
1323
+ # @return [String]
1324
+ #
1325
+ # @!attribute [rw] token_code
1326
+ # The value provided by the MFA device, if MFA is required. If any
1327
+ # policy requires the IAM user to submit an MFA code, specify this
1328
+ # value. If MFA authentication is required, the user must provide a
1329
+ # code when requesting a set of temporary security credentials. A user
1330
+ # who fails to provide the code receives an "access denied" response
1331
+ # when requesting resources that require MFA authentication.
1332
+ #
1333
+ # The format for this parameter, as described by its regex pattern, is
1334
+ # a sequence of six numeric digits.
1335
+ # @return [String]
1336
+ #
1337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetSessionTokenRequest AWS API Documentation
1338
+ #
1339
+ class GetSessionTokenRequest < Struct.new(
1340
+ :duration_seconds,
1341
+ :serial_number,
1342
+ :token_code)
1343
+ SENSITIVE = []
1344
+ include Aws::Structure
1345
+ end
1346
+
1347
+ # Contains the response to a successful GetSessionToken request,
1348
+ # including temporary Amazon Web Services credentials that can be used
1349
+ # to make Amazon Web Services requests.
1350
+ #
1351
+ # @!attribute [rw] credentials
1352
+ # The temporary security credentials, which include an access key ID,
1353
+ # a secret access key, and a security (or session) token.
1354
+ #
1355
+ # <note markdown="1"> The size of the security token that STS API operations return is not
1356
+ # fixed. We strongly recommend that you make no assumptions about the
1357
+ # maximum size.
1358
+ #
1359
+ # </note>
1360
+ # @return [Types::Credentials]
1361
+ #
1362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/GetSessionTokenResponse AWS API Documentation
1363
+ #
1364
+ class GetSessionTokenResponse < Struct.new(
1365
+ :credentials)
1366
+ SENSITIVE = []
1367
+ include Aws::Structure
1368
+ end
1369
+
1370
+ # The request could not be fulfilled because the identity provider (IDP)
1371
+ # that was asked to verify the incoming identity token could not be
1372
+ # reached. This is often a transient error caused by network conditions.
1373
+ # Retry the request a limited number of times so that you don't exceed
1374
+ # the request rate. If the error persists, the identity provider might
1375
+ # be down or not responding.
1376
+ #
1377
+ # @!attribute [rw] message
1378
+ # @return [String]
1379
+ #
1380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/IDPCommunicationErrorException AWS API Documentation
1381
+ #
1382
+ class IDPCommunicationErrorException < Struct.new(
1383
+ :message)
1384
+ SENSITIVE = []
1385
+ include Aws::Structure
1386
+ end
1387
+
1388
+ # The identity provider (IdP) reported that authentication failed. This
1389
+ # might be because the claim is invalid.
1390
+ #
1391
+ # If this error is returned for the `AssumeRoleWithWebIdentity`
1392
+ # operation, it can also mean that the claim has expired or has been
1393
+ # explicitly revoked.
1394
+ #
1395
+ # @!attribute [rw] message
1396
+ # @return [String]
1397
+ #
1398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/IDPRejectedClaimException AWS API Documentation
1399
+ #
1400
+ class IDPRejectedClaimException < Struct.new(
1401
+ :message)
1402
+ SENSITIVE = []
1403
+ include Aws::Structure
1404
+ end
1405
+
1406
+ # The error returned if the message passed to
1407
+ # `DecodeAuthorizationMessage` was invalid. This can happen if the token
1408
+ # contains invalid characters, such as linebreaks.
1409
+ #
1410
+ # @!attribute [rw] message
1411
+ # @return [String]
1412
+ #
1413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/InvalidAuthorizationMessageException AWS API Documentation
1414
+ #
1415
+ class InvalidAuthorizationMessageException < Struct.new(
1416
+ :message)
1417
+ SENSITIVE = []
1418
+ include Aws::Structure
1419
+ end
1420
+
1421
+ # The web identity token that was passed could not be validated by
1422
+ # Amazon Web Services. Get a new identity token from the identity
1423
+ # provider and then retry the request.
1424
+ #
1425
+ # @!attribute [rw] message
1426
+ # @return [String]
1427
+ #
1428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/InvalidIdentityTokenException AWS API Documentation
1429
+ #
1430
+ class InvalidIdentityTokenException < Struct.new(
1431
+ :message)
1432
+ SENSITIVE = []
1433
+ include Aws::Structure
1434
+ end
1435
+
1436
+ # The request was rejected because the policy document was malformed.
1437
+ # The error message describes the specific error.
1438
+ #
1439
+ # @!attribute [rw] message
1440
+ # @return [String]
1441
+ #
1442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/MalformedPolicyDocumentException AWS API Documentation
1443
+ #
1444
+ class MalformedPolicyDocumentException < Struct.new(
1445
+ :message)
1446
+ SENSITIVE = []
1447
+ include Aws::Structure
1448
+ end
1449
+
1450
+ # The request was rejected because the total packed size of the session
1451
+ # policies and session tags combined was too large. An Amazon Web
1452
+ # Services conversion compresses the session policy document, session
1453
+ # policy ARNs, and session tags into a packed binary format that has a
1454
+ # separate limit. The error message indicates by percentage how close
1455
+ # the policies and tags are to the upper size limit. For more
1456
+ # information, see [Passing Session Tags in STS][1] in the *IAM User
1457
+ # Guide*.
1458
+ #
1459
+ # You could receive this error even though you meet other defined
1460
+ # session policy and session tag limits. For more information, see [IAM
1461
+ # and STS Entity Character Limits][2] in the *IAM User Guide*.
1462
+ #
1463
+ #
1464
+ #
1465
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
1466
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-limits-entity-length
1467
+ #
1468
+ # @!attribute [rw] message
1469
+ # @return [String]
1470
+ #
1471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/PackedPolicyTooLargeException AWS API Documentation
1472
+ #
1473
+ class PackedPolicyTooLargeException < Struct.new(
1474
+ :message)
1475
+ SENSITIVE = []
1476
+ include Aws::Structure
1477
+ end
1478
+
1479
+ # A reference to the IAM managed policy that is passed as a session
1480
+ # policy for a role session or a federated user session.
1481
+ #
1482
+ # @!attribute [rw] arn
1483
+ # The Amazon Resource Name (ARN) of the IAM managed policy to use as a
1484
+ # session policy for the role. For more information about ARNs, see
1485
+ # [Amazon Resource Names (ARNs) and Amazon Web Services Service
1486
+ # Namespaces][1] in the *Amazon Web Services General Reference*.
1487
+ #
1488
+ #
1489
+ #
1490
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1491
+ # @return [String]
1492
+ #
1493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/PolicyDescriptorType AWS API Documentation
1494
+ #
1495
+ class PolicyDescriptorType < Struct.new(
1496
+ :arn)
1497
+ SENSITIVE = []
1498
+ include Aws::Structure
1499
+ end
1500
+
1501
+ # STS is not activated in the requested region for the account that is
1502
+ # being asked to generate credentials. The account administrator must
1503
+ # use the IAM console to activate STS in that region. For more
1504
+ # information, see [Activating and Deactivating Amazon Web Services STS
1505
+ # in an Amazon Web Services Region][1] in the *IAM User Guide*.
1506
+ #
1507
+ #
1508
+ #
1509
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
1510
+ #
1511
+ # @!attribute [rw] message
1512
+ # @return [String]
1513
+ #
1514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/RegionDisabledException AWS API Documentation
1515
+ #
1516
+ class RegionDisabledException < Struct.new(
1517
+ :message)
1518
+ SENSITIVE = []
1519
+ include Aws::Structure
1520
+ end
1521
+
1522
+ # You can pass custom key-value pair attributes when you assume a role
1523
+ # or federate a user. These are called session tags. You can then use
1524
+ # the session tags to control access to resources. For more information,
1525
+ # see [Tagging Amazon Web Services STS Sessions][1] in the *IAM User
1526
+ # Guide*.
1527
+ #
1528
+ #
1529
+ #
1530
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
1531
+ #
1532
+ # @!attribute [rw] key
1533
+ # The key for a session tag.
1534
+ #
1535
+ # You can pass up to 50 session tags. The plain text session tag keys
1536
+ # can’t exceed 128 characters. For these and additional limits, see
1537
+ # [IAM and STS Character Limits][1] in the *IAM User Guide*.
1538
+ #
1539
+ #
1540
+ #
1541
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length
1542
+ # @return [String]
1543
+ #
1544
+ # @!attribute [rw] value
1545
+ # The value for a session tag.
1546
+ #
1547
+ # You can pass up to 50 session tags. The plain text session tag
1548
+ # values can’t exceed 256 characters. For these and additional limits,
1549
+ # see [IAM and STS Character Limits][1] in the *IAM User Guide*.
1550
+ #
1551
+ #
1552
+ #
1553
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length
1554
+ # @return [String]
1555
+ #
1556
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/Tag AWS API Documentation
1557
+ #
1558
+ class Tag < Struct.new(
1559
+ :key,
1560
+ :value)
1561
+ SENSITIVE = []
1562
+ include Aws::Structure
1563
+ end
1564
+
1565
+ end
1566
+ end