aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,39 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "VaultExists": {
5
- "operation": "DescribeVault",
6
- "delay": 3,
7
- "maxAttempts": 15,
8
- "acceptors": [
9
- {
10
- "state": "success",
11
- "matcher": "status",
12
- "expected": 200
13
- },
14
- {
15
- "state": "retry",
16
- "matcher": "error",
17
- "expected": "ResourceNotFoundException"
18
- }
19
- ]
20
- },
21
- "VaultNotExists": {
22
- "operation": "DescribeVault",
23
- "delay": 3,
24
- "maxAttempts": 15,
25
- "acceptors": [
26
- {
27
- "state": "retry",
28
- "matcher": "status",
29
- "expected": 200
30
- },
31
- {
32
- "state": "success",
33
- "matcher": "error",
34
- "expected": "ResourceNotFoundException"
35
- }
36
- ]
37
- }
38
- }
39
- }
@@ -1,4514 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2010-05-08",
5
- "endpointPrefix":"iam",
6
- "globalEndpoint":"iam.amazonaws.com",
7
- "protocol":"query",
8
- "serviceAbbreviation":"IAM",
9
- "serviceFullName":"AWS Identity and Access Management",
10
- "signatureVersion":"v4",
11
- "xmlNamespace":"https://iam.amazonaws.com/doc/2010-05-08/"
12
- },
13
- "operations":{
14
- "AddClientIDToOpenIDConnectProvider":{
15
- "name":"AddClientIDToOpenIDConnectProvider",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddClientIDToOpenIDConnectProviderRequest"},
21
- "errors":[
22
- {"shape":"InvalidInputException"},
23
- {"shape":"NoSuchEntityException"},
24
- {"shape":"LimitExceededException"},
25
- {"shape":"ServiceFailureException"}
26
- ]
27
- },
28
- "AddRoleToInstanceProfile":{
29
- "name":"AddRoleToInstanceProfile",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"AddRoleToInstanceProfileRequest"},
35
- "errors":[
36
- {"shape":"NoSuchEntityException"},
37
- {"shape":"EntityAlreadyExistsException"},
38
- {"shape":"LimitExceededException"},
39
- {"shape":"ServiceFailureException"}
40
- ]
41
- },
42
- "AddUserToGroup":{
43
- "name":"AddUserToGroup",
44
- "http":{
45
- "method":"POST",
46
- "requestUri":"/"
47
- },
48
- "input":{"shape":"AddUserToGroupRequest"},
49
- "errors":[
50
- {"shape":"NoSuchEntityException"},
51
- {"shape":"LimitExceededException"},
52
- {"shape":"ServiceFailureException"}
53
- ]
54
- },
55
- "AttachGroupPolicy":{
56
- "name":"AttachGroupPolicy",
57
- "http":{
58
- "method":"POST",
59
- "requestUri":"/"
60
- },
61
- "input":{"shape":"AttachGroupPolicyRequest"},
62
- "errors":[
63
- {"shape":"NoSuchEntityException"},
64
- {"shape":"LimitExceededException"},
65
- {"shape":"InvalidInputException"},
66
- {"shape":"ServiceFailureException"}
67
- ]
68
- },
69
- "AttachRolePolicy":{
70
- "name":"AttachRolePolicy",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"AttachRolePolicyRequest"},
76
- "errors":[
77
- {"shape":"NoSuchEntityException"},
78
- {"shape":"LimitExceededException"},
79
- {"shape":"InvalidInputException"},
80
- {"shape":"ServiceFailureException"}
81
- ]
82
- },
83
- "AttachUserPolicy":{
84
- "name":"AttachUserPolicy",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"AttachUserPolicyRequest"},
90
- "errors":[
91
- {"shape":"NoSuchEntityException"},
92
- {"shape":"LimitExceededException"},
93
- {"shape":"InvalidInputException"},
94
- {"shape":"ServiceFailureException"}
95
- ]
96
- },
97
- "ChangePassword":{
98
- "name":"ChangePassword",
99
- "http":{
100
- "method":"POST",
101
- "requestUri":"/"
102
- },
103
- "input":{"shape":"ChangePasswordRequest"},
104
- "errors":[
105
- {"shape":"NoSuchEntityException"},
106
- {"shape":"InvalidUserTypeException"},
107
- {"shape":"LimitExceededException"},
108
- {"shape":"EntityTemporarilyUnmodifiableException"},
109
- {"shape":"PasswordPolicyViolationException"},
110
- {"shape":"ServiceFailureException"}
111
- ]
112
- },
113
- "CreateAccessKey":{
114
- "name":"CreateAccessKey",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"CreateAccessKeyRequest"},
120
- "output":{
121
- "shape":"CreateAccessKeyResponse",
122
- "resultWrapper":"CreateAccessKeyResult"
123
- },
124
- "errors":[
125
- {"shape":"NoSuchEntityException"},
126
- {"shape":"LimitExceededException"},
127
- {"shape":"ServiceFailureException"}
128
- ]
129
- },
130
- "CreateAccountAlias":{
131
- "name":"CreateAccountAlias",
132
- "http":{
133
- "method":"POST",
134
- "requestUri":"/"
135
- },
136
- "input":{"shape":"CreateAccountAliasRequest"},
137
- "errors":[
138
- {"shape":"EntityAlreadyExistsException"},
139
- {"shape":"LimitExceededException"},
140
- {"shape":"ServiceFailureException"}
141
- ]
142
- },
143
- "CreateGroup":{
144
- "name":"CreateGroup",
145
- "http":{
146
- "method":"POST",
147
- "requestUri":"/"
148
- },
149
- "input":{"shape":"CreateGroupRequest"},
150
- "output":{
151
- "shape":"CreateGroupResponse",
152
- "resultWrapper":"CreateGroupResult"
153
- },
154
- "errors":[
155
- {"shape":"LimitExceededException"},
156
- {"shape":"EntityAlreadyExistsException"},
157
- {"shape":"NoSuchEntityException"},
158
- {"shape":"ServiceFailureException"}
159
- ]
160
- },
161
- "CreateInstanceProfile":{
162
- "name":"CreateInstanceProfile",
163
- "http":{
164
- "method":"POST",
165
- "requestUri":"/"
166
- },
167
- "input":{"shape":"CreateInstanceProfileRequest"},
168
- "output":{
169
- "shape":"CreateInstanceProfileResponse",
170
- "resultWrapper":"CreateInstanceProfileResult"
171
- },
172
- "errors":[
173
- {"shape":"EntityAlreadyExistsException"},
174
- {"shape":"LimitExceededException"},
175
- {"shape":"ServiceFailureException"}
176
- ]
177
- },
178
- "CreateLoginProfile":{
179
- "name":"CreateLoginProfile",
180
- "http":{
181
- "method":"POST",
182
- "requestUri":"/"
183
- },
184
- "input":{"shape":"CreateLoginProfileRequest"},
185
- "output":{
186
- "shape":"CreateLoginProfileResponse",
187
- "resultWrapper":"CreateLoginProfileResult"
188
- },
189
- "errors":[
190
- {"shape":"EntityAlreadyExistsException"},
191
- {"shape":"NoSuchEntityException"},
192
- {"shape":"PasswordPolicyViolationException"},
193
- {"shape":"LimitExceededException"},
194
- {"shape":"ServiceFailureException"}
195
- ]
196
- },
197
- "CreateOpenIDConnectProvider":{
198
- "name":"CreateOpenIDConnectProvider",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"CreateOpenIDConnectProviderRequest"},
204
- "output":{
205
- "shape":"CreateOpenIDConnectProviderResponse",
206
- "resultWrapper":"CreateOpenIDConnectProviderResult"
207
- },
208
- "errors":[
209
- {"shape":"InvalidInputException"},
210
- {"shape":"EntityAlreadyExistsException"},
211
- {"shape":"LimitExceededException"},
212
- {"shape":"ServiceFailureException"}
213
- ]
214
- },
215
- "CreatePolicy":{
216
- "name":"CreatePolicy",
217
- "http":{
218
- "method":"POST",
219
- "requestUri":"/"
220
- },
221
- "input":{"shape":"CreatePolicyRequest"},
222
- "output":{
223
- "shape":"CreatePolicyResponse",
224
- "resultWrapper":"CreatePolicyResult"
225
- },
226
- "errors":[
227
- {"shape":"InvalidInputException"},
228
- {"shape":"LimitExceededException"},
229
- {"shape":"EntityAlreadyExistsException"},
230
- {"shape":"MalformedPolicyDocumentException"},
231
- {"shape":"ServiceFailureException"}
232
- ]
233
- },
234
- "CreatePolicyVersion":{
235
- "name":"CreatePolicyVersion",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/"
239
- },
240
- "input":{"shape":"CreatePolicyVersionRequest"},
241
- "output":{
242
- "shape":"CreatePolicyVersionResponse",
243
- "resultWrapper":"CreatePolicyVersionResult"
244
- },
245
- "errors":[
246
- {"shape":"NoSuchEntityException"},
247
- {"shape":"MalformedPolicyDocumentException"},
248
- {"shape":"InvalidInputException"},
249
- {"shape":"LimitExceededException"},
250
- {"shape":"ServiceFailureException"}
251
- ]
252
- },
253
- "CreateRole":{
254
- "name":"CreateRole",
255
- "http":{
256
- "method":"POST",
257
- "requestUri":"/"
258
- },
259
- "input":{"shape":"CreateRoleRequest"},
260
- "output":{
261
- "shape":"CreateRoleResponse",
262
- "resultWrapper":"CreateRoleResult"
263
- },
264
- "errors":[
265
- {"shape":"LimitExceededException"},
266
- {"shape":"EntityAlreadyExistsException"},
267
- {"shape":"MalformedPolicyDocumentException"},
268
- {"shape":"ServiceFailureException"}
269
- ]
270
- },
271
- "CreateSAMLProvider":{
272
- "name":"CreateSAMLProvider",
273
- "http":{
274
- "method":"POST",
275
- "requestUri":"/"
276
- },
277
- "input":{"shape":"CreateSAMLProviderRequest"},
278
- "output":{
279
- "shape":"CreateSAMLProviderResponse",
280
- "resultWrapper":"CreateSAMLProviderResult"
281
- },
282
- "errors":[
283
- {"shape":"InvalidInputException"},
284
- {"shape":"EntityAlreadyExistsException"},
285
- {"shape":"LimitExceededException"},
286
- {"shape":"ServiceFailureException"}
287
- ]
288
- },
289
- "CreateUser":{
290
- "name":"CreateUser",
291
- "http":{
292
- "method":"POST",
293
- "requestUri":"/"
294
- },
295
- "input":{"shape":"CreateUserRequest"},
296
- "output":{
297
- "shape":"CreateUserResponse",
298
- "resultWrapper":"CreateUserResult"
299
- },
300
- "errors":[
301
- {"shape":"LimitExceededException"},
302
- {"shape":"EntityAlreadyExistsException"},
303
- {"shape":"NoSuchEntityException"},
304
- {"shape":"ServiceFailureException"}
305
- ]
306
- },
307
- "CreateVirtualMFADevice":{
308
- "name":"CreateVirtualMFADevice",
309
- "http":{
310
- "method":"POST",
311
- "requestUri":"/"
312
- },
313
- "input":{"shape":"CreateVirtualMFADeviceRequest"},
314
- "output":{
315
- "shape":"CreateVirtualMFADeviceResponse",
316
- "resultWrapper":"CreateVirtualMFADeviceResult"
317
- },
318
- "errors":[
319
- {"shape":"LimitExceededException"},
320
- {"shape":"EntityAlreadyExistsException"},
321
- {"shape":"ServiceFailureException"}
322
- ]
323
- },
324
- "DeactivateMFADevice":{
325
- "name":"DeactivateMFADevice",
326
- "http":{
327
- "method":"POST",
328
- "requestUri":"/"
329
- },
330
- "input":{"shape":"DeactivateMFADeviceRequest"},
331
- "errors":[
332
- {"shape":"EntityTemporarilyUnmodifiableException"},
333
- {"shape":"NoSuchEntityException"},
334
- {"shape":"LimitExceededException"},
335
- {"shape":"ServiceFailureException"}
336
- ]
337
- },
338
- "DeleteAccessKey":{
339
- "name":"DeleteAccessKey",
340
- "http":{
341
- "method":"POST",
342
- "requestUri":"/"
343
- },
344
- "input":{"shape":"DeleteAccessKeyRequest"},
345
- "errors":[
346
- {"shape":"NoSuchEntityException"},
347
- {"shape":"LimitExceededException"},
348
- {"shape":"ServiceFailureException"}
349
- ]
350
- },
351
- "DeleteAccountAlias":{
352
- "name":"DeleteAccountAlias",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/"
356
- },
357
- "input":{"shape":"DeleteAccountAliasRequest"},
358
- "errors":[
359
- {"shape":"NoSuchEntityException"},
360
- {"shape":"LimitExceededException"},
361
- {"shape":"ServiceFailureException"}
362
- ]
363
- },
364
- "DeleteAccountPasswordPolicy":{
365
- "name":"DeleteAccountPasswordPolicy",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "errors":[
371
- {"shape":"NoSuchEntityException"},
372
- {"shape":"LimitExceededException"},
373
- {"shape":"ServiceFailureException"}
374
- ]
375
- },
376
- "DeleteGroup":{
377
- "name":"DeleteGroup",
378
- "http":{
379
- "method":"POST",
380
- "requestUri":"/"
381
- },
382
- "input":{"shape":"DeleteGroupRequest"},
383
- "errors":[
384
- {"shape":"NoSuchEntityException"},
385
- {"shape":"DeleteConflictException"},
386
- {"shape":"LimitExceededException"},
387
- {"shape":"ServiceFailureException"}
388
- ]
389
- },
390
- "DeleteGroupPolicy":{
391
- "name":"DeleteGroupPolicy",
392
- "http":{
393
- "method":"POST",
394
- "requestUri":"/"
395
- },
396
- "input":{"shape":"DeleteGroupPolicyRequest"},
397
- "errors":[
398
- {"shape":"NoSuchEntityException"},
399
- {"shape":"LimitExceededException"},
400
- {"shape":"ServiceFailureException"}
401
- ]
402
- },
403
- "DeleteInstanceProfile":{
404
- "name":"DeleteInstanceProfile",
405
- "http":{
406
- "method":"POST",
407
- "requestUri":"/"
408
- },
409
- "input":{"shape":"DeleteInstanceProfileRequest"},
410
- "errors":[
411
- {"shape":"NoSuchEntityException"},
412
- {"shape":"DeleteConflictException"},
413
- {"shape":"LimitExceededException"},
414
- {"shape":"ServiceFailureException"}
415
- ]
416
- },
417
- "DeleteLoginProfile":{
418
- "name":"DeleteLoginProfile",
419
- "http":{
420
- "method":"POST",
421
- "requestUri":"/"
422
- },
423
- "input":{"shape":"DeleteLoginProfileRequest"},
424
- "errors":[
425
- {"shape":"EntityTemporarilyUnmodifiableException"},
426
- {"shape":"NoSuchEntityException"},
427
- {"shape":"LimitExceededException"},
428
- {"shape":"ServiceFailureException"}
429
- ]
430
- },
431
- "DeleteOpenIDConnectProvider":{
432
- "name":"DeleteOpenIDConnectProvider",
433
- "http":{
434
- "method":"POST",
435
- "requestUri":"/"
436
- },
437
- "input":{"shape":"DeleteOpenIDConnectProviderRequest"},
438
- "errors":[
439
- {"shape":"InvalidInputException"},
440
- {"shape":"NoSuchEntityException"},
441
- {"shape":"ServiceFailureException"}
442
- ]
443
- },
444
- "DeletePolicy":{
445
- "name":"DeletePolicy",
446
- "http":{
447
- "method":"POST",
448
- "requestUri":"/"
449
- },
450
- "input":{"shape":"DeletePolicyRequest"},
451
- "errors":[
452
- {"shape":"NoSuchEntityException"},
453
- {"shape":"LimitExceededException"},
454
- {"shape":"InvalidInputException"},
455
- {"shape":"DeleteConflictException"},
456
- {"shape":"ServiceFailureException"}
457
- ]
458
- },
459
- "DeletePolicyVersion":{
460
- "name":"DeletePolicyVersion",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DeletePolicyVersionRequest"},
466
- "errors":[
467
- {"shape":"NoSuchEntityException"},
468
- {"shape":"LimitExceededException"},
469
- {"shape":"InvalidInputException"},
470
- {"shape":"DeleteConflictException"},
471
- {"shape":"ServiceFailureException"}
472
- ]
473
- },
474
- "DeleteRole":{
475
- "name":"DeleteRole",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"DeleteRoleRequest"},
481
- "errors":[
482
- {"shape":"NoSuchEntityException"},
483
- {"shape":"DeleteConflictException"},
484
- {"shape":"LimitExceededException"},
485
- {"shape":"ServiceFailureException"}
486
- ]
487
- },
488
- "DeleteRolePolicy":{
489
- "name":"DeleteRolePolicy",
490
- "http":{
491
- "method":"POST",
492
- "requestUri":"/"
493
- },
494
- "input":{"shape":"DeleteRolePolicyRequest"},
495
- "errors":[
496
- {"shape":"NoSuchEntityException"},
497
- {"shape":"LimitExceededException"},
498
- {"shape":"ServiceFailureException"}
499
- ]
500
- },
501
- "DeleteSAMLProvider":{
502
- "name":"DeleteSAMLProvider",
503
- "http":{
504
- "method":"POST",
505
- "requestUri":"/"
506
- },
507
- "input":{"shape":"DeleteSAMLProviderRequest"},
508
- "errors":[
509
- {"shape":"InvalidInputException"},
510
- {"shape":"LimitExceededException"},
511
- {"shape":"NoSuchEntityException"},
512
- {"shape":"ServiceFailureException"}
513
- ]
514
- },
515
- "DeleteSSHPublicKey":{
516
- "name":"DeleteSSHPublicKey",
517
- "http":{
518
- "method":"POST",
519
- "requestUri":"/"
520
- },
521
- "input":{"shape":"DeleteSSHPublicKeyRequest"},
522
- "errors":[
523
- {"shape":"NoSuchEntityException"}
524
- ]
525
- },
526
- "DeleteServerCertificate":{
527
- "name":"DeleteServerCertificate",
528
- "http":{
529
- "method":"POST",
530
- "requestUri":"/"
531
- },
532
- "input":{"shape":"DeleteServerCertificateRequest"},
533
- "errors":[
534
- {"shape":"NoSuchEntityException"},
535
- {"shape":"DeleteConflictException"},
536
- {"shape":"LimitExceededException"},
537
- {"shape":"ServiceFailureException"}
538
- ]
539
- },
540
- "DeleteSigningCertificate":{
541
- "name":"DeleteSigningCertificate",
542
- "http":{
543
- "method":"POST",
544
- "requestUri":"/"
545
- },
546
- "input":{"shape":"DeleteSigningCertificateRequest"},
547
- "errors":[
548
- {"shape":"NoSuchEntityException"},
549
- {"shape":"LimitExceededException"},
550
- {"shape":"ServiceFailureException"}
551
- ]
552
- },
553
- "DeleteUser":{
554
- "name":"DeleteUser",
555
- "http":{
556
- "method":"POST",
557
- "requestUri":"/"
558
- },
559
- "input":{"shape":"DeleteUserRequest"},
560
- "errors":[
561
- {"shape":"LimitExceededException"},
562
- {"shape":"NoSuchEntityException"},
563
- {"shape":"DeleteConflictException"},
564
- {"shape":"ServiceFailureException"}
565
- ]
566
- },
567
- "DeleteUserPolicy":{
568
- "name":"DeleteUserPolicy",
569
- "http":{
570
- "method":"POST",
571
- "requestUri":"/"
572
- },
573
- "input":{"shape":"DeleteUserPolicyRequest"},
574
- "errors":[
575
- {"shape":"NoSuchEntityException"},
576
- {"shape":"LimitExceededException"},
577
- {"shape":"ServiceFailureException"}
578
- ]
579
- },
580
- "DeleteVirtualMFADevice":{
581
- "name":"DeleteVirtualMFADevice",
582
- "http":{
583
- "method":"POST",
584
- "requestUri":"/"
585
- },
586
- "input":{"shape":"DeleteVirtualMFADeviceRequest"},
587
- "errors":[
588
- {"shape":"NoSuchEntityException"},
589
- {"shape":"DeleteConflictException"},
590
- {"shape":"LimitExceededException"},
591
- {"shape":"ServiceFailureException"}
592
- ]
593
- },
594
- "DetachGroupPolicy":{
595
- "name":"DetachGroupPolicy",
596
- "http":{
597
- "method":"POST",
598
- "requestUri":"/"
599
- },
600
- "input":{"shape":"DetachGroupPolicyRequest"},
601
- "errors":[
602
- {"shape":"NoSuchEntityException"},
603
- {"shape":"LimitExceededException"},
604
- {"shape":"InvalidInputException"},
605
- {"shape":"ServiceFailureException"}
606
- ]
607
- },
608
- "DetachRolePolicy":{
609
- "name":"DetachRolePolicy",
610
- "http":{
611
- "method":"POST",
612
- "requestUri":"/"
613
- },
614
- "input":{"shape":"DetachRolePolicyRequest"},
615
- "errors":[
616
- {"shape":"NoSuchEntityException"},
617
- {"shape":"LimitExceededException"},
618
- {"shape":"InvalidInputException"},
619
- {"shape":"ServiceFailureException"}
620
- ]
621
- },
622
- "DetachUserPolicy":{
623
- "name":"DetachUserPolicy",
624
- "http":{
625
- "method":"POST",
626
- "requestUri":"/"
627
- },
628
- "input":{"shape":"DetachUserPolicyRequest"},
629
- "errors":[
630
- {"shape":"NoSuchEntityException"},
631
- {"shape":"LimitExceededException"},
632
- {"shape":"InvalidInputException"},
633
- {"shape":"ServiceFailureException"}
634
- ]
635
- },
636
- "EnableMFADevice":{
637
- "name":"EnableMFADevice",
638
- "http":{
639
- "method":"POST",
640
- "requestUri":"/"
641
- },
642
- "input":{"shape":"EnableMFADeviceRequest"},
643
- "errors":[
644
- {"shape":"EntityAlreadyExistsException"},
645
- {"shape":"EntityTemporarilyUnmodifiableException"},
646
- {"shape":"InvalidAuthenticationCodeException"},
647
- {"shape":"LimitExceededException"},
648
- {"shape":"NoSuchEntityException"},
649
- {"shape":"ServiceFailureException"}
650
- ]
651
- },
652
- "GenerateCredentialReport":{
653
- "name":"GenerateCredentialReport",
654
- "http":{
655
- "method":"POST",
656
- "requestUri":"/"
657
- },
658
- "output":{
659
- "shape":"GenerateCredentialReportResponse",
660
- "resultWrapper":"GenerateCredentialReportResult"
661
- },
662
- "errors":[
663
- {"shape":"LimitExceededException"},
664
- {"shape":"ServiceFailureException"}
665
- ]
666
- },
667
- "GetAccessKeyLastUsed":{
668
- "name":"GetAccessKeyLastUsed",
669
- "http":{
670
- "method":"POST",
671
- "requestUri":"/"
672
- },
673
- "input":{"shape":"GetAccessKeyLastUsedRequest"},
674
- "output":{
675
- "shape":"GetAccessKeyLastUsedResponse",
676
- "resultWrapper":"GetAccessKeyLastUsedResult"
677
- },
678
- "errors":[
679
- {"shape":"NoSuchEntityException"}
680
- ]
681
- },
682
- "GetAccountAuthorizationDetails":{
683
- "name":"GetAccountAuthorizationDetails",
684
- "http":{
685
- "method":"POST",
686
- "requestUri":"/"
687
- },
688
- "input":{"shape":"GetAccountAuthorizationDetailsRequest"},
689
- "output":{
690
- "shape":"GetAccountAuthorizationDetailsResponse",
691
- "resultWrapper":"GetAccountAuthorizationDetailsResult"
692
- },
693
- "errors":[
694
- {"shape":"ServiceFailureException"}
695
- ]
696
- },
697
- "GetAccountPasswordPolicy":{
698
- "name":"GetAccountPasswordPolicy",
699
- "http":{
700
- "method":"POST",
701
- "requestUri":"/"
702
- },
703
- "output":{
704
- "shape":"GetAccountPasswordPolicyResponse",
705
- "resultWrapper":"GetAccountPasswordPolicyResult"
706
- },
707
- "errors":[
708
- {"shape":"NoSuchEntityException"},
709
- {"shape":"ServiceFailureException"}
710
- ]
711
- },
712
- "GetAccountSummary":{
713
- "name":"GetAccountSummary",
714
- "http":{
715
- "method":"POST",
716
- "requestUri":"/"
717
- },
718
- "output":{
719
- "shape":"GetAccountSummaryResponse",
720
- "resultWrapper":"GetAccountSummaryResult"
721
- },
722
- "errors":[
723
- {"shape":"ServiceFailureException"}
724
- ]
725
- },
726
- "GetContextKeysForCustomPolicy":{
727
- "name":"GetContextKeysForCustomPolicy",
728
- "http":{
729
- "method":"POST",
730
- "requestUri":"/"
731
- },
732
- "input":{"shape":"GetContextKeysForCustomPolicyRequest"},
733
- "output":{
734
- "shape":"GetContextKeysForPolicyResponse",
735
- "resultWrapper":"GetContextKeysForCustomPolicyResult"
736
- },
737
- "errors":[
738
- {"shape":"InvalidInputException"}
739
- ]
740
- },
741
- "GetContextKeysForPrincipalPolicy":{
742
- "name":"GetContextKeysForPrincipalPolicy",
743
- "http":{
744
- "method":"POST",
745
- "requestUri":"/"
746
- },
747
- "input":{"shape":"GetContextKeysForPrincipalPolicyRequest"},
748
- "output":{
749
- "shape":"GetContextKeysForPolicyResponse",
750
- "resultWrapper":"GetContextKeysForPrincipalPolicyResult"
751
- },
752
- "errors":[
753
- {"shape":"NoSuchEntityException"},
754
- {"shape":"InvalidInputException"}
755
- ]
756
- },
757
- "GetCredentialReport":{
758
- "name":"GetCredentialReport",
759
- "http":{
760
- "method":"POST",
761
- "requestUri":"/"
762
- },
763
- "output":{
764
- "shape":"GetCredentialReportResponse",
765
- "resultWrapper":"GetCredentialReportResult"
766
- },
767
- "errors":[
768
- {"shape":"CredentialReportNotPresentException"},
769
- {"shape":"CredentialReportExpiredException"},
770
- {"shape":"CredentialReportNotReadyException"},
771
- {"shape":"ServiceFailureException"}
772
- ]
773
- },
774
- "GetGroup":{
775
- "name":"GetGroup",
776
- "http":{
777
- "method":"POST",
778
- "requestUri":"/"
779
- },
780
- "input":{"shape":"GetGroupRequest"},
781
- "output":{
782
- "shape":"GetGroupResponse",
783
- "resultWrapper":"GetGroupResult"
784
- },
785
- "errors":[
786
- {"shape":"NoSuchEntityException"},
787
- {"shape":"ServiceFailureException"}
788
- ]
789
- },
790
- "GetGroupPolicy":{
791
- "name":"GetGroupPolicy",
792
- "http":{
793
- "method":"POST",
794
- "requestUri":"/"
795
- },
796
- "input":{"shape":"GetGroupPolicyRequest"},
797
- "output":{
798
- "shape":"GetGroupPolicyResponse",
799
- "resultWrapper":"GetGroupPolicyResult"
800
- },
801
- "errors":[
802
- {"shape":"NoSuchEntityException"},
803
- {"shape":"ServiceFailureException"}
804
- ]
805
- },
806
- "GetInstanceProfile":{
807
- "name":"GetInstanceProfile",
808
- "http":{
809
- "method":"POST",
810
- "requestUri":"/"
811
- },
812
- "input":{"shape":"GetInstanceProfileRequest"},
813
- "output":{
814
- "shape":"GetInstanceProfileResponse",
815
- "resultWrapper":"GetInstanceProfileResult"
816
- },
817
- "errors":[
818
- {"shape":"NoSuchEntityException"},
819
- {"shape":"ServiceFailureException"}
820
- ]
821
- },
822
- "GetLoginProfile":{
823
- "name":"GetLoginProfile",
824
- "http":{
825
- "method":"POST",
826
- "requestUri":"/"
827
- },
828
- "input":{"shape":"GetLoginProfileRequest"},
829
- "output":{
830
- "shape":"GetLoginProfileResponse",
831
- "resultWrapper":"GetLoginProfileResult"
832
- },
833
- "errors":[
834
- {"shape":"NoSuchEntityException"},
835
- {"shape":"ServiceFailureException"}
836
- ]
837
- },
838
- "GetOpenIDConnectProvider":{
839
- "name":"GetOpenIDConnectProvider",
840
- "http":{
841
- "method":"POST",
842
- "requestUri":"/"
843
- },
844
- "input":{"shape":"GetOpenIDConnectProviderRequest"},
845
- "output":{
846
- "shape":"GetOpenIDConnectProviderResponse",
847
- "resultWrapper":"GetOpenIDConnectProviderResult"
848
- },
849
- "errors":[
850
- {"shape":"InvalidInputException"},
851
- {"shape":"NoSuchEntityException"},
852
- {"shape":"ServiceFailureException"}
853
- ]
854
- },
855
- "GetPolicy":{
856
- "name":"GetPolicy",
857
- "http":{
858
- "method":"POST",
859
- "requestUri":"/"
860
- },
861
- "input":{"shape":"GetPolicyRequest"},
862
- "output":{
863
- "shape":"GetPolicyResponse",
864
- "resultWrapper":"GetPolicyResult"
865
- },
866
- "errors":[
867
- {"shape":"NoSuchEntityException"},
868
- {"shape":"InvalidInputException"},
869
- {"shape":"ServiceFailureException"}
870
- ]
871
- },
872
- "GetPolicyVersion":{
873
- "name":"GetPolicyVersion",
874
- "http":{
875
- "method":"POST",
876
- "requestUri":"/"
877
- },
878
- "input":{"shape":"GetPolicyVersionRequest"},
879
- "output":{
880
- "shape":"GetPolicyVersionResponse",
881
- "resultWrapper":"GetPolicyVersionResult"
882
- },
883
- "errors":[
884
- {"shape":"NoSuchEntityException"},
885
- {"shape":"InvalidInputException"},
886
- {"shape":"ServiceFailureException"}
887
- ]
888
- },
889
- "GetRole":{
890
- "name":"GetRole",
891
- "http":{
892
- "method":"POST",
893
- "requestUri":"/"
894
- },
895
- "input":{"shape":"GetRoleRequest"},
896
- "output":{
897
- "shape":"GetRoleResponse",
898
- "resultWrapper":"GetRoleResult"
899
- },
900
- "errors":[
901
- {"shape":"NoSuchEntityException"},
902
- {"shape":"ServiceFailureException"}
903
- ]
904
- },
905
- "GetRolePolicy":{
906
- "name":"GetRolePolicy",
907
- "http":{
908
- "method":"POST",
909
- "requestUri":"/"
910
- },
911
- "input":{"shape":"GetRolePolicyRequest"},
912
- "output":{
913
- "shape":"GetRolePolicyResponse",
914
- "resultWrapper":"GetRolePolicyResult"
915
- },
916
- "errors":[
917
- {"shape":"NoSuchEntityException"},
918
- {"shape":"ServiceFailureException"}
919
- ]
920
- },
921
- "GetSAMLProvider":{
922
- "name":"GetSAMLProvider",
923
- "http":{
924
- "method":"POST",
925
- "requestUri":"/"
926
- },
927
- "input":{"shape":"GetSAMLProviderRequest"},
928
- "output":{
929
- "shape":"GetSAMLProviderResponse",
930
- "resultWrapper":"GetSAMLProviderResult"
931
- },
932
- "errors":[
933
- {"shape":"NoSuchEntityException"},
934
- {"shape":"InvalidInputException"},
935
- {"shape":"ServiceFailureException"}
936
- ]
937
- },
938
- "GetSSHPublicKey":{
939
- "name":"GetSSHPublicKey",
940
- "http":{
941
- "method":"POST",
942
- "requestUri":"/"
943
- },
944
- "input":{"shape":"GetSSHPublicKeyRequest"},
945
- "output":{
946
- "shape":"GetSSHPublicKeyResponse",
947
- "resultWrapper":"GetSSHPublicKeyResult"
948
- },
949
- "errors":[
950
- {"shape":"NoSuchEntityException"},
951
- {"shape":"UnrecognizedPublicKeyEncodingException"}
952
- ]
953
- },
954
- "GetServerCertificate":{
955
- "name":"GetServerCertificate",
956
- "http":{
957
- "method":"POST",
958
- "requestUri":"/"
959
- },
960
- "input":{"shape":"GetServerCertificateRequest"},
961
- "output":{
962
- "shape":"GetServerCertificateResponse",
963
- "resultWrapper":"GetServerCertificateResult"
964
- },
965
- "errors":[
966
- {"shape":"NoSuchEntityException"},
967
- {"shape":"ServiceFailureException"}
968
- ]
969
- },
970
- "GetUser":{
971
- "name":"GetUser",
972
- "http":{
973
- "method":"POST",
974
- "requestUri":"/"
975
- },
976
- "input":{"shape":"GetUserRequest"},
977
- "output":{
978
- "shape":"GetUserResponse",
979
- "resultWrapper":"GetUserResult"
980
- },
981
- "errors":[
982
- {"shape":"NoSuchEntityException"},
983
- {"shape":"ServiceFailureException"}
984
- ]
985
- },
986
- "GetUserPolicy":{
987
- "name":"GetUserPolicy",
988
- "http":{
989
- "method":"POST",
990
- "requestUri":"/"
991
- },
992
- "input":{"shape":"GetUserPolicyRequest"},
993
- "output":{
994
- "shape":"GetUserPolicyResponse",
995
- "resultWrapper":"GetUserPolicyResult"
996
- },
997
- "errors":[
998
- {"shape":"NoSuchEntityException"},
999
- {"shape":"ServiceFailureException"}
1000
- ]
1001
- },
1002
- "ListAccessKeys":{
1003
- "name":"ListAccessKeys",
1004
- "http":{
1005
- "method":"POST",
1006
- "requestUri":"/"
1007
- },
1008
- "input":{"shape":"ListAccessKeysRequest"},
1009
- "output":{
1010
- "shape":"ListAccessKeysResponse",
1011
- "resultWrapper":"ListAccessKeysResult"
1012
- },
1013
- "errors":[
1014
- {"shape":"NoSuchEntityException"},
1015
- {"shape":"ServiceFailureException"}
1016
- ]
1017
- },
1018
- "ListAccountAliases":{
1019
- "name":"ListAccountAliases",
1020
- "http":{
1021
- "method":"POST",
1022
- "requestUri":"/"
1023
- },
1024
- "input":{"shape":"ListAccountAliasesRequest"},
1025
- "output":{
1026
- "shape":"ListAccountAliasesResponse",
1027
- "resultWrapper":"ListAccountAliasesResult"
1028
- },
1029
- "errors":[
1030
- {"shape":"ServiceFailureException"}
1031
- ]
1032
- },
1033
- "ListAttachedGroupPolicies":{
1034
- "name":"ListAttachedGroupPolicies",
1035
- "http":{
1036
- "method":"POST",
1037
- "requestUri":"/"
1038
- },
1039
- "input":{"shape":"ListAttachedGroupPoliciesRequest"},
1040
- "output":{
1041
- "shape":"ListAttachedGroupPoliciesResponse",
1042
- "resultWrapper":"ListAttachedGroupPoliciesResult"
1043
- },
1044
- "errors":[
1045
- {"shape":"NoSuchEntityException"},
1046
- {"shape":"InvalidInputException"},
1047
- {"shape":"ServiceFailureException"}
1048
- ]
1049
- },
1050
- "ListAttachedRolePolicies":{
1051
- "name":"ListAttachedRolePolicies",
1052
- "http":{
1053
- "method":"POST",
1054
- "requestUri":"/"
1055
- },
1056
- "input":{"shape":"ListAttachedRolePoliciesRequest"},
1057
- "output":{
1058
- "shape":"ListAttachedRolePoliciesResponse",
1059
- "resultWrapper":"ListAttachedRolePoliciesResult"
1060
- },
1061
- "errors":[
1062
- {"shape":"NoSuchEntityException"},
1063
- {"shape":"InvalidInputException"},
1064
- {"shape":"ServiceFailureException"}
1065
- ]
1066
- },
1067
- "ListAttachedUserPolicies":{
1068
- "name":"ListAttachedUserPolicies",
1069
- "http":{
1070
- "method":"POST",
1071
- "requestUri":"/"
1072
- },
1073
- "input":{"shape":"ListAttachedUserPoliciesRequest"},
1074
- "output":{
1075
- "shape":"ListAttachedUserPoliciesResponse",
1076
- "resultWrapper":"ListAttachedUserPoliciesResult"
1077
- },
1078
- "errors":[
1079
- {"shape":"NoSuchEntityException"},
1080
- {"shape":"InvalidInputException"},
1081
- {"shape":"ServiceFailureException"}
1082
- ]
1083
- },
1084
- "ListEntitiesForPolicy":{
1085
- "name":"ListEntitiesForPolicy",
1086
- "http":{
1087
- "method":"POST",
1088
- "requestUri":"/"
1089
- },
1090
- "input":{"shape":"ListEntitiesForPolicyRequest"},
1091
- "output":{
1092
- "shape":"ListEntitiesForPolicyResponse",
1093
- "resultWrapper":"ListEntitiesForPolicyResult"
1094
- },
1095
- "errors":[
1096
- {"shape":"NoSuchEntityException"},
1097
- {"shape":"InvalidInputException"},
1098
- {"shape":"ServiceFailureException"}
1099
- ]
1100
- },
1101
- "ListGroupPolicies":{
1102
- "name":"ListGroupPolicies",
1103
- "http":{
1104
- "method":"POST",
1105
- "requestUri":"/"
1106
- },
1107
- "input":{"shape":"ListGroupPoliciesRequest"},
1108
- "output":{
1109
- "shape":"ListGroupPoliciesResponse",
1110
- "resultWrapper":"ListGroupPoliciesResult"
1111
- },
1112
- "errors":[
1113
- {"shape":"NoSuchEntityException"},
1114
- {"shape":"ServiceFailureException"}
1115
- ]
1116
- },
1117
- "ListGroups":{
1118
- "name":"ListGroups",
1119
- "http":{
1120
- "method":"POST",
1121
- "requestUri":"/"
1122
- },
1123
- "input":{"shape":"ListGroupsRequest"},
1124
- "output":{
1125
- "shape":"ListGroupsResponse",
1126
- "resultWrapper":"ListGroupsResult"
1127
- },
1128
- "errors":[
1129
- {"shape":"ServiceFailureException"}
1130
- ]
1131
- },
1132
- "ListGroupsForUser":{
1133
- "name":"ListGroupsForUser",
1134
- "http":{
1135
- "method":"POST",
1136
- "requestUri":"/"
1137
- },
1138
- "input":{"shape":"ListGroupsForUserRequest"},
1139
- "output":{
1140
- "shape":"ListGroupsForUserResponse",
1141
- "resultWrapper":"ListGroupsForUserResult"
1142
- },
1143
- "errors":[
1144
- {"shape":"NoSuchEntityException"},
1145
- {"shape":"ServiceFailureException"}
1146
- ]
1147
- },
1148
- "ListInstanceProfiles":{
1149
- "name":"ListInstanceProfiles",
1150
- "http":{
1151
- "method":"POST",
1152
- "requestUri":"/"
1153
- },
1154
- "input":{"shape":"ListInstanceProfilesRequest"},
1155
- "output":{
1156
- "shape":"ListInstanceProfilesResponse",
1157
- "resultWrapper":"ListInstanceProfilesResult"
1158
- },
1159
- "errors":[
1160
- {"shape":"ServiceFailureException"}
1161
- ]
1162
- },
1163
- "ListInstanceProfilesForRole":{
1164
- "name":"ListInstanceProfilesForRole",
1165
- "http":{
1166
- "method":"POST",
1167
- "requestUri":"/"
1168
- },
1169
- "input":{"shape":"ListInstanceProfilesForRoleRequest"},
1170
- "output":{
1171
- "shape":"ListInstanceProfilesForRoleResponse",
1172
- "resultWrapper":"ListInstanceProfilesForRoleResult"
1173
- },
1174
- "errors":[
1175
- {"shape":"NoSuchEntityException"},
1176
- {"shape":"ServiceFailureException"}
1177
- ]
1178
- },
1179
- "ListMFADevices":{
1180
- "name":"ListMFADevices",
1181
- "http":{
1182
- "method":"POST",
1183
- "requestUri":"/"
1184
- },
1185
- "input":{"shape":"ListMFADevicesRequest"},
1186
- "output":{
1187
- "shape":"ListMFADevicesResponse",
1188
- "resultWrapper":"ListMFADevicesResult"
1189
- },
1190
- "errors":[
1191
- {"shape":"NoSuchEntityException"},
1192
- {"shape":"ServiceFailureException"}
1193
- ]
1194
- },
1195
- "ListOpenIDConnectProviders":{
1196
- "name":"ListOpenIDConnectProviders",
1197
- "http":{
1198
- "method":"POST",
1199
- "requestUri":"/"
1200
- },
1201
- "input":{"shape":"ListOpenIDConnectProvidersRequest"},
1202
- "output":{
1203
- "shape":"ListOpenIDConnectProvidersResponse",
1204
- "resultWrapper":"ListOpenIDConnectProvidersResult"
1205
- },
1206
- "errors":[
1207
- {"shape":"ServiceFailureException"}
1208
- ]
1209
- },
1210
- "ListPolicies":{
1211
- "name":"ListPolicies",
1212
- "http":{
1213
- "method":"POST",
1214
- "requestUri":"/"
1215
- },
1216
- "input":{"shape":"ListPoliciesRequest"},
1217
- "output":{
1218
- "shape":"ListPoliciesResponse",
1219
- "resultWrapper":"ListPoliciesResult"
1220
- },
1221
- "errors":[
1222
- {"shape":"ServiceFailureException"}
1223
- ]
1224
- },
1225
- "ListPolicyVersions":{
1226
- "name":"ListPolicyVersions",
1227
- "http":{
1228
- "method":"POST",
1229
- "requestUri":"/"
1230
- },
1231
- "input":{"shape":"ListPolicyVersionsRequest"},
1232
- "output":{
1233
- "shape":"ListPolicyVersionsResponse",
1234
- "resultWrapper":"ListPolicyVersionsResult"
1235
- },
1236
- "errors":[
1237
- {"shape":"NoSuchEntityException"},
1238
- {"shape":"InvalidInputException"},
1239
- {"shape":"ServiceFailureException"}
1240
- ]
1241
- },
1242
- "ListRolePolicies":{
1243
- "name":"ListRolePolicies",
1244
- "http":{
1245
- "method":"POST",
1246
- "requestUri":"/"
1247
- },
1248
- "input":{"shape":"ListRolePoliciesRequest"},
1249
- "output":{
1250
- "shape":"ListRolePoliciesResponse",
1251
- "resultWrapper":"ListRolePoliciesResult"
1252
- },
1253
- "errors":[
1254
- {"shape":"NoSuchEntityException"},
1255
- {"shape":"ServiceFailureException"}
1256
- ]
1257
- },
1258
- "ListRoles":{
1259
- "name":"ListRoles",
1260
- "http":{
1261
- "method":"POST",
1262
- "requestUri":"/"
1263
- },
1264
- "input":{"shape":"ListRolesRequest"},
1265
- "output":{
1266
- "shape":"ListRolesResponse",
1267
- "resultWrapper":"ListRolesResult"
1268
- },
1269
- "errors":[
1270
- {"shape":"ServiceFailureException"}
1271
- ]
1272
- },
1273
- "ListSAMLProviders":{
1274
- "name":"ListSAMLProviders",
1275
- "http":{
1276
- "method":"POST",
1277
- "requestUri":"/"
1278
- },
1279
- "input":{"shape":"ListSAMLProvidersRequest"},
1280
- "output":{
1281
- "shape":"ListSAMLProvidersResponse",
1282
- "resultWrapper":"ListSAMLProvidersResult"
1283
- },
1284
- "errors":[
1285
- {"shape":"ServiceFailureException"}
1286
- ]
1287
- },
1288
- "ListSSHPublicKeys":{
1289
- "name":"ListSSHPublicKeys",
1290
- "http":{
1291
- "method":"POST",
1292
- "requestUri":"/"
1293
- },
1294
- "input":{"shape":"ListSSHPublicKeysRequest"},
1295
- "output":{
1296
- "shape":"ListSSHPublicKeysResponse",
1297
- "resultWrapper":"ListSSHPublicKeysResult"
1298
- },
1299
- "errors":[
1300
- {"shape":"NoSuchEntityException"}
1301
- ]
1302
- },
1303
- "ListServerCertificates":{
1304
- "name":"ListServerCertificates",
1305
- "http":{
1306
- "method":"POST",
1307
- "requestUri":"/"
1308
- },
1309
- "input":{"shape":"ListServerCertificatesRequest"},
1310
- "output":{
1311
- "shape":"ListServerCertificatesResponse",
1312
- "resultWrapper":"ListServerCertificatesResult"
1313
- },
1314
- "errors":[
1315
- {"shape":"ServiceFailureException"}
1316
- ]
1317
- },
1318
- "ListSigningCertificates":{
1319
- "name":"ListSigningCertificates",
1320
- "http":{
1321
- "method":"POST",
1322
- "requestUri":"/"
1323
- },
1324
- "input":{"shape":"ListSigningCertificatesRequest"},
1325
- "output":{
1326
- "shape":"ListSigningCertificatesResponse",
1327
- "resultWrapper":"ListSigningCertificatesResult"
1328
- },
1329
- "errors":[
1330
- {"shape":"NoSuchEntityException"},
1331
- {"shape":"ServiceFailureException"}
1332
- ]
1333
- },
1334
- "ListUserPolicies":{
1335
- "name":"ListUserPolicies",
1336
- "http":{
1337
- "method":"POST",
1338
- "requestUri":"/"
1339
- },
1340
- "input":{"shape":"ListUserPoliciesRequest"},
1341
- "output":{
1342
- "shape":"ListUserPoliciesResponse",
1343
- "resultWrapper":"ListUserPoliciesResult"
1344
- },
1345
- "errors":[
1346
- {"shape":"NoSuchEntityException"},
1347
- {"shape":"ServiceFailureException"}
1348
- ]
1349
- },
1350
- "ListUsers":{
1351
- "name":"ListUsers",
1352
- "http":{
1353
- "method":"POST",
1354
- "requestUri":"/"
1355
- },
1356
- "input":{"shape":"ListUsersRequest"},
1357
- "output":{
1358
- "shape":"ListUsersResponse",
1359
- "resultWrapper":"ListUsersResult"
1360
- },
1361
- "errors":[
1362
- {"shape":"ServiceFailureException"}
1363
- ]
1364
- },
1365
- "ListVirtualMFADevices":{
1366
- "name":"ListVirtualMFADevices",
1367
- "http":{
1368
- "method":"POST",
1369
- "requestUri":"/"
1370
- },
1371
- "input":{"shape":"ListVirtualMFADevicesRequest"},
1372
- "output":{
1373
- "shape":"ListVirtualMFADevicesResponse",
1374
- "resultWrapper":"ListVirtualMFADevicesResult"
1375
- }
1376
- },
1377
- "PutGroupPolicy":{
1378
- "name":"PutGroupPolicy",
1379
- "http":{
1380
- "method":"POST",
1381
- "requestUri":"/"
1382
- },
1383
- "input":{"shape":"PutGroupPolicyRequest"},
1384
- "errors":[
1385
- {"shape":"LimitExceededException"},
1386
- {"shape":"MalformedPolicyDocumentException"},
1387
- {"shape":"NoSuchEntityException"},
1388
- {"shape":"ServiceFailureException"}
1389
- ]
1390
- },
1391
- "PutRolePolicy":{
1392
- "name":"PutRolePolicy",
1393
- "http":{
1394
- "method":"POST",
1395
- "requestUri":"/"
1396
- },
1397
- "input":{"shape":"PutRolePolicyRequest"},
1398
- "errors":[
1399
- {"shape":"LimitExceededException"},
1400
- {"shape":"MalformedPolicyDocumentException"},
1401
- {"shape":"NoSuchEntityException"},
1402
- {"shape":"ServiceFailureException"}
1403
- ]
1404
- },
1405
- "PutUserPolicy":{
1406
- "name":"PutUserPolicy",
1407
- "http":{
1408
- "method":"POST",
1409
- "requestUri":"/"
1410
- },
1411
- "input":{"shape":"PutUserPolicyRequest"},
1412
- "errors":[
1413
- {"shape":"LimitExceededException"},
1414
- {"shape":"MalformedPolicyDocumentException"},
1415
- {"shape":"NoSuchEntityException"},
1416
- {"shape":"ServiceFailureException"}
1417
- ]
1418
- },
1419
- "RemoveClientIDFromOpenIDConnectProvider":{
1420
- "name":"RemoveClientIDFromOpenIDConnectProvider",
1421
- "http":{
1422
- "method":"POST",
1423
- "requestUri":"/"
1424
- },
1425
- "input":{"shape":"RemoveClientIDFromOpenIDConnectProviderRequest"},
1426
- "errors":[
1427
- {"shape":"InvalidInputException"},
1428
- {"shape":"NoSuchEntityException"},
1429
- {"shape":"ServiceFailureException"}
1430
- ]
1431
- },
1432
- "RemoveRoleFromInstanceProfile":{
1433
- "name":"RemoveRoleFromInstanceProfile",
1434
- "http":{
1435
- "method":"POST",
1436
- "requestUri":"/"
1437
- },
1438
- "input":{"shape":"RemoveRoleFromInstanceProfileRequest"},
1439
- "errors":[
1440
- {"shape":"NoSuchEntityException"},
1441
- {"shape":"LimitExceededException"},
1442
- {"shape":"ServiceFailureException"}
1443
- ]
1444
- },
1445
- "RemoveUserFromGroup":{
1446
- "name":"RemoveUserFromGroup",
1447
- "http":{
1448
- "method":"POST",
1449
- "requestUri":"/"
1450
- },
1451
- "input":{"shape":"RemoveUserFromGroupRequest"},
1452
- "errors":[
1453
- {"shape":"NoSuchEntityException"},
1454
- {"shape":"LimitExceededException"},
1455
- {"shape":"ServiceFailureException"}
1456
- ]
1457
- },
1458
- "ResyncMFADevice":{
1459
- "name":"ResyncMFADevice",
1460
- "http":{
1461
- "method":"POST",
1462
- "requestUri":"/"
1463
- },
1464
- "input":{"shape":"ResyncMFADeviceRequest"},
1465
- "errors":[
1466
- {"shape":"InvalidAuthenticationCodeException"},
1467
- {"shape":"NoSuchEntityException"},
1468
- {"shape":"LimitExceededException"},
1469
- {"shape":"ServiceFailureException"}
1470
- ]
1471
- },
1472
- "SetDefaultPolicyVersion":{
1473
- "name":"SetDefaultPolicyVersion",
1474
- "http":{
1475
- "method":"POST",
1476
- "requestUri":"/"
1477
- },
1478
- "input":{"shape":"SetDefaultPolicyVersionRequest"},
1479
- "errors":[
1480
- {"shape":"NoSuchEntityException"},
1481
- {"shape":"InvalidInputException"},
1482
- {"shape":"LimitExceededException"},
1483
- {"shape":"ServiceFailureException"}
1484
- ]
1485
- },
1486
- "SimulateCustomPolicy":{
1487
- "name":"SimulateCustomPolicy",
1488
- "http":{
1489
- "method":"POST",
1490
- "requestUri":"/"
1491
- },
1492
- "input":{"shape":"SimulateCustomPolicyRequest"},
1493
- "output":{
1494
- "shape":"SimulatePolicyResponse",
1495
- "resultWrapper":"SimulateCustomPolicyResult"
1496
- },
1497
- "errors":[
1498
- {"shape":"InvalidInputException"},
1499
- {"shape":"PolicyEvaluationException"}
1500
- ]
1501
- },
1502
- "SimulatePrincipalPolicy":{
1503
- "name":"SimulatePrincipalPolicy",
1504
- "http":{
1505
- "method":"POST",
1506
- "requestUri":"/"
1507
- },
1508
- "input":{"shape":"SimulatePrincipalPolicyRequest"},
1509
- "output":{
1510
- "shape":"SimulatePolicyResponse",
1511
- "resultWrapper":"SimulatePrincipalPolicyResult"
1512
- },
1513
- "errors":[
1514
- {"shape":"NoSuchEntityException"},
1515
- {"shape":"InvalidInputException"},
1516
- {"shape":"PolicyEvaluationException"}
1517
- ]
1518
- },
1519
- "UpdateAccessKey":{
1520
- "name":"UpdateAccessKey",
1521
- "http":{
1522
- "method":"POST",
1523
- "requestUri":"/"
1524
- },
1525
- "input":{"shape":"UpdateAccessKeyRequest"},
1526
- "errors":[
1527
- {"shape":"NoSuchEntityException"},
1528
- {"shape":"LimitExceededException"},
1529
- {"shape":"ServiceFailureException"}
1530
- ]
1531
- },
1532
- "UpdateAccountPasswordPolicy":{
1533
- "name":"UpdateAccountPasswordPolicy",
1534
- "http":{
1535
- "method":"POST",
1536
- "requestUri":"/"
1537
- },
1538
- "input":{"shape":"UpdateAccountPasswordPolicyRequest"},
1539
- "errors":[
1540
- {"shape":"NoSuchEntityException"},
1541
- {"shape":"MalformedPolicyDocumentException"},
1542
- {"shape":"LimitExceededException"},
1543
- {"shape":"ServiceFailureException"}
1544
- ]
1545
- },
1546
- "UpdateAssumeRolePolicy":{
1547
- "name":"UpdateAssumeRolePolicy",
1548
- "http":{
1549
- "method":"POST",
1550
- "requestUri":"/"
1551
- },
1552
- "input":{"shape":"UpdateAssumeRolePolicyRequest"},
1553
- "errors":[
1554
- {"shape":"NoSuchEntityException"},
1555
- {"shape":"MalformedPolicyDocumentException"},
1556
- {"shape":"LimitExceededException"},
1557
- {"shape":"ServiceFailureException"}
1558
- ]
1559
- },
1560
- "UpdateGroup":{
1561
- "name":"UpdateGroup",
1562
- "http":{
1563
- "method":"POST",
1564
- "requestUri":"/"
1565
- },
1566
- "input":{"shape":"UpdateGroupRequest"},
1567
- "errors":[
1568
- {"shape":"NoSuchEntityException"},
1569
- {"shape":"EntityAlreadyExistsException"},
1570
- {"shape":"LimitExceededException"},
1571
- {"shape":"ServiceFailureException"}
1572
- ]
1573
- },
1574
- "UpdateLoginProfile":{
1575
- "name":"UpdateLoginProfile",
1576
- "http":{
1577
- "method":"POST",
1578
- "requestUri":"/"
1579
- },
1580
- "input":{"shape":"UpdateLoginProfileRequest"},
1581
- "errors":[
1582
- {"shape":"EntityTemporarilyUnmodifiableException"},
1583
- {"shape":"NoSuchEntityException"},
1584
- {"shape":"PasswordPolicyViolationException"},
1585
- {"shape":"LimitExceededException"},
1586
- {"shape":"ServiceFailureException"}
1587
- ]
1588
- },
1589
- "UpdateOpenIDConnectProviderThumbprint":{
1590
- "name":"UpdateOpenIDConnectProviderThumbprint",
1591
- "http":{
1592
- "method":"POST",
1593
- "requestUri":"/"
1594
- },
1595
- "input":{"shape":"UpdateOpenIDConnectProviderThumbprintRequest"},
1596
- "errors":[
1597
- {"shape":"InvalidInputException"},
1598
- {"shape":"NoSuchEntityException"},
1599
- {"shape":"ServiceFailureException"}
1600
- ]
1601
- },
1602
- "UpdateSAMLProvider":{
1603
- "name":"UpdateSAMLProvider",
1604
- "http":{
1605
- "method":"POST",
1606
- "requestUri":"/"
1607
- },
1608
- "input":{"shape":"UpdateSAMLProviderRequest"},
1609
- "output":{
1610
- "shape":"UpdateSAMLProviderResponse",
1611
- "resultWrapper":"UpdateSAMLProviderResult"
1612
- },
1613
- "errors":[
1614
- {"shape":"NoSuchEntityException"},
1615
- {"shape":"InvalidInputException"},
1616
- {"shape":"LimitExceededException"},
1617
- {"shape":"ServiceFailureException"}
1618
- ]
1619
- },
1620
- "UpdateSSHPublicKey":{
1621
- "name":"UpdateSSHPublicKey",
1622
- "http":{
1623
- "method":"POST",
1624
- "requestUri":"/"
1625
- },
1626
- "input":{"shape":"UpdateSSHPublicKeyRequest"},
1627
- "errors":[
1628
- {"shape":"NoSuchEntityException"}
1629
- ]
1630
- },
1631
- "UpdateServerCertificate":{
1632
- "name":"UpdateServerCertificate",
1633
- "http":{
1634
- "method":"POST",
1635
- "requestUri":"/"
1636
- },
1637
- "input":{"shape":"UpdateServerCertificateRequest"},
1638
- "errors":[
1639
- {"shape":"NoSuchEntityException"},
1640
- {"shape":"EntityAlreadyExistsException"},
1641
- {"shape":"LimitExceededException"},
1642
- {"shape":"ServiceFailureException"}
1643
- ]
1644
- },
1645
- "UpdateSigningCertificate":{
1646
- "name":"UpdateSigningCertificate",
1647
- "http":{
1648
- "method":"POST",
1649
- "requestUri":"/"
1650
- },
1651
- "input":{"shape":"UpdateSigningCertificateRequest"},
1652
- "errors":[
1653
- {"shape":"NoSuchEntityException"},
1654
- {"shape":"LimitExceededException"},
1655
- {"shape":"ServiceFailureException"}
1656
- ]
1657
- },
1658
- "UpdateUser":{
1659
- "name":"UpdateUser",
1660
- "http":{
1661
- "method":"POST",
1662
- "requestUri":"/"
1663
- },
1664
- "input":{"shape":"UpdateUserRequest"},
1665
- "errors":[
1666
- {"shape":"NoSuchEntityException"},
1667
- {"shape":"LimitExceededException"},
1668
- {"shape":"EntityAlreadyExistsException"},
1669
- {"shape":"EntityTemporarilyUnmodifiableException"},
1670
- {"shape":"ServiceFailureException"}
1671
- ]
1672
- },
1673
- "UploadSSHPublicKey":{
1674
- "name":"UploadSSHPublicKey",
1675
- "http":{
1676
- "method":"POST",
1677
- "requestUri":"/"
1678
- },
1679
- "input":{"shape":"UploadSSHPublicKeyRequest"},
1680
- "output":{
1681
- "shape":"UploadSSHPublicKeyResponse",
1682
- "resultWrapper":"UploadSSHPublicKeyResult"
1683
- },
1684
- "errors":[
1685
- {"shape":"LimitExceededException"},
1686
- {"shape":"NoSuchEntityException"},
1687
- {"shape":"InvalidPublicKeyException"},
1688
- {"shape":"DuplicateSSHPublicKeyException"},
1689
- {"shape":"UnrecognizedPublicKeyEncodingException"}
1690
- ]
1691
- },
1692
- "UploadServerCertificate":{
1693
- "name":"UploadServerCertificate",
1694
- "http":{
1695
- "method":"POST",
1696
- "requestUri":"/"
1697
- },
1698
- "input":{"shape":"UploadServerCertificateRequest"},
1699
- "output":{
1700
- "shape":"UploadServerCertificateResponse",
1701
- "resultWrapper":"UploadServerCertificateResult"
1702
- },
1703
- "errors":[
1704
- {"shape":"LimitExceededException"},
1705
- {"shape":"EntityAlreadyExistsException"},
1706
- {"shape":"MalformedCertificateException"},
1707
- {"shape":"KeyPairMismatchException"},
1708
- {"shape":"ServiceFailureException"}
1709
- ]
1710
- },
1711
- "UploadSigningCertificate":{
1712
- "name":"UploadSigningCertificate",
1713
- "http":{
1714
- "method":"POST",
1715
- "requestUri":"/"
1716
- },
1717
- "input":{"shape":"UploadSigningCertificateRequest"},
1718
- "output":{
1719
- "shape":"UploadSigningCertificateResponse",
1720
- "resultWrapper":"UploadSigningCertificateResult"
1721
- },
1722
- "errors":[
1723
- {"shape":"LimitExceededException"},
1724
- {"shape":"EntityAlreadyExistsException"},
1725
- {"shape":"MalformedCertificateException"},
1726
- {"shape":"InvalidCertificateException"},
1727
- {"shape":"DuplicateCertificateException"},
1728
- {"shape":"NoSuchEntityException"},
1729
- {"shape":"ServiceFailureException"}
1730
- ]
1731
- }
1732
- },
1733
- "shapes":{
1734
- "AccessKey":{
1735
- "type":"structure",
1736
- "required":[
1737
- "UserName",
1738
- "AccessKeyId",
1739
- "Status",
1740
- "SecretAccessKey"
1741
- ],
1742
- "members":{
1743
- "UserName":{"shape":"userNameType"},
1744
- "AccessKeyId":{"shape":"accessKeyIdType"},
1745
- "Status":{"shape":"statusType"},
1746
- "SecretAccessKey":{"shape":"accessKeySecretType"},
1747
- "CreateDate":{"shape":"dateType"}
1748
- }
1749
- },
1750
- "AccessKeyLastUsed":{
1751
- "type":"structure",
1752
- "required":[
1753
- "LastUsedDate",
1754
- "ServiceName",
1755
- "Region"
1756
- ],
1757
- "members":{
1758
- "LastUsedDate":{"shape":"dateType"},
1759
- "ServiceName":{"shape":"stringType"},
1760
- "Region":{"shape":"stringType"}
1761
- }
1762
- },
1763
- "AccessKeyMetadata":{
1764
- "type":"structure",
1765
- "members":{
1766
- "UserName":{"shape":"userNameType"},
1767
- "AccessKeyId":{"shape":"accessKeyIdType"},
1768
- "Status":{"shape":"statusType"},
1769
- "CreateDate":{"shape":"dateType"}
1770
- }
1771
- },
1772
- "ActionNameListType":{
1773
- "type":"list",
1774
- "member":{"shape":"ActionNameType"}
1775
- },
1776
- "ActionNameType":{
1777
- "type":"string",
1778
- "max":128,
1779
- "min":3
1780
- },
1781
- "AddClientIDToOpenIDConnectProviderRequest":{
1782
- "type":"structure",
1783
- "required":[
1784
- "OpenIDConnectProviderArn",
1785
- "ClientID"
1786
- ],
1787
- "members":{
1788
- "OpenIDConnectProviderArn":{"shape":"arnType"},
1789
- "ClientID":{"shape":"clientIDType"}
1790
- }
1791
- },
1792
- "AddRoleToInstanceProfileRequest":{
1793
- "type":"structure",
1794
- "required":[
1795
- "InstanceProfileName",
1796
- "RoleName"
1797
- ],
1798
- "members":{
1799
- "InstanceProfileName":{"shape":"instanceProfileNameType"},
1800
- "RoleName":{"shape":"roleNameType"}
1801
- }
1802
- },
1803
- "AddUserToGroupRequest":{
1804
- "type":"structure",
1805
- "required":[
1806
- "GroupName",
1807
- "UserName"
1808
- ],
1809
- "members":{
1810
- "GroupName":{"shape":"groupNameType"},
1811
- "UserName":{"shape":"existingUserNameType"}
1812
- }
1813
- },
1814
- "AttachGroupPolicyRequest":{
1815
- "type":"structure",
1816
- "required":[
1817
- "GroupName",
1818
- "PolicyArn"
1819
- ],
1820
- "members":{
1821
- "GroupName":{"shape":"groupNameType"},
1822
- "PolicyArn":{"shape":"arnType"}
1823
- }
1824
- },
1825
- "AttachRolePolicyRequest":{
1826
- "type":"structure",
1827
- "required":[
1828
- "RoleName",
1829
- "PolicyArn"
1830
- ],
1831
- "members":{
1832
- "RoleName":{"shape":"roleNameType"},
1833
- "PolicyArn":{"shape":"arnType"}
1834
- }
1835
- },
1836
- "AttachUserPolicyRequest":{
1837
- "type":"structure",
1838
- "required":[
1839
- "UserName",
1840
- "PolicyArn"
1841
- ],
1842
- "members":{
1843
- "UserName":{"shape":"userNameType"},
1844
- "PolicyArn":{"shape":"arnType"}
1845
- }
1846
- },
1847
- "AttachedPolicy":{
1848
- "type":"structure",
1849
- "members":{
1850
- "PolicyName":{"shape":"policyNameType"},
1851
- "PolicyArn":{"shape":"arnType"}
1852
- }
1853
- },
1854
- "BootstrapDatum":{
1855
- "type":"blob",
1856
- "sensitive":true
1857
- },
1858
- "ChangePasswordRequest":{
1859
- "type":"structure",
1860
- "required":[
1861
- "OldPassword",
1862
- "NewPassword"
1863
- ],
1864
- "members":{
1865
- "OldPassword":{"shape":"passwordType"},
1866
- "NewPassword":{"shape":"passwordType"}
1867
- }
1868
- },
1869
- "ColumnNumber":{"type":"integer"},
1870
- "ContextEntry":{
1871
- "type":"structure",
1872
- "members":{
1873
- "ContextKeyName":{"shape":"ContextKeyNameType"},
1874
- "ContextKeyValues":{"shape":"ContextKeyValueListType"},
1875
- "ContextKeyType":{"shape":"ContextKeyTypeEnum"}
1876
- }
1877
- },
1878
- "ContextEntryListType":{
1879
- "type":"list",
1880
- "member":{"shape":"ContextEntry"}
1881
- },
1882
- "ContextKeyNameType":{
1883
- "type":"string",
1884
- "max":256,
1885
- "min":5
1886
- },
1887
- "ContextKeyNamesResultListType":{
1888
- "type":"list",
1889
- "member":{"shape":"ContextKeyNameType"}
1890
- },
1891
- "ContextKeyTypeEnum":{
1892
- "type":"string",
1893
- "enum":[
1894
- "string",
1895
- "stringList",
1896
- "numeric",
1897
- "numericList",
1898
- "boolean",
1899
- "booleanList",
1900
- "ip",
1901
- "ipList",
1902
- "binary",
1903
- "binaryList",
1904
- "date",
1905
- "dateList"
1906
- ]
1907
- },
1908
- "ContextKeyValueListType":{
1909
- "type":"list",
1910
- "member":{"shape":"ContextKeyValueType"}
1911
- },
1912
- "ContextKeyValueType":{"type":"string"},
1913
- "CreateAccessKeyRequest":{
1914
- "type":"structure",
1915
- "members":{
1916
- "UserName":{"shape":"existingUserNameType"}
1917
- }
1918
- },
1919
- "CreateAccessKeyResponse":{
1920
- "type":"structure",
1921
- "required":["AccessKey"],
1922
- "members":{
1923
- "AccessKey":{"shape":"AccessKey"}
1924
- }
1925
- },
1926
- "CreateAccountAliasRequest":{
1927
- "type":"structure",
1928
- "required":["AccountAlias"],
1929
- "members":{
1930
- "AccountAlias":{"shape":"accountAliasType"}
1931
- }
1932
- },
1933
- "CreateGroupRequest":{
1934
- "type":"structure",
1935
- "required":["GroupName"],
1936
- "members":{
1937
- "Path":{"shape":"pathType"},
1938
- "GroupName":{"shape":"groupNameType"}
1939
- }
1940
- },
1941
- "CreateGroupResponse":{
1942
- "type":"structure",
1943
- "required":["Group"],
1944
- "members":{
1945
- "Group":{"shape":"Group"}
1946
- }
1947
- },
1948
- "CreateInstanceProfileRequest":{
1949
- "type":"structure",
1950
- "required":["InstanceProfileName"],
1951
- "members":{
1952
- "InstanceProfileName":{"shape":"instanceProfileNameType"},
1953
- "Path":{"shape":"pathType"}
1954
- }
1955
- },
1956
- "CreateInstanceProfileResponse":{
1957
- "type":"structure",
1958
- "required":["InstanceProfile"],
1959
- "members":{
1960
- "InstanceProfile":{"shape":"InstanceProfile"}
1961
- }
1962
- },
1963
- "CreateLoginProfileRequest":{
1964
- "type":"structure",
1965
- "required":[
1966
- "UserName",
1967
- "Password"
1968
- ],
1969
- "members":{
1970
- "UserName":{"shape":"userNameType"},
1971
- "Password":{"shape":"passwordType"},
1972
- "PasswordResetRequired":{"shape":"booleanType"}
1973
- }
1974
- },
1975
- "CreateLoginProfileResponse":{
1976
- "type":"structure",
1977
- "required":["LoginProfile"],
1978
- "members":{
1979
- "LoginProfile":{"shape":"LoginProfile"}
1980
- }
1981
- },
1982
- "CreateOpenIDConnectProviderRequest":{
1983
- "type":"structure",
1984
- "required":[
1985
- "Url",
1986
- "ThumbprintList"
1987
- ],
1988
- "members":{
1989
- "Url":{"shape":"OpenIDConnectProviderUrlType"},
1990
- "ClientIDList":{"shape":"clientIDListType"},
1991
- "ThumbprintList":{"shape":"thumbprintListType"}
1992
- }
1993
- },
1994
- "CreateOpenIDConnectProviderResponse":{
1995
- "type":"structure",
1996
- "members":{
1997
- "OpenIDConnectProviderArn":{"shape":"arnType"}
1998
- }
1999
- },
2000
- "CreatePolicyRequest":{
2001
- "type":"structure",
2002
- "required":[
2003
- "PolicyName",
2004
- "PolicyDocument"
2005
- ],
2006
- "members":{
2007
- "PolicyName":{"shape":"policyNameType"},
2008
- "Path":{"shape":"policyPathType"},
2009
- "PolicyDocument":{"shape":"policyDocumentType"},
2010
- "Description":{"shape":"policyDescriptionType"}
2011
- }
2012
- },
2013
- "CreatePolicyResponse":{
2014
- "type":"structure",
2015
- "members":{
2016
- "Policy":{"shape":"Policy"}
2017
- }
2018
- },
2019
- "CreatePolicyVersionRequest":{
2020
- "type":"structure",
2021
- "required":[
2022
- "PolicyArn",
2023
- "PolicyDocument"
2024
- ],
2025
- "members":{
2026
- "PolicyArn":{"shape":"arnType"},
2027
- "PolicyDocument":{"shape":"policyDocumentType"},
2028
- "SetAsDefault":{"shape":"booleanType"}
2029
- }
2030
- },
2031
- "CreatePolicyVersionResponse":{
2032
- "type":"structure",
2033
- "members":{
2034
- "PolicyVersion":{"shape":"PolicyVersion"}
2035
- }
2036
- },
2037
- "CreateRoleRequest":{
2038
- "type":"structure",
2039
- "required":[
2040
- "RoleName",
2041
- "AssumeRolePolicyDocument"
2042
- ],
2043
- "members":{
2044
- "Path":{"shape":"pathType"},
2045
- "RoleName":{"shape":"roleNameType"},
2046
- "AssumeRolePolicyDocument":{"shape":"policyDocumentType"}
2047
- }
2048
- },
2049
- "CreateRoleResponse":{
2050
- "type":"structure",
2051
- "required":["Role"],
2052
- "members":{
2053
- "Role":{"shape":"Role"}
2054
- }
2055
- },
2056
- "CreateSAMLProviderRequest":{
2057
- "type":"structure",
2058
- "required":[
2059
- "SAMLMetadataDocument",
2060
- "Name"
2061
- ],
2062
- "members":{
2063
- "SAMLMetadataDocument":{"shape":"SAMLMetadataDocumentType"},
2064
- "Name":{"shape":"SAMLProviderNameType"}
2065
- }
2066
- },
2067
- "CreateSAMLProviderResponse":{
2068
- "type":"structure",
2069
- "members":{
2070
- "SAMLProviderArn":{"shape":"arnType"}
2071
- }
2072
- },
2073
- "CreateUserRequest":{
2074
- "type":"structure",
2075
- "required":["UserName"],
2076
- "members":{
2077
- "Path":{"shape":"pathType"},
2078
- "UserName":{"shape":"userNameType"}
2079
- }
2080
- },
2081
- "CreateUserResponse":{
2082
- "type":"structure",
2083
- "members":{
2084
- "User":{"shape":"User"}
2085
- }
2086
- },
2087
- "CreateVirtualMFADeviceRequest":{
2088
- "type":"structure",
2089
- "required":["VirtualMFADeviceName"],
2090
- "members":{
2091
- "Path":{"shape":"pathType"},
2092
- "VirtualMFADeviceName":{"shape":"virtualMFADeviceName"}
2093
- }
2094
- },
2095
- "CreateVirtualMFADeviceResponse":{
2096
- "type":"structure",
2097
- "required":["VirtualMFADevice"],
2098
- "members":{
2099
- "VirtualMFADevice":{"shape":"VirtualMFADevice"}
2100
- }
2101
- },
2102
- "CredentialReportExpiredException":{
2103
- "type":"structure",
2104
- "members":{
2105
- "message":{"shape":"credentialReportExpiredExceptionMessage"}
2106
- },
2107
- "error":{
2108
- "code":"ReportExpired",
2109
- "httpStatusCode":410,
2110
- "senderFault":true
2111
- },
2112
- "exception":true
2113
- },
2114
- "CredentialReportNotPresentException":{
2115
- "type":"structure",
2116
- "members":{
2117
- "message":{"shape":"credentialReportNotPresentExceptionMessage"}
2118
- },
2119
- "error":{
2120
- "code":"ReportNotPresent",
2121
- "httpStatusCode":410,
2122
- "senderFault":true
2123
- },
2124
- "exception":true
2125
- },
2126
- "CredentialReportNotReadyException":{
2127
- "type":"structure",
2128
- "members":{
2129
- "message":{"shape":"credentialReportNotReadyExceptionMessage"}
2130
- },
2131
- "error":{
2132
- "code":"ReportInProgress",
2133
- "httpStatusCode":404,
2134
- "senderFault":true
2135
- },
2136
- "exception":true
2137
- },
2138
- "DeactivateMFADeviceRequest":{
2139
- "type":"structure",
2140
- "required":[
2141
- "UserName",
2142
- "SerialNumber"
2143
- ],
2144
- "members":{
2145
- "UserName":{"shape":"existingUserNameType"},
2146
- "SerialNumber":{"shape":"serialNumberType"}
2147
- }
2148
- },
2149
- "DeleteAccessKeyRequest":{
2150
- "type":"structure",
2151
- "required":["AccessKeyId"],
2152
- "members":{
2153
- "UserName":{"shape":"existingUserNameType"},
2154
- "AccessKeyId":{"shape":"accessKeyIdType"}
2155
- }
2156
- },
2157
- "DeleteAccountAliasRequest":{
2158
- "type":"structure",
2159
- "required":["AccountAlias"],
2160
- "members":{
2161
- "AccountAlias":{"shape":"accountAliasType"}
2162
- }
2163
- },
2164
- "DeleteConflictException":{
2165
- "type":"structure",
2166
- "members":{
2167
- "message":{"shape":"deleteConflictMessage"}
2168
- },
2169
- "error":{
2170
- "code":"DeleteConflict",
2171
- "httpStatusCode":409,
2172
- "senderFault":true
2173
- },
2174
- "exception":true
2175
- },
2176
- "DeleteGroupPolicyRequest":{
2177
- "type":"structure",
2178
- "required":[
2179
- "GroupName",
2180
- "PolicyName"
2181
- ],
2182
- "members":{
2183
- "GroupName":{"shape":"groupNameType"},
2184
- "PolicyName":{"shape":"policyNameType"}
2185
- }
2186
- },
2187
- "DeleteGroupRequest":{
2188
- "type":"structure",
2189
- "required":["GroupName"],
2190
- "members":{
2191
- "GroupName":{"shape":"groupNameType"}
2192
- }
2193
- },
2194
- "DeleteInstanceProfileRequest":{
2195
- "type":"structure",
2196
- "required":["InstanceProfileName"],
2197
- "members":{
2198
- "InstanceProfileName":{"shape":"instanceProfileNameType"}
2199
- }
2200
- },
2201
- "DeleteLoginProfileRequest":{
2202
- "type":"structure",
2203
- "required":["UserName"],
2204
- "members":{
2205
- "UserName":{"shape":"userNameType"}
2206
- }
2207
- },
2208
- "DeleteOpenIDConnectProviderRequest":{
2209
- "type":"structure",
2210
- "required":["OpenIDConnectProviderArn"],
2211
- "members":{
2212
- "OpenIDConnectProviderArn":{"shape":"arnType"}
2213
- }
2214
- },
2215
- "DeletePolicyRequest":{
2216
- "type":"structure",
2217
- "required":["PolicyArn"],
2218
- "members":{
2219
- "PolicyArn":{"shape":"arnType"}
2220
- }
2221
- },
2222
- "DeletePolicyVersionRequest":{
2223
- "type":"structure",
2224
- "required":[
2225
- "PolicyArn",
2226
- "VersionId"
2227
- ],
2228
- "members":{
2229
- "PolicyArn":{"shape":"arnType"},
2230
- "VersionId":{"shape":"policyVersionIdType"}
2231
- }
2232
- },
2233
- "DeleteRolePolicyRequest":{
2234
- "type":"structure",
2235
- "required":[
2236
- "RoleName",
2237
- "PolicyName"
2238
- ],
2239
- "members":{
2240
- "RoleName":{"shape":"roleNameType"},
2241
- "PolicyName":{"shape":"policyNameType"}
2242
- }
2243
- },
2244
- "DeleteRoleRequest":{
2245
- "type":"structure",
2246
- "required":["RoleName"],
2247
- "members":{
2248
- "RoleName":{"shape":"roleNameType"}
2249
- }
2250
- },
2251
- "DeleteSAMLProviderRequest":{
2252
- "type":"structure",
2253
- "required":["SAMLProviderArn"],
2254
- "members":{
2255
- "SAMLProviderArn":{"shape":"arnType"}
2256
- }
2257
- },
2258
- "DeleteSSHPublicKeyRequest":{
2259
- "type":"structure",
2260
- "required":[
2261
- "UserName",
2262
- "SSHPublicKeyId"
2263
- ],
2264
- "members":{
2265
- "UserName":{"shape":"userNameType"},
2266
- "SSHPublicKeyId":{"shape":"publicKeyIdType"}
2267
- }
2268
- },
2269
- "DeleteServerCertificateRequest":{
2270
- "type":"structure",
2271
- "required":["ServerCertificateName"],
2272
- "members":{
2273
- "ServerCertificateName":{"shape":"serverCertificateNameType"}
2274
- }
2275
- },
2276
- "DeleteSigningCertificateRequest":{
2277
- "type":"structure",
2278
- "required":["CertificateId"],
2279
- "members":{
2280
- "UserName":{"shape":"existingUserNameType"},
2281
- "CertificateId":{"shape":"certificateIdType"}
2282
- }
2283
- },
2284
- "DeleteUserPolicyRequest":{
2285
- "type":"structure",
2286
- "required":[
2287
- "UserName",
2288
- "PolicyName"
2289
- ],
2290
- "members":{
2291
- "UserName":{"shape":"existingUserNameType"},
2292
- "PolicyName":{"shape":"policyNameType"}
2293
- }
2294
- },
2295
- "DeleteUserRequest":{
2296
- "type":"structure",
2297
- "required":["UserName"],
2298
- "members":{
2299
- "UserName":{"shape":"existingUserNameType"}
2300
- }
2301
- },
2302
- "DeleteVirtualMFADeviceRequest":{
2303
- "type":"structure",
2304
- "required":["SerialNumber"],
2305
- "members":{
2306
- "SerialNumber":{"shape":"serialNumberType"}
2307
- }
2308
- },
2309
- "DetachGroupPolicyRequest":{
2310
- "type":"structure",
2311
- "required":[
2312
- "GroupName",
2313
- "PolicyArn"
2314
- ],
2315
- "members":{
2316
- "GroupName":{"shape":"groupNameType"},
2317
- "PolicyArn":{"shape":"arnType"}
2318
- }
2319
- },
2320
- "DetachRolePolicyRequest":{
2321
- "type":"structure",
2322
- "required":[
2323
- "RoleName",
2324
- "PolicyArn"
2325
- ],
2326
- "members":{
2327
- "RoleName":{"shape":"roleNameType"},
2328
- "PolicyArn":{"shape":"arnType"}
2329
- }
2330
- },
2331
- "DetachUserPolicyRequest":{
2332
- "type":"structure",
2333
- "required":[
2334
- "UserName",
2335
- "PolicyArn"
2336
- ],
2337
- "members":{
2338
- "UserName":{"shape":"userNameType"},
2339
- "PolicyArn":{"shape":"arnType"}
2340
- }
2341
- },
2342
- "DuplicateCertificateException":{
2343
- "type":"structure",
2344
- "members":{
2345
- "message":{"shape":"duplicateCertificateMessage"}
2346
- },
2347
- "error":{
2348
- "code":"DuplicateCertificate",
2349
- "httpStatusCode":409,
2350
- "senderFault":true
2351
- },
2352
- "exception":true
2353
- },
2354
- "DuplicateSSHPublicKeyException":{
2355
- "type":"structure",
2356
- "members":{
2357
- "message":{"shape":"duplicateSSHPublicKeyMessage"}
2358
- },
2359
- "error":{
2360
- "code":"DuplicateSSHPublicKey",
2361
- "httpStatusCode":400,
2362
- "senderFault":true
2363
- },
2364
- "exception":true
2365
- },
2366
- "EnableMFADeviceRequest":{
2367
- "type":"structure",
2368
- "required":[
2369
- "UserName",
2370
- "SerialNumber",
2371
- "AuthenticationCode1",
2372
- "AuthenticationCode2"
2373
- ],
2374
- "members":{
2375
- "UserName":{"shape":"existingUserNameType"},
2376
- "SerialNumber":{"shape":"serialNumberType"},
2377
- "AuthenticationCode1":{"shape":"authenticationCodeType"},
2378
- "AuthenticationCode2":{"shape":"authenticationCodeType"}
2379
- }
2380
- },
2381
- "EntityAlreadyExistsException":{
2382
- "type":"structure",
2383
- "members":{
2384
- "message":{"shape":"entityAlreadyExistsMessage"}
2385
- },
2386
- "error":{
2387
- "code":"EntityAlreadyExists",
2388
- "httpStatusCode":409,
2389
- "senderFault":true
2390
- },
2391
- "exception":true
2392
- },
2393
- "EntityTemporarilyUnmodifiableException":{
2394
- "type":"structure",
2395
- "members":{
2396
- "message":{"shape":"entityTemporarilyUnmodifiableMessage"}
2397
- },
2398
- "error":{
2399
- "code":"EntityTemporarilyUnmodifiable",
2400
- "httpStatusCode":409,
2401
- "senderFault":true
2402
- },
2403
- "exception":true
2404
- },
2405
- "EntityType":{
2406
- "type":"string",
2407
- "enum":[
2408
- "User",
2409
- "Role",
2410
- "Group",
2411
- "LocalManagedPolicy",
2412
- "AWSManagedPolicy"
2413
- ]
2414
- },
2415
- "EvalDecisionDetailsType":{
2416
- "type":"map",
2417
- "key":{"shape":"EvalDecisionSourceType"},
2418
- "value":{"shape":"PolicyEvaluationDecisionType"}
2419
- },
2420
- "EvalDecisionSourceType":{
2421
- "type":"string",
2422
- "max":256,
2423
- "min":3
2424
- },
2425
- "EvaluationResult":{
2426
- "type":"structure",
2427
- "required":[
2428
- "EvalActionName",
2429
- "EvalDecision"
2430
- ],
2431
- "members":{
2432
- "EvalActionName":{"shape":"ActionNameType"},
2433
- "EvalResourceName":{"shape":"ResourceNameType"},
2434
- "EvalDecision":{"shape":"PolicyEvaluationDecisionType"},
2435
- "MatchedStatements":{"shape":"StatementListType"},
2436
- "MissingContextValues":{"shape":"ContextKeyNamesResultListType"},
2437
- "EvalDecisionDetails":{"shape":"EvalDecisionDetailsType"},
2438
- "ResourceSpecificResults":{"shape":"ResourceSpecificResultListType"}
2439
- }
2440
- },
2441
- "EvaluationResultsListType":{
2442
- "type":"list",
2443
- "member":{"shape":"EvaluationResult"}
2444
- },
2445
- "GenerateCredentialReportResponse":{
2446
- "type":"structure",
2447
- "members":{
2448
- "State":{"shape":"ReportStateType"},
2449
- "Description":{"shape":"ReportStateDescriptionType"}
2450
- }
2451
- },
2452
- "GetAccessKeyLastUsedRequest":{
2453
- "type":"structure",
2454
- "required":["AccessKeyId"],
2455
- "members":{
2456
- "AccessKeyId":{"shape":"accessKeyIdType"}
2457
- }
2458
- },
2459
- "GetAccessKeyLastUsedResponse":{
2460
- "type":"structure",
2461
- "members":{
2462
- "UserName":{"shape":"existingUserNameType"},
2463
- "AccessKeyLastUsed":{"shape":"AccessKeyLastUsed"}
2464
- }
2465
- },
2466
- "GetAccountAuthorizationDetailsRequest":{
2467
- "type":"structure",
2468
- "members":{
2469
- "Filter":{"shape":"entityListType"},
2470
- "MaxItems":{"shape":"maxItemsType"},
2471
- "Marker":{"shape":"markerType"}
2472
- }
2473
- },
2474
- "GetAccountAuthorizationDetailsResponse":{
2475
- "type":"structure",
2476
- "members":{
2477
- "UserDetailList":{"shape":"userDetailListType"},
2478
- "GroupDetailList":{"shape":"groupDetailListType"},
2479
- "RoleDetailList":{"shape":"roleDetailListType"},
2480
- "Policies":{"shape":"ManagedPolicyDetailListType"},
2481
- "IsTruncated":{"shape":"booleanType"},
2482
- "Marker":{"shape":"markerType"}
2483
- }
2484
- },
2485
- "GetAccountPasswordPolicyResponse":{
2486
- "type":"structure",
2487
- "required":["PasswordPolicy"],
2488
- "members":{
2489
- "PasswordPolicy":{"shape":"PasswordPolicy"}
2490
- }
2491
- },
2492
- "GetAccountSummaryResponse":{
2493
- "type":"structure",
2494
- "members":{
2495
- "SummaryMap":{"shape":"summaryMapType"}
2496
- }
2497
- },
2498
- "GetContextKeysForCustomPolicyRequest":{
2499
- "type":"structure",
2500
- "required":["PolicyInputList"],
2501
- "members":{
2502
- "PolicyInputList":{"shape":"SimulationPolicyListType"}
2503
- }
2504
- },
2505
- "GetContextKeysForPolicyResponse":{
2506
- "type":"structure",
2507
- "members":{
2508
- "ContextKeyNames":{"shape":"ContextKeyNamesResultListType"}
2509
- }
2510
- },
2511
- "GetContextKeysForPrincipalPolicyRequest":{
2512
- "type":"structure",
2513
- "required":["PolicySourceArn"],
2514
- "members":{
2515
- "PolicySourceArn":{"shape":"arnType"},
2516
- "PolicyInputList":{"shape":"SimulationPolicyListType"}
2517
- }
2518
- },
2519
- "GetCredentialReportResponse":{
2520
- "type":"structure",
2521
- "members":{
2522
- "Content":{"shape":"ReportContentType"},
2523
- "ReportFormat":{"shape":"ReportFormatType"},
2524
- "GeneratedTime":{"shape":"dateType"}
2525
- }
2526
- },
2527
- "GetGroupPolicyRequest":{
2528
- "type":"structure",
2529
- "required":[
2530
- "GroupName",
2531
- "PolicyName"
2532
- ],
2533
- "members":{
2534
- "GroupName":{"shape":"groupNameType"},
2535
- "PolicyName":{"shape":"policyNameType"}
2536
- }
2537
- },
2538
- "GetGroupPolicyResponse":{
2539
- "type":"structure",
2540
- "required":[
2541
- "GroupName",
2542
- "PolicyName",
2543
- "PolicyDocument"
2544
- ],
2545
- "members":{
2546
- "GroupName":{"shape":"groupNameType"},
2547
- "PolicyName":{"shape":"policyNameType"},
2548
- "PolicyDocument":{"shape":"policyDocumentType"}
2549
- }
2550
- },
2551
- "GetGroupRequest":{
2552
- "type":"structure",
2553
- "required":["GroupName"],
2554
- "members":{
2555
- "GroupName":{"shape":"groupNameType"},
2556
- "Marker":{"shape":"markerType"},
2557
- "MaxItems":{"shape":"maxItemsType"}
2558
- }
2559
- },
2560
- "GetGroupResponse":{
2561
- "type":"structure",
2562
- "required":[
2563
- "Group",
2564
- "Users"
2565
- ],
2566
- "members":{
2567
- "Group":{"shape":"Group"},
2568
- "Users":{"shape":"userListType"},
2569
- "IsTruncated":{"shape":"booleanType"},
2570
- "Marker":{"shape":"markerType"}
2571
- }
2572
- },
2573
- "GetInstanceProfileRequest":{
2574
- "type":"structure",
2575
- "required":["InstanceProfileName"],
2576
- "members":{
2577
- "InstanceProfileName":{"shape":"instanceProfileNameType"}
2578
- }
2579
- },
2580
- "GetInstanceProfileResponse":{
2581
- "type":"structure",
2582
- "required":["InstanceProfile"],
2583
- "members":{
2584
- "InstanceProfile":{"shape":"InstanceProfile"}
2585
- }
2586
- },
2587
- "GetLoginProfileRequest":{
2588
- "type":"structure",
2589
- "required":["UserName"],
2590
- "members":{
2591
- "UserName":{"shape":"userNameType"}
2592
- }
2593
- },
2594
- "GetLoginProfileResponse":{
2595
- "type":"structure",
2596
- "required":["LoginProfile"],
2597
- "members":{
2598
- "LoginProfile":{"shape":"LoginProfile"}
2599
- }
2600
- },
2601
- "GetOpenIDConnectProviderRequest":{
2602
- "type":"structure",
2603
- "required":["OpenIDConnectProviderArn"],
2604
- "members":{
2605
- "OpenIDConnectProviderArn":{"shape":"arnType"}
2606
- }
2607
- },
2608
- "GetOpenIDConnectProviderResponse":{
2609
- "type":"structure",
2610
- "members":{
2611
- "Url":{"shape":"OpenIDConnectProviderUrlType"},
2612
- "ClientIDList":{"shape":"clientIDListType"},
2613
- "ThumbprintList":{"shape":"thumbprintListType"},
2614
- "CreateDate":{"shape":"dateType"}
2615
- }
2616
- },
2617
- "GetPolicyRequest":{
2618
- "type":"structure",
2619
- "required":["PolicyArn"],
2620
- "members":{
2621
- "PolicyArn":{"shape":"arnType"}
2622
- }
2623
- },
2624
- "GetPolicyResponse":{
2625
- "type":"structure",
2626
- "members":{
2627
- "Policy":{"shape":"Policy"}
2628
- }
2629
- },
2630
- "GetPolicyVersionRequest":{
2631
- "type":"structure",
2632
- "required":[
2633
- "PolicyArn",
2634
- "VersionId"
2635
- ],
2636
- "members":{
2637
- "PolicyArn":{"shape":"arnType"},
2638
- "VersionId":{"shape":"policyVersionIdType"}
2639
- }
2640
- },
2641
- "GetPolicyVersionResponse":{
2642
- "type":"structure",
2643
- "members":{
2644
- "PolicyVersion":{"shape":"PolicyVersion"}
2645
- }
2646
- },
2647
- "GetRolePolicyRequest":{
2648
- "type":"structure",
2649
- "required":[
2650
- "RoleName",
2651
- "PolicyName"
2652
- ],
2653
- "members":{
2654
- "RoleName":{"shape":"roleNameType"},
2655
- "PolicyName":{"shape":"policyNameType"}
2656
- }
2657
- },
2658
- "GetRolePolicyResponse":{
2659
- "type":"structure",
2660
- "required":[
2661
- "RoleName",
2662
- "PolicyName",
2663
- "PolicyDocument"
2664
- ],
2665
- "members":{
2666
- "RoleName":{"shape":"roleNameType"},
2667
- "PolicyName":{"shape":"policyNameType"},
2668
- "PolicyDocument":{"shape":"policyDocumentType"}
2669
- }
2670
- },
2671
- "GetRoleRequest":{
2672
- "type":"structure",
2673
- "required":["RoleName"],
2674
- "members":{
2675
- "RoleName":{"shape":"roleNameType"}
2676
- }
2677
- },
2678
- "GetRoleResponse":{
2679
- "type":"structure",
2680
- "required":["Role"],
2681
- "members":{
2682
- "Role":{"shape":"Role"}
2683
- }
2684
- },
2685
- "GetSAMLProviderRequest":{
2686
- "type":"structure",
2687
- "required":["SAMLProviderArn"],
2688
- "members":{
2689
- "SAMLProviderArn":{"shape":"arnType"}
2690
- }
2691
- },
2692
- "GetSAMLProviderResponse":{
2693
- "type":"structure",
2694
- "members":{
2695
- "SAMLMetadataDocument":{"shape":"SAMLMetadataDocumentType"},
2696
- "CreateDate":{"shape":"dateType"},
2697
- "ValidUntil":{"shape":"dateType"}
2698
- }
2699
- },
2700
- "GetSSHPublicKeyRequest":{
2701
- "type":"structure",
2702
- "required":[
2703
- "UserName",
2704
- "SSHPublicKeyId",
2705
- "Encoding"
2706
- ],
2707
- "members":{
2708
- "UserName":{"shape":"userNameType"},
2709
- "SSHPublicKeyId":{"shape":"publicKeyIdType"},
2710
- "Encoding":{"shape":"encodingType"}
2711
- }
2712
- },
2713
- "GetSSHPublicKeyResponse":{
2714
- "type":"structure",
2715
- "members":{
2716
- "SSHPublicKey":{"shape":"SSHPublicKey"}
2717
- }
2718
- },
2719
- "GetServerCertificateRequest":{
2720
- "type":"structure",
2721
- "required":["ServerCertificateName"],
2722
- "members":{
2723
- "ServerCertificateName":{"shape":"serverCertificateNameType"}
2724
- }
2725
- },
2726
- "GetServerCertificateResponse":{
2727
- "type":"structure",
2728
- "required":["ServerCertificate"],
2729
- "members":{
2730
- "ServerCertificate":{"shape":"ServerCertificate"}
2731
- }
2732
- },
2733
- "GetUserPolicyRequest":{
2734
- "type":"structure",
2735
- "required":[
2736
- "UserName",
2737
- "PolicyName"
2738
- ],
2739
- "members":{
2740
- "UserName":{"shape":"existingUserNameType"},
2741
- "PolicyName":{"shape":"policyNameType"}
2742
- }
2743
- },
2744
- "GetUserPolicyResponse":{
2745
- "type":"structure",
2746
- "required":[
2747
- "UserName",
2748
- "PolicyName",
2749
- "PolicyDocument"
2750
- ],
2751
- "members":{
2752
- "UserName":{"shape":"existingUserNameType"},
2753
- "PolicyName":{"shape":"policyNameType"},
2754
- "PolicyDocument":{"shape":"policyDocumentType"}
2755
- }
2756
- },
2757
- "GetUserRequest":{
2758
- "type":"structure",
2759
- "members":{
2760
- "UserName":{"shape":"existingUserNameType"}
2761
- }
2762
- },
2763
- "GetUserResponse":{
2764
- "type":"structure",
2765
- "required":["User"],
2766
- "members":{
2767
- "User":{"shape":"User"}
2768
- }
2769
- },
2770
- "Group":{
2771
- "type":"structure",
2772
- "required":[
2773
- "Path",
2774
- "GroupName",
2775
- "GroupId",
2776
- "Arn",
2777
- "CreateDate"
2778
- ],
2779
- "members":{
2780
- "Path":{"shape":"pathType"},
2781
- "GroupName":{"shape":"groupNameType"},
2782
- "GroupId":{"shape":"idType"},
2783
- "Arn":{"shape":"arnType"},
2784
- "CreateDate":{"shape":"dateType"}
2785
- }
2786
- },
2787
- "GroupDetail":{
2788
- "type":"structure",
2789
- "members":{
2790
- "Path":{"shape":"pathType"},
2791
- "GroupName":{"shape":"groupNameType"},
2792
- "GroupId":{"shape":"idType"},
2793
- "Arn":{"shape":"arnType"},
2794
- "CreateDate":{"shape":"dateType"},
2795
- "GroupPolicyList":{"shape":"policyDetailListType"},
2796
- "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"}
2797
- }
2798
- },
2799
- "InstanceProfile":{
2800
- "type":"structure",
2801
- "required":[
2802
- "Path",
2803
- "InstanceProfileName",
2804
- "InstanceProfileId",
2805
- "Arn",
2806
- "CreateDate",
2807
- "Roles"
2808
- ],
2809
- "members":{
2810
- "Path":{"shape":"pathType"},
2811
- "InstanceProfileName":{"shape":"instanceProfileNameType"},
2812
- "InstanceProfileId":{"shape":"idType"},
2813
- "Arn":{"shape":"arnType"},
2814
- "CreateDate":{"shape":"dateType"},
2815
- "Roles":{"shape":"roleListType"}
2816
- }
2817
- },
2818
- "InvalidAuthenticationCodeException":{
2819
- "type":"structure",
2820
- "members":{
2821
- "message":{"shape":"invalidAuthenticationCodeMessage"}
2822
- },
2823
- "error":{
2824
- "code":"InvalidAuthenticationCode",
2825
- "httpStatusCode":403,
2826
- "senderFault":true
2827
- },
2828
- "exception":true
2829
- },
2830
- "InvalidCertificateException":{
2831
- "type":"structure",
2832
- "members":{
2833
- "message":{"shape":"invalidCertificateMessage"}
2834
- },
2835
- "error":{
2836
- "code":"InvalidCertificate",
2837
- "httpStatusCode":400,
2838
- "senderFault":true
2839
- },
2840
- "exception":true
2841
- },
2842
- "InvalidInputException":{
2843
- "type":"structure",
2844
- "members":{
2845
- "message":{"shape":"invalidInputMessage"}
2846
- },
2847
- "error":{
2848
- "code":"InvalidInput",
2849
- "httpStatusCode":400,
2850
- "senderFault":true
2851
- },
2852
- "exception":true
2853
- },
2854
- "InvalidPublicKeyException":{
2855
- "type":"structure",
2856
- "members":{
2857
- "message":{"shape":"invalidPublicKeyMessage"}
2858
- },
2859
- "error":{
2860
- "code":"InvalidPublicKey",
2861
- "httpStatusCode":400,
2862
- "senderFault":true
2863
- },
2864
- "exception":true
2865
- },
2866
- "InvalidUserTypeException":{
2867
- "type":"structure",
2868
- "members":{
2869
- "message":{"shape":"invalidUserTypeMessage"}
2870
- },
2871
- "error":{
2872
- "code":"InvalidUserType",
2873
- "httpStatusCode":400,
2874
- "senderFault":true
2875
- },
2876
- "exception":true
2877
- },
2878
- "KeyPairMismatchException":{
2879
- "type":"structure",
2880
- "members":{
2881
- "message":{"shape":"keyPairMismatchMessage"}
2882
- },
2883
- "error":{
2884
- "code":"KeyPairMismatch",
2885
- "httpStatusCode":400,
2886
- "senderFault":true
2887
- },
2888
- "exception":true
2889
- },
2890
- "LimitExceededException":{
2891
- "type":"structure",
2892
- "members":{
2893
- "message":{"shape":"limitExceededMessage"}
2894
- },
2895
- "error":{
2896
- "code":"LimitExceeded",
2897
- "httpStatusCode":409,
2898
- "senderFault":true
2899
- },
2900
- "exception":true
2901
- },
2902
- "LineNumber":{"type":"integer"},
2903
- "ListAccessKeysRequest":{
2904
- "type":"structure",
2905
- "members":{
2906
- "UserName":{"shape":"existingUserNameType"},
2907
- "Marker":{"shape":"markerType"},
2908
- "MaxItems":{"shape":"maxItemsType"}
2909
- }
2910
- },
2911
- "ListAccessKeysResponse":{
2912
- "type":"structure",
2913
- "required":["AccessKeyMetadata"],
2914
- "members":{
2915
- "AccessKeyMetadata":{"shape":"accessKeyMetadataListType"},
2916
- "IsTruncated":{"shape":"booleanType"},
2917
- "Marker":{"shape":"markerType"}
2918
- }
2919
- },
2920
- "ListAccountAliasesRequest":{
2921
- "type":"structure",
2922
- "members":{
2923
- "Marker":{"shape":"markerType"},
2924
- "MaxItems":{"shape":"maxItemsType"}
2925
- }
2926
- },
2927
- "ListAccountAliasesResponse":{
2928
- "type":"structure",
2929
- "required":["AccountAliases"],
2930
- "members":{
2931
- "AccountAliases":{"shape":"accountAliasListType"},
2932
- "IsTruncated":{"shape":"booleanType"},
2933
- "Marker":{"shape":"markerType"}
2934
- }
2935
- },
2936
- "ListAttachedGroupPoliciesRequest":{
2937
- "type":"structure",
2938
- "required":["GroupName"],
2939
- "members":{
2940
- "GroupName":{"shape":"groupNameType"},
2941
- "PathPrefix":{"shape":"policyPathType"},
2942
- "Marker":{"shape":"markerType"},
2943
- "MaxItems":{"shape":"maxItemsType"}
2944
- }
2945
- },
2946
- "ListAttachedGroupPoliciesResponse":{
2947
- "type":"structure",
2948
- "members":{
2949
- "AttachedPolicies":{"shape":"attachedPoliciesListType"},
2950
- "IsTruncated":{"shape":"booleanType"},
2951
- "Marker":{"shape":"markerType"}
2952
- }
2953
- },
2954
- "ListAttachedRolePoliciesRequest":{
2955
- "type":"structure",
2956
- "required":["RoleName"],
2957
- "members":{
2958
- "RoleName":{"shape":"roleNameType"},
2959
- "PathPrefix":{"shape":"policyPathType"},
2960
- "Marker":{"shape":"markerType"},
2961
- "MaxItems":{"shape":"maxItemsType"}
2962
- }
2963
- },
2964
- "ListAttachedRolePoliciesResponse":{
2965
- "type":"structure",
2966
- "members":{
2967
- "AttachedPolicies":{"shape":"attachedPoliciesListType"},
2968
- "IsTruncated":{"shape":"booleanType"},
2969
- "Marker":{"shape":"markerType"}
2970
- }
2971
- },
2972
- "ListAttachedUserPoliciesRequest":{
2973
- "type":"structure",
2974
- "required":["UserName"],
2975
- "members":{
2976
- "UserName":{"shape":"userNameType"},
2977
- "PathPrefix":{"shape":"policyPathType"},
2978
- "Marker":{"shape":"markerType"},
2979
- "MaxItems":{"shape":"maxItemsType"}
2980
- }
2981
- },
2982
- "ListAttachedUserPoliciesResponse":{
2983
- "type":"structure",
2984
- "members":{
2985
- "AttachedPolicies":{"shape":"attachedPoliciesListType"},
2986
- "IsTruncated":{"shape":"booleanType"},
2987
- "Marker":{"shape":"markerType"}
2988
- }
2989
- },
2990
- "ListEntitiesForPolicyRequest":{
2991
- "type":"structure",
2992
- "required":["PolicyArn"],
2993
- "members":{
2994
- "PolicyArn":{"shape":"arnType"},
2995
- "EntityFilter":{"shape":"EntityType"},
2996
- "PathPrefix":{"shape":"pathType"},
2997
- "Marker":{"shape":"markerType"},
2998
- "MaxItems":{"shape":"maxItemsType"}
2999
- }
3000
- },
3001
- "ListEntitiesForPolicyResponse":{
3002
- "type":"structure",
3003
- "members":{
3004
- "PolicyGroups":{"shape":"PolicyGroupListType"},
3005
- "PolicyUsers":{"shape":"PolicyUserListType"},
3006
- "PolicyRoles":{"shape":"PolicyRoleListType"},
3007
- "IsTruncated":{"shape":"booleanType"},
3008
- "Marker":{"shape":"markerType"}
3009
- }
3010
- },
3011
- "ListGroupPoliciesRequest":{
3012
- "type":"structure",
3013
- "required":["GroupName"],
3014
- "members":{
3015
- "GroupName":{"shape":"groupNameType"},
3016
- "Marker":{"shape":"markerType"},
3017
- "MaxItems":{"shape":"maxItemsType"}
3018
- }
3019
- },
3020
- "ListGroupPoliciesResponse":{
3021
- "type":"structure",
3022
- "required":["PolicyNames"],
3023
- "members":{
3024
- "PolicyNames":{"shape":"policyNameListType"},
3025
- "IsTruncated":{"shape":"booleanType"},
3026
- "Marker":{"shape":"markerType"}
3027
- }
3028
- },
3029
- "ListGroupsForUserRequest":{
3030
- "type":"structure",
3031
- "required":["UserName"],
3032
- "members":{
3033
- "UserName":{"shape":"existingUserNameType"},
3034
- "Marker":{"shape":"markerType"},
3035
- "MaxItems":{"shape":"maxItemsType"}
3036
- }
3037
- },
3038
- "ListGroupsForUserResponse":{
3039
- "type":"structure",
3040
- "required":["Groups"],
3041
- "members":{
3042
- "Groups":{"shape":"groupListType"},
3043
- "IsTruncated":{"shape":"booleanType"},
3044
- "Marker":{"shape":"markerType"}
3045
- }
3046
- },
3047
- "ListGroupsRequest":{
3048
- "type":"structure",
3049
- "members":{
3050
- "PathPrefix":{"shape":"pathPrefixType"},
3051
- "Marker":{"shape":"markerType"},
3052
- "MaxItems":{"shape":"maxItemsType"}
3053
- }
3054
- },
3055
- "ListGroupsResponse":{
3056
- "type":"structure",
3057
- "required":["Groups"],
3058
- "members":{
3059
- "Groups":{"shape":"groupListType"},
3060
- "IsTruncated":{"shape":"booleanType"},
3061
- "Marker":{"shape":"markerType"}
3062
- }
3063
- },
3064
- "ListInstanceProfilesForRoleRequest":{
3065
- "type":"structure",
3066
- "required":["RoleName"],
3067
- "members":{
3068
- "RoleName":{"shape":"roleNameType"},
3069
- "Marker":{"shape":"markerType"},
3070
- "MaxItems":{"shape":"maxItemsType"}
3071
- }
3072
- },
3073
- "ListInstanceProfilesForRoleResponse":{
3074
- "type":"structure",
3075
- "required":["InstanceProfiles"],
3076
- "members":{
3077
- "InstanceProfiles":{"shape":"instanceProfileListType"},
3078
- "IsTruncated":{"shape":"booleanType"},
3079
- "Marker":{"shape":"markerType"}
3080
- }
3081
- },
3082
- "ListInstanceProfilesRequest":{
3083
- "type":"structure",
3084
- "members":{
3085
- "PathPrefix":{"shape":"pathPrefixType"},
3086
- "Marker":{"shape":"markerType"},
3087
- "MaxItems":{"shape":"maxItemsType"}
3088
- }
3089
- },
3090
- "ListInstanceProfilesResponse":{
3091
- "type":"structure",
3092
- "required":["InstanceProfiles"],
3093
- "members":{
3094
- "InstanceProfiles":{"shape":"instanceProfileListType"},
3095
- "IsTruncated":{"shape":"booleanType"},
3096
- "Marker":{"shape":"markerType"}
3097
- }
3098
- },
3099
- "ListMFADevicesRequest":{
3100
- "type":"structure",
3101
- "members":{
3102
- "UserName":{"shape":"existingUserNameType"},
3103
- "Marker":{"shape":"markerType"},
3104
- "MaxItems":{"shape":"maxItemsType"}
3105
- }
3106
- },
3107
- "ListMFADevicesResponse":{
3108
- "type":"structure",
3109
- "required":["MFADevices"],
3110
- "members":{
3111
- "MFADevices":{"shape":"mfaDeviceListType"},
3112
- "IsTruncated":{"shape":"booleanType"},
3113
- "Marker":{"shape":"markerType"}
3114
- }
3115
- },
3116
- "ListOpenIDConnectProvidersRequest":{
3117
- "type":"structure",
3118
- "members":{
3119
- }
3120
- },
3121
- "ListOpenIDConnectProvidersResponse":{
3122
- "type":"structure",
3123
- "members":{
3124
- "OpenIDConnectProviderList":{"shape":"OpenIDConnectProviderListType"}
3125
- }
3126
- },
3127
- "ListPoliciesRequest":{
3128
- "type":"structure",
3129
- "members":{
3130
- "Scope":{"shape":"policyScopeType"},
3131
- "OnlyAttached":{"shape":"booleanType"},
3132
- "PathPrefix":{"shape":"policyPathType"},
3133
- "Marker":{"shape":"markerType"},
3134
- "MaxItems":{"shape":"maxItemsType"}
3135
- }
3136
- },
3137
- "ListPoliciesResponse":{
3138
- "type":"structure",
3139
- "members":{
3140
- "Policies":{"shape":"policyListType"},
3141
- "IsTruncated":{"shape":"booleanType"},
3142
- "Marker":{"shape":"markerType"}
3143
- }
3144
- },
3145
- "ListPolicyVersionsRequest":{
3146
- "type":"structure",
3147
- "required":["PolicyArn"],
3148
- "members":{
3149
- "PolicyArn":{"shape":"arnType"},
3150
- "Marker":{"shape":"markerType"},
3151
- "MaxItems":{"shape":"maxItemsType"}
3152
- }
3153
- },
3154
- "ListPolicyVersionsResponse":{
3155
- "type":"structure",
3156
- "members":{
3157
- "Versions":{"shape":"policyDocumentVersionListType"},
3158
- "IsTruncated":{"shape":"booleanType"},
3159
- "Marker":{"shape":"markerType"}
3160
- }
3161
- },
3162
- "ListRolePoliciesRequest":{
3163
- "type":"structure",
3164
- "required":["RoleName"],
3165
- "members":{
3166
- "RoleName":{"shape":"roleNameType"},
3167
- "Marker":{"shape":"markerType"},
3168
- "MaxItems":{"shape":"maxItemsType"}
3169
- }
3170
- },
3171
- "ListRolePoliciesResponse":{
3172
- "type":"structure",
3173
- "required":["PolicyNames"],
3174
- "members":{
3175
- "PolicyNames":{"shape":"policyNameListType"},
3176
- "IsTruncated":{"shape":"booleanType"},
3177
- "Marker":{"shape":"markerType"}
3178
- }
3179
- },
3180
- "ListRolesRequest":{
3181
- "type":"structure",
3182
- "members":{
3183
- "PathPrefix":{"shape":"pathPrefixType"},
3184
- "Marker":{"shape":"markerType"},
3185
- "MaxItems":{"shape":"maxItemsType"}
3186
- }
3187
- },
3188
- "ListRolesResponse":{
3189
- "type":"structure",
3190
- "required":["Roles"],
3191
- "members":{
3192
- "Roles":{"shape":"roleListType"},
3193
- "IsTruncated":{"shape":"booleanType"},
3194
- "Marker":{"shape":"markerType"}
3195
- }
3196
- },
3197
- "ListSAMLProvidersRequest":{
3198
- "type":"structure",
3199
- "members":{
3200
- }
3201
- },
3202
- "ListSAMLProvidersResponse":{
3203
- "type":"structure",
3204
- "members":{
3205
- "SAMLProviderList":{"shape":"SAMLProviderListType"}
3206
- }
3207
- },
3208
- "ListSSHPublicKeysRequest":{
3209
- "type":"structure",
3210
- "members":{
3211
- "UserName":{"shape":"userNameType"},
3212
- "Marker":{"shape":"markerType"},
3213
- "MaxItems":{"shape":"maxItemsType"}
3214
- }
3215
- },
3216
- "ListSSHPublicKeysResponse":{
3217
- "type":"structure",
3218
- "members":{
3219
- "SSHPublicKeys":{"shape":"SSHPublicKeyListType"},
3220
- "IsTruncated":{"shape":"booleanType"},
3221
- "Marker":{"shape":"markerType"}
3222
- }
3223
- },
3224
- "ListServerCertificatesRequest":{
3225
- "type":"structure",
3226
- "members":{
3227
- "PathPrefix":{"shape":"pathPrefixType"},
3228
- "Marker":{"shape":"markerType"},
3229
- "MaxItems":{"shape":"maxItemsType"}
3230
- }
3231
- },
3232
- "ListServerCertificatesResponse":{
3233
- "type":"structure",
3234
- "required":["ServerCertificateMetadataList"],
3235
- "members":{
3236
- "ServerCertificateMetadataList":{"shape":"serverCertificateMetadataListType"},
3237
- "IsTruncated":{"shape":"booleanType"},
3238
- "Marker":{"shape":"markerType"}
3239
- }
3240
- },
3241
- "ListSigningCertificatesRequest":{
3242
- "type":"structure",
3243
- "members":{
3244
- "UserName":{"shape":"existingUserNameType"},
3245
- "Marker":{"shape":"markerType"},
3246
- "MaxItems":{"shape":"maxItemsType"}
3247
- }
3248
- },
3249
- "ListSigningCertificatesResponse":{
3250
- "type":"structure",
3251
- "required":["Certificates"],
3252
- "members":{
3253
- "Certificates":{"shape":"certificateListType"},
3254
- "IsTruncated":{"shape":"booleanType"},
3255
- "Marker":{"shape":"markerType"}
3256
- }
3257
- },
3258
- "ListUserPoliciesRequest":{
3259
- "type":"structure",
3260
- "required":["UserName"],
3261
- "members":{
3262
- "UserName":{"shape":"existingUserNameType"},
3263
- "Marker":{"shape":"markerType"},
3264
- "MaxItems":{"shape":"maxItemsType"}
3265
- }
3266
- },
3267
- "ListUserPoliciesResponse":{
3268
- "type":"structure",
3269
- "required":["PolicyNames"],
3270
- "members":{
3271
- "PolicyNames":{"shape":"policyNameListType"},
3272
- "IsTruncated":{"shape":"booleanType"},
3273
- "Marker":{"shape":"markerType"}
3274
- }
3275
- },
3276
- "ListUsersRequest":{
3277
- "type":"structure",
3278
- "members":{
3279
- "PathPrefix":{"shape":"pathPrefixType"},
3280
- "Marker":{"shape":"markerType"},
3281
- "MaxItems":{"shape":"maxItemsType"}
3282
- }
3283
- },
3284
- "ListUsersResponse":{
3285
- "type":"structure",
3286
- "required":["Users"],
3287
- "members":{
3288
- "Users":{"shape":"userListType"},
3289
- "IsTruncated":{"shape":"booleanType"},
3290
- "Marker":{"shape":"markerType"}
3291
- }
3292
- },
3293
- "ListVirtualMFADevicesRequest":{
3294
- "type":"structure",
3295
- "members":{
3296
- "AssignmentStatus":{"shape":"assignmentStatusType"},
3297
- "Marker":{"shape":"markerType"},
3298
- "MaxItems":{"shape":"maxItemsType"}
3299
- }
3300
- },
3301
- "ListVirtualMFADevicesResponse":{
3302
- "type":"structure",
3303
- "required":["VirtualMFADevices"],
3304
- "members":{
3305
- "VirtualMFADevices":{"shape":"virtualMFADeviceListType"},
3306
- "IsTruncated":{"shape":"booleanType"},
3307
- "Marker":{"shape":"markerType"}
3308
- }
3309
- },
3310
- "LoginProfile":{
3311
- "type":"structure",
3312
- "required":[
3313
- "UserName",
3314
- "CreateDate"
3315
- ],
3316
- "members":{
3317
- "UserName":{"shape":"userNameType"},
3318
- "CreateDate":{"shape":"dateType"},
3319
- "PasswordResetRequired":{"shape":"booleanType"}
3320
- }
3321
- },
3322
- "MFADevice":{
3323
- "type":"structure",
3324
- "required":[
3325
- "UserName",
3326
- "SerialNumber",
3327
- "EnableDate"
3328
- ],
3329
- "members":{
3330
- "UserName":{"shape":"userNameType"},
3331
- "SerialNumber":{"shape":"serialNumberType"},
3332
- "EnableDate":{"shape":"dateType"}
3333
- }
3334
- },
3335
- "MalformedCertificateException":{
3336
- "type":"structure",
3337
- "members":{
3338
- "message":{"shape":"malformedCertificateMessage"}
3339
- },
3340
- "error":{
3341
- "code":"MalformedCertificate",
3342
- "httpStatusCode":400,
3343
- "senderFault":true
3344
- },
3345
- "exception":true
3346
- },
3347
- "MalformedPolicyDocumentException":{
3348
- "type":"structure",
3349
- "members":{
3350
- "message":{"shape":"malformedPolicyDocumentMessage"}
3351
- },
3352
- "error":{
3353
- "code":"MalformedPolicyDocument",
3354
- "httpStatusCode":400,
3355
- "senderFault":true
3356
- },
3357
- "exception":true
3358
- },
3359
- "ManagedPolicyDetail":{
3360
- "type":"structure",
3361
- "members":{
3362
- "PolicyName":{"shape":"policyNameType"},
3363
- "PolicyId":{"shape":"idType"},
3364
- "Arn":{"shape":"arnType"},
3365
- "Path":{"shape":"policyPathType"},
3366
- "DefaultVersionId":{"shape":"policyVersionIdType"},
3367
- "AttachmentCount":{"shape":"attachmentCountType"},
3368
- "IsAttachable":{"shape":"booleanType"},
3369
- "Description":{"shape":"policyDescriptionType"},
3370
- "CreateDate":{"shape":"dateType"},
3371
- "UpdateDate":{"shape":"dateType"},
3372
- "PolicyVersionList":{"shape":"policyDocumentVersionListType"}
3373
- }
3374
- },
3375
- "ManagedPolicyDetailListType":{
3376
- "type":"list",
3377
- "member":{"shape":"ManagedPolicyDetail"}
3378
- },
3379
- "NoSuchEntityException":{
3380
- "type":"structure",
3381
- "members":{
3382
- "message":{"shape":"noSuchEntityMessage"}
3383
- },
3384
- "error":{
3385
- "code":"NoSuchEntity",
3386
- "httpStatusCode":404,
3387
- "senderFault":true
3388
- },
3389
- "exception":true
3390
- },
3391
- "OpenIDConnectProviderListEntry":{
3392
- "type":"structure",
3393
- "members":{
3394
- "Arn":{"shape":"arnType"}
3395
- }
3396
- },
3397
- "OpenIDConnectProviderListType":{
3398
- "type":"list",
3399
- "member":{"shape":"OpenIDConnectProviderListEntry"}
3400
- },
3401
- "OpenIDConnectProviderUrlType":{
3402
- "type":"string",
3403
- "max":255,
3404
- "min":1
3405
- },
3406
- "PasswordPolicy":{
3407
- "type":"structure",
3408
- "members":{
3409
- "MinimumPasswordLength":{"shape":"minimumPasswordLengthType"},
3410
- "RequireSymbols":{"shape":"booleanType"},
3411
- "RequireNumbers":{"shape":"booleanType"},
3412
- "RequireUppercaseCharacters":{"shape":"booleanType"},
3413
- "RequireLowercaseCharacters":{"shape":"booleanType"},
3414
- "AllowUsersToChangePassword":{"shape":"booleanType"},
3415
- "ExpirePasswords":{"shape":"booleanType"},
3416
- "MaxPasswordAge":{"shape":"maxPasswordAgeType"},
3417
- "PasswordReusePrevention":{"shape":"passwordReusePreventionType"},
3418
- "HardExpiry":{"shape":"booleanObjectType"}
3419
- }
3420
- },
3421
- "PasswordPolicyViolationException":{
3422
- "type":"structure",
3423
- "members":{
3424
- "message":{"shape":"passwordPolicyViolationMessage"}
3425
- },
3426
- "error":{
3427
- "code":"PasswordPolicyViolation",
3428
- "httpStatusCode":400,
3429
- "senderFault":true
3430
- },
3431
- "exception":true
3432
- },
3433
- "Policy":{
3434
- "type":"structure",
3435
- "members":{
3436
- "PolicyName":{"shape":"policyNameType"},
3437
- "PolicyId":{"shape":"idType"},
3438
- "Arn":{"shape":"arnType"},
3439
- "Path":{"shape":"policyPathType"},
3440
- "DefaultVersionId":{"shape":"policyVersionIdType"},
3441
- "AttachmentCount":{"shape":"attachmentCountType"},
3442
- "IsAttachable":{"shape":"booleanType"},
3443
- "Description":{"shape":"policyDescriptionType"},
3444
- "CreateDate":{"shape":"dateType"},
3445
- "UpdateDate":{"shape":"dateType"}
3446
- }
3447
- },
3448
- "PolicyDetail":{
3449
- "type":"structure",
3450
- "members":{
3451
- "PolicyName":{"shape":"policyNameType"},
3452
- "PolicyDocument":{"shape":"policyDocumentType"}
3453
- }
3454
- },
3455
- "PolicyEvaluationDecisionType":{
3456
- "type":"string",
3457
- "enum":[
3458
- "allowed",
3459
- "explicitDeny",
3460
- "implicitDeny"
3461
- ]
3462
- },
3463
- "PolicyEvaluationException":{
3464
- "type":"structure",
3465
- "members":{
3466
- "message":{"shape":"policyEvaluationErrorMessage"}
3467
- },
3468
- "error":{
3469
- "code":"PolicyEvaluation",
3470
- "httpStatusCode":500
3471
- },
3472
- "exception":true
3473
- },
3474
- "PolicyGroup":{
3475
- "type":"structure",
3476
- "members":{
3477
- "GroupName":{"shape":"groupNameType"},
3478
- "GroupId":{"shape":"idType"}
3479
- }
3480
- },
3481
- "PolicyGroupListType":{
3482
- "type":"list",
3483
- "member":{"shape":"PolicyGroup"}
3484
- },
3485
- "PolicyIdentifierType":{"type":"string"},
3486
- "PolicyRole":{
3487
- "type":"structure",
3488
- "members":{
3489
- "RoleName":{"shape":"roleNameType"},
3490
- "RoleId":{"shape":"idType"}
3491
- }
3492
- },
3493
- "PolicyRoleListType":{
3494
- "type":"list",
3495
- "member":{"shape":"PolicyRole"}
3496
- },
3497
- "PolicySourceType":{
3498
- "type":"string",
3499
- "enum":[
3500
- "user",
3501
- "group",
3502
- "role",
3503
- "aws-managed",
3504
- "user-managed",
3505
- "resource",
3506
- "none"
3507
- ]
3508
- },
3509
- "PolicyUser":{
3510
- "type":"structure",
3511
- "members":{
3512
- "UserName":{"shape":"userNameType"},
3513
- "UserId":{"shape":"idType"}
3514
- }
3515
- },
3516
- "PolicyUserListType":{
3517
- "type":"list",
3518
- "member":{"shape":"PolicyUser"}
3519
- },
3520
- "PolicyVersion":{
3521
- "type":"structure",
3522
- "members":{
3523
- "Document":{"shape":"policyDocumentType"},
3524
- "VersionId":{"shape":"policyVersionIdType"},
3525
- "IsDefaultVersion":{"shape":"booleanType"},
3526
- "CreateDate":{"shape":"dateType"}
3527
- }
3528
- },
3529
- "Position":{
3530
- "type":"structure",
3531
- "members":{
3532
- "Line":{"shape":"LineNumber"},
3533
- "Column":{"shape":"ColumnNumber"}
3534
- }
3535
- },
3536
- "PutGroupPolicyRequest":{
3537
- "type":"structure",
3538
- "required":[
3539
- "GroupName",
3540
- "PolicyName",
3541
- "PolicyDocument"
3542
- ],
3543
- "members":{
3544
- "GroupName":{"shape":"groupNameType"},
3545
- "PolicyName":{"shape":"policyNameType"},
3546
- "PolicyDocument":{"shape":"policyDocumentType"}
3547
- }
3548
- },
3549
- "PutRolePolicyRequest":{
3550
- "type":"structure",
3551
- "required":[
3552
- "RoleName",
3553
- "PolicyName",
3554
- "PolicyDocument"
3555
- ],
3556
- "members":{
3557
- "RoleName":{"shape":"roleNameType"},
3558
- "PolicyName":{"shape":"policyNameType"},
3559
- "PolicyDocument":{"shape":"policyDocumentType"}
3560
- }
3561
- },
3562
- "PutUserPolicyRequest":{
3563
- "type":"structure",
3564
- "required":[
3565
- "UserName",
3566
- "PolicyName",
3567
- "PolicyDocument"
3568
- ],
3569
- "members":{
3570
- "UserName":{"shape":"existingUserNameType"},
3571
- "PolicyName":{"shape":"policyNameType"},
3572
- "PolicyDocument":{"shape":"policyDocumentType"}
3573
- }
3574
- },
3575
- "RemoveClientIDFromOpenIDConnectProviderRequest":{
3576
- "type":"structure",
3577
- "required":[
3578
- "OpenIDConnectProviderArn",
3579
- "ClientID"
3580
- ],
3581
- "members":{
3582
- "OpenIDConnectProviderArn":{"shape":"arnType"},
3583
- "ClientID":{"shape":"clientIDType"}
3584
- }
3585
- },
3586
- "RemoveRoleFromInstanceProfileRequest":{
3587
- "type":"structure",
3588
- "required":[
3589
- "InstanceProfileName",
3590
- "RoleName"
3591
- ],
3592
- "members":{
3593
- "InstanceProfileName":{"shape":"instanceProfileNameType"},
3594
- "RoleName":{"shape":"roleNameType"}
3595
- }
3596
- },
3597
- "RemoveUserFromGroupRequest":{
3598
- "type":"structure",
3599
- "required":[
3600
- "GroupName",
3601
- "UserName"
3602
- ],
3603
- "members":{
3604
- "GroupName":{"shape":"groupNameType"},
3605
- "UserName":{"shape":"existingUserNameType"}
3606
- }
3607
- },
3608
- "ReportContentType":{"type":"blob"},
3609
- "ReportFormatType":{
3610
- "type":"string",
3611
- "enum":["text/csv"]
3612
- },
3613
- "ReportStateDescriptionType":{"type":"string"},
3614
- "ReportStateType":{
3615
- "type":"string",
3616
- "enum":[
3617
- "STARTED",
3618
- "INPROGRESS",
3619
- "COMPLETE"
3620
- ]
3621
- },
3622
- "ResourceHandlingOptionType":{
3623
- "type":"string",
3624
- "max":64,
3625
- "min":1
3626
- },
3627
- "ResourceNameListType":{
3628
- "type":"list",
3629
- "member":{"shape":"ResourceNameType"}
3630
- },
3631
- "ResourceNameType":{
3632
- "type":"string",
3633
- "max":2048,
3634
- "min":1
3635
- },
3636
- "ResourceSpecificResult":{
3637
- "type":"structure",
3638
- "required":[
3639
- "EvalResourceName",
3640
- "EvalResourceDecision"
3641
- ],
3642
- "members":{
3643
- "EvalResourceName":{"shape":"ResourceNameType"},
3644
- "EvalResourceDecision":{"shape":"PolicyEvaluationDecisionType"},
3645
- "MatchedStatements":{"shape":"StatementListType"},
3646
- "MissingContextValues":{"shape":"ContextKeyNamesResultListType"},
3647
- "EvalDecisionDetails":{"shape":"EvalDecisionDetailsType"}
3648
- }
3649
- },
3650
- "ResourceSpecificResultListType":{
3651
- "type":"list",
3652
- "member":{"shape":"ResourceSpecificResult"}
3653
- },
3654
- "ResyncMFADeviceRequest":{
3655
- "type":"structure",
3656
- "required":[
3657
- "UserName",
3658
- "SerialNumber",
3659
- "AuthenticationCode1",
3660
- "AuthenticationCode2"
3661
- ],
3662
- "members":{
3663
- "UserName":{"shape":"existingUserNameType"},
3664
- "SerialNumber":{"shape":"serialNumberType"},
3665
- "AuthenticationCode1":{"shape":"authenticationCodeType"},
3666
- "AuthenticationCode2":{"shape":"authenticationCodeType"}
3667
- }
3668
- },
3669
- "Role":{
3670
- "type":"structure",
3671
- "required":[
3672
- "Path",
3673
- "RoleName",
3674
- "RoleId",
3675
- "Arn",
3676
- "CreateDate"
3677
- ],
3678
- "members":{
3679
- "Path":{"shape":"pathType"},
3680
- "RoleName":{"shape":"roleNameType"},
3681
- "RoleId":{"shape":"idType"},
3682
- "Arn":{"shape":"arnType"},
3683
- "CreateDate":{"shape":"dateType"},
3684
- "AssumeRolePolicyDocument":{"shape":"policyDocumentType"}
3685
- }
3686
- },
3687
- "RoleDetail":{
3688
- "type":"structure",
3689
- "members":{
3690
- "Path":{"shape":"pathType"},
3691
- "RoleName":{"shape":"roleNameType"},
3692
- "RoleId":{"shape":"idType"},
3693
- "Arn":{"shape":"arnType"},
3694
- "CreateDate":{"shape":"dateType"},
3695
- "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
3696
- "InstanceProfileList":{"shape":"instanceProfileListType"},
3697
- "RolePolicyList":{"shape":"policyDetailListType"},
3698
- "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"}
3699
- }
3700
- },
3701
- "SAMLMetadataDocumentType":{
3702
- "type":"string",
3703
- "max":10000000,
3704
- "min":1000
3705
- },
3706
- "SAMLProviderListEntry":{
3707
- "type":"structure",
3708
- "members":{
3709
- "Arn":{"shape":"arnType"},
3710
- "ValidUntil":{"shape":"dateType"},
3711
- "CreateDate":{"shape":"dateType"}
3712
- }
3713
- },
3714
- "SAMLProviderListType":{
3715
- "type":"list",
3716
- "member":{"shape":"SAMLProviderListEntry"}
3717
- },
3718
- "SAMLProviderNameType":{
3719
- "type":"string",
3720
- "max":128,
3721
- "min":1,
3722
- "pattern":"[\\w._-]+"
3723
- },
3724
- "SSHPublicKey":{
3725
- "type":"structure",
3726
- "required":[
3727
- "UserName",
3728
- "SSHPublicKeyId",
3729
- "Fingerprint",
3730
- "SSHPublicKeyBody",
3731
- "Status"
3732
- ],
3733
- "members":{
3734
- "UserName":{"shape":"userNameType"},
3735
- "SSHPublicKeyId":{"shape":"publicKeyIdType"},
3736
- "Fingerprint":{"shape":"publicKeyFingerprintType"},
3737
- "SSHPublicKeyBody":{"shape":"publicKeyMaterialType"},
3738
- "Status":{"shape":"statusType"},
3739
- "UploadDate":{"shape":"dateType"}
3740
- }
3741
- },
3742
- "SSHPublicKeyListType":{
3743
- "type":"list",
3744
- "member":{"shape":"SSHPublicKeyMetadata"}
3745
- },
3746
- "SSHPublicKeyMetadata":{
3747
- "type":"structure",
3748
- "required":[
3749
- "UserName",
3750
- "SSHPublicKeyId",
3751
- "Status",
3752
- "UploadDate"
3753
- ],
3754
- "members":{
3755
- "UserName":{"shape":"userNameType"},
3756
- "SSHPublicKeyId":{"shape":"publicKeyIdType"},
3757
- "Status":{"shape":"statusType"},
3758
- "UploadDate":{"shape":"dateType"}
3759
- }
3760
- },
3761
- "ServerCertificate":{
3762
- "type":"structure",
3763
- "required":[
3764
- "ServerCertificateMetadata",
3765
- "CertificateBody"
3766
- ],
3767
- "members":{
3768
- "ServerCertificateMetadata":{"shape":"ServerCertificateMetadata"},
3769
- "CertificateBody":{"shape":"certificateBodyType"},
3770
- "CertificateChain":{"shape":"certificateChainType"}
3771
- }
3772
- },
3773
- "ServerCertificateMetadata":{
3774
- "type":"structure",
3775
- "required":[
3776
- "Path",
3777
- "ServerCertificateName",
3778
- "ServerCertificateId",
3779
- "Arn"
3780
- ],
3781
- "members":{
3782
- "Path":{"shape":"pathType"},
3783
- "ServerCertificateName":{"shape":"serverCertificateNameType"},
3784
- "ServerCertificateId":{"shape":"idType"},
3785
- "Arn":{"shape":"arnType"},
3786
- "UploadDate":{"shape":"dateType"},
3787
- "Expiration":{"shape":"dateType"}
3788
- }
3789
- },
3790
- "ServiceFailureException":{
3791
- "type":"structure",
3792
- "members":{
3793
- "message":{"shape":"serviceFailureExceptionMessage"}
3794
- },
3795
- "error":{
3796
- "code":"ServiceFailure",
3797
- "httpStatusCode":500
3798
- },
3799
- "exception":true
3800
- },
3801
- "SetDefaultPolicyVersionRequest":{
3802
- "type":"structure",
3803
- "required":[
3804
- "PolicyArn",
3805
- "VersionId"
3806
- ],
3807
- "members":{
3808
- "PolicyArn":{"shape":"arnType"},
3809
- "VersionId":{"shape":"policyVersionIdType"}
3810
- }
3811
- },
3812
- "SigningCertificate":{
3813
- "type":"structure",
3814
- "required":[
3815
- "UserName",
3816
- "CertificateId",
3817
- "CertificateBody",
3818
- "Status"
3819
- ],
3820
- "members":{
3821
- "UserName":{"shape":"userNameType"},
3822
- "CertificateId":{"shape":"certificateIdType"},
3823
- "CertificateBody":{"shape":"certificateBodyType"},
3824
- "Status":{"shape":"statusType"},
3825
- "UploadDate":{"shape":"dateType"}
3826
- }
3827
- },
3828
- "SimulateCustomPolicyRequest":{
3829
- "type":"structure",
3830
- "required":[
3831
- "PolicyInputList",
3832
- "ActionNames"
3833
- ],
3834
- "members":{
3835
- "PolicyInputList":{"shape":"SimulationPolicyListType"},
3836
- "ActionNames":{"shape":"ActionNameListType"},
3837
- "ResourceArns":{"shape":"ResourceNameListType"},
3838
- "ResourcePolicy":{"shape":"policyDocumentType"},
3839
- "ResourceOwner":{"shape":"ResourceNameType"},
3840
- "CallerArn":{"shape":"ResourceNameType"},
3841
- "ContextEntries":{"shape":"ContextEntryListType"},
3842
- "ResourceHandlingOption":{"shape":"ResourceHandlingOptionType"},
3843
- "MaxItems":{"shape":"maxItemsType"},
3844
- "Marker":{"shape":"markerType"}
3845
- }
3846
- },
3847
- "SimulatePolicyResponse":{
3848
- "type":"structure",
3849
- "members":{
3850
- "EvaluationResults":{"shape":"EvaluationResultsListType"},
3851
- "IsTruncated":{"shape":"booleanType"},
3852
- "Marker":{"shape":"markerType"}
3853
- }
3854
- },
3855
- "SimulatePrincipalPolicyRequest":{
3856
- "type":"structure",
3857
- "required":[
3858
- "PolicySourceArn",
3859
- "ActionNames"
3860
- ],
3861
- "members":{
3862
- "PolicySourceArn":{"shape":"arnType"},
3863
- "PolicyInputList":{"shape":"SimulationPolicyListType"},
3864
- "ActionNames":{"shape":"ActionNameListType"},
3865
- "ResourceArns":{"shape":"ResourceNameListType"},
3866
- "ResourcePolicy":{"shape":"policyDocumentType"},
3867
- "ResourceOwner":{"shape":"ResourceNameType"},
3868
- "CallerArn":{"shape":"ResourceNameType"},
3869
- "ContextEntries":{"shape":"ContextEntryListType"},
3870
- "ResourceHandlingOption":{"shape":"ResourceHandlingOptionType"},
3871
- "MaxItems":{"shape":"maxItemsType"},
3872
- "Marker":{"shape":"markerType"}
3873
- }
3874
- },
3875
- "SimulationPolicyListType":{
3876
- "type":"list",
3877
- "member":{"shape":"policyDocumentType"}
3878
- },
3879
- "Statement":{
3880
- "type":"structure",
3881
- "members":{
3882
- "SourcePolicyId":{"shape":"PolicyIdentifierType"},
3883
- "SourcePolicyType":{"shape":"PolicySourceType"},
3884
- "StartPosition":{"shape":"Position"},
3885
- "EndPosition":{"shape":"Position"}
3886
- }
3887
- },
3888
- "StatementListType":{
3889
- "type":"list",
3890
- "member":{"shape":"Statement"}
3891
- },
3892
- "UnrecognizedPublicKeyEncodingException":{
3893
- "type":"structure",
3894
- "members":{
3895
- "message":{"shape":"unrecognizedPublicKeyEncodingMessage"}
3896
- },
3897
- "error":{
3898
- "code":"UnrecognizedPublicKeyEncoding",
3899
- "httpStatusCode":400,
3900
- "senderFault":true
3901
- },
3902
- "exception":true
3903
- },
3904
- "UpdateAccessKeyRequest":{
3905
- "type":"structure",
3906
- "required":[
3907
- "AccessKeyId",
3908
- "Status"
3909
- ],
3910
- "members":{
3911
- "UserName":{"shape":"existingUserNameType"},
3912
- "AccessKeyId":{"shape":"accessKeyIdType"},
3913
- "Status":{"shape":"statusType"}
3914
- }
3915
- },
3916
- "UpdateAccountPasswordPolicyRequest":{
3917
- "type":"structure",
3918
- "members":{
3919
- "MinimumPasswordLength":{"shape":"minimumPasswordLengthType"},
3920
- "RequireSymbols":{"shape":"booleanType"},
3921
- "RequireNumbers":{"shape":"booleanType"},
3922
- "RequireUppercaseCharacters":{"shape":"booleanType"},
3923
- "RequireLowercaseCharacters":{"shape":"booleanType"},
3924
- "AllowUsersToChangePassword":{"shape":"booleanType"},
3925
- "MaxPasswordAge":{"shape":"maxPasswordAgeType"},
3926
- "PasswordReusePrevention":{"shape":"passwordReusePreventionType"},
3927
- "HardExpiry":{"shape":"booleanObjectType"}
3928
- }
3929
- },
3930
- "UpdateAssumeRolePolicyRequest":{
3931
- "type":"structure",
3932
- "required":[
3933
- "RoleName",
3934
- "PolicyDocument"
3935
- ],
3936
- "members":{
3937
- "RoleName":{"shape":"roleNameType"},
3938
- "PolicyDocument":{"shape":"policyDocumentType"}
3939
- }
3940
- },
3941
- "UpdateGroupRequest":{
3942
- "type":"structure",
3943
- "required":["GroupName"],
3944
- "members":{
3945
- "GroupName":{"shape":"groupNameType"},
3946
- "NewPath":{"shape":"pathType"},
3947
- "NewGroupName":{"shape":"groupNameType"}
3948
- }
3949
- },
3950
- "UpdateLoginProfileRequest":{
3951
- "type":"structure",
3952
- "required":["UserName"],
3953
- "members":{
3954
- "UserName":{"shape":"userNameType"},
3955
- "Password":{"shape":"passwordType"},
3956
- "PasswordResetRequired":{"shape":"booleanObjectType"}
3957
- }
3958
- },
3959
- "UpdateOpenIDConnectProviderThumbprintRequest":{
3960
- "type":"structure",
3961
- "required":[
3962
- "OpenIDConnectProviderArn",
3963
- "ThumbprintList"
3964
- ],
3965
- "members":{
3966
- "OpenIDConnectProviderArn":{"shape":"arnType"},
3967
- "ThumbprintList":{"shape":"thumbprintListType"}
3968
- }
3969
- },
3970
- "UpdateSAMLProviderRequest":{
3971
- "type":"structure",
3972
- "required":[
3973
- "SAMLMetadataDocument",
3974
- "SAMLProviderArn"
3975
- ],
3976
- "members":{
3977
- "SAMLMetadataDocument":{"shape":"SAMLMetadataDocumentType"},
3978
- "SAMLProviderArn":{"shape":"arnType"}
3979
- }
3980
- },
3981
- "UpdateSAMLProviderResponse":{
3982
- "type":"structure",
3983
- "members":{
3984
- "SAMLProviderArn":{"shape":"arnType"}
3985
- }
3986
- },
3987
- "UpdateSSHPublicKeyRequest":{
3988
- "type":"structure",
3989
- "required":[
3990
- "UserName",
3991
- "SSHPublicKeyId",
3992
- "Status"
3993
- ],
3994
- "members":{
3995
- "UserName":{"shape":"userNameType"},
3996
- "SSHPublicKeyId":{"shape":"publicKeyIdType"},
3997
- "Status":{"shape":"statusType"}
3998
- }
3999
- },
4000
- "UpdateServerCertificateRequest":{
4001
- "type":"structure",
4002
- "required":["ServerCertificateName"],
4003
- "members":{
4004
- "ServerCertificateName":{"shape":"serverCertificateNameType"},
4005
- "NewPath":{"shape":"pathType"},
4006
- "NewServerCertificateName":{"shape":"serverCertificateNameType"}
4007
- }
4008
- },
4009
- "UpdateSigningCertificateRequest":{
4010
- "type":"structure",
4011
- "required":[
4012
- "CertificateId",
4013
- "Status"
4014
- ],
4015
- "members":{
4016
- "UserName":{"shape":"existingUserNameType"},
4017
- "CertificateId":{"shape":"certificateIdType"},
4018
- "Status":{"shape":"statusType"}
4019
- }
4020
- },
4021
- "UpdateUserRequest":{
4022
- "type":"structure",
4023
- "required":["UserName"],
4024
- "members":{
4025
- "UserName":{"shape":"existingUserNameType"},
4026
- "NewPath":{"shape":"pathType"},
4027
- "NewUserName":{"shape":"userNameType"}
4028
- }
4029
- },
4030
- "UploadSSHPublicKeyRequest":{
4031
- "type":"structure",
4032
- "required":[
4033
- "UserName",
4034
- "SSHPublicKeyBody"
4035
- ],
4036
- "members":{
4037
- "UserName":{"shape":"userNameType"},
4038
- "SSHPublicKeyBody":{"shape":"publicKeyMaterialType"}
4039
- }
4040
- },
4041
- "UploadSSHPublicKeyResponse":{
4042
- "type":"structure",
4043
- "members":{
4044
- "SSHPublicKey":{"shape":"SSHPublicKey"}
4045
- }
4046
- },
4047
- "UploadServerCertificateRequest":{
4048
- "type":"structure",
4049
- "required":[
4050
- "ServerCertificateName",
4051
- "CertificateBody",
4052
- "PrivateKey"
4053
- ],
4054
- "members":{
4055
- "Path":{"shape":"pathType"},
4056
- "ServerCertificateName":{"shape":"serverCertificateNameType"},
4057
- "CertificateBody":{"shape":"certificateBodyType"},
4058
- "PrivateKey":{"shape":"privateKeyType"},
4059
- "CertificateChain":{"shape":"certificateChainType"}
4060
- }
4061
- },
4062
- "UploadServerCertificateResponse":{
4063
- "type":"structure",
4064
- "members":{
4065
- "ServerCertificateMetadata":{"shape":"ServerCertificateMetadata"}
4066
- }
4067
- },
4068
- "UploadSigningCertificateRequest":{
4069
- "type":"structure",
4070
- "required":["CertificateBody"],
4071
- "members":{
4072
- "UserName":{"shape":"existingUserNameType"},
4073
- "CertificateBody":{"shape":"certificateBodyType"}
4074
- }
4075
- },
4076
- "UploadSigningCertificateResponse":{
4077
- "type":"structure",
4078
- "required":["Certificate"],
4079
- "members":{
4080
- "Certificate":{"shape":"SigningCertificate"}
4081
- }
4082
- },
4083
- "User":{
4084
- "type":"structure",
4085
- "required":[
4086
- "Path",
4087
- "UserName",
4088
- "UserId",
4089
- "Arn",
4090
- "CreateDate"
4091
- ],
4092
- "members":{
4093
- "Path":{"shape":"pathType"},
4094
- "UserName":{"shape":"userNameType"},
4095
- "UserId":{"shape":"idType"},
4096
- "Arn":{"shape":"arnType"},
4097
- "CreateDate":{"shape":"dateType"},
4098
- "PasswordLastUsed":{"shape":"dateType"}
4099
- }
4100
- },
4101
- "UserDetail":{
4102
- "type":"structure",
4103
- "members":{
4104
- "Path":{"shape":"pathType"},
4105
- "UserName":{"shape":"userNameType"},
4106
- "UserId":{"shape":"idType"},
4107
- "Arn":{"shape":"arnType"},
4108
- "CreateDate":{"shape":"dateType"},
4109
- "UserPolicyList":{"shape":"policyDetailListType"},
4110
- "GroupList":{"shape":"groupNameListType"},
4111
- "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"}
4112
- }
4113
- },
4114
- "VirtualMFADevice":{
4115
- "type":"structure",
4116
- "required":["SerialNumber"],
4117
- "members":{
4118
- "SerialNumber":{"shape":"serialNumberType"},
4119
- "Base32StringSeed":{"shape":"BootstrapDatum"},
4120
- "QRCodePNG":{"shape":"BootstrapDatum"},
4121
- "User":{"shape":"User"},
4122
- "EnableDate":{"shape":"dateType"}
4123
- }
4124
- },
4125
- "accessKeyIdType":{
4126
- "type":"string",
4127
- "max":32,
4128
- "min":16,
4129
- "pattern":"[\\w]+"
4130
- },
4131
- "accessKeyMetadataListType":{
4132
- "type":"list",
4133
- "member":{"shape":"AccessKeyMetadata"}
4134
- },
4135
- "accessKeySecretType":{
4136
- "type":"string",
4137
- "sensitive":true
4138
- },
4139
- "accountAliasListType":{
4140
- "type":"list",
4141
- "member":{"shape":"accountAliasType"}
4142
- },
4143
- "accountAliasType":{
4144
- "type":"string",
4145
- "max":63,
4146
- "min":3,
4147
- "pattern":"^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$"
4148
- },
4149
- "arnType":{
4150
- "type":"string",
4151
- "max":2048,
4152
- "min":20
4153
- },
4154
- "assignmentStatusType":{
4155
- "type":"string",
4156
- "enum":[
4157
- "Assigned",
4158
- "Unassigned",
4159
- "Any"
4160
- ]
4161
- },
4162
- "attachedPoliciesListType":{
4163
- "type":"list",
4164
- "member":{"shape":"AttachedPolicy"}
4165
- },
4166
- "attachmentCountType":{"type":"integer"},
4167
- "authenticationCodeType":{
4168
- "type":"string",
4169
- "max":6,
4170
- "min":6,
4171
- "pattern":"[\\d]+"
4172
- },
4173
- "booleanObjectType":{
4174
- "type":"boolean",
4175
- "box":true
4176
- },
4177
- "booleanType":{"type":"boolean"},
4178
- "certificateBodyType":{
4179
- "type":"string",
4180
- "max":16384,
4181
- "min":1,
4182
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
4183
- },
4184
- "certificateChainType":{
4185
- "type":"string",
4186
- "max":2097152,
4187
- "min":1,
4188
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
4189
- },
4190
- "certificateIdType":{
4191
- "type":"string",
4192
- "max":128,
4193
- "min":24,
4194
- "pattern":"[\\w]+"
4195
- },
4196
- "certificateListType":{
4197
- "type":"list",
4198
- "member":{"shape":"SigningCertificate"}
4199
- },
4200
- "clientIDListType":{
4201
- "type":"list",
4202
- "member":{"shape":"clientIDType"}
4203
- },
4204
- "clientIDType":{
4205
- "type":"string",
4206
- "max":255,
4207
- "min":1
4208
- },
4209
- "credentialReportExpiredExceptionMessage":{"type":"string"},
4210
- "credentialReportNotPresentExceptionMessage":{"type":"string"},
4211
- "credentialReportNotReadyExceptionMessage":{"type":"string"},
4212
- "dateType":{"type":"timestamp"},
4213
- "deleteConflictMessage":{"type":"string"},
4214
- "duplicateCertificateMessage":{"type":"string"},
4215
- "duplicateSSHPublicKeyMessage":{"type":"string"},
4216
- "encodingType":{
4217
- "type":"string",
4218
- "enum":[
4219
- "SSH",
4220
- "PEM"
4221
- ]
4222
- },
4223
- "entityAlreadyExistsMessage":{"type":"string"},
4224
- "entityListType":{
4225
- "type":"list",
4226
- "member":{"shape":"EntityType"}
4227
- },
4228
- "entityTemporarilyUnmodifiableMessage":{"type":"string"},
4229
- "existingUserNameType":{
4230
- "type":"string",
4231
- "max":128,
4232
- "min":1,
4233
- "pattern":"[\\w+=,.@-]+"
4234
- },
4235
- "groupDetailListType":{
4236
- "type":"list",
4237
- "member":{"shape":"GroupDetail"}
4238
- },
4239
- "groupListType":{
4240
- "type":"list",
4241
- "member":{"shape":"Group"}
4242
- },
4243
- "groupNameListType":{
4244
- "type":"list",
4245
- "member":{"shape":"groupNameType"}
4246
- },
4247
- "groupNameType":{
4248
- "type":"string",
4249
- "max":128,
4250
- "min":1,
4251
- "pattern":"[\\w+=,.@-]+"
4252
- },
4253
- "idType":{
4254
- "type":"string",
4255
- "max":32,
4256
- "min":16,
4257
- "pattern":"[\\w]+"
4258
- },
4259
- "instanceProfileListType":{
4260
- "type":"list",
4261
- "member":{"shape":"InstanceProfile"}
4262
- },
4263
- "instanceProfileNameType":{
4264
- "type":"string",
4265
- "max":128,
4266
- "min":1,
4267
- "pattern":"[\\w+=,.@-]+"
4268
- },
4269
- "invalidAuthenticationCodeMessage":{"type":"string"},
4270
- "invalidCertificateMessage":{"type":"string"},
4271
- "invalidInputMessage":{"type":"string"},
4272
- "invalidPublicKeyMessage":{"type":"string"},
4273
- "invalidUserTypeMessage":{"type":"string"},
4274
- "keyPairMismatchMessage":{"type":"string"},
4275
- "limitExceededMessage":{"type":"string"},
4276
- "malformedCertificateMessage":{"type":"string"},
4277
- "malformedPolicyDocumentMessage":{"type":"string"},
4278
- "markerType":{
4279
- "type":"string",
4280
- "max":320,
4281
- "min":1,
4282
- "pattern":"[\\u0020-\\u00FF]+"
4283
- },
4284
- "maxItemsType":{
4285
- "type":"integer",
4286
- "max":1000,
4287
- "min":1
4288
- },
4289
- "maxPasswordAgeType":{
4290
- "type":"integer",
4291
- "box":true,
4292
- "max":1095,
4293
- "min":1
4294
- },
4295
- "mfaDeviceListType":{
4296
- "type":"list",
4297
- "member":{"shape":"MFADevice"}
4298
- },
4299
- "minimumPasswordLengthType":{
4300
- "type":"integer",
4301
- "max":128,
4302
- "min":6
4303
- },
4304
- "noSuchEntityMessage":{"type":"string"},
4305
- "passwordPolicyViolationMessage":{"type":"string"},
4306
- "passwordReusePreventionType":{
4307
- "type":"integer",
4308
- "box":true,
4309
- "max":24,
4310
- "min":1
4311
- },
4312
- "passwordType":{
4313
- "type":"string",
4314
- "max":128,
4315
- "min":1,
4316
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+",
4317
- "sensitive":true
4318
- },
4319
- "pathPrefixType":{
4320
- "type":"string",
4321
- "max":512,
4322
- "min":1,
4323
- "pattern":"\\u002F[\\u0021-\\u007F]*"
4324
- },
4325
- "pathType":{
4326
- "type":"string",
4327
- "max":512,
4328
- "min":1,
4329
- "pattern":"(\\u002F)|(\\u002F[\\u0021-\\u007F]+\\u002F)"
4330
- },
4331
- "policyDescriptionType":{
4332
- "type":"string",
4333
- "max":1000
4334
- },
4335
- "policyDetailListType":{
4336
- "type":"list",
4337
- "member":{"shape":"PolicyDetail"}
4338
- },
4339
- "policyDocumentType":{
4340
- "type":"string",
4341
- "max":131072,
4342
- "min":1,
4343
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
4344
- },
4345
- "policyDocumentVersionListType":{
4346
- "type":"list",
4347
- "member":{"shape":"PolicyVersion"}
4348
- },
4349
- "policyEvaluationErrorMessage":{"type":"string"},
4350
- "policyListType":{
4351
- "type":"list",
4352
- "member":{"shape":"Policy"}
4353
- },
4354
- "policyNameListType":{
4355
- "type":"list",
4356
- "member":{"shape":"policyNameType"}
4357
- },
4358
- "policyNameType":{
4359
- "type":"string",
4360
- "max":128,
4361
- "min":1,
4362
- "pattern":"[\\w+=,.@-]+"
4363
- },
4364
- "policyPathType":{
4365
- "type":"string",
4366
- "pattern":"((/[A-Za-z0-9\\.,\\+@=_-]+)*)/"
4367
- },
4368
- "policyScopeType":{
4369
- "type":"string",
4370
- "enum":[
4371
- "All",
4372
- "AWS",
4373
- "Local"
4374
- ]
4375
- },
4376
- "policyVersionIdType":{
4377
- "type":"string",
4378
- "pattern":"v[1-9][0-9]*(\\.[A-Za-z0-9-]*)?"
4379
- },
4380
- "privateKeyType":{
4381
- "type":"string",
4382
- "max":16384,
4383
- "min":1,
4384
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+",
4385
- "sensitive":true
4386
- },
4387
- "publicKeyFingerprintType":{
4388
- "type":"string",
4389
- "max":48,
4390
- "min":48,
4391
- "pattern":"[:\\w]+"
4392
- },
4393
- "publicKeyIdType":{
4394
- "type":"string",
4395
- "max":128,
4396
- "min":20,
4397
- "pattern":"[\\w]+"
4398
- },
4399
- "publicKeyMaterialType":{
4400
- "type":"string",
4401
- "max":16384,
4402
- "min":1,
4403
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
4404
- },
4405
- "roleDetailListType":{
4406
- "type":"list",
4407
- "member":{"shape":"RoleDetail"}
4408
- },
4409
- "roleListType":{
4410
- "type":"list",
4411
- "member":{"shape":"Role"}
4412
- },
4413
- "roleNameType":{
4414
- "type":"string",
4415
- "max":64,
4416
- "min":1,
4417
- "pattern":"[\\w+=,.@-]+"
4418
- },
4419
- "serialNumberType":{
4420
- "type":"string",
4421
- "max":256,
4422
- "min":9,
4423
- "pattern":"[\\w+=/:,.@-]+"
4424
- },
4425
- "serverCertificateMetadataListType":{
4426
- "type":"list",
4427
- "member":{"shape":"ServerCertificateMetadata"}
4428
- },
4429
- "serverCertificateNameType":{
4430
- "type":"string",
4431
- "max":128,
4432
- "min":1,
4433
- "pattern":"[\\w+=,.@-]+"
4434
- },
4435
- "serviceFailureExceptionMessage":{"type":"string"},
4436
- "statusType":{
4437
- "type":"string",
4438
- "enum":[
4439
- "Active",
4440
- "Inactive"
4441
- ]
4442
- },
4443
- "stringType":{"type":"string"},
4444
- "summaryKeyType":{
4445
- "type":"string",
4446
- "enum":[
4447
- "Users",
4448
- "UsersQuota",
4449
- "Groups",
4450
- "GroupsQuota",
4451
- "ServerCertificates",
4452
- "ServerCertificatesQuota",
4453
- "UserPolicySizeQuota",
4454
- "GroupPolicySizeQuota",
4455
- "GroupsPerUserQuota",
4456
- "SigningCertificatesPerUserQuota",
4457
- "AccessKeysPerUserQuota",
4458
- "MFADevices",
4459
- "MFADevicesInUse",
4460
- "AccountMFAEnabled",
4461
- "AccountAccessKeysPresent",
4462
- "AccountSigningCertificatesPresent",
4463
- "AttachedPoliciesPerGroupQuota",
4464
- "AttachedPoliciesPerRoleQuota",
4465
- "AttachedPoliciesPerUserQuota",
4466
- "Policies",
4467
- "PoliciesQuota",
4468
- "PolicySizeQuota",
4469
- "PolicyVersionsInUse",
4470
- "PolicyVersionsInUseQuota",
4471
- "VersionsPerPolicyQuota"
4472
- ]
4473
- },
4474
- "summaryMapType":{
4475
- "type":"map",
4476
- "key":{"shape":"summaryKeyType"},
4477
- "value":{"shape":"summaryValueType"}
4478
- },
4479
- "summaryValueType":{"type":"integer"},
4480
- "thumbprintListType":{
4481
- "type":"list",
4482
- "member":{"shape":"thumbprintType"}
4483
- },
4484
- "thumbprintType":{
4485
- "type":"string",
4486
- "max":40,
4487
- "min":40
4488
- },
4489
- "unrecognizedPublicKeyEncodingMessage":{"type":"string"},
4490
- "userDetailListType":{
4491
- "type":"list",
4492
- "member":{"shape":"UserDetail"}
4493
- },
4494
- "userListType":{
4495
- "type":"list",
4496
- "member":{"shape":"User"}
4497
- },
4498
- "userNameType":{
4499
- "type":"string",
4500
- "max":64,
4501
- "min":1,
4502
- "pattern":"[\\w+=,.@-]+"
4503
- },
4504
- "virtualMFADeviceListType":{
4505
- "type":"list",
4506
- "member":{"shape":"VirtualMFADevice"}
4507
- },
4508
- "virtualMFADeviceName":{
4509
- "type":"string",
4510
- "min":1,
4511
- "pattern":"[\\w+=,.@-]+"
4512
- }
4513
- }
4514
- }