aws-sdk-iam 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/account_password_policy.rb +1 -1
- data/lib/aws-sdk-iam/client.rb +226 -183
- data/lib/aws-sdk-iam/current_user.rb +5 -5
- data/lib/aws-sdk-iam/group.rb +6 -6
- data/lib/aws-sdk-iam/instance_profile.rb +3 -3
- data/lib/aws-sdk-iam/mfa_device.rb +2 -2
- data/lib/aws-sdk-iam/policy.rb +4 -4
- data/lib/aws-sdk-iam/resource.rb +12 -12
- data/lib/aws-sdk-iam/role.rb +6 -6
- data/lib/aws-sdk-iam/types.rb +123 -123
- data/lib/aws-sdk-iam/user.rb +11 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a2a7a134a2e009e746e17c4d2ae3df29c568b8e
|
4
|
+
data.tar.gz: a34ec7b5e4a99be770088485a4dc7eb66b72e353
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57fd8e9a24f3ccf237175f680fdd6ec391c743573714a8aebe12f9d3ceb4aa0463d17a31fa97d32acb582c706f21a0d8f2520b057410faa47ee3e485011f58e2
|
7
|
+
data.tar.gz: 2945ee431bb18eb7fb94ed36b1931dda941abae06ad6c01e4a1525e3af03773878a65f18454cddac2b1ed8c570f0b1fe79b58c62a25f7e9831e0477c74dc8c03
|
data/lib/aws-sdk-iam.rb
CHANGED
@@ -289,7 +289,7 @@ module Aws::IAM
|
|
289
289
|
#
|
290
290
|
#
|
291
291
|
#
|
292
|
-
# [1]:
|
292
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/HowToPwdIAMUser.html
|
293
293
|
# @option options [Integer] :max_password_age
|
294
294
|
# The number of days that an IAM user password is valid.
|
295
295
|
#
|
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -199,6 +199,49 @@ module Aws::IAM
|
|
199
199
|
# When `true`, request parameters are validated before
|
200
200
|
# sending the request.
|
201
201
|
#
|
202
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
203
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
204
|
+
#
|
205
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
206
|
+
# seconds to wait when opening a HTTP session before rasing a
|
207
|
+
# `Timeout::Error`.
|
208
|
+
#
|
209
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
210
|
+
# number of seconds to wait for response data. This value can
|
211
|
+
# safely be set
|
212
|
+
# per-request on the session yeidled by {#session_for}.
|
213
|
+
#
|
214
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
215
|
+
# seconds a connection is allowed to sit idble before it is
|
216
|
+
# considered stale. Stale connections are closed and removed
|
217
|
+
# from the pool before making a request.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
220
|
+
# seconds to wait for a 100-continue response before sending the
|
221
|
+
# request body. This option has no effect unless the request has
|
222
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
223
|
+
# disables this behaviour. This value can safely be set per
|
224
|
+
# request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
227
|
+
# HTTP debug output will be sent to the `:logger`.
|
228
|
+
#
|
229
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
230
|
+
# SSL peer certificates are verified when establishing a
|
231
|
+
# connection.
|
232
|
+
#
|
233
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
234
|
+
# certificate authority bundle file that should be used when
|
235
|
+
# verifying peer certificates. If you do not pass
|
236
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
240
|
+
# directory that contains the unbundled SSL certificate
|
241
|
+
# authority files for verifying peer certificates. If you do
|
242
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
243
|
+
# system default will be used if available.
|
244
|
+
#
|
202
245
|
def initialize(*args)
|
203
246
|
super
|
204
247
|
end
|
@@ -271,10 +314,10 @@ module Aws::IAM
|
|
271
314
|
#
|
272
315
|
#
|
273
316
|
# [1]: https://en.wikipedia.org/wiki/Eventual_consistency
|
274
|
-
# [2]:
|
275
|
-
# [3]:
|
276
|
-
# [4]:
|
277
|
-
# [5]:
|
317
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisassociateIamInstanceProfile.html
|
318
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AssociateIamInstanceProfile.html
|
319
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
320
|
+
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
278
321
|
#
|
279
322
|
# @option params [required, String] :instance_profile_name
|
280
323
|
# The name of the instance profile to update.
|
@@ -392,7 +435,7 @@ module Aws::IAM
|
|
392
435
|
#
|
393
436
|
#
|
394
437
|
#
|
395
|
-
# [1]:
|
438
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
396
439
|
#
|
397
440
|
# @option params [required, String] :group_name
|
398
441
|
# The name (friendly name, not ARN) of the group to attach the policy
|
@@ -415,7 +458,7 @@ module Aws::IAM
|
|
415
458
|
#
|
416
459
|
#
|
417
460
|
#
|
418
|
-
# [1]:
|
461
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
419
462
|
#
|
420
463
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
421
464
|
#
|
@@ -463,7 +506,7 @@ module Aws::IAM
|
|
463
506
|
#
|
464
507
|
#
|
465
508
|
#
|
466
|
-
# [1]:
|
509
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
467
510
|
#
|
468
511
|
# @option params [required, String] :role_name
|
469
512
|
# The name (friendly name, not ARN) of the role to attach the policy to.
|
@@ -485,7 +528,7 @@ module Aws::IAM
|
|
485
528
|
#
|
486
529
|
#
|
487
530
|
#
|
488
|
-
# [1]:
|
531
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
489
532
|
#
|
490
533
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
491
534
|
#
|
@@ -525,7 +568,7 @@ module Aws::IAM
|
|
525
568
|
#
|
526
569
|
#
|
527
570
|
#
|
528
|
-
# [1]:
|
571
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
529
572
|
#
|
530
573
|
# @option params [required, String] :user_name
|
531
574
|
# The name (friendly name, not ARN) of the IAM user to attach the policy
|
@@ -548,7 +591,7 @@ module Aws::IAM
|
|
548
591
|
#
|
549
592
|
#
|
550
593
|
#
|
551
|
-
# [1]:
|
594
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
552
595
|
#
|
553
596
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
554
597
|
#
|
@@ -587,7 +630,7 @@ module Aws::IAM
|
|
587
630
|
#
|
588
631
|
#
|
589
632
|
#
|
590
|
-
# [1]:
|
633
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_ManagingLogins.html
|
591
634
|
#
|
592
635
|
# @option params [required, String] :old_password
|
593
636
|
# The IAM user's current password.
|
@@ -659,7 +702,7 @@ module Aws::IAM
|
|
659
702
|
#
|
660
703
|
#
|
661
704
|
#
|
662
|
-
# [1]:
|
705
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
663
706
|
#
|
664
707
|
# @option params [String] :user_name
|
665
708
|
# The name of the IAM user that the new key will belong to.
|
@@ -726,7 +769,7 @@ module Aws::IAM
|
|
726
769
|
#
|
727
770
|
#
|
728
771
|
#
|
729
|
-
# [1]:
|
772
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AccountAlias.html
|
730
773
|
#
|
731
774
|
# @option params [required, String] :account_alias
|
732
775
|
# The account alias to create.
|
@@ -773,7 +816,7 @@ module Aws::IAM
|
|
773
816
|
#
|
774
817
|
#
|
775
818
|
#
|
776
|
-
# [1]:
|
819
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
777
820
|
#
|
778
821
|
# @option params [String] :path
|
779
822
|
# The path to the group. For more information about paths, see [IAM
|
@@ -791,7 +834,7 @@ module Aws::IAM
|
|
791
834
|
#
|
792
835
|
#
|
793
836
|
#
|
794
|
-
# [1]:
|
837
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
795
838
|
# [2]: http://wikipedia.org/wiki/regex
|
796
839
|
#
|
797
840
|
# @option params [required, String] :group_name
|
@@ -865,8 +908,8 @@ module Aws::IAM
|
|
865
908
|
#
|
866
909
|
#
|
867
910
|
#
|
868
|
-
# [1]:
|
869
|
-
# [2]:
|
911
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
912
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
870
913
|
#
|
871
914
|
# @option params [required, String] :instance_profile_name
|
872
915
|
# The name of the instance profile to create.
|
@@ -896,7 +939,7 @@ module Aws::IAM
|
|
896
939
|
#
|
897
940
|
#
|
898
941
|
#
|
899
|
-
# [1]:
|
942
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
900
943
|
# [2]: http://wikipedia.org/wiki/regex
|
901
944
|
#
|
902
945
|
# @return [Types::CreateInstanceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -971,7 +1014,7 @@ module Aws::IAM
|
|
971
1014
|
#
|
972
1015
|
#
|
973
1016
|
#
|
974
|
-
# [1]:
|
1017
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_ManagingLogins.html
|
975
1018
|
#
|
976
1019
|
# @option params [required, String] :user_name
|
977
1020
|
# The name of the IAM user to create a password for. The user must
|
@@ -1135,7 +1178,7 @@ module Aws::IAM
|
|
1135
1178
|
#
|
1136
1179
|
#
|
1137
1180
|
#
|
1138
|
-
# [1]:
|
1181
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html
|
1139
1182
|
#
|
1140
1183
|
# @return [Types::CreateOpenIDConnectProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1141
1184
|
#
|
@@ -1195,8 +1238,8 @@ module Aws::IAM
|
|
1195
1238
|
#
|
1196
1239
|
#
|
1197
1240
|
#
|
1198
|
-
# [1]:
|
1199
|
-
# [2]:
|
1241
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1242
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
1200
1243
|
#
|
1201
1244
|
# @option params [required, String] :policy_name
|
1202
1245
|
# The friendly name of the policy.
|
@@ -1228,7 +1271,7 @@ module Aws::IAM
|
|
1228
1271
|
#
|
1229
1272
|
#
|
1230
1273
|
#
|
1231
|
-
# [1]:
|
1274
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1232
1275
|
# [2]: http://wikipedia.org/wiki/regex
|
1233
1276
|
#
|
1234
1277
|
# @option params [required, String] :policy_document
|
@@ -1312,7 +1355,7 @@ module Aws::IAM
|
|
1312
1355
|
#
|
1313
1356
|
#
|
1314
1357
|
#
|
1315
|
-
# [1]:
|
1358
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1316
1359
|
#
|
1317
1360
|
# @option params [required, String] :policy_arn
|
1318
1361
|
# The Amazon Resource Name (ARN) of the IAM policy to which you want to
|
@@ -1323,7 +1366,7 @@ module Aws::IAM
|
|
1323
1366
|
#
|
1324
1367
|
#
|
1325
1368
|
#
|
1326
|
-
# [1]:
|
1369
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1327
1370
|
#
|
1328
1371
|
# @option params [required, String] :policy_document
|
1329
1372
|
# The JSON policy document that you want to use as the content for this
|
@@ -1358,7 +1401,7 @@ module Aws::IAM
|
|
1358
1401
|
#
|
1359
1402
|
#
|
1360
1403
|
#
|
1361
|
-
# [1]:
|
1404
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1362
1405
|
#
|
1363
1406
|
# @return [Types::CreatePolicyVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1364
1407
|
#
|
@@ -1395,8 +1438,8 @@ module Aws::IAM
|
|
1395
1438
|
#
|
1396
1439
|
#
|
1397
1440
|
#
|
1398
|
-
# [1]:
|
1399
|
-
# [2]:
|
1441
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
1442
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
1400
1443
|
#
|
1401
1444
|
# @option params [String] :path
|
1402
1445
|
# The path to the role. For more information about paths, see [IAM
|
@@ -1414,7 +1457,7 @@ module Aws::IAM
|
|
1414
1457
|
#
|
1415
1458
|
#
|
1416
1459
|
#
|
1417
|
-
# [1]:
|
1460
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1418
1461
|
# [2]: http://wikipedia.org/wiki/regex
|
1419
1462
|
#
|
1420
1463
|
# @option params [required, String] :role_name
|
@@ -1474,7 +1517,7 @@ module Aws::IAM
|
|
1474
1517
|
#
|
1475
1518
|
#
|
1476
1519
|
#
|
1477
|
-
# [1]:
|
1520
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
|
1478
1521
|
#
|
1479
1522
|
# @option params [String] :permissions_boundary
|
1480
1523
|
# The ARN of the policy that is used to set the permissions boundary for
|
@@ -1494,7 +1537,7 @@ module Aws::IAM
|
|
1494
1537
|
#
|
1495
1538
|
#
|
1496
1539
|
#
|
1497
|
-
# [1]:
|
1540
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1498
1541
|
#
|
1499
1542
|
# @return [Types::CreateRoleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1500
1543
|
#
|
@@ -1593,9 +1636,9 @@ module Aws::IAM
|
|
1593
1636
|
#
|
1594
1637
|
#
|
1595
1638
|
#
|
1596
|
-
# [1]:
|
1597
|
-
# [2]:
|
1598
|
-
# [3]:
|
1639
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1640
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-saml.html
|
1641
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html
|
1599
1642
|
#
|
1600
1643
|
# @option params [required, String] :saml_metadata_document
|
1601
1644
|
# An XML document generated by an identity provider (IdP) that supports
|
@@ -1610,7 +1653,7 @@ module Aws::IAM
|
|
1610
1653
|
#
|
1611
1654
|
#
|
1612
1655
|
#
|
1613
|
-
# [1]:
|
1656
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html
|
1614
1657
|
#
|
1615
1658
|
# @option params [required, String] :name
|
1616
1659
|
# The name of the provider to create.
|
@@ -1662,7 +1705,7 @@ module Aws::IAM
|
|
1662
1705
|
#
|
1663
1706
|
#
|
1664
1707
|
#
|
1665
|
-
# [1]:
|
1708
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/using-service-linked-roles.html
|
1666
1709
|
#
|
1667
1710
|
# @option params [required, String] :aws_service_name
|
1668
1711
|
# The service principal for the AWS service to which this role is
|
@@ -1678,7 +1721,7 @@ module Aws::IAM
|
|
1678
1721
|
#
|
1679
1722
|
#
|
1680
1723
|
#
|
1681
|
-
# [1]:
|
1724
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-services-that-work-with-iam.html
|
1682
1725
|
#
|
1683
1726
|
# @option params [String] :description
|
1684
1727
|
# The description of the role.
|
@@ -1750,7 +1793,7 @@ module Aws::IAM
|
|
1750
1793
|
#
|
1751
1794
|
#
|
1752
1795
|
#
|
1753
|
-
# [1]:
|
1796
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_ssh-keys.html
|
1754
1797
|
#
|
1755
1798
|
# @option params [required, String] :user_name
|
1756
1799
|
# The name of the IAM user that is to be associated with the
|
@@ -1809,7 +1852,7 @@ module Aws::IAM
|
|
1809
1852
|
#
|
1810
1853
|
#
|
1811
1854
|
#
|
1812
|
-
# [1]:
|
1855
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
1813
1856
|
#
|
1814
1857
|
# @option params [String] :path
|
1815
1858
|
# The path for the user name. For more information about paths, see [IAM
|
@@ -1827,7 +1870,7 @@ module Aws::IAM
|
|
1827
1870
|
#
|
1828
1871
|
#
|
1829
1872
|
#
|
1830
|
-
# [1]:
|
1873
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1831
1874
|
# [2]: http://wikipedia.org/wiki/regex
|
1832
1875
|
#
|
1833
1876
|
# @option params [required, String] :user_name
|
@@ -1861,7 +1904,7 @@ module Aws::IAM
|
|
1861
1904
|
#
|
1862
1905
|
#
|
1863
1906
|
#
|
1864
|
-
# [1]:
|
1907
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1865
1908
|
#
|
1866
1909
|
# @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1867
1910
|
#
|
@@ -1941,8 +1984,8 @@ module Aws::IAM
|
|
1941
1984
|
#
|
1942
1985
|
#
|
1943
1986
|
#
|
1944
|
-
# [1]:
|
1945
|
-
# [2]:
|
1987
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_VirtualMFA.html
|
1988
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
1946
1989
|
#
|
1947
1990
|
# @option params [String] :path
|
1948
1991
|
# The path for the virtual MFA device. For more information about paths,
|
@@ -1960,7 +2003,7 @@ module Aws::IAM
|
|
1960
2003
|
#
|
1961
2004
|
#
|
1962
2005
|
#
|
1963
|
-
# [1]:
|
2006
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1964
2007
|
# [2]: http://wikipedia.org/wiki/regex
|
1965
2008
|
#
|
1966
2009
|
# @option params [required, String] :virtual_mfa_device_name
|
@@ -2023,7 +2066,7 @@ module Aws::IAM
|
|
2023
2066
|
#
|
2024
2067
|
#
|
2025
2068
|
#
|
2026
|
-
# [1]:
|
2069
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_VirtualMFA.html
|
2027
2070
|
#
|
2028
2071
|
# @option params [required, String] :user_name
|
2029
2072
|
# The name of the user whose MFA device you want to deactivate.
|
@@ -2134,7 +2177,7 @@ module Aws::IAM
|
|
2134
2177
|
#
|
2135
2178
|
#
|
2136
2179
|
#
|
2137
|
-
# [1]:
|
2180
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AccountAlias.html
|
2138
2181
|
#
|
2139
2182
|
# @option params [required, String] :account_alias
|
2140
2183
|
# The name of the account alias to delete.
|
@@ -2238,7 +2281,7 @@ module Aws::IAM
|
|
2238
2281
|
#
|
2239
2282
|
#
|
2240
2283
|
#
|
2241
|
-
# [1]:
|
2284
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
2242
2285
|
#
|
2243
2286
|
# @option params [required, String] :group_name
|
2244
2287
|
# The name (friendly name, not ARN) identifying the group that the
|
@@ -2306,7 +2349,7 @@ module Aws::IAM
|
|
2306
2349
|
#
|
2307
2350
|
#
|
2308
2351
|
#
|
2309
|
-
# [1]:
|
2352
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
2310
2353
|
#
|
2311
2354
|
# @option params [required, String] :instance_profile_name
|
2312
2355
|
# The name of the instance profile to delete.
|
@@ -2453,7 +2496,7 @@ module Aws::IAM
|
|
2453
2496
|
#
|
2454
2497
|
#
|
2455
2498
|
#
|
2456
|
-
# [1]:
|
2499
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
2457
2500
|
#
|
2458
2501
|
# @option params [required, String] :policy_arn
|
2459
2502
|
# The Amazon Resource Name (ARN) of the IAM policy you want to delete.
|
@@ -2463,7 +2506,7 @@ module Aws::IAM
|
|
2463
2506
|
#
|
2464
2507
|
#
|
2465
2508
|
#
|
2466
|
-
# [1]:
|
2509
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2467
2510
|
#
|
2468
2511
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2469
2512
|
#
|
@@ -2494,7 +2537,7 @@ module Aws::IAM
|
|
2494
2537
|
#
|
2495
2538
|
#
|
2496
2539
|
#
|
2497
|
-
# [1]:
|
2540
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
2498
2541
|
#
|
2499
2542
|
# @option params [required, String] :policy_arn
|
2500
2543
|
# The Amazon Resource Name (ARN) of the IAM policy from which you want
|
@@ -2505,7 +2548,7 @@ module Aws::IAM
|
|
2505
2548
|
#
|
2506
2549
|
#
|
2507
2550
|
#
|
2508
|
-
# [1]:
|
2551
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2509
2552
|
#
|
2510
2553
|
# @option params [required, String] :version_id
|
2511
2554
|
# The policy version to delete.
|
@@ -2521,7 +2564,7 @@ module Aws::IAM
|
|
2521
2564
|
#
|
2522
2565
|
#
|
2523
2566
|
# [1]: http://wikipedia.org/wiki/regex
|
2524
|
-
# [2]:
|
2567
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
2525
2568
|
#
|
2526
2569
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2527
2570
|
#
|
@@ -2552,7 +2595,7 @@ module Aws::IAM
|
|
2552
2595
|
#
|
2553
2596
|
#
|
2554
2597
|
#
|
2555
|
-
# [1]:
|
2598
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
2556
2599
|
#
|
2557
2600
|
# @option params [required, String] :role_name
|
2558
2601
|
# The name of the role to delete.
|
@@ -2629,7 +2672,7 @@ module Aws::IAM
|
|
2629
2672
|
#
|
2630
2673
|
#
|
2631
2674
|
#
|
2632
|
-
# [1]:
|
2675
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
2633
2676
|
#
|
2634
2677
|
# @option params [required, String] :role_name
|
2635
2678
|
# The name (friendly name, not ARN) identifying the role that the policy
|
@@ -2697,7 +2740,7 @@ module Aws::IAM
|
|
2697
2740
|
#
|
2698
2741
|
#
|
2699
2742
|
#
|
2700
|
-
# [1]:
|
2743
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
2701
2744
|
#
|
2702
2745
|
# @option params [required, String] :saml_provider_arn
|
2703
2746
|
# The Amazon Resource Name (ARN) of the SAML provider to delete.
|
@@ -2729,7 +2772,7 @@ module Aws::IAM
|
|
2729
2772
|
#
|
2730
2773
|
#
|
2731
2774
|
#
|
2732
|
-
# [1]:
|
2775
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-credentials-ssh.html
|
2733
2776
|
#
|
2734
2777
|
# @option params [required, String] :user_name
|
2735
2778
|
# The name of the IAM user associated with the SSH public key.
|
@@ -2791,8 +2834,8 @@ module Aws::IAM
|
|
2791
2834
|
#
|
2792
2835
|
#
|
2793
2836
|
#
|
2794
|
-
# [1]:
|
2795
|
-
# [2]:
|
2837
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
|
2838
|
+
# [2]: https://docs.aws.amazon.com/ElasticLoadBalancing/latest/APIReference/API_DeleteLoadBalancerListeners.html
|
2796
2839
|
#
|
2797
2840
|
# @option params [required, String] :server_certificate_name
|
2798
2841
|
# The name of the server certificate you want to delete.
|
@@ -2848,7 +2891,7 @@ module Aws::IAM
|
|
2848
2891
|
#
|
2849
2892
|
#
|
2850
2893
|
# [1]: http://docs.aws.amazon.com/
|
2851
|
-
# [2]:
|
2894
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html#iam-term-service-linked-role
|
2852
2895
|
#
|
2853
2896
|
# @option params [required, String] :role_name
|
2854
2897
|
# The name of the service-linked role to be deleted.
|
@@ -3060,7 +3103,7 @@ module Aws::IAM
|
|
3060
3103
|
#
|
3061
3104
|
#
|
3062
3105
|
#
|
3063
|
-
# [1]:
|
3106
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
3064
3107
|
#
|
3065
3108
|
# @option params [required, String] :user_name
|
3066
3109
|
# The name (friendly name, not ARN) identifying the user that the policy
|
@@ -3171,7 +3214,7 @@ module Aws::IAM
|
|
3171
3214
|
#
|
3172
3215
|
#
|
3173
3216
|
#
|
3174
|
-
# [1]:
|
3217
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
3175
3218
|
#
|
3176
3219
|
# @option params [required, String] :group_name
|
3177
3220
|
# The name (friendly name, not ARN) of the IAM group to detach the
|
@@ -3194,7 +3237,7 @@ module Aws::IAM
|
|
3194
3237
|
#
|
3195
3238
|
#
|
3196
3239
|
#
|
3197
|
-
# [1]:
|
3240
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3198
3241
|
#
|
3199
3242
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3200
3243
|
#
|
@@ -3223,7 +3266,7 @@ module Aws::IAM
|
|
3223
3266
|
#
|
3224
3267
|
#
|
3225
3268
|
#
|
3226
|
-
# [1]:
|
3269
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
3227
3270
|
#
|
3228
3271
|
# @option params [required, String] :role_name
|
3229
3272
|
# The name (friendly name, not ARN) of the IAM role to detach the policy
|
@@ -3246,7 +3289,7 @@ module Aws::IAM
|
|
3246
3289
|
#
|
3247
3290
|
#
|
3248
3291
|
#
|
3249
|
-
# [1]:
|
3292
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3250
3293
|
#
|
3251
3294
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3252
3295
|
#
|
@@ -3275,7 +3318,7 @@ module Aws::IAM
|
|
3275
3318
|
#
|
3276
3319
|
#
|
3277
3320
|
#
|
3278
|
-
# [1]:
|
3321
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
3279
3322
|
#
|
3280
3323
|
# @option params [required, String] :user_name
|
3281
3324
|
# The name (friendly name, not ARN) of the IAM user to detach the policy
|
@@ -3298,7 +3341,7 @@ module Aws::IAM
|
|
3298
3341
|
#
|
3299
3342
|
#
|
3300
3343
|
#
|
3301
|
-
# [1]:
|
3344
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3302
3345
|
#
|
3303
3346
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3304
3347
|
#
|
@@ -3361,7 +3404,7 @@ module Aws::IAM
|
|
3361
3404
|
#
|
3362
3405
|
#
|
3363
3406
|
#
|
3364
|
-
# [1]:
|
3407
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
3365
3408
|
#
|
3366
3409
|
# @option params [required, String] :authentication_code_2
|
3367
3410
|
# A subsequent authentication code emitted by the device.
|
@@ -3377,7 +3420,7 @@ module Aws::IAM
|
|
3377
3420
|
#
|
3378
3421
|
#
|
3379
3422
|
#
|
3380
|
-
# [1]:
|
3423
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
3381
3424
|
#
|
3382
3425
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3383
3426
|
#
|
@@ -3405,7 +3448,7 @@ module Aws::IAM
|
|
3405
3448
|
#
|
3406
3449
|
#
|
3407
3450
|
#
|
3408
|
-
# [1]:
|
3451
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
3409
3452
|
#
|
3410
3453
|
# @return [Types::GenerateCredentialReportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3411
3454
|
#
|
@@ -3482,10 +3525,10 @@ module Aws::IAM
|
|
3482
3525
|
#
|
3483
3526
|
#
|
3484
3527
|
#
|
3485
|
-
# [1]:
|
3486
|
-
# [2]:
|
3487
|
-
# [3]:
|
3488
|
-
# [4]:
|
3528
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period
|
3529
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html
|
3530
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-basics
|
3531
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html
|
3489
3532
|
#
|
3490
3533
|
# @option params [required, String] :arn
|
3491
3534
|
# The ARN of the IAM resource (user, group, role, or managed policy)
|
@@ -3742,7 +3785,7 @@ module Aws::IAM
|
|
3742
3785
|
#
|
3743
3786
|
#
|
3744
3787
|
#
|
3745
|
-
# [1]:
|
3788
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_ManagingPasswordPolicies.html
|
3746
3789
|
#
|
3747
3790
|
# @return [Types::GetAccountPasswordPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3748
3791
|
#
|
@@ -3802,7 +3845,7 @@ module Aws::IAM
|
|
3802
3845
|
#
|
3803
3846
|
#
|
3804
3847
|
#
|
3805
|
-
# [1]:
|
3848
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
3806
3849
|
#
|
3807
3850
|
# @return [Types::GetAccountSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3808
3851
|
#
|
@@ -3956,7 +3999,7 @@ module Aws::IAM
|
|
3956
3999
|
#
|
3957
4000
|
#
|
3958
4001
|
#
|
3959
|
-
# [1]:
|
4002
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3960
4003
|
#
|
3961
4004
|
# @option params [Array<String>] :policy_input_list
|
3962
4005
|
# An optional list of additional policies for which you want the list of
|
@@ -4009,7 +4052,7 @@ module Aws::IAM
|
|
4009
4052
|
#
|
4010
4053
|
#
|
4011
4054
|
#
|
4012
|
-
# [1]:
|
4055
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
4013
4056
|
#
|
4014
4057
|
# @return [Types::GetCredentialReportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4015
4058
|
#
|
@@ -4132,7 +4175,7 @@ module Aws::IAM
|
|
4132
4175
|
#
|
4133
4176
|
#
|
4134
4177
|
# [1]: https://tools.ietf.org/html/rfc3986
|
4135
|
-
# [2]:
|
4178
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
4136
4179
|
#
|
4137
4180
|
# @option params [required, String] :group_name
|
4138
4181
|
# The name of the group the policy is associated with.
|
@@ -4193,7 +4236,7 @@ module Aws::IAM
|
|
4193
4236
|
#
|
4194
4237
|
#
|
4195
4238
|
#
|
4196
|
-
# [1]:
|
4239
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
4197
4240
|
#
|
4198
4241
|
# @option params [required, String] :instance_profile_name
|
4199
4242
|
# The name of the instance profile to get information about.
|
@@ -4349,7 +4392,7 @@ module Aws::IAM
|
|
4349
4392
|
#
|
4350
4393
|
#
|
4351
4394
|
#
|
4352
|
-
# [1]:
|
4395
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4353
4396
|
#
|
4354
4397
|
# @return [Types::GetOpenIDConnectProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4355
4398
|
#
|
@@ -4400,7 +4443,7 @@ module Aws::IAM
|
|
4400
4443
|
#
|
4401
4444
|
#
|
4402
4445
|
#
|
4403
|
-
# [1]:
|
4446
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
4404
4447
|
#
|
4405
4448
|
# @option params [required, String] :policy_arn
|
4406
4449
|
# The Amazon Resource Name (ARN) of the managed policy that you want
|
@@ -4411,7 +4454,7 @@ module Aws::IAM
|
|
4411
4454
|
#
|
4412
4455
|
#
|
4413
4456
|
#
|
4414
|
-
# [1]:
|
4457
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4415
4458
|
#
|
4416
4459
|
# @return [Types::GetPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4417
4460
|
#
|
@@ -4472,8 +4515,8 @@ module Aws::IAM
|
|
4472
4515
|
#
|
4473
4516
|
#
|
4474
4517
|
# [1]: https://tools.ietf.org/html/rfc3986
|
4475
|
-
# [2]:
|
4476
|
-
# [3]:
|
4518
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
4519
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
4477
4520
|
#
|
4478
4521
|
# @option params [required, String] :policy_arn
|
4479
4522
|
# The Amazon Resource Name (ARN) of the managed policy that you want
|
@@ -4484,7 +4527,7 @@ module Aws::IAM
|
|
4484
4527
|
#
|
4485
4528
|
#
|
4486
4529
|
#
|
4487
|
-
# [1]:
|
4530
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4488
4531
|
#
|
4489
4532
|
# @option params [required, String] :version_id
|
4490
4533
|
# Identifies the policy version to retrieve.
|
@@ -4540,7 +4583,7 @@ module Aws::IAM
|
|
4540
4583
|
#
|
4541
4584
|
#
|
4542
4585
|
#
|
4543
|
-
# [1]:
|
4586
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
4544
4587
|
# [2]: https://tools.ietf.org/html/rfc3986
|
4545
4588
|
#
|
4546
4589
|
# @option params [required, String] :role_name
|
@@ -4636,8 +4679,8 @@ module Aws::IAM
|
|
4636
4679
|
#
|
4637
4680
|
#
|
4638
4681
|
# [1]: https://tools.ietf.org/html/rfc3986
|
4639
|
-
# [2]:
|
4640
|
-
# [3]:
|
4682
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
4683
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html
|
4641
4684
|
#
|
4642
4685
|
# @option params [required, String] :role_name
|
4643
4686
|
# The name of the role associated with the policy.
|
@@ -4700,7 +4743,7 @@ module Aws::IAM
|
|
4700
4743
|
#
|
4701
4744
|
#
|
4702
4745
|
#
|
4703
|
-
# [1]:
|
4746
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
4704
4747
|
#
|
4705
4748
|
# @option params [required, String] :saml_provider_arn
|
4706
4749
|
# The Amazon Resource Name (ARN) of the SAML provider resource object in
|
@@ -4711,7 +4754,7 @@ module Aws::IAM
|
|
4711
4754
|
#
|
4712
4755
|
#
|
4713
4756
|
#
|
4714
|
-
# [1]:
|
4757
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4715
4758
|
#
|
4716
4759
|
# @return [Types::GetSAMLProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4717
4760
|
#
|
@@ -4751,7 +4794,7 @@ module Aws::IAM
|
|
4751
4794
|
#
|
4752
4795
|
#
|
4753
4796
|
#
|
4754
|
-
# [1]:
|
4797
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-credentials-ssh.html
|
4755
4798
|
#
|
4756
4799
|
# @option params [required, String] :user_name
|
4757
4800
|
# The name of the IAM user associated with the SSH public key.
|
@@ -4821,7 +4864,7 @@ module Aws::IAM
|
|
4821
4864
|
#
|
4822
4865
|
#
|
4823
4866
|
#
|
4824
|
-
# [1]:
|
4867
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
|
4825
4868
|
#
|
4826
4869
|
# @option params [required, String] :server_certificate_name
|
4827
4870
|
# The name of the server certificate you want to retrieve information
|
@@ -4909,7 +4952,7 @@ module Aws::IAM
|
|
4909
4952
|
#
|
4910
4953
|
#
|
4911
4954
|
#
|
4912
|
-
# [1]:
|
4955
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-basics
|
4913
4956
|
#
|
4914
4957
|
# @option params [required, String] :job_id
|
4915
4958
|
# The ID of the request generated by the
|
@@ -5050,8 +5093,8 @@ module Aws::IAM
|
|
5050
5093
|
#
|
5051
5094
|
#
|
5052
5095
|
#
|
5053
|
-
# [1]:
|
5054
|
-
# [2]:
|
5096
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
5097
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
5055
5098
|
#
|
5056
5099
|
# @option params [Integer] :max_items
|
5057
5100
|
# Use this only when paginating results to indicate the maximum number
|
@@ -5290,7 +5333,7 @@ module Aws::IAM
|
|
5290
5333
|
#
|
5291
5334
|
#
|
5292
5335
|
# [1]: https://tools.ietf.org/html/rfc3986
|
5293
|
-
# [2]:
|
5336
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
5294
5337
|
#
|
5295
5338
|
# @option params [required, String] :user_name
|
5296
5339
|
# The name of the user who the policy is associated with.
|
@@ -5457,7 +5500,7 @@ module Aws::IAM
|
|
5457
5500
|
#
|
5458
5501
|
#
|
5459
5502
|
#
|
5460
|
-
# [1]:
|
5503
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AccountAlias.html
|
5461
5504
|
#
|
5462
5505
|
# @option params [String] :marker
|
5463
5506
|
# Use this parameter only when paginating results and only after you
|
@@ -5536,7 +5579,7 @@ module Aws::IAM
|
|
5536
5579
|
#
|
5537
5580
|
#
|
5538
5581
|
#
|
5539
|
-
# [1]:
|
5582
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
5540
5583
|
#
|
5541
5584
|
# @option params [required, String] :group_name
|
5542
5585
|
# The name (friendly name, not ARN) of the group to list attached
|
@@ -5632,7 +5675,7 @@ module Aws::IAM
|
|
5632
5675
|
#
|
5633
5676
|
#
|
5634
5677
|
#
|
5635
|
-
# [1]:
|
5678
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
5636
5679
|
#
|
5637
5680
|
# @option params [required, String] :role_name
|
5638
5681
|
# The name (friendly name, not ARN) of the role to list attached
|
@@ -5728,7 +5771,7 @@ module Aws::IAM
|
|
5728
5771
|
#
|
5729
5772
|
#
|
5730
5773
|
#
|
5731
|
-
# [1]:
|
5774
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
5732
5775
|
#
|
5733
5776
|
# @option params [required, String] :user_name
|
5734
5777
|
# The name (friendly name, not ARN) of the user to list attached
|
@@ -5828,7 +5871,7 @@ module Aws::IAM
|
|
5828
5871
|
#
|
5829
5872
|
#
|
5830
5873
|
#
|
5831
|
-
# [1]:
|
5874
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
5832
5875
|
#
|
5833
5876
|
# @option params [String] :entity_filter
|
5834
5877
|
# The entity type to use for filtering the results.
|
@@ -5939,7 +5982,7 @@ module Aws::IAM
|
|
5939
5982
|
#
|
5940
5983
|
#
|
5941
5984
|
#
|
5942
|
-
# [1]:
|
5985
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
5943
5986
|
#
|
5944
5987
|
# @option params [required, String] :group_name
|
5945
5988
|
# The name of the group to list policies for.
|
@@ -6232,7 +6275,7 @@ module Aws::IAM
|
|
6232
6275
|
#
|
6233
6276
|
#
|
6234
6277
|
#
|
6235
|
-
# [1]:
|
6278
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
6236
6279
|
#
|
6237
6280
|
# @option params [String] :path_prefix
|
6238
6281
|
# The path prefix for filtering the results. For example, the prefix
|
@@ -6327,7 +6370,7 @@ module Aws::IAM
|
|
6327
6370
|
#
|
6328
6371
|
#
|
6329
6372
|
#
|
6330
|
-
# [1]:
|
6373
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
6331
6374
|
#
|
6332
6375
|
# @option params [required, String] :role_name
|
6333
6376
|
# The name of the role to list instance profiles for.
|
@@ -6515,7 +6558,7 @@ module Aws::IAM
|
|
6515
6558
|
#
|
6516
6559
|
#
|
6517
6560
|
#
|
6518
|
-
# [1]:
|
6561
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
6519
6562
|
#
|
6520
6563
|
# @option params [String] :scope
|
6521
6564
|
# The scope to use for filtering the results.
|
@@ -6661,8 +6704,8 @@ module Aws::IAM
|
|
6661
6704
|
#
|
6662
6705
|
#
|
6663
6706
|
#
|
6664
|
-
# [1]:
|
6665
|
-
# [2]:
|
6707
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-basics
|
6708
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
6666
6709
|
#
|
6667
6710
|
# @option params [String] :marker
|
6668
6711
|
# Use this parameter only when paginating results and only after you
|
@@ -6688,8 +6731,8 @@ module Aws::IAM
|
|
6688
6731
|
#
|
6689
6732
|
#
|
6690
6733
|
#
|
6691
|
-
# [1]:
|
6692
|
-
# [2]:
|
6734
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
6735
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
6693
6736
|
#
|
6694
6737
|
# @return [Types::ListPoliciesGrantingServiceAccessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6695
6738
|
#
|
@@ -6782,7 +6825,7 @@ module Aws::IAM
|
|
6782
6825
|
#
|
6783
6826
|
#
|
6784
6827
|
#
|
6785
|
-
# [1]:
|
6828
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
6786
6829
|
#
|
6787
6830
|
# @option params [required, String] :policy_arn
|
6788
6831
|
# The Amazon Resource Name (ARN) of the IAM policy for which you want
|
@@ -6793,7 +6836,7 @@ module Aws::IAM
|
|
6793
6836
|
#
|
6794
6837
|
#
|
6795
6838
|
#
|
6796
|
-
# [1]:
|
6839
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
6797
6840
|
#
|
6798
6841
|
# @option params [String] :marker
|
6799
6842
|
# Use this parameter only when paginating results and only after you
|
@@ -6859,7 +6902,7 @@ module Aws::IAM
|
|
6859
6902
|
#
|
6860
6903
|
#
|
6861
6904
|
#
|
6862
|
-
# [1]:
|
6905
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
6863
6906
|
#
|
6864
6907
|
# @option params [required, String] :role_name
|
6865
6908
|
# The name of the role to list policies for.
|
@@ -6926,7 +6969,7 @@ module Aws::IAM
|
|
6926
6969
|
#
|
6927
6970
|
#
|
6928
6971
|
#
|
6929
|
-
# [1]:
|
6972
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
6930
6973
|
#
|
6931
6974
|
# @option params [required, String] :role_name
|
6932
6975
|
# The name of the IAM role for which you want to see the list of tags.
|
@@ -7022,7 +7065,7 @@ module Aws::IAM
|
|
7022
7065
|
#
|
7023
7066
|
#
|
7024
7067
|
#
|
7025
|
-
# [1]:
|
7068
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
7026
7069
|
#
|
7027
7070
|
# @option params [String] :path_prefix
|
7028
7071
|
# The path prefix for filtering the results. For example, the prefix
|
@@ -7109,7 +7152,7 @@ module Aws::IAM
|
|
7109
7152
|
#
|
7110
7153
|
#
|
7111
7154
|
#
|
7112
|
-
# [1]:
|
7155
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
7113
7156
|
#
|
7114
7157
|
# @return [Types::ListSAMLProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7115
7158
|
#
|
@@ -7146,7 +7189,7 @@ module Aws::IAM
|
|
7146
7189
|
#
|
7147
7190
|
#
|
7148
7191
|
#
|
7149
|
-
# [1]:
|
7192
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-credentials-ssh.html
|
7150
7193
|
#
|
7151
7194
|
# @option params [String] :user_name
|
7152
7195
|
# The name of the IAM user to list SSH public keys for. If none is
|
@@ -7225,7 +7268,7 @@ module Aws::IAM
|
|
7225
7268
|
#
|
7226
7269
|
#
|
7227
7270
|
#
|
7228
|
-
# [1]:
|
7271
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
|
7229
7272
|
#
|
7230
7273
|
# @option params [String] :path_prefix
|
7231
7274
|
# The path prefix for filtering the results. For example:
|
@@ -7307,7 +7350,7 @@ module Aws::IAM
|
|
7307
7350
|
#
|
7308
7351
|
#
|
7309
7352
|
#
|
7310
|
-
# [1]:
|
7353
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-gc.html
|
7311
7354
|
#
|
7312
7355
|
# @option params [String] :user_name
|
7313
7356
|
# The name of the user whose service-specific credentials you want
|
@@ -7472,7 +7515,7 @@ module Aws::IAM
|
|
7472
7515
|
#
|
7473
7516
|
#
|
7474
7517
|
#
|
7475
|
-
# [1]:
|
7518
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7476
7519
|
#
|
7477
7520
|
# @option params [required, String] :user_name
|
7478
7521
|
# The name of the user to list policies for.
|
@@ -7539,7 +7582,7 @@ module Aws::IAM
|
|
7539
7582
|
#
|
7540
7583
|
#
|
7541
7584
|
#
|
7542
|
-
# [1]:
|
7585
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
7543
7586
|
#
|
7544
7587
|
# @option params [required, String] :user_name
|
7545
7588
|
# The name of the IAM user whose tags you want to see.
|
@@ -7852,9 +7895,9 @@ module Aws::IAM
|
|
7852
7895
|
#
|
7853
7896
|
#
|
7854
7897
|
#
|
7855
|
-
# [1]:
|
7856
|
-
# [2]:
|
7857
|
-
# [3]:
|
7898
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7899
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
7900
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html
|
7858
7901
|
#
|
7859
7902
|
# @option params [required, String] :group_name
|
7860
7903
|
# The name of the group to associate the policy with.
|
@@ -7945,7 +7988,7 @@ module Aws::IAM
|
|
7945
7988
|
#
|
7946
7989
|
#
|
7947
7990
|
#
|
7948
|
-
# [1]:
|
7991
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html
|
7949
7992
|
#
|
7950
7993
|
# @option params [required, String] :role_name
|
7951
7994
|
# The name (friendly name, not ARN) of the IAM role for which you want
|
@@ -8001,10 +8044,10 @@ module Aws::IAM
|
|
8001
8044
|
#
|
8002
8045
|
#
|
8003
8046
|
#
|
8004
|
-
# [1]:
|
8005
|
-
# [2]:
|
8006
|
-
# [3]:
|
8007
|
-
# [4]:
|
8047
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html
|
8048
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8049
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
8050
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html
|
8008
8051
|
#
|
8009
8052
|
# @option params [required, String] :role_name
|
8010
8053
|
# The name of the role to associate the policy with.
|
@@ -8093,7 +8136,7 @@ module Aws::IAM
|
|
8093
8136
|
#
|
8094
8137
|
#
|
8095
8138
|
#
|
8096
|
-
# [1]:
|
8139
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html
|
8097
8140
|
#
|
8098
8141
|
# @option params [required, String] :user_name
|
8099
8142
|
# The name (friendly name, not ARN) of the IAM user for which you want
|
@@ -8142,9 +8185,9 @@ module Aws::IAM
|
|
8142
8185
|
#
|
8143
8186
|
#
|
8144
8187
|
#
|
8145
|
-
# [1]:
|
8146
|
-
# [2]:
|
8147
|
-
# [3]:
|
8188
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8189
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
|
8190
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html
|
8148
8191
|
#
|
8149
8192
|
# @option params [required, String] :user_name
|
8150
8193
|
# The name of the user to associate the policy with.
|
@@ -8236,7 +8279,7 @@ module Aws::IAM
|
|
8236
8279
|
#
|
8237
8280
|
#
|
8238
8281
|
#
|
8239
|
-
# [1]:
|
8282
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8240
8283
|
#
|
8241
8284
|
# @option params [required, String] :client_id
|
8242
8285
|
# The client ID (also known as audience) to remove from the IAM OIDC
|
@@ -8275,8 +8318,8 @@ module Aws::IAM
|
|
8275
8318
|
#
|
8276
8319
|
#
|
8277
8320
|
#
|
8278
|
-
# [1]:
|
8279
|
-
# [2]:
|
8321
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
8322
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
8280
8323
|
#
|
8281
8324
|
# @option params [required, String] :instance_profile_name
|
8282
8325
|
# The name of the instance profile to update.
|
@@ -8453,7 +8496,7 @@ module Aws::IAM
|
|
8453
8496
|
#
|
8454
8497
|
#
|
8455
8498
|
#
|
8456
|
-
# [1]:
|
8499
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_VirtualMFA.html
|
8457
8500
|
#
|
8458
8501
|
# @option params [required, String] :user_name
|
8459
8502
|
# The name of the user whose MFA device you want to resynchronize.
|
@@ -8521,7 +8564,7 @@ module Aws::IAM
|
|
8521
8564
|
#
|
8522
8565
|
#
|
8523
8566
|
#
|
8524
|
-
# [1]:
|
8567
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8525
8568
|
#
|
8526
8569
|
# @option params [required, String] :policy_arn
|
8527
8570
|
# The Amazon Resource Name (ARN) of the IAM policy whose default version
|
@@ -8532,7 +8575,7 @@ module Aws::IAM
|
|
8532
8575
|
#
|
8533
8576
|
#
|
8534
8577
|
#
|
8535
|
-
# [1]:
|
8578
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8536
8579
|
#
|
8537
8580
|
# @option params [required, String] :version_id
|
8538
8581
|
# The version of the policy to set as the default (operative) version.
|
@@ -8542,7 +8585,7 @@ module Aws::IAM
|
|
8542
8585
|
#
|
8543
8586
|
#
|
8544
8587
|
#
|
8545
|
-
# [1]:
|
8588
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
8546
8589
|
#
|
8547
8590
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8548
8591
|
#
|
@@ -8608,8 +8651,8 @@ module Aws::IAM
|
|
8608
8651
|
#
|
8609
8652
|
#
|
8610
8653
|
#
|
8611
|
-
# [1]:
|
8612
|
-
# [2]:
|
8654
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetFederationToken.html
|
8655
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_AssumeRole.html
|
8613
8656
|
# [3]: http://wikipedia.org/wiki/regex
|
8614
8657
|
#
|
8615
8658
|
# @option params [required, Array<String>] :action_names
|
@@ -8639,7 +8682,7 @@ module Aws::IAM
|
|
8639
8682
|
#
|
8640
8683
|
#
|
8641
8684
|
#
|
8642
|
-
# [1]:
|
8685
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8643
8686
|
#
|
8644
8687
|
# @option params [String] :resource_policy
|
8645
8688
|
# A resource-based policy to include in the simulation provided as a
|
@@ -8738,7 +8781,7 @@ module Aws::IAM
|
|
8738
8781
|
#
|
8739
8782
|
#
|
8740
8783
|
#
|
8741
|
-
# [1]:
|
8784
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
8742
8785
|
#
|
8743
8786
|
# @option params [Integer] :max_items
|
8744
8787
|
# Use this only when paginating results to indicate the maximum number
|
@@ -8874,7 +8917,7 @@ module Aws::IAM
|
|
8874
8917
|
#
|
8875
8918
|
#
|
8876
8919
|
#
|
8877
|
-
# [1]:
|
8920
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8878
8921
|
#
|
8879
8922
|
# @option params [Array<String>] :policy_input_list
|
8880
8923
|
# An optional list of additional policy documents to include in the
|
@@ -8920,7 +8963,7 @@ module Aws::IAM
|
|
8920
8963
|
#
|
8921
8964
|
#
|
8922
8965
|
#
|
8923
|
-
# [1]:
|
8966
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8924
8967
|
#
|
8925
8968
|
# @option params [String] :resource_policy
|
8926
8969
|
# A resource-based policy to include in the simulation provided as a
|
@@ -8979,7 +9022,7 @@ module Aws::IAM
|
|
8979
9022
|
#
|
8980
9023
|
#
|
8981
9024
|
#
|
8982
|
-
# [1]:
|
9025
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8983
9026
|
#
|
8984
9027
|
# @option params [Array<Types::ContextEntry>] :context_entries
|
8985
9028
|
# A list of context keys and corresponding values for the simulation to
|
@@ -9030,7 +9073,7 @@ module Aws::IAM
|
|
9030
9073
|
#
|
9031
9074
|
#
|
9032
9075
|
#
|
9033
|
-
# [1]:
|
9076
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
9034
9077
|
#
|
9035
9078
|
# @option params [Integer] :max_items
|
9036
9079
|
# Use this only when paginating results to indicate the maximum number
|
@@ -9160,8 +9203,8 @@ module Aws::IAM
|
|
9160
9203
|
#
|
9161
9204
|
#
|
9162
9205
|
#
|
9163
|
-
# [1]:
|
9164
|
-
# [2]:
|
9206
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html
|
9207
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9165
9208
|
#
|
9166
9209
|
# @option params [required, String] :role_name
|
9167
9210
|
# The name of the role that you want to add tags to.
|
@@ -9260,8 +9303,8 @@ module Aws::IAM
|
|
9260
9303
|
#
|
9261
9304
|
#
|
9262
9305
|
#
|
9263
|
-
# [1]:
|
9264
|
-
# [2]:
|
9306
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html
|
9307
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9265
9308
|
#
|
9266
9309
|
# @option params [required, String] :user_name
|
9267
9310
|
# The name of the user that you want to add tags to.
|
@@ -9326,7 +9369,7 @@ module Aws::IAM
|
|
9326
9369
|
#
|
9327
9370
|
#
|
9328
9371
|
#
|
9329
|
-
# [1]:
|
9372
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9330
9373
|
#
|
9331
9374
|
# @option params [required, String] :role_name
|
9332
9375
|
# The name of the IAM role from which you want to remove tags.
|
@@ -9379,7 +9422,7 @@ module Aws::IAM
|
|
9379
9422
|
#
|
9380
9423
|
#
|
9381
9424
|
#
|
9382
|
-
# [1]:
|
9425
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9383
9426
|
#
|
9384
9427
|
# @option params [required, String] :user_name
|
9385
9428
|
# The name of the IAM user from which you want to remove tags.
|
@@ -9442,7 +9485,7 @@ module Aws::IAM
|
|
9442
9485
|
#
|
9443
9486
|
#
|
9444
9487
|
#
|
9445
|
-
# [1]:
|
9488
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/ManagingCredentials.html
|
9446
9489
|
#
|
9447
9490
|
# @option params [String] :user_name
|
9448
9491
|
# The name of the user whose key you want to update.
|
@@ -9522,7 +9565,7 @@ module Aws::IAM
|
|
9522
9565
|
#
|
9523
9566
|
#
|
9524
9567
|
#
|
9525
|
-
# [1]:
|
9568
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_ManagingPasswordPolicies.html
|
9526
9569
|
#
|
9527
9570
|
# @option params [Integer] :minimum_password_length
|
9528
9571
|
# The minimum number of characters allowed in an IAM user password.
|
@@ -9576,7 +9619,7 @@ module Aws::IAM
|
|
9576
9619
|
#
|
9577
9620
|
#
|
9578
9621
|
#
|
9579
|
-
# [1]:
|
9622
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/HowToPwdIAMUser.html
|
9580
9623
|
#
|
9581
9624
|
# @option params [Integer] :max_password_age
|
9582
9625
|
# The number of days that an IAM user password is valid.
|
@@ -9646,7 +9689,7 @@ module Aws::IAM
|
|
9646
9689
|
#
|
9647
9690
|
#
|
9648
9691
|
#
|
9649
|
-
# [1]:
|
9692
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html
|
9650
9693
|
#
|
9651
9694
|
# @option params [required, String] :role_name
|
9652
9695
|
# The name of the role to update with the new policy.
|
@@ -9725,8 +9768,8 @@ module Aws::IAM
|
|
9725
9768
|
#
|
9726
9769
|
#
|
9727
9770
|
#
|
9728
|
-
# [1]:
|
9729
|
-
# [2]:
|
9771
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_WorkingWithGroupsAndUsers.html
|
9772
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html
|
9730
9773
|
#
|
9731
9774
|
# @option params [required, String] :group_name
|
9732
9775
|
# Name of the IAM group to update. If you're changing the name of the
|
@@ -9806,7 +9849,7 @@ module Aws::IAM
|
|
9806
9849
|
#
|
9807
9850
|
#
|
9808
9851
|
#
|
9809
|
-
# [1]:
|
9852
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_ManagingLogins.html
|
9810
9853
|
#
|
9811
9854
|
# @option params [required, String] :user_name
|
9812
9855
|
# The name of the user whose password you want to update.
|
@@ -9907,7 +9950,7 @@ module Aws::IAM
|
|
9907
9950
|
#
|
9908
9951
|
#
|
9909
9952
|
#
|
9910
|
-
# [1]:
|
9953
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
9911
9954
|
#
|
9912
9955
|
# @option params [required, Array<String>] :thumbprint_list
|
9913
9956
|
# A list of certificate thumbprints that are associated with the
|
@@ -9959,7 +10002,7 @@ module Aws::IAM
|
|
9959
10002
|
#
|
9960
10003
|
#
|
9961
10004
|
#
|
9962
|
-
# [1]:
|
10005
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
|
9963
10006
|
#
|
9964
10007
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
9965
10008
|
#
|
@@ -10037,7 +10080,7 @@ module Aws::IAM
|
|
10037
10080
|
#
|
10038
10081
|
#
|
10039
10082
|
#
|
10040
|
-
# [1]:
|
10083
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
10041
10084
|
#
|
10042
10085
|
# @option params [required, String] :saml_metadata_document
|
10043
10086
|
# An XML document generated by an identity provider (IdP) that supports
|
@@ -10055,7 +10098,7 @@ module Aws::IAM
|
|
10055
10098
|
#
|
10056
10099
|
#
|
10057
10100
|
#
|
10058
|
-
# [1]:
|
10101
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
10059
10102
|
#
|
10060
10103
|
# @return [Types::UpdateSAMLProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10061
10104
|
#
|
@@ -10094,7 +10137,7 @@ module Aws::IAM
|
|
10094
10137
|
#
|
10095
10138
|
#
|
10096
10139
|
#
|
10097
|
-
# [1]:
|
10140
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-credentials-ssh.html
|
10098
10141
|
#
|
10099
10142
|
# @option params [required, String] :user_name
|
10100
10143
|
# The name of the IAM user associated with the SSH public key.
|
@@ -10168,9 +10211,9 @@ module Aws::IAM
|
|
10168
10211
|
#
|
10169
10212
|
#
|
10170
10213
|
#
|
10171
|
-
# [1]:
|
10172
|
-
# [2]:
|
10173
|
-
# [3]:
|
10214
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
|
10215
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs_manage.html#RenamingServerCerts
|
10216
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html
|
10174
10217
|
#
|
10175
10218
|
# @option params [required, String] :server_certificate_name
|
10176
10219
|
# The name of the server certificate that you want to update.
|
@@ -10370,9 +10413,9 @@ module Aws::IAM
|
|
10370
10413
|
#
|
10371
10414
|
#
|
10372
10415
|
#
|
10373
|
-
# [1]:
|
10374
|
-
# [2]:
|
10375
|
-
# [3]:
|
10416
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users_manage.html#id_users_renaming
|
10417
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_groups_manage_rename.html
|
10418
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/PermissionsAndPolicies.html
|
10376
10419
|
#
|
10377
10420
|
# @option params [required, String] :user_name
|
10378
10421
|
# Name of the user to update. If you're changing the name of the user,
|
@@ -10455,7 +10498,7 @@ module Aws::IAM
|
|
10455
10498
|
#
|
10456
10499
|
#
|
10457
10500
|
#
|
10458
|
-
# [1]:
|
10501
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-credentials-ssh.html
|
10459
10502
|
#
|
10460
10503
|
# @option params [required, String] :user_name
|
10461
10504
|
# The name of the IAM user to associate the SSH public key with.
|
@@ -10552,12 +10595,12 @@ module Aws::IAM
|
|
10552
10595
|
#
|
10553
10596
|
#
|
10554
10597
|
#
|
10555
|
-
# [1]:
|
10556
|
-
# [2]:
|
10557
|
-
# [3]:
|
10558
|
-
# [4]:
|
10559
|
-
# [5]:
|
10560
|
-
# [6]:
|
10598
|
+
# [1]: https://docs.aws.amazon.com/certificate-manager/
|
10599
|
+
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/
|
10600
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
|
10601
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html
|
10602
|
+
# [5]: https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html
|
10603
|
+
# [6]: https://docs.aws.amazon.com/IAM/latest/UserGuide/programming.html
|
10561
10604
|
#
|
10562
10605
|
# @option params [String] :path
|
10563
10606
|
# The path for the server certificate. For more information about paths,
|
@@ -10580,7 +10623,7 @@ module Aws::IAM
|
|
10580
10623
|
#
|
10581
10624
|
#
|
10582
10625
|
#
|
10583
|
-
# [1]:
|
10626
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10584
10627
|
# [2]: http://wikipedia.org/wiki/regex
|
10585
10628
|
#
|
10586
10629
|
# @option params [required, String] :server_certificate_name
|
@@ -10732,8 +10775,8 @@ module Aws::IAM
|
|
10732
10775
|
#
|
10733
10776
|
#
|
10734
10777
|
#
|
10735
|
-
# [1]:
|
10736
|
-
# [2]:
|
10778
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html
|
10779
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html
|
10737
10780
|
#
|
10738
10781
|
# @option params [String] :user_name
|
10739
10782
|
# The name of the user the signing certificate is for.
|
@@ -10828,7 +10871,7 @@ module Aws::IAM
|
|
10828
10871
|
params: params,
|
10829
10872
|
config: config)
|
10830
10873
|
context[:gem_name] = 'aws-sdk-iam'
|
10831
|
-
context[:gem_version] = '1.
|
10874
|
+
context[:gem_version] = '1.18.0'
|
10832
10875
|
Seahorse::Client::Request.new(handlers, context)
|
10833
10876
|
end
|
10834
10877
|
|