aws-sdk-iam 1.123.0 → 1.124.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +435 -242
- data/lib/aws-sdk-iam/client_api.rb +21 -3
- data/lib/aws-sdk-iam/current_user.rb +4 -1
- data/lib/aws-sdk-iam/login_profile.rb +2 -1
- data/lib/aws-sdk-iam/policy.rb +8 -2
- data/lib/aws-sdk-iam/policy_version.rb +9 -5
- data/lib/aws-sdk-iam/types.rb +806 -206
- data/lib/aws-sdk-iam/user.rb +4 -1
- data/lib/aws-sdk-iam.rb +1 -1
- data/sig/access_key.rbs +1 -1
- data/sig/access_key_pair.rbs +1 -1
- data/sig/client.rbs +12 -6
- data/sig/signing_certificate.rbs +1 -1
- data/sig/types.rbs +23 -12
- metadata +1 -1
data/lib/aws-sdk-iam/types.rb
CHANGED
@@ -17,7 +17,11 @@ module Aws::IAM
|
|
17
17
|
# entity.
|
18
18
|
#
|
19
19
|
# This data type is a response element in the
|
20
|
-
# GetOrganizationsAccessReport operation.
|
20
|
+
# [GetOrganizationsAccessReport][1] operation.
|
21
|
+
#
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOrganizationsAccessReport.html
|
21
25
|
#
|
22
26
|
# @!attribute [rw] service_name
|
23
27
|
# The name of the service in which access was attempted.
|
@@ -105,16 +109,22 @@ module Aws::IAM
|
|
105
109
|
|
106
110
|
# Contains information about an Amazon Web Services access key.
|
107
111
|
#
|
108
|
-
# This data type is used as a response element in the
|
109
|
-
# and ListAccessKeys operations.
|
112
|
+
# This data type is used as a response element in the
|
113
|
+
# [CreateAccessKey][1] and [ListAccessKeys][2] operations.
|
110
114
|
#
|
111
115
|
# <note markdown="1"> The `SecretAccessKey` value is returned only in response to
|
112
|
-
# CreateAccessKey. You can get a secret access key only when you
|
113
|
-
# create an access key; you cannot recover the secret access key
|
114
|
-
# If you lose a secret access key, you must create a new access
|
116
|
+
# [CreateAccessKey][1]. You can get a secret access key only when you
|
117
|
+
# first create an access key; you cannot recover the secret access key
|
118
|
+
# later. If you lose a secret access key, you must create a new access
|
119
|
+
# key.
|
115
120
|
#
|
116
121
|
# </note>
|
117
122
|
#
|
123
|
+
#
|
124
|
+
#
|
125
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccessKey.html
|
126
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html
|
127
|
+
#
|
118
128
|
# @!attribute [rw] user_name
|
119
129
|
# The name of the IAM user that the access key is associated with.
|
120
130
|
# @return [String]
|
@@ -153,7 +163,11 @@ module Aws::IAM
|
|
153
163
|
# 2015.
|
154
164
|
#
|
155
165
|
# This data type is used as a response element in the
|
156
|
-
# GetAccessKeyLastUsed operation.
|
166
|
+
# [GetAccessKeyLastUsed][1] operation.
|
167
|
+
#
|
168
|
+
#
|
169
|
+
#
|
170
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccessKeyLastUsed.html
|
157
171
|
#
|
158
172
|
# @!attribute [rw] last_used_date
|
159
173
|
# The date and time, in [ISO 8601 date-time format][1], when the
|
@@ -218,8 +232,12 @@ module Aws::IAM
|
|
218
232
|
# Contains information about an Amazon Web Services access key, without
|
219
233
|
# its secret key.
|
220
234
|
#
|
221
|
-
# This data type is used as a response element in the
|
222
|
-
# operation.
|
235
|
+
# This data type is used as a response element in the
|
236
|
+
# [ListAccessKeys][1] operation.
|
237
|
+
#
|
238
|
+
#
|
239
|
+
#
|
240
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html
|
223
241
|
#
|
224
242
|
# @!attribute [rw] user_name
|
225
243
|
# The name of the IAM user that the key is associated with.
|
@@ -264,8 +282,12 @@ module Aws::IAM
|
|
264
282
|
# @!attribute [rw] open_id_connect_provider_arn
|
265
283
|
# The Amazon Resource Name (ARN) of the IAM OpenID Connect (OIDC)
|
266
284
|
# provider resource to add the client ID to. You can get a list of
|
267
|
-
# OIDC provider ARNs by using the ListOpenIDConnectProviders
|
285
|
+
# OIDC provider ARNs by using the [ListOpenIDConnectProviders][1]
|
268
286
|
# operation.
|
287
|
+
#
|
288
|
+
#
|
289
|
+
#
|
290
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
269
291
|
# @return [String]
|
270
292
|
#
|
271
293
|
# @!attribute [rw] client_id
|
@@ -490,16 +512,20 @@ module Aws::IAM
|
|
490
512
|
#
|
491
513
|
# An attached policy is a managed policy that has been attached to a
|
492
514
|
# user, group, or role. This data type is used as a response element in
|
493
|
-
# the ListAttachedGroupPolicies, ListAttachedRolePolicies,
|
494
|
-
# ListAttachedUserPolicies, and GetAccountAuthorizationDetails
|
515
|
+
# the [ListAttachedGroupPolicies][1], [ListAttachedRolePolicies][2],
|
516
|
+
# [ListAttachedUserPolicies][3], and [GetAccountAuthorizationDetails][4]
|
495
517
|
# operations.
|
496
518
|
#
|
497
519
|
# For more information about managed policies, refer to [Managed
|
498
|
-
# policies and inline policies][
|
520
|
+
# policies and inline policies][5] in the *IAM User Guide*.
|
499
521
|
#
|
500
522
|
#
|
501
523
|
#
|
502
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
524
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedGroupPolicies.html
|
525
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedRolePolicies.html
|
526
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedUserPolicies.html
|
527
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
528
|
+
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
503
529
|
#
|
504
530
|
# @!attribute [rw] policy_name
|
505
531
|
# The friendly name of the attached policy.
|
@@ -586,8 +612,13 @@ module Aws::IAM
|
|
586
612
|
# is used when evaluating the `Condition` elements of the input
|
587
613
|
# policies.
|
588
614
|
#
|
589
|
-
# This data type is used as an input parameter to
|
590
|
-
# and SimulatePrincipalPolicy.
|
615
|
+
# This data type is used as an input parameter to
|
616
|
+
# [SimulateCustomPolicy][1] and [SimulatePrincipalPolicy][2].
|
617
|
+
#
|
618
|
+
#
|
619
|
+
#
|
620
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulateCustomPolicy.html
|
621
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulatePrincipalPolicy.html
|
591
622
|
#
|
592
623
|
# @!attribute [rw] context_key_name
|
593
624
|
# The full name of a condition context key, including the service
|
@@ -636,7 +667,11 @@ module Aws::IAM
|
|
636
667
|
include Aws::Structure
|
637
668
|
end
|
638
669
|
|
639
|
-
# Contains the response to a successful CreateAccessKey request.
|
670
|
+
# Contains the response to a successful [CreateAccessKey][1] request.
|
671
|
+
#
|
672
|
+
#
|
673
|
+
#
|
674
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccessKey.html
|
640
675
|
#
|
641
676
|
# @!attribute [rw] access_key
|
642
677
|
# A structure with details about the access key.
|
@@ -710,7 +745,11 @@ module Aws::IAM
|
|
710
745
|
include Aws::Structure
|
711
746
|
end
|
712
747
|
|
713
|
-
# Contains the response to a successful CreateGroup request.
|
748
|
+
# Contains the response to a successful [CreateGroup][1] request.
|
749
|
+
#
|
750
|
+
#
|
751
|
+
#
|
752
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateGroup.html
|
714
753
|
#
|
715
754
|
# @!attribute [rw] group
|
716
755
|
# A structure containing details about the new group.
|
@@ -784,7 +823,12 @@ module Aws::IAM
|
|
784
823
|
include Aws::Structure
|
785
824
|
end
|
786
825
|
|
787
|
-
# Contains the response to a successful CreateInstanceProfile
|
826
|
+
# Contains the response to a successful [CreateInstanceProfile][1]
|
827
|
+
# request.
|
828
|
+
#
|
829
|
+
#
|
830
|
+
#
|
831
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateInstanceProfile.html
|
788
832
|
#
|
789
833
|
# @!attribute [rw] instance_profile
|
790
834
|
# A structure containing details about the new instance profile.
|
@@ -855,7 +899,11 @@ module Aws::IAM
|
|
855
899
|
include Aws::Structure
|
856
900
|
end
|
857
901
|
|
858
|
-
# Contains the response to a successful CreateLoginProfile request.
|
902
|
+
# Contains the response to a successful [CreateLoginProfile][1] request.
|
903
|
+
#
|
904
|
+
#
|
905
|
+
#
|
906
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateLoginProfile.html
|
859
907
|
#
|
860
908
|
# @!attribute [rw] login_profile
|
861
909
|
# A structure containing the user name and password create date.
|
@@ -958,13 +1006,21 @@ module Aws::IAM
|
|
958
1006
|
include Aws::Structure
|
959
1007
|
end
|
960
1008
|
|
961
|
-
# Contains the response to a successful CreateOpenIDConnectProvider
|
1009
|
+
# Contains the response to a successful [CreateOpenIDConnectProvider][1]
|
962
1010
|
# request.
|
963
1011
|
#
|
1012
|
+
#
|
1013
|
+
#
|
1014
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
1015
|
+
#
|
964
1016
|
# @!attribute [rw] open_id_connect_provider_arn
|
965
1017
|
# The Amazon Resource Name (ARN) of the new IAM OpenID Connect
|
966
1018
|
# provider that is created. For more information, see
|
967
|
-
# OpenIDConnectProviderListEntry.
|
1019
|
+
# [OpenIDConnectProviderListEntry][1].
|
1020
|
+
#
|
1021
|
+
#
|
1022
|
+
#
|
1023
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_OpenIDConnectProviderListEntry.html
|
968
1024
|
# @return [String]
|
969
1025
|
#
|
970
1026
|
# @!attribute [rw] tags
|
@@ -1098,7 +1154,11 @@ module Aws::IAM
|
|
1098
1154
|
include Aws::Structure
|
1099
1155
|
end
|
1100
1156
|
|
1101
|
-
# Contains the response to a successful CreatePolicy request.
|
1157
|
+
# Contains the response to a successful [CreatePolicy][1] request.
|
1158
|
+
#
|
1159
|
+
#
|
1160
|
+
#
|
1161
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html
|
1102
1162
|
#
|
1103
1163
|
# @!attribute [rw] policy
|
1104
1164
|
# A structure containing details about the new policy.
|
@@ -1182,7 +1242,12 @@ module Aws::IAM
|
|
1182
1242
|
include Aws::Structure
|
1183
1243
|
end
|
1184
1244
|
|
1185
|
-
# Contains the response to a successful CreatePolicyVersion
|
1245
|
+
# Contains the response to a successful [CreatePolicyVersion][1]
|
1246
|
+
# request.
|
1247
|
+
#
|
1248
|
+
#
|
1249
|
+
#
|
1250
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicyVersion.html
|
1186
1251
|
#
|
1187
1252
|
# @!attribute [rw] policy_version
|
1188
1253
|
# A structure containing details about the new policy version.
|
@@ -1341,7 +1406,11 @@ module Aws::IAM
|
|
1341
1406
|
include Aws::Structure
|
1342
1407
|
end
|
1343
1408
|
|
1344
|
-
# Contains the response to a successful CreateRole request.
|
1409
|
+
# Contains the response to a successful [CreateRole][1] request.
|
1410
|
+
#
|
1411
|
+
#
|
1412
|
+
#
|
1413
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html
|
1345
1414
|
#
|
1346
1415
|
# @!attribute [rw] role
|
1347
1416
|
# A structure containing details about the new role.
|
@@ -1423,7 +1492,11 @@ module Aws::IAM
|
|
1423
1492
|
include Aws::Structure
|
1424
1493
|
end
|
1425
1494
|
|
1426
|
-
# Contains the response to a successful CreateSAMLProvider request.
|
1495
|
+
# Contains the response to a successful [CreateSAMLProvider][1] request.
|
1496
|
+
#
|
1497
|
+
#
|
1498
|
+
#
|
1499
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateSAMLProvider.html
|
1427
1500
|
#
|
1428
1501
|
# @!attribute [rw] saml_provider_arn
|
1429
1502
|
# The Amazon Resource Name (ARN) of the new SAML provider resource in
|
@@ -1495,7 +1568,12 @@ module Aws::IAM
|
|
1495
1568
|
end
|
1496
1569
|
|
1497
1570
|
# @!attribute [rw] role
|
1498
|
-
# A Role object that contains details about the newly created
|
1571
|
+
# A [Role][1] object that contains details about the newly created
|
1572
|
+
# role.
|
1573
|
+
#
|
1574
|
+
#
|
1575
|
+
#
|
1576
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_Role.html
|
1499
1577
|
# @return [Types::Role]
|
1500
1578
|
#
|
1501
1579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceLinkedRoleResponse AWS API Documentation
|
@@ -1528,11 +1606,18 @@ module Aws::IAM
|
|
1528
1606
|
# service that can be accessed using these credentials.
|
1529
1607
|
# @return [String]
|
1530
1608
|
#
|
1609
|
+
# @!attribute [rw] credential_age_days
|
1610
|
+
# The number of days until the service specific credential expires.
|
1611
|
+
# This field is only valid for Bedrock API keys and must be a positive
|
1612
|
+
# integer. When not specified, the credential will not expire.
|
1613
|
+
# @return [Integer]
|
1614
|
+
#
|
1531
1615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialRequest AWS API Documentation
|
1532
1616
|
#
|
1533
1617
|
class CreateServiceSpecificCredentialRequest < Struct.new(
|
1534
1618
|
:user_name,
|
1535
|
-
:service_name
|
1619
|
+
:service_name,
|
1620
|
+
:credential_age_days)
|
1536
1621
|
SENSITIVE = []
|
1537
1622
|
include Aws::Structure
|
1538
1623
|
end
|
@@ -1543,7 +1628,11 @@ module Aws::IAM
|
|
1543
1628
|
#
|
1544
1629
|
# This is the only time that the password for this credential set is
|
1545
1630
|
# available. It cannot be recovered later. Instead, you must reset the
|
1546
|
-
# password with ResetServiceSpecificCredential.
|
1631
|
+
# password with [ResetServiceSpecificCredential][1].
|
1632
|
+
#
|
1633
|
+
#
|
1634
|
+
#
|
1635
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ResetServiceSpecificCredential.html
|
1547
1636
|
# @return [Types::ServiceSpecificCredential]
|
1548
1637
|
#
|
1549
1638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialResponse AWS API Documentation
|
@@ -1631,7 +1720,11 @@ module Aws::IAM
|
|
1631
1720
|
include Aws::Structure
|
1632
1721
|
end
|
1633
1722
|
|
1634
|
-
# Contains the response to a successful CreateUser request.
|
1723
|
+
# Contains the response to a successful [CreateUser][1] request.
|
1724
|
+
#
|
1725
|
+
#
|
1726
|
+
#
|
1727
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateUser.html
|
1635
1728
|
#
|
1636
1729
|
# @!attribute [rw] user
|
1637
1730
|
# A structure with details about the new IAM user.
|
@@ -1706,7 +1799,12 @@ module Aws::IAM
|
|
1706
1799
|
include Aws::Structure
|
1707
1800
|
end
|
1708
1801
|
|
1709
|
-
# Contains the response to a successful CreateVirtualMFADevice
|
1802
|
+
# Contains the response to a successful [CreateVirtualMFADevice][1]
|
1803
|
+
# request.
|
1804
|
+
#
|
1805
|
+
#
|
1806
|
+
#
|
1807
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateVirtualMFADevice.html
|
1710
1808
|
#
|
1711
1809
|
# @!attribute [rw] virtual_mfa_device
|
1712
1810
|
# A structure containing details about the new virtual MFA device.
|
@@ -1722,13 +1820,14 @@ module Aws::IAM
|
|
1722
1820
|
|
1723
1821
|
# The request was rejected because the most recent credential report has
|
1724
1822
|
# expired. To generate a new credential report, use
|
1725
|
-
# GenerateCredentialReport. For more information about credential
|
1726
|
-
# expiration, see [Getting credential reports][
|
1727
|
-
# Guide*.
|
1823
|
+
# [GenerateCredentialReport][1]. For more information about credential
|
1824
|
+
# report expiration, see [Getting credential reports][2] in the *IAM
|
1825
|
+
# User Guide*.
|
1728
1826
|
#
|
1729
1827
|
#
|
1730
1828
|
#
|
1731
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
1829
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateCredentialReport.html
|
1830
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
1732
1831
|
#
|
1733
1832
|
# @!attribute [rw] message
|
1734
1833
|
# @return [String]
|
@@ -1742,7 +1841,11 @@ module Aws::IAM
|
|
1742
1841
|
end
|
1743
1842
|
|
1744
1843
|
# The request was rejected because the credential report does not exist.
|
1745
|
-
# To generate a credential report, use GenerateCredentialReport.
|
1844
|
+
# To generate a credential report, use [GenerateCredentialReport][1].
|
1845
|
+
#
|
1846
|
+
#
|
1847
|
+
#
|
1848
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateCredentialReport.html
|
1746
1849
|
#
|
1747
1850
|
# @!attribute [rw] message
|
1748
1851
|
# @return [String]
|
@@ -1990,8 +2093,12 @@ module Aws::IAM
|
|
1990
2093
|
# @!attribute [rw] open_id_connect_provider_arn
|
1991
2094
|
# The Amazon Resource Name (ARN) of the IAM OpenID Connect provider
|
1992
2095
|
# resource object to delete. You can get a list of OpenID Connect
|
1993
|
-
# provider resource ARNs by using the ListOpenIDConnectProviders
|
2096
|
+
# provider resource ARNs by using the [ListOpenIDConnectProviders][1]
|
1994
2097
|
# operation.
|
2098
|
+
#
|
2099
|
+
#
|
2100
|
+
#
|
2101
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
1995
2102
|
# @return [String]
|
1996
2103
|
#
|
1997
2104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteOpenIDConnectProviderRequest AWS API Documentation
|
@@ -2239,15 +2346,16 @@ module Aws::IAM
|
|
2239
2346
|
#
|
2240
2347
|
# @!attribute [rw] service_specific_credential_id
|
2241
2348
|
# The unique identifier of the service-specific credential. You can
|
2242
|
-
# get this value by calling ListServiceSpecificCredentials.
|
2349
|
+
# get this value by calling [ListServiceSpecificCredentials][1].
|
2243
2350
|
#
|
2244
|
-
# This parameter allows (through its [regex pattern][
|
2351
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
2245
2352
|
# characters that can consist of any upper or lowercased letter or
|
2246
2353
|
# digit.
|
2247
2354
|
#
|
2248
2355
|
#
|
2249
2356
|
#
|
2250
|
-
# [1]:
|
2357
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServiceSpecificCredentials.html
|
2358
|
+
# [2]: http://wikipedia.org/wiki/regex
|
2251
2359
|
# @return [String]
|
2252
2360
|
#
|
2253
2361
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteServiceSpecificCredentialRequest AWS API Documentation
|
@@ -2388,7 +2496,11 @@ module Aws::IAM
|
|
2388
2496
|
# The reason that the service-linked role deletion failed.
|
2389
2497
|
#
|
2390
2498
|
# This data type is used as a response element in the
|
2391
|
-
# GetServiceLinkedRoleDeletionStatus operation.
|
2499
|
+
# [GetServiceLinkedRoleDeletionStatus][1] operation.
|
2500
|
+
#
|
2501
|
+
#
|
2502
|
+
#
|
2503
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLinkedRoleDeletionStatus.html
|
2392
2504
|
#
|
2393
2505
|
# @!attribute [rw] reason
|
2394
2506
|
# A short description of the reason that the service-linked role
|
@@ -2729,7 +2841,11 @@ module Aws::IAM
|
|
2729
2841
|
# Services service.
|
2730
2842
|
#
|
2731
2843
|
# This data type is a response element in the
|
2732
|
-
# GetServiceLastAccessedDetailsWithEntities operation.
|
2844
|
+
# [GetServiceLastAccessedDetailsWithEntities][1] operation.
|
2845
|
+
#
|
2846
|
+
#
|
2847
|
+
#
|
2848
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetailsWithEntities.html
|
2733
2849
|
#
|
2734
2850
|
# @!attribute [rw] entity_info
|
2735
2851
|
# The `EntityInfo` object that contains details about the entity (user
|
@@ -2761,7 +2877,11 @@ module Aws::IAM
|
|
2761
2877
|
|
2762
2878
|
# Contains details about the specified entity (user or role).
|
2763
2879
|
#
|
2764
|
-
# This data type is an element of the EntityDetails object.
|
2880
|
+
# This data type is an element of the [EntityDetails][1] object.
|
2881
|
+
#
|
2882
|
+
#
|
2883
|
+
#
|
2884
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_EntityDetails.html
|
2765
2885
|
#
|
2766
2886
|
# @!attribute [rw] arn
|
2767
2887
|
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
@@ -2828,8 +2948,14 @@ module Aws::IAM
|
|
2828
2948
|
# Contains information about the reason that the operation failed.
|
2829
2949
|
#
|
2830
2950
|
# This data type is used as a response element in the
|
2831
|
-
# GetOrganizationsAccessReport, GetServiceLastAccessedDetails,
|
2832
|
-
# GetServiceLastAccessedDetailsWithEntities operations.
|
2951
|
+
# [GetOrganizationsAccessReport][1], [GetServiceLastAccessedDetails][2],
|
2952
|
+
# and [GetServiceLastAccessedDetailsWithEntities][3] operations.
|
2953
|
+
#
|
2954
|
+
#
|
2955
|
+
#
|
2956
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOrganizationsAccessReport.html
|
2957
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html
|
2958
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetailsWithEntities.html
|
2833
2959
|
#
|
2834
2960
|
# @!attribute [rw] message
|
2835
2961
|
# Detailed information about the reason that the operation failed.
|
@@ -2883,7 +3009,13 @@ module Aws::IAM
|
|
2883
3009
|
# you include a list of resources, then any missing context values are
|
2884
3010
|
# instead included under the `ResourceSpecificResults` section. To
|
2885
3011
|
# discover the context keys used by a set of policies, you can call
|
2886
|
-
# GetContextKeysForCustomPolicy or
|
3012
|
+
# [GetContextKeysForCustomPolicy][1] or
|
3013
|
+
# [GetContextKeysForPrincipalPolicy][2].
|
3014
|
+
#
|
3015
|
+
#
|
3016
|
+
#
|
3017
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForCustomPolicy.html
|
3018
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForPrincipalPolicy.html
|
2887
3019
|
# @return [Array<String>]
|
2888
3020
|
#
|
2889
3021
|
# @!attribute [rw] organizations_decision_detail
|
@@ -2946,9 +3078,13 @@ module Aws::IAM
|
|
2946
3078
|
include Aws::Structure
|
2947
3079
|
end
|
2948
3080
|
|
2949
|
-
# Contains the response to a successful GenerateCredentialReport
|
3081
|
+
# Contains the response to a successful [GenerateCredentialReport][1]
|
2950
3082
|
# request.
|
2951
3083
|
#
|
3084
|
+
#
|
3085
|
+
#
|
3086
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateCredentialReport.html
|
3087
|
+
#
|
2952
3088
|
# @!attribute [rw] state
|
2953
3089
|
# Information about the state of the credential report.
|
2954
3090
|
# @return [String]
|
@@ -2996,7 +3132,11 @@ module Aws::IAM
|
|
2996
3132
|
|
2997
3133
|
# @!attribute [rw] job_id
|
2998
3134
|
# The job identifier that you can use in the
|
2999
|
-
# GetOrganizationsAccessReport operation.
|
3135
|
+
# [GetOrganizationsAccessReport][1] operation.
|
3136
|
+
#
|
3137
|
+
#
|
3138
|
+
#
|
3139
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOrganizationsAccessReport.html
|
3000
3140
|
# @return [String]
|
3001
3141
|
#
|
3002
3142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateOrganizationsAccessReportResponse AWS API Documentation
|
@@ -3033,11 +3173,17 @@ module Aws::IAM
|
|
3033
3173
|
end
|
3034
3174
|
|
3035
3175
|
# @!attribute [rw] job_id
|
3036
|
-
# The `JobId` that you can use in the
|
3037
|
-
#
|
3038
|
-
#
|
3039
|
-
#
|
3040
|
-
#
|
3176
|
+
# The `JobId` that you can use in the
|
3177
|
+
# [GetServiceLastAccessedDetails][1] or
|
3178
|
+
# [GetServiceLastAccessedDetailsWithEntities][2] operations. The
|
3179
|
+
# `JobId` returned by `GenerateServiceLastAccessedDetail` must be used
|
3180
|
+
# by the same role within a session, or by the same user when used to
|
3181
|
+
# call `GetServiceLastAccessedDetail`.
|
3182
|
+
#
|
3183
|
+
#
|
3184
|
+
#
|
3185
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html
|
3186
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetailsWithEntities.html
|
3041
3187
|
# @return [String]
|
3042
3188
|
#
|
3043
3189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateServiceLastAccessedDetailsResponse AWS API Documentation
|
@@ -3068,9 +3214,15 @@ module Aws::IAM
|
|
3068
3214
|
include Aws::Structure
|
3069
3215
|
end
|
3070
3216
|
|
3071
|
-
# Contains the response to a successful GetAccessKeyLastUsed
|
3072
|
-
# is also returned as a member of the AccessKeyMetaData
|
3073
|
-
# returned by the ListAccessKeys action.
|
3217
|
+
# Contains the response to a successful [GetAccessKeyLastUsed][1]
|
3218
|
+
# request. It is also returned as a member of the [AccessKeyMetaData][2]
|
3219
|
+
# structure returned by the [ListAccessKeys][3] action.
|
3220
|
+
#
|
3221
|
+
#
|
3222
|
+
#
|
3223
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccessKeyLastUsed.html
|
3224
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_AccessKeyMetaData.html
|
3225
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html
|
3074
3226
|
#
|
3075
3227
|
# @!attribute [rw] user_name
|
3076
3228
|
# The name of the IAM user that owns this access key.
|
@@ -3129,8 +3281,12 @@ module Aws::IAM
|
|
3129
3281
|
include Aws::Structure
|
3130
3282
|
end
|
3131
3283
|
|
3132
|
-
# Contains the response to a successful
|
3133
|
-
# request.
|
3284
|
+
# Contains the response to a successful
|
3285
|
+
# [GetAccountAuthorizationDetails][1] request.
|
3286
|
+
#
|
3287
|
+
#
|
3288
|
+
#
|
3289
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
3134
3290
|
#
|
3135
3291
|
# @!attribute [rw] user_detail_list
|
3136
3292
|
# A list containing information about IAM users.
|
@@ -3177,9 +3333,13 @@ module Aws::IAM
|
|
3177
3333
|
include Aws::Structure
|
3178
3334
|
end
|
3179
3335
|
|
3180
|
-
# Contains the response to a successful GetAccountPasswordPolicy
|
3336
|
+
# Contains the response to a successful [GetAccountPasswordPolicy][1]
|
3181
3337
|
# request.
|
3182
3338
|
#
|
3339
|
+
#
|
3340
|
+
#
|
3341
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountPasswordPolicy.html
|
3342
|
+
#
|
3183
3343
|
# @!attribute [rw] password_policy
|
3184
3344
|
# A structure that contains details about the account's password
|
3185
3345
|
# policy.
|
@@ -3193,7 +3353,11 @@ module Aws::IAM
|
|
3193
3353
|
include Aws::Structure
|
3194
3354
|
end
|
3195
3355
|
|
3196
|
-
# Contains the response to a successful GetAccountSummary request.
|
3356
|
+
# Contains the response to a successful [GetAccountSummary][1] request.
|
3357
|
+
#
|
3358
|
+
#
|
3359
|
+
#
|
3360
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountSummary.html
|
3197
3361
|
#
|
3198
3362
|
# @!attribute [rw] summary_map
|
3199
3363
|
# A set of key–value pairs containing information about IAM entity
|
@@ -3238,8 +3402,14 @@ module Aws::IAM
|
|
3238
3402
|
include Aws::Structure
|
3239
3403
|
end
|
3240
3404
|
|
3241
|
-
# Contains the response to a successful
|
3242
|
-
# or
|
3405
|
+
# Contains the response to a successful
|
3406
|
+
# [GetContextKeysForPrincipalPolicy][1] or
|
3407
|
+
# [GetContextKeysForCustomPolicy][2] request.
|
3408
|
+
#
|
3409
|
+
#
|
3410
|
+
#
|
3411
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForPrincipalPolicy.html
|
3412
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForCustomPolicy.html
|
3243
3413
|
#
|
3244
3414
|
# @!attribute [rw] context_key_names
|
3245
3415
|
# The list of context keys that are referenced in the input policies.
|
@@ -3302,7 +3472,12 @@ module Aws::IAM
|
|
3302
3472
|
include Aws::Structure
|
3303
3473
|
end
|
3304
3474
|
|
3305
|
-
# Contains the response to a successful GetCredentialReport
|
3475
|
+
# Contains the response to a successful [GetCredentialReport][1]
|
3476
|
+
# request.
|
3477
|
+
#
|
3478
|
+
#
|
3479
|
+
#
|
3480
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetCredentialReport.html
|
3306
3481
|
#
|
3307
3482
|
# @!attribute [rw] content
|
3308
3483
|
# Contains the credential report. The report is Base64-encoded.
|
@@ -3366,7 +3541,11 @@ module Aws::IAM
|
|
3366
3541
|
include Aws::Structure
|
3367
3542
|
end
|
3368
3543
|
|
3369
|
-
# Contains the response to a successful GetGroupPolicy request.
|
3544
|
+
# Contains the response to a successful [GetGroupPolicy][1] request.
|
3545
|
+
#
|
3546
|
+
#
|
3547
|
+
#
|
3548
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroupPolicy.html
|
3370
3549
|
#
|
3371
3550
|
# @!attribute [rw] group_name
|
3372
3551
|
# The group the policy is associated with.
|
@@ -3438,7 +3617,11 @@ module Aws::IAM
|
|
3438
3617
|
include Aws::Structure
|
3439
3618
|
end
|
3440
3619
|
|
3441
|
-
# Contains the response to a successful GetGroup request.
|
3620
|
+
# Contains the response to a successful [GetGroup][1] request.
|
3621
|
+
#
|
3622
|
+
#
|
3623
|
+
#
|
3624
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroup.html
|
3442
3625
|
#
|
3443
3626
|
# @!attribute [rw] group
|
3444
3627
|
# A structure that contains details about the group.
|
@@ -3496,7 +3679,11 @@ module Aws::IAM
|
|
3496
3679
|
include Aws::Structure
|
3497
3680
|
end
|
3498
3681
|
|
3499
|
-
# Contains the response to a successful GetInstanceProfile request.
|
3682
|
+
# Contains the response to a successful [GetInstanceProfile][1] request.
|
3683
|
+
#
|
3684
|
+
#
|
3685
|
+
#
|
3686
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetInstanceProfile.html
|
3500
3687
|
#
|
3501
3688
|
# @!attribute [rw] instance_profile
|
3502
3689
|
# A structure containing details about the instance profile.
|
@@ -3537,7 +3724,11 @@ module Aws::IAM
|
|
3537
3724
|
include Aws::Structure
|
3538
3725
|
end
|
3539
3726
|
|
3540
|
-
# Contains the response to a successful GetLoginProfile request.
|
3727
|
+
# Contains the response to a successful [GetLoginProfile][1] request.
|
3728
|
+
#
|
3729
|
+
#
|
3730
|
+
#
|
3731
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetLoginProfile.html
|
3541
3732
|
#
|
3542
3733
|
# @!attribute [rw] login_profile
|
3543
3734
|
# A structure containing the user name and the profile creation date
|
@@ -3615,14 +3806,16 @@ module Aws::IAM
|
|
3615
3806
|
# @!attribute [rw] open_id_connect_provider_arn
|
3616
3807
|
# The Amazon Resource Name (ARN) of the OIDC provider resource object
|
3617
3808
|
# in IAM to get information for. You can get a list of OIDC provider
|
3618
|
-
# resource ARNs by using the ListOpenIDConnectProviders
|
3809
|
+
# resource ARNs by using the [ListOpenIDConnectProviders][1]
|
3810
|
+
# operation.
|
3619
3811
|
#
|
3620
3812
|
# For more information about ARNs, see [Amazon Resource Names
|
3621
|
-
# (ARNs)][
|
3813
|
+
# (ARNs)][2] in the *Amazon Web Services General Reference*.
|
3622
3814
|
#
|
3623
3815
|
#
|
3624
3816
|
#
|
3625
|
-
# [1]: https://docs.aws.amazon.com/
|
3817
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
3818
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3626
3819
|
# @return [String]
|
3627
3820
|
#
|
3628
3821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOpenIDConnectProviderRequest AWS API Documentation
|
@@ -3633,24 +3826,40 @@ module Aws::IAM
|
|
3633
3826
|
include Aws::Structure
|
3634
3827
|
end
|
3635
3828
|
|
3636
|
-
# Contains the response to a successful GetOpenIDConnectProvider
|
3829
|
+
# Contains the response to a successful [GetOpenIDConnectProvider][1]
|
3637
3830
|
# request.
|
3638
3831
|
#
|
3832
|
+
#
|
3833
|
+
#
|
3834
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOpenIDConnectProvider.html
|
3835
|
+
#
|
3639
3836
|
# @!attribute [rw] url
|
3640
3837
|
# The URL that the IAM OIDC provider resource object is associated
|
3641
|
-
# with. For more information, see CreateOpenIDConnectProvider.
|
3838
|
+
# with. For more information, see [CreateOpenIDConnectProvider][1].
|
3839
|
+
#
|
3840
|
+
#
|
3841
|
+
#
|
3842
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
3642
3843
|
# @return [String]
|
3643
3844
|
#
|
3644
3845
|
# @!attribute [rw] client_id_list
|
3645
3846
|
# A list of client IDs (also known as audiences) that are associated
|
3646
3847
|
# with the specified IAM OIDC provider resource object. For more
|
3647
|
-
# information, see CreateOpenIDConnectProvider.
|
3848
|
+
# information, see [CreateOpenIDConnectProvider][1].
|
3849
|
+
#
|
3850
|
+
#
|
3851
|
+
#
|
3852
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
3648
3853
|
# @return [Array<String>]
|
3649
3854
|
#
|
3650
3855
|
# @!attribute [rw] thumbprint_list
|
3651
3856
|
# A list of certificate thumbprints that are associated with the
|
3652
3857
|
# specified IAM OIDC provider resource object. For more information,
|
3653
|
-
# see CreateOpenIDConnectProvider.
|
3858
|
+
# see [CreateOpenIDConnectProvider][1].
|
3859
|
+
#
|
3860
|
+
#
|
3861
|
+
#
|
3862
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
3654
3863
|
# @return [Array<String>]
|
3655
3864
|
#
|
3656
3865
|
# @!attribute [rw] create_date
|
@@ -3683,7 +3892,11 @@ module Aws::IAM
|
|
3683
3892
|
|
3684
3893
|
# @!attribute [rw] job_id
|
3685
3894
|
# The identifier of the request generated by the
|
3686
|
-
# GenerateOrganizationsAccessReport operation.
|
3895
|
+
# [GenerateOrganizationsAccessReport][1] operation.
|
3896
|
+
#
|
3897
|
+
#
|
3898
|
+
#
|
3899
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateOrganizationsAccessReport.html
|
3687
3900
|
# @return [String]
|
3688
3901
|
#
|
3689
3902
|
# @!attribute [rw] max_items
|
@@ -3784,8 +3997,15 @@ module Aws::IAM
|
|
3784
3997
|
# Contains information about the reason that the operation failed.
|
3785
3998
|
#
|
3786
3999
|
# This data type is used as a response element in the
|
3787
|
-
# GetOrganizationsAccessReport,
|
3788
|
-
#
|
4000
|
+
# [GetOrganizationsAccessReport][1],
|
4001
|
+
# [GetServiceLastAccessedDetails][2], and
|
4002
|
+
# [GetServiceLastAccessedDetailsWithEntities][3] operations.
|
4003
|
+
#
|
4004
|
+
#
|
4005
|
+
#
|
4006
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOrganizationsAccessReport.html
|
4007
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html
|
4008
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetailsWithEntities.html
|
3789
4009
|
# @return [Types::ErrorDetails]
|
3790
4010
|
#
|
3791
4011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOrganizationsAccessReportResponse AWS API Documentation
|
@@ -3824,7 +4044,11 @@ module Aws::IAM
|
|
3824
4044
|
include Aws::Structure
|
3825
4045
|
end
|
3826
4046
|
|
3827
|
-
# Contains the response to a successful GetPolicy request.
|
4047
|
+
# Contains the response to a successful [GetPolicy][1] request.
|
4048
|
+
#
|
4049
|
+
#
|
4050
|
+
#
|
4051
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicy.html
|
3828
4052
|
#
|
3829
4053
|
# @!attribute [rw] policy
|
3830
4054
|
# A structure containing details about the policy.
|
@@ -3872,7 +4096,11 @@ module Aws::IAM
|
|
3872
4096
|
include Aws::Structure
|
3873
4097
|
end
|
3874
4098
|
|
3875
|
-
# Contains the response to a successful GetPolicyVersion request.
|
4099
|
+
# Contains the response to a successful [GetPolicyVersion][1] request.
|
4100
|
+
#
|
4101
|
+
#
|
4102
|
+
#
|
4103
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicyVersion.html
|
3876
4104
|
#
|
3877
4105
|
# @!attribute [rw] policy_version
|
3878
4106
|
# A structure containing details about the policy version.
|
@@ -3921,7 +4149,11 @@ module Aws::IAM
|
|
3921
4149
|
include Aws::Structure
|
3922
4150
|
end
|
3923
4151
|
|
3924
|
-
# Contains the response to a successful GetRolePolicy request.
|
4152
|
+
# Contains the response to a successful [GetRolePolicy][1] request.
|
4153
|
+
#
|
4154
|
+
#
|
4155
|
+
#
|
4156
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRolePolicy.html
|
3925
4157
|
#
|
3926
4158
|
# @!attribute [rw] role_name
|
3927
4159
|
# The role the policy is associated with.
|
@@ -3971,7 +4203,11 @@ module Aws::IAM
|
|
3971
4203
|
include Aws::Structure
|
3972
4204
|
end
|
3973
4205
|
|
3974
|
-
# Contains the response to a successful GetRole request.
|
4206
|
+
# Contains the response to a successful [GetRole][1] request.
|
4207
|
+
#
|
4208
|
+
#
|
4209
|
+
#
|
4210
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRole.html
|
3975
4211
|
#
|
3976
4212
|
# @!attribute [rw] role
|
3977
4213
|
# A structure containing details about the IAM role.
|
@@ -4005,7 +4241,11 @@ module Aws::IAM
|
|
4005
4241
|
include Aws::Structure
|
4006
4242
|
end
|
4007
4243
|
|
4008
|
-
# Contains the response to a successful GetSAMLProvider request.
|
4244
|
+
# Contains the response to a successful [GetSAMLProvider][1] request.
|
4245
|
+
#
|
4246
|
+
#
|
4247
|
+
#
|
4248
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetSAMLProvider.html
|
4009
4249
|
#
|
4010
4250
|
# @!attribute [rw] saml_provider_uuid
|
4011
4251
|
# The unique identifier assigned to the SAML provider.
|
@@ -4098,7 +4338,11 @@ module Aws::IAM
|
|
4098
4338
|
include Aws::Structure
|
4099
4339
|
end
|
4100
4340
|
|
4101
|
-
# Contains the response to a successful GetSSHPublicKey request.
|
4341
|
+
# Contains the response to a successful [GetSSHPublicKey][1] request.
|
4342
|
+
#
|
4343
|
+
#
|
4344
|
+
#
|
4345
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetSSHPublicKey.html
|
4102
4346
|
#
|
4103
4347
|
# @!attribute [rw] ssh_public_key
|
4104
4348
|
# A structure containing details about the SSH public key.
|
@@ -4134,7 +4378,12 @@ module Aws::IAM
|
|
4134
4378
|
include Aws::Structure
|
4135
4379
|
end
|
4136
4380
|
|
4137
|
-
# Contains the response to a successful GetServerCertificate
|
4381
|
+
# Contains the response to a successful [GetServerCertificate][1]
|
4382
|
+
# request.
|
4383
|
+
#
|
4384
|
+
#
|
4385
|
+
#
|
4386
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServerCertificate.html
|
4138
4387
|
#
|
4139
4388
|
# @!attribute [rw] server_certificate
|
4140
4389
|
# A structure containing details about the server certificate.
|
@@ -4150,10 +4399,14 @@ module Aws::IAM
|
|
4150
4399
|
|
4151
4400
|
# @!attribute [rw] job_id
|
4152
4401
|
# The ID of the request generated by the
|
4153
|
-
# GenerateServiceLastAccessedDetails operation. The `JobId`
|
4154
|
-
# by `GenerateServiceLastAccessedDetail` must be used by the
|
4155
|
-
# within a session, or by the same user when used to call
|
4402
|
+
# [GenerateServiceLastAccessedDetails][1] operation. The `JobId`
|
4403
|
+
# returned by `GenerateServiceLastAccessedDetail` must be used by the
|
4404
|
+
# same role within a session, or by the same user when used to call
|
4156
4405
|
# `GetServiceLastAccessedDetail`.
|
4406
|
+
#
|
4407
|
+
#
|
4408
|
+
#
|
4409
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateServiceLastAccessedDetails.html
|
4157
4410
|
# @return [String]
|
4158
4411
|
#
|
4159
4412
|
# @!attribute [rw] max_items
|
@@ -4381,8 +4634,12 @@ module Aws::IAM
|
|
4381
4634
|
|
4382
4635
|
# @!attribute [rw] deletion_task_id
|
4383
4636
|
# The deletion task identifier. This identifier is returned by the
|
4384
|
-
# DeleteServiceLinkedRole operation in the format
|
4637
|
+
# [DeleteServiceLinkedRole][1] operation in the format
|
4385
4638
|
# `task/aws-service-role/<service-principal-name>/<role-name>/<task-uuid>`.
|
4639
|
+
#
|
4640
|
+
#
|
4641
|
+
#
|
4642
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceLinkedRole.html
|
4386
4643
|
# @return [String]
|
4387
4644
|
#
|
4388
4645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServiceLinkedRoleDeletionStatusRequest AWS API Documentation
|
@@ -4446,7 +4703,11 @@ module Aws::IAM
|
|
4446
4703
|
include Aws::Structure
|
4447
4704
|
end
|
4448
4705
|
|
4449
|
-
# Contains the response to a successful GetUserPolicy request.
|
4706
|
+
# Contains the response to a successful [GetUserPolicy][1] request.
|
4707
|
+
#
|
4708
|
+
#
|
4709
|
+
#
|
4710
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUserPolicy.html
|
4450
4711
|
#
|
4451
4712
|
# @!attribute [rw] user_name
|
4452
4713
|
# The user the policy is associated with.
|
@@ -4497,7 +4758,11 @@ module Aws::IAM
|
|
4497
4758
|
include Aws::Structure
|
4498
4759
|
end
|
4499
4760
|
|
4500
|
-
# Contains the response to a successful GetUser request.
|
4761
|
+
# Contains the response to a successful [GetUser][1] request.
|
4762
|
+
#
|
4763
|
+
#
|
4764
|
+
#
|
4765
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUser.html
|
4501
4766
|
#
|
4502
4767
|
# @!attribute [rw] user
|
4503
4768
|
# A structure containing details about the IAM user.
|
@@ -4540,11 +4805,17 @@ module Aws::IAM
|
|
4540
4805
|
# This data type is used as a response element in the following
|
4541
4806
|
# operations:
|
4542
4807
|
#
|
4543
|
-
# * CreateGroup
|
4808
|
+
# * [CreateGroup][1]
|
4809
|
+
#
|
4810
|
+
# * [GetGroup][2]
|
4544
4811
|
#
|
4545
|
-
# *
|
4812
|
+
# * [ListGroups][3]
|
4546
4813
|
#
|
4547
|
-
#
|
4814
|
+
#
|
4815
|
+
#
|
4816
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateGroup.html
|
4817
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroup.html
|
4818
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroups.html
|
4548
4819
|
#
|
4549
4820
|
# @!attribute [rw] path
|
4550
4821
|
# The path to the group. For more information about paths, see [IAM
|
@@ -4604,7 +4875,11 @@ module Aws::IAM
|
|
4604
4875
|
# policies.
|
4605
4876
|
#
|
4606
4877
|
# This data type is used as a response element in the
|
4607
|
-
# GetAccountAuthorizationDetails operation.
|
4878
|
+
# [GetAccountAuthorizationDetails][1] operation.
|
4879
|
+
#
|
4880
|
+
#
|
4881
|
+
#
|
4882
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
4608
4883
|
#
|
4609
4884
|
# @!attribute [rw] path
|
4610
4885
|
# The path to the group. For more information about paths, see [IAM
|
@@ -4677,13 +4952,20 @@ module Aws::IAM
|
|
4677
4952
|
# This data type is used as a response element in the following
|
4678
4953
|
# operations:
|
4679
4954
|
#
|
4680
|
-
# * CreateInstanceProfile
|
4955
|
+
# * [CreateInstanceProfile][1]
|
4956
|
+
#
|
4957
|
+
# * [GetInstanceProfile][2]
|
4958
|
+
#
|
4959
|
+
# * [ListInstanceProfiles][3]
|
4681
4960
|
#
|
4682
|
-
# *
|
4961
|
+
# * [ListInstanceProfilesForRole][4]
|
4683
4962
|
#
|
4684
|
-
# * ListInstanceProfiles
|
4685
4963
|
#
|
4686
|
-
#
|
4964
|
+
#
|
4965
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateInstanceProfile.html
|
4966
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetInstanceProfile.html
|
4967
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfiles.html
|
4968
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfilesForRole.html
|
4687
4969
|
#
|
4688
4970
|
# @!attribute [rw] path
|
4689
4971
|
# The path to the instance profile. For more information about paths,
|
@@ -4891,7 +5173,11 @@ module Aws::IAM
|
|
4891
5173
|
include Aws::Structure
|
4892
5174
|
end
|
4893
5175
|
|
4894
|
-
# Contains the response to a successful ListAccessKeys request.
|
5176
|
+
# Contains the response to a successful [ListAccessKeys][1] request.
|
5177
|
+
#
|
5178
|
+
#
|
5179
|
+
#
|
5180
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html
|
4895
5181
|
#
|
4896
5182
|
# @!attribute [rw] access_key_metadata
|
4897
5183
|
# A list of objects containing metadata about the access keys.
|
@@ -4952,7 +5238,11 @@ module Aws::IAM
|
|
4952
5238
|
include Aws::Structure
|
4953
5239
|
end
|
4954
5240
|
|
4955
|
-
# Contains the response to a successful ListAccountAliases request.
|
5241
|
+
# Contains the response to a successful [ListAccountAliases][1] request.
|
5242
|
+
#
|
5243
|
+
#
|
5244
|
+
#
|
5245
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccountAliases.html
|
4956
5246
|
#
|
4957
5247
|
# @!attribute [rw] account_aliases
|
4958
5248
|
# A list of aliases associated with the account. Amazon Web Services
|
@@ -5047,9 +5337,13 @@ module Aws::IAM
|
|
5047
5337
|
include Aws::Structure
|
5048
5338
|
end
|
5049
5339
|
|
5050
|
-
# Contains the response to a successful ListAttachedGroupPolicies
|
5340
|
+
# Contains the response to a successful [ListAttachedGroupPolicies][1]
|
5051
5341
|
# request.
|
5052
5342
|
#
|
5343
|
+
#
|
5344
|
+
#
|
5345
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedGroupPolicies.html
|
5346
|
+
#
|
5053
5347
|
# @!attribute [rw] attached_policies
|
5054
5348
|
# A list of the attached policies.
|
5055
5349
|
# @return [Array<Types::AttachedPolicy>]
|
@@ -5142,9 +5436,13 @@ module Aws::IAM
|
|
5142
5436
|
include Aws::Structure
|
5143
5437
|
end
|
5144
5438
|
|
5145
|
-
# Contains the response to a successful ListAttachedRolePolicies
|
5439
|
+
# Contains the response to a successful [ListAttachedRolePolicies][1]
|
5146
5440
|
# request.
|
5147
5441
|
#
|
5442
|
+
#
|
5443
|
+
#
|
5444
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedRolePolicies.html
|
5445
|
+
#
|
5148
5446
|
# @!attribute [rw] attached_policies
|
5149
5447
|
# A list of the attached policies.
|
5150
5448
|
# @return [Array<Types::AttachedPolicy>]
|
@@ -5237,9 +5535,13 @@ module Aws::IAM
|
|
5237
5535
|
include Aws::Structure
|
5238
5536
|
end
|
5239
5537
|
|
5240
|
-
# Contains the response to a successful ListAttachedUserPolicies
|
5538
|
+
# Contains the response to a successful [ListAttachedUserPolicies][1]
|
5241
5539
|
# request.
|
5242
5540
|
#
|
5541
|
+
#
|
5542
|
+
#
|
5543
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedUserPolicies.html
|
5544
|
+
#
|
5243
5545
|
# @!attribute [rw] attached_policies
|
5244
5546
|
# A list of the attached policies.
|
5245
5547
|
# @return [Array<Types::AttachedPolicy>]
|
@@ -5354,7 +5656,12 @@ module Aws::IAM
|
|
5354
5656
|
include Aws::Structure
|
5355
5657
|
end
|
5356
5658
|
|
5357
|
-
# Contains the response to a successful ListEntitiesForPolicy
|
5659
|
+
# Contains the response to a successful [ListEntitiesForPolicy][1]
|
5660
|
+
# request.
|
5661
|
+
#
|
5662
|
+
#
|
5663
|
+
#
|
5664
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListEntitiesForPolicy.html
|
5358
5665
|
#
|
5359
5666
|
# @!attribute [rw] policy_groups
|
5360
5667
|
# A list of IAM groups that the policy is attached to.
|
@@ -5439,7 +5746,11 @@ module Aws::IAM
|
|
5439
5746
|
include Aws::Structure
|
5440
5747
|
end
|
5441
5748
|
|
5442
|
-
# Contains the response to a successful ListGroupPolicies request.
|
5749
|
+
# Contains the response to a successful [ListGroupPolicies][1] request.
|
5750
|
+
#
|
5751
|
+
#
|
5752
|
+
#
|
5753
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupPolicies.html
|
5443
5754
|
#
|
5444
5755
|
# @!attribute [rw] policy_names
|
5445
5756
|
# A list of policy names.
|
@@ -5523,7 +5834,11 @@ module Aws::IAM
|
|
5523
5834
|
include Aws::Structure
|
5524
5835
|
end
|
5525
5836
|
|
5526
|
-
# Contains the response to a successful ListGroupsForUser request.
|
5837
|
+
# Contains the response to a successful [ListGroupsForUser][1] request.
|
5838
|
+
#
|
5839
|
+
#
|
5840
|
+
#
|
5841
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupsForUser.html
|
5527
5842
|
#
|
5528
5843
|
# @!attribute [rw] groups
|
5529
5844
|
# A list of groups.
|
@@ -5604,7 +5919,11 @@ module Aws::IAM
|
|
5604
5919
|
include Aws::Structure
|
5605
5920
|
end
|
5606
5921
|
|
5607
|
-
# Contains the response to a successful ListGroups request.
|
5922
|
+
# Contains the response to a successful [ListGroups][1] request.
|
5923
|
+
#
|
5924
|
+
#
|
5925
|
+
#
|
5926
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroups.html
|
5608
5927
|
#
|
5609
5928
|
# @!attribute [rw] groups
|
5610
5929
|
# A list of groups.
|
@@ -5755,9 +6074,13 @@ module Aws::IAM
|
|
5755
6074
|
include Aws::Structure
|
5756
6075
|
end
|
5757
6076
|
|
5758
|
-
# Contains the response to a successful ListInstanceProfilesForRole
|
6077
|
+
# Contains the response to a successful [ListInstanceProfilesForRole][1]
|
5759
6078
|
# request.
|
5760
6079
|
#
|
6080
|
+
#
|
6081
|
+
#
|
6082
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfilesForRole.html
|
6083
|
+
#
|
5761
6084
|
# @!attribute [rw] instance_profiles
|
5762
6085
|
# A list of instance profiles.
|
5763
6086
|
# @return [Array<Types::InstanceProfile>]
|
@@ -5837,7 +6160,12 @@ module Aws::IAM
|
|
5837
6160
|
include Aws::Structure
|
5838
6161
|
end
|
5839
6162
|
|
5840
|
-
# Contains the response to a successful ListInstanceProfiles
|
6163
|
+
# Contains the response to a successful [ListInstanceProfiles][1]
|
6164
|
+
# request.
|
6165
|
+
#
|
6166
|
+
#
|
6167
|
+
#
|
6168
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfiles.html
|
5841
6169
|
#
|
5842
6170
|
# @!attribute [rw] instance_profiles
|
5843
6171
|
# A list of instance profiles.
|
@@ -5990,7 +6318,11 @@ module Aws::IAM
|
|
5990
6318
|
include Aws::Structure
|
5991
6319
|
end
|
5992
6320
|
|
5993
|
-
# Contains the response to a successful ListMFADevices request.
|
6321
|
+
# Contains the response to a successful [ListMFADevices][1] request.
|
6322
|
+
#
|
6323
|
+
#
|
6324
|
+
#
|
6325
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListMFADevices.html
|
5994
6326
|
#
|
5995
6327
|
# @!attribute [rw] mfa_devices
|
5996
6328
|
# A list of MFA devices.
|
@@ -6105,9 +6437,13 @@ module Aws::IAM
|
|
6105
6437
|
#
|
6106
6438
|
class ListOpenIDConnectProvidersRequest < Aws::EmptyStructure; end
|
6107
6439
|
|
6108
|
-
# Contains the response to a successful ListOpenIDConnectProviders
|
6440
|
+
# Contains the response to a successful [ListOpenIDConnectProviders][1]
|
6109
6441
|
# request.
|
6110
6442
|
#
|
6443
|
+
#
|
6444
|
+
#
|
6445
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
6446
|
+
#
|
6111
6447
|
# @!attribute [rw] open_id_connect_provider_list
|
6112
6448
|
# The list of IAM OIDC provider resource objects defined in the Amazon
|
6113
6449
|
# Web Services account.
|
@@ -6149,7 +6485,11 @@ module Aws::IAM
|
|
6149
6485
|
# the specified identity (user, group, or role).
|
6150
6486
|
#
|
6151
6487
|
# This data type is used as a response element in the
|
6152
|
-
# ListPoliciesGrantingServiceAccess operation.
|
6488
|
+
# [ListPoliciesGrantingServiceAccess][1] operation.
|
6489
|
+
#
|
6490
|
+
#
|
6491
|
+
#
|
6492
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPoliciesGrantingServiceAccess.html
|
6153
6493
|
#
|
6154
6494
|
# @!attribute [rw] service_namespace
|
6155
6495
|
# The namespace of the service that was accessed.
|
@@ -6333,7 +6673,11 @@ module Aws::IAM
|
|
6333
6673
|
include Aws::Structure
|
6334
6674
|
end
|
6335
6675
|
|
6336
|
-
# Contains the response to a successful ListPolicies request.
|
6676
|
+
# Contains the response to a successful [ListPolicies][1] request.
|
6677
|
+
#
|
6678
|
+
#
|
6679
|
+
#
|
6680
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicies.html
|
6337
6681
|
#
|
6338
6682
|
# @!attribute [rw] policies
|
6339
6683
|
# A list of policies.
|
@@ -6484,7 +6828,11 @@ module Aws::IAM
|
|
6484
6828
|
include Aws::Structure
|
6485
6829
|
end
|
6486
6830
|
|
6487
|
-
# Contains the response to a successful ListPolicyVersions request.
|
6831
|
+
# Contains the response to a successful [ListPolicyVersions][1] request.
|
6832
|
+
#
|
6833
|
+
#
|
6834
|
+
#
|
6835
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyVersions.html
|
6488
6836
|
#
|
6489
6837
|
# @!attribute [rw] versions
|
6490
6838
|
# A list of policy versions.
|
@@ -6566,7 +6914,11 @@ module Aws::IAM
|
|
6566
6914
|
include Aws::Structure
|
6567
6915
|
end
|
6568
6916
|
|
6569
|
-
# Contains the response to a successful ListRolePolicies request.
|
6917
|
+
# Contains the response to a successful [ListRolePolicies][1] request.
|
6918
|
+
#
|
6919
|
+
#
|
6920
|
+
#
|
6921
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRolePolicies.html
|
6570
6922
|
#
|
6571
6923
|
# @!attribute [rw] policy_names
|
6572
6924
|
# A list of policy names.
|
@@ -6723,7 +7075,11 @@ module Aws::IAM
|
|
6723
7075
|
include Aws::Structure
|
6724
7076
|
end
|
6725
7077
|
|
6726
|
-
# Contains the response to a successful ListRoles request.
|
7078
|
+
# Contains the response to a successful [ListRoles][1] request.
|
7079
|
+
#
|
7080
|
+
#
|
7081
|
+
#
|
7082
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRoles.html
|
6727
7083
|
#
|
6728
7084
|
# @!attribute [rw] roles
|
6729
7085
|
# A list of roles.
|
@@ -6839,7 +7195,11 @@ module Aws::IAM
|
|
6839
7195
|
#
|
6840
7196
|
class ListSAMLProvidersRequest < Aws::EmptyStructure; end
|
6841
7197
|
|
6842
|
-
# Contains the response to a successful ListSAMLProviders request.
|
7198
|
+
# Contains the response to a successful [ListSAMLProviders][1] request.
|
7199
|
+
#
|
7200
|
+
#
|
7201
|
+
#
|
7202
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSAMLProviders.html
|
6843
7203
|
#
|
6844
7204
|
# @!attribute [rw] saml_provider_list
|
6845
7205
|
# The list of SAML provider resource objects defined in IAM for this
|
@@ -6899,7 +7259,11 @@ module Aws::IAM
|
|
6899
7259
|
include Aws::Structure
|
6900
7260
|
end
|
6901
7261
|
|
6902
|
-
# Contains the response to a successful ListSSHPublicKeys request.
|
7262
|
+
# Contains the response to a successful [ListSSHPublicKeys][1] request.
|
7263
|
+
#
|
7264
|
+
#
|
7265
|
+
#
|
7266
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSSHPublicKeys.html
|
6903
7267
|
#
|
6904
7268
|
# @!attribute [rw] ssh_public_keys
|
6905
7269
|
# A list of the SSH public keys assigned to IAM user.
|
@@ -7056,7 +7420,12 @@ module Aws::IAM
|
|
7056
7420
|
include Aws::Structure
|
7057
7421
|
end
|
7058
7422
|
|
7059
|
-
# Contains the response to a successful ListServerCertificates
|
7423
|
+
# Contains the response to a successful [ListServerCertificates][1]
|
7424
|
+
# request.
|
7425
|
+
#
|
7426
|
+
#
|
7427
|
+
#
|
7428
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServerCertificates.html
|
7060
7429
|
#
|
7061
7430
|
# @!attribute [rw] server_certificate_metadata_list
|
7062
7431
|
# A list of server certificates.
|
@@ -7110,11 +7479,34 @@ module Aws::IAM
|
|
7110
7479
|
# returns service-specific credentials for all services.
|
7111
7480
|
# @return [String]
|
7112
7481
|
#
|
7482
|
+
# @!attribute [rw] all_users
|
7483
|
+
# A flag indicating whether to list service specific credentials for
|
7484
|
+
# all users. This parameter cannot be specified together with
|
7485
|
+
# UserName. When true, returns all credentials associated with the
|
7486
|
+
# specified service.
|
7487
|
+
# @return [Boolean]
|
7488
|
+
#
|
7489
|
+
# @!attribute [rw] marker
|
7490
|
+
# Use this parameter only when paginating results and only after you
|
7491
|
+
# receive a response indicating that the results are truncated. Set it
|
7492
|
+
# to the value of the Marker from the response that you received to
|
7493
|
+
# indicate where the next call should start.
|
7494
|
+
# @return [String]
|
7495
|
+
#
|
7496
|
+
# @!attribute [rw] max_items
|
7497
|
+
# Use this only when paginating results to indicate the maximum number
|
7498
|
+
# of items you want in the response. If additional items exist beyond
|
7499
|
+
# the maximum you specify, the IsTruncated response element is true.
|
7500
|
+
# @return [Integer]
|
7501
|
+
#
|
7113
7502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServiceSpecificCredentialsRequest AWS API Documentation
|
7114
7503
|
#
|
7115
7504
|
class ListServiceSpecificCredentialsRequest < Struct.new(
|
7116
7505
|
:user_name,
|
7117
|
-
:service_name
|
7506
|
+
:service_name,
|
7507
|
+
:all_users,
|
7508
|
+
:marker,
|
7509
|
+
:max_items)
|
7118
7510
|
SENSITIVE = []
|
7119
7511
|
include Aws::Structure
|
7120
7512
|
end
|
@@ -7124,10 +7516,24 @@ module Aws::IAM
|
|
7124
7516
|
# service-specific credential.
|
7125
7517
|
# @return [Array<Types::ServiceSpecificCredentialMetadata>]
|
7126
7518
|
#
|
7519
|
+
# @!attribute [rw] marker
|
7520
|
+
# When IsTruncated is true, this element is present and contains the
|
7521
|
+
# value to use for the Marker parameter in a subsequent pagination
|
7522
|
+
# request.
|
7523
|
+
# @return [String]
|
7524
|
+
#
|
7525
|
+
# @!attribute [rw] is_truncated
|
7526
|
+
# A flag that indicates whether there are more items to return. If
|
7527
|
+
# your results were truncated, you can make a subsequent pagination
|
7528
|
+
# request using the Marker request parameter to retrieve more items.
|
7529
|
+
# @return [Boolean]
|
7530
|
+
#
|
7127
7531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServiceSpecificCredentialsResponse AWS API Documentation
|
7128
7532
|
#
|
7129
7533
|
class ListServiceSpecificCredentialsResponse < Struct.new(
|
7130
|
-
:service_specific_credentials
|
7534
|
+
:service_specific_credentials,
|
7535
|
+
:marker,
|
7536
|
+
:is_truncated)
|
7131
7537
|
SENSITIVE = []
|
7132
7538
|
include Aws::Structure
|
7133
7539
|
end
|
@@ -7176,7 +7582,12 @@ module Aws::IAM
|
|
7176
7582
|
include Aws::Structure
|
7177
7583
|
end
|
7178
7584
|
|
7179
|
-
# Contains the response to a successful ListSigningCertificates
|
7585
|
+
# Contains the response to a successful [ListSigningCertificates][1]
|
7586
|
+
# request.
|
7587
|
+
#
|
7588
|
+
#
|
7589
|
+
#
|
7590
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSigningCertificates.html
|
7180
7591
|
#
|
7181
7592
|
# @!attribute [rw] certificates
|
7182
7593
|
# A list of the user's signing certificate information.
|
@@ -7251,7 +7662,11 @@ module Aws::IAM
|
|
7251
7662
|
include Aws::Structure
|
7252
7663
|
end
|
7253
7664
|
|
7254
|
-
# Contains the response to a successful ListUserPolicies request.
|
7665
|
+
# Contains the response to a successful [ListUserPolicies][1] request.
|
7666
|
+
#
|
7667
|
+
#
|
7668
|
+
#
|
7669
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserPolicies.html
|
7255
7670
|
#
|
7256
7671
|
# @!attribute [rw] policy_names
|
7257
7672
|
# A list of policy names.
|
@@ -7408,7 +7823,11 @@ module Aws::IAM
|
|
7408
7823
|
include Aws::Structure
|
7409
7824
|
end
|
7410
7825
|
|
7411
|
-
# Contains the response to a successful ListUsers request.
|
7826
|
+
# Contains the response to a successful [ListUsers][1] request.
|
7827
|
+
#
|
7828
|
+
#
|
7829
|
+
#
|
7830
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUsers.html
|
7412
7831
|
#
|
7413
7832
|
# @!attribute [rw] users
|
7414
7833
|
# A list of users.
|
@@ -7477,7 +7896,12 @@ module Aws::IAM
|
|
7477
7896
|
include Aws::Structure
|
7478
7897
|
end
|
7479
7898
|
|
7480
|
-
# Contains the response to a successful ListVirtualMFADevices
|
7899
|
+
# Contains the response to a successful [ListVirtualMFADevices][1]
|
7900
|
+
# request.
|
7901
|
+
#
|
7902
|
+
#
|
7903
|
+
#
|
7904
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListVirtualMFADevices.html
|
7481
7905
|
#
|
7482
7906
|
# @!attribute [rw] virtual_mfa_devices
|
7483
7907
|
# The list of virtual MFA devices in the current account that match
|
@@ -7512,8 +7936,13 @@ module Aws::IAM
|
|
7512
7936
|
|
7513
7937
|
# Contains the user name and password create date for a user.
|
7514
7938
|
#
|
7515
|
-
# This data type is used as a response element in the
|
7516
|
-
# and GetLoginProfile operations.
|
7939
|
+
# This data type is used as a response element in the
|
7940
|
+
# [CreateLoginProfile][1] and [GetLoginProfile][2] operations.
|
7941
|
+
#
|
7942
|
+
#
|
7943
|
+
#
|
7944
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateLoginProfile.html
|
7945
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetLoginProfile.html
|
7517
7946
|
#
|
7518
7947
|
# @!attribute [rw] user_name
|
7519
7948
|
# The name of the user, which can be used for signing in to the Amazon
|
@@ -7541,8 +7970,12 @@ module Aws::IAM
|
|
7541
7970
|
|
7542
7971
|
# Contains information about an MFA device.
|
7543
7972
|
#
|
7544
|
-
# This data type is used as a response element in the
|
7545
|
-
# operation.
|
7973
|
+
# This data type is used as a response element in the
|
7974
|
+
# [ListMFADevices][1] operation.
|
7975
|
+
#
|
7976
|
+
#
|
7977
|
+
#
|
7978
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListMFADevices.html
|
7546
7979
|
#
|
7547
7980
|
# @!attribute [rw] user_name
|
7548
7981
|
# The user with whom the MFA device is associated.
|
@@ -7600,14 +8033,15 @@ module Aws::IAM
|
|
7600
8033
|
# and roles) that the policy is attached to.
|
7601
8034
|
#
|
7602
8035
|
# This data type is used as a response element in the
|
7603
|
-
# GetAccountAuthorizationDetails operation.
|
8036
|
+
# [GetAccountAuthorizationDetails][1] operation.
|
7604
8037
|
#
|
7605
8038
|
# For more information about managed policies, see [Managed policies and
|
7606
|
-
# inline policies][
|
8039
|
+
# inline policies][2] in the *IAM User Guide*.
|
7607
8040
|
#
|
7608
8041
|
#
|
7609
8042
|
#
|
7610
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8043
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
8044
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7611
8045
|
#
|
7612
8046
|
# @!attribute [rw] policy_name
|
7613
8047
|
# The friendly name (not ARN) identifying the policy.
|
@@ -7821,7 +8255,11 @@ module Aws::IAM
|
|
7821
8255
|
# Contains information about the account password policy.
|
7822
8256
|
#
|
7823
8257
|
# This data type is used as a response element in the
|
7824
|
-
# GetAccountPasswordPolicy operation.
|
8258
|
+
# [GetAccountPasswordPolicy][1] operation.
|
8259
|
+
#
|
8260
|
+
#
|
8261
|
+
#
|
8262
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountPasswordPolicy.html
|
7825
8263
|
#
|
7826
8264
|
# @!attribute [rw] minimum_password_length
|
7827
8265
|
# Minimum length to require for IAM user passwords.
|
@@ -7939,15 +8377,18 @@ module Aws::IAM
|
|
7939
8377
|
|
7940
8378
|
# Contains information about a managed policy.
|
7941
8379
|
#
|
7942
|
-
# This data type is used as a response element in the CreatePolicy,
|
7943
|
-
# GetPolicy, and ListPolicies operations.
|
8380
|
+
# This data type is used as a response element in the [CreatePolicy][1],
|
8381
|
+
# [GetPolicy][2], and [ListPolicies][3] operations.
|
7944
8382
|
#
|
7945
8383
|
# For more information about managed policies, refer to [Managed
|
7946
|
-
# policies and inline policies][
|
8384
|
+
# policies and inline policies][4] in the *IAM User Guide*.
|
7947
8385
|
#
|
7948
8386
|
#
|
7949
8387
|
#
|
7950
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8388
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html
|
8389
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicy.html
|
8390
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicies.html
|
8391
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7951
8392
|
#
|
7952
8393
|
# @!attribute [rw] policy_name
|
7953
8394
|
# The friendly name (not ARN) identifying the policy.
|
@@ -8017,8 +8458,14 @@ module Aws::IAM
|
|
8017
8458
|
# @!attribute [rw] description
|
8018
8459
|
# A friendly description of the policy.
|
8019
8460
|
#
|
8020
|
-
# This element is included in the response to the GetPolicy
|
8021
|
-
# It is not included in the response to the
|
8461
|
+
# This element is included in the response to the [GetPolicy][1]
|
8462
|
+
# operation. It is not included in the response to the
|
8463
|
+
# [ListPolicies][2] operation.
|
8464
|
+
#
|
8465
|
+
#
|
8466
|
+
#
|
8467
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicy.html
|
8468
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicies.html
|
8022
8469
|
# @return [String]
|
8023
8470
|
#
|
8024
8471
|
# @!attribute [rw] create_date
|
@@ -8077,7 +8524,11 @@ module Aws::IAM
|
|
8077
8524
|
# document.
|
8078
8525
|
#
|
8079
8526
|
# This data type is used as a response element in the
|
8080
|
-
# GetAccountAuthorizationDetails operation.
|
8527
|
+
# [GetAccountAuthorizationDetails][1] operation.
|
8528
|
+
#
|
8529
|
+
#
|
8530
|
+
#
|
8531
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
8081
8532
|
#
|
8082
8533
|
# @!attribute [rw] policy_name
|
8083
8534
|
# The name of the policy.
|
@@ -8115,7 +8566,11 @@ module Aws::IAM
|
|
8115
8566
|
# the specified identity (user, group, or role).
|
8116
8567
|
#
|
8117
8568
|
# This data type is an element of the
|
8118
|
-
# ListPoliciesGrantingServiceAccessEntry object.
|
8569
|
+
# [ListPoliciesGrantingServiceAccessEntry][1] object.
|
8570
|
+
#
|
8571
|
+
#
|
8572
|
+
#
|
8573
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPoliciesGrantingServiceAccessEntry.html
|
8119
8574
|
#
|
8120
8575
|
# @!attribute [rw] policy_name
|
8121
8576
|
# The policy name.
|
@@ -8184,14 +8639,15 @@ module Aws::IAM
|
|
8184
8639
|
# to.
|
8185
8640
|
#
|
8186
8641
|
# This data type is used as a response element in the
|
8187
|
-
# ListEntitiesForPolicy operation.
|
8642
|
+
# [ListEntitiesForPolicy][1] operation.
|
8188
8643
|
#
|
8189
8644
|
# For more information about managed policies, refer to [Managed
|
8190
|
-
# policies and inline policies][
|
8645
|
+
# policies and inline policies][2] in the *IAM User Guide*.
|
8191
8646
|
#
|
8192
8647
|
#
|
8193
8648
|
#
|
8194
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8649
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListEntitiesForPolicy.html
|
8650
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8195
8651
|
#
|
8196
8652
|
# @!attribute [rw] group_name
|
8197
8653
|
# The name (friendly name, not ARN) identifying the group.
|
@@ -8234,14 +8690,15 @@ module Aws::IAM
|
|
8234
8690
|
# to.
|
8235
8691
|
#
|
8236
8692
|
# This data type is used as a response element in the
|
8237
|
-
# ListEntitiesForPolicy operation.
|
8693
|
+
# [ListEntitiesForPolicy][1] operation.
|
8238
8694
|
#
|
8239
8695
|
# For more information about managed policies, refer to [Managed
|
8240
|
-
# policies and inline policies][
|
8696
|
+
# policies and inline policies][2] in the *IAM User Guide*.
|
8241
8697
|
#
|
8242
8698
|
#
|
8243
8699
|
#
|
8244
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8700
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListEntitiesForPolicy.html
|
8701
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8245
8702
|
#
|
8246
8703
|
# @!attribute [rw] role_name
|
8247
8704
|
# The name (friendly name, not ARN) identifying the role.
|
@@ -8270,14 +8727,15 @@ module Aws::IAM
|
|
8270
8727
|
# to.
|
8271
8728
|
#
|
8272
8729
|
# This data type is used as a response element in the
|
8273
|
-
# ListEntitiesForPolicy operation.
|
8730
|
+
# [ListEntitiesForPolicy][1] operation.
|
8274
8731
|
#
|
8275
8732
|
# For more information about managed policies, refer to [Managed
|
8276
|
-
# policies and inline policies][
|
8733
|
+
# policies and inline policies][2] in the *IAM User Guide*.
|
8277
8734
|
#
|
8278
8735
|
#
|
8279
8736
|
#
|
8280
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8737
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListEntitiesForPolicy.html
|
8738
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8281
8739
|
#
|
8282
8740
|
# @!attribute [rw] user_name
|
8283
8741
|
# The name (friendly name, not ARN) identifying the user.
|
@@ -8305,26 +8763,31 @@ module Aws::IAM
|
|
8305
8763
|
# Contains information about a version of a managed policy.
|
8306
8764
|
#
|
8307
8765
|
# This data type is used as a response element in the
|
8308
|
-
# CreatePolicyVersion, GetPolicyVersion,
|
8309
|
-
# GetAccountAuthorizationDetails
|
8766
|
+
# [CreatePolicyVersion][1], [GetPolicyVersion][2],
|
8767
|
+
# [ListPolicyVersions][3], and [GetAccountAuthorizationDetails][4]
|
8768
|
+
# operations.
|
8310
8769
|
#
|
8311
8770
|
# For more information about managed policies, refer to [Managed
|
8312
|
-
# policies and inline policies][
|
8771
|
+
# policies and inline policies][5] in the *IAM User Guide*.
|
8313
8772
|
#
|
8314
8773
|
#
|
8315
8774
|
#
|
8316
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/
|
8775
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicyVersion.html
|
8776
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicyVersion.html
|
8777
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyVersions.html
|
8778
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
8779
|
+
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
8317
8780
|
#
|
8318
8781
|
# @!attribute [rw] document
|
8319
8782
|
# The policy document.
|
8320
8783
|
#
|
8321
8784
|
# The policy document is returned in the response to the
|
8322
|
-
# GetPolicyVersion and GetAccountAuthorizationDetails
|
8323
|
-
# is not returned in the response to the
|
8324
|
-
# ListPolicyVersions operations.
|
8785
|
+
# [GetPolicyVersion][1] and [GetAccountAuthorizationDetails][2]
|
8786
|
+
# operations. It is not returned in the response to the
|
8787
|
+
# [CreatePolicyVersion][3] or [ListPolicyVersions][4] operations.
|
8325
8788
|
#
|
8326
8789
|
# The policy document returned in this structure is URL-encoded
|
8327
|
-
# compliant with [RFC 3986][
|
8790
|
+
# compliant with [RFC 3986][5]. You can use a URL decoding method to
|
8328
8791
|
# convert the policy back to plain JSON text. For example, if you use
|
8329
8792
|
# Java, you can use the `decode` method of the `java.net.URLDecoder`
|
8330
8793
|
# utility class in the Java SDK. Other languages and SDKs provide
|
@@ -8332,7 +8795,11 @@ module Aws::IAM
|
|
8332
8795
|
#
|
8333
8796
|
#
|
8334
8797
|
#
|
8335
|
-
# [1]: https://
|
8798
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicyVersion.html
|
8799
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
8800
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicyVersion.html
|
8801
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyVersions.html
|
8802
|
+
# [5]: https://tools.ietf.org/html/rfc3986
|
8336
8803
|
# @return [String]
|
8337
8804
|
#
|
8338
8805
|
# @!attribute [rw] version_id
|
@@ -8644,20 +9111,25 @@ module Aws::IAM
|
|
8644
9111
|
# @!attribute [rw] open_id_connect_provider_arn
|
8645
9112
|
# The Amazon Resource Name (ARN) of the IAM OIDC provider resource to
|
8646
9113
|
# remove the client ID from. You can get a list of OIDC provider ARNs
|
8647
|
-
# by using the ListOpenIDConnectProviders operation.
|
9114
|
+
# by using the [ListOpenIDConnectProviders][1] operation.
|
8648
9115
|
#
|
8649
9116
|
# For more information about ARNs, see [Amazon Resource Names
|
8650
|
-
# (ARNs)][
|
9117
|
+
# (ARNs)][2] in the *Amazon Web Services General Reference*.
|
8651
9118
|
#
|
8652
9119
|
#
|
8653
9120
|
#
|
8654
|
-
# [1]: https://docs.aws.amazon.com/
|
9121
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
9122
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8655
9123
|
# @return [String]
|
8656
9124
|
#
|
8657
9125
|
# @!attribute [rw] client_id
|
8658
9126
|
# The client ID (also known as audience) to remove from the IAM OIDC
|
8659
9127
|
# provider resource. For more information about client IDs, see
|
8660
|
-
# CreateOpenIDConnectProvider.
|
9128
|
+
# [CreateOpenIDConnectProvider][1].
|
9129
|
+
#
|
9130
|
+
#
|
9131
|
+
#
|
9132
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
8661
9133
|
# @return [String]
|
8662
9134
|
#
|
8663
9135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RemoveClientIDFromOpenIDConnectProviderRequest AWS API Documentation
|
@@ -8808,7 +9280,12 @@ module Aws::IAM
|
|
8808
9280
|
# Contains the result of the simulation of a single API operation call
|
8809
9281
|
# on a single resource.
|
8810
9282
|
#
|
8811
|
-
# This data type is used by a member of the EvaluationResult data
|
9283
|
+
# This data type is used by a member of the [EvaluationResult][1] data
|
9284
|
+
# type.
|
9285
|
+
#
|
9286
|
+
#
|
9287
|
+
#
|
9288
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_EvaluationResult.html
|
8812
9289
|
#
|
8813
9290
|
# @!attribute [rw] eval_resource_name
|
8814
9291
|
# The name of the simulated resource, in Amazon Resource Name (ARN)
|
@@ -8838,7 +9315,13 @@ module Aws::IAM
|
|
8838
9315
|
# including the `ResourceArns` parameter, then any missing context
|
8839
9316
|
# values are instead included under the `EvaluationResults` section.
|
8840
9317
|
# To discover the context keys used by a set of policies, you can call
|
8841
|
-
# GetContextKeysForCustomPolicy or
|
9318
|
+
# [GetContextKeysForCustomPolicy][1] or
|
9319
|
+
# [GetContextKeysForPrincipalPolicy][2].
|
9320
|
+
#
|
9321
|
+
#
|
9322
|
+
#
|
9323
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForCustomPolicy.html
|
9324
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForPrincipalPolicy.html
|
8842
9325
|
# @return [Array<String>]
|
8843
9326
|
#
|
8844
9327
|
# @!attribute [rw] eval_decision_details
|
@@ -9034,7 +9517,11 @@ module Aws::IAM
|
|
9034
9517
|
# policies.
|
9035
9518
|
#
|
9036
9519
|
# This data type is used as a response element in the
|
9037
|
-
# GetAccountAuthorizationDetails operation.
|
9520
|
+
# [GetAccountAuthorizationDetails][1] operation.
|
9521
|
+
#
|
9522
|
+
#
|
9523
|
+
#
|
9524
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
9038
9525
|
#
|
9039
9526
|
# @!attribute [rw] path
|
9040
9527
|
# The path to the role. For more information about paths, see [IAM
|
@@ -9161,12 +9648,14 @@ module Aws::IAM
|
|
9161
9648
|
# ago. For more information, see [Regions where data is tracked][1] in
|
9162
9649
|
# the *IAM user Guide*.
|
9163
9650
|
#
|
9164
|
-
# This data type is returned as a response element in the GetRole
|
9165
|
-
# GetAccountAuthorizationDetails operations.
|
9651
|
+
# This data type is returned as a response element in the [GetRole][2]
|
9652
|
+
# and [GetAccountAuthorizationDetails][3] operations.
|
9166
9653
|
#
|
9167
9654
|
#
|
9168
9655
|
#
|
9169
9656
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period
|
9657
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRole.html
|
9658
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
9170
9659
|
#
|
9171
9660
|
# @!attribute [rw] last_used_date
|
9172
9661
|
# The date and time, in [ISO 8601 date-time format][1] that the role
|
@@ -9200,7 +9689,11 @@ module Aws::IAM
|
|
9200
9689
|
# used, if that information is returned by the service.
|
9201
9690
|
#
|
9202
9691
|
# This data type is used as a response element in the
|
9203
|
-
# GetServiceLinkedRoleDeletionStatus operation.
|
9692
|
+
# [GetServiceLinkedRoleDeletionStatus][1] operation.
|
9693
|
+
#
|
9694
|
+
#
|
9695
|
+
#
|
9696
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLinkedRoleDeletionStatus.html
|
9204
9697
|
#
|
9205
9698
|
# @!attribute [rw] region
|
9206
9699
|
# The name of the Region where the service-linked role is being used.
|
@@ -9221,8 +9714,12 @@ module Aws::IAM
|
|
9221
9714
|
|
9222
9715
|
# Contains the private keys for the SAML provider.
|
9223
9716
|
#
|
9224
|
-
# This data type is used as a response element in the
|
9225
|
-
# operation.
|
9717
|
+
# This data type is used as a response element in the
|
9718
|
+
# [GetSAMLProvider][1] operation.
|
9719
|
+
#
|
9720
|
+
#
|
9721
|
+
#
|
9722
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetSAMLProvider.html
|
9226
9723
|
#
|
9227
9724
|
# @!attribute [rw] key_id
|
9228
9725
|
# The unique identifier for the SAML private key.
|
@@ -9272,8 +9769,13 @@ module Aws::IAM
|
|
9272
9769
|
|
9273
9770
|
# Contains information about an SSH public key.
|
9274
9771
|
#
|
9275
|
-
# This data type is used as a response element in the
|
9276
|
-
# and UploadSSHPublicKey operations.
|
9772
|
+
# This data type is used as a response element in the
|
9773
|
+
# [GetSSHPublicKey][1] and [UploadSSHPublicKey][2] operations.
|
9774
|
+
#
|
9775
|
+
#
|
9776
|
+
#
|
9777
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetSSHPublicKey.html
|
9778
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSSHPublicKey.html
|
9277
9779
|
#
|
9278
9780
|
# @!attribute [rw] user_name
|
9279
9781
|
# The name of the IAM user associated with the SSH public key.
|
@@ -9322,8 +9824,12 @@ module Aws::IAM
|
|
9322
9824
|
# Contains information about an SSH public key, without the key's body
|
9323
9825
|
# or fingerprint.
|
9324
9826
|
#
|
9325
|
-
# This data type is used as a response element in the
|
9326
|
-
# operation.
|
9827
|
+
# This data type is used as a response element in the
|
9828
|
+
# [ListSSHPublicKeys][1] operation.
|
9829
|
+
#
|
9830
|
+
#
|
9831
|
+
#
|
9832
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSSHPublicKeys.html
|
9327
9833
|
#
|
9328
9834
|
# @!attribute [rw] user_name
|
9329
9835
|
# The name of the IAM user associated with the SSH public key.
|
@@ -9362,7 +9868,11 @@ module Aws::IAM
|
|
9362
9868
|
# Contains information about a server certificate.
|
9363
9869
|
#
|
9364
9870
|
# This data type is used as a response element in the
|
9365
|
-
# GetServerCertificate operation.
|
9871
|
+
# [GetServerCertificate][1] operation.
|
9872
|
+
#
|
9873
|
+
#
|
9874
|
+
#
|
9875
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServerCertificate.html
|
9366
9876
|
#
|
9367
9877
|
# @!attribute [rw] server_certificate_metadata
|
9368
9878
|
# The meta information of the server certificate, such as its name,
|
@@ -9402,7 +9912,13 @@ module Aws::IAM
|
|
9402
9912
|
# certificate body, certificate chain, and private key.
|
9403
9913
|
#
|
9404
9914
|
# This data type is used as a response element in the
|
9405
|
-
# UploadServerCertificate and ListServerCertificates
|
9915
|
+
# [UploadServerCertificate][1] and [ListServerCertificates][2]
|
9916
|
+
# operations.
|
9917
|
+
#
|
9918
|
+
#
|
9919
|
+
#
|
9920
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadServerCertificate.html
|
9921
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServerCertificates.html
|
9406
9922
|
#
|
9407
9923
|
# @!attribute [rw] path
|
9408
9924
|
# The path to the server certificate. For more information about
|
@@ -9483,7 +9999,11 @@ module Aws::IAM
|
|
9483
9999
|
# Contains details about the most recent attempt to access the service.
|
9484
10000
|
#
|
9485
10001
|
# This data type is used as a response element in the
|
9486
|
-
# GetServiceLastAccessedDetails operation.
|
10002
|
+
# [GetServiceLastAccessedDetails][1] operation.
|
10003
|
+
#
|
10004
|
+
#
|
10005
|
+
#
|
10006
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html
|
9487
10007
|
#
|
9488
10008
|
# @!attribute [rw] service_name
|
9489
10009
|
# The name of the service in which access was attempted.
|
@@ -9567,11 +10087,12 @@ module Aws::IAM
|
|
9567
10087
|
# did not use the tracked actions within the [tracking period][1].
|
9568
10088
|
# This field is also null if the report was generated at the service
|
9569
10089
|
# level and not the action level. For more information, see the
|
9570
|
-
# `Granularity` field in GenerateServiceLastAccessedDetails.
|
10090
|
+
# `Granularity` field in [GenerateServiceLastAccessedDetails][2].
|
9571
10091
|
#
|
9572
10092
|
#
|
9573
10093
|
#
|
9574
10094
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
10095
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateServiceLastAccessedDetails.html
|
9575
10096
|
# @return [Array<Types::TrackedActionLastAccessed>]
|
9576
10097
|
#
|
9577
10098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServiceLastAccessed AWS API Documentation
|
@@ -9612,6 +10133,12 @@ module Aws::IAM
|
|
9612
10133
|
# [1]: http://www.iso.org/iso/iso8601
|
9613
10134
|
# @return [Time]
|
9614
10135
|
#
|
10136
|
+
# @!attribute [rw] expiration_date
|
10137
|
+
# The date and time when the service specific credential expires. This
|
10138
|
+
# field is only present for Bedrock API keys that were created with an
|
10139
|
+
# expiration period.
|
10140
|
+
# @return [Time]
|
10141
|
+
#
|
9615
10142
|
# @!attribute [rw] service_name
|
9616
10143
|
# The name of the service associated with the service-specific
|
9617
10144
|
# credential.
|
@@ -9629,6 +10156,18 @@ module Aws::IAM
|
|
9629
10156
|
# The generated password for the service-specific credential.
|
9630
10157
|
# @return [String]
|
9631
10158
|
#
|
10159
|
+
# @!attribute [rw] service_credential_alias
|
10160
|
+
# For Bedrock API keys, this is the public portion of the credential
|
10161
|
+
# that includes the IAM user name and a suffix containing version and
|
10162
|
+
# creation information.
|
10163
|
+
# @return [String]
|
10164
|
+
#
|
10165
|
+
# @!attribute [rw] service_credential_secret
|
10166
|
+
# For Bedrock API keys, this is the secret portion of the credential
|
10167
|
+
# that should be used to authenticate API calls. This value is
|
10168
|
+
# returned only when the credential is created.
|
10169
|
+
# @return [String]
|
10170
|
+
#
|
9632
10171
|
# @!attribute [rw] service_specific_credential_id
|
9633
10172
|
# The unique identifier for the service-specific credential.
|
9634
10173
|
# @return [String]
|
@@ -9647,13 +10186,16 @@ module Aws::IAM
|
|
9647
10186
|
#
|
9648
10187
|
class ServiceSpecificCredential < Struct.new(
|
9649
10188
|
:create_date,
|
10189
|
+
:expiration_date,
|
9650
10190
|
:service_name,
|
9651
10191
|
:service_user_name,
|
9652
10192
|
:service_password,
|
10193
|
+
:service_credential_alias,
|
10194
|
+
:service_credential_secret,
|
9653
10195
|
:service_specific_credential_id,
|
9654
10196
|
:user_name,
|
9655
10197
|
:status)
|
9656
|
-
SENSITIVE = [:service_password]
|
10198
|
+
SENSITIVE = [:service_password, :service_credential_secret]
|
9657
10199
|
include Aws::Structure
|
9658
10200
|
end
|
9659
10201
|
|
@@ -9673,6 +10215,12 @@ module Aws::IAM
|
|
9673
10215
|
# The generated user name for the service-specific credential.
|
9674
10216
|
# @return [String]
|
9675
10217
|
#
|
10218
|
+
# @!attribute [rw] service_credential_alias
|
10219
|
+
# For Bedrock API keys, this is the public portion of the credential
|
10220
|
+
# that includes the IAM user name and a suffix containing version and
|
10221
|
+
# creation information.
|
10222
|
+
# @return [String]
|
10223
|
+
#
|
9676
10224
|
# @!attribute [rw] create_date
|
9677
10225
|
# The date and time, in [ISO 8601 date-time format][1], when the
|
9678
10226
|
# service-specific credential were created.
|
@@ -9682,6 +10230,12 @@ module Aws::IAM
|
|
9682
10230
|
# [1]: http://www.iso.org/iso/iso8601
|
9683
10231
|
# @return [Time]
|
9684
10232
|
#
|
10233
|
+
# @!attribute [rw] expiration_date
|
10234
|
+
# The date and time when the service specific credential expires. This
|
10235
|
+
# field is only present for Bedrock API keys that were created with an
|
10236
|
+
# expiration period.
|
10237
|
+
# @return [Time]
|
10238
|
+
#
|
9685
10239
|
# @!attribute [rw] service_specific_credential_id
|
9686
10240
|
# The unique identifier for the service-specific credential.
|
9687
10241
|
# @return [String]
|
@@ -9697,7 +10251,9 @@ module Aws::IAM
|
|
9697
10251
|
:user_name,
|
9698
10252
|
:status,
|
9699
10253
|
:service_user_name,
|
10254
|
+
:service_credential_alias,
|
9700
10255
|
:create_date,
|
10256
|
+
:expiration_date,
|
9701
10257
|
:service_specific_credential_id,
|
9702
10258
|
:service_name)
|
9703
10259
|
SENSITIVE = []
|
@@ -9763,7 +10319,13 @@ module Aws::IAM
|
|
9763
10319
|
# Contains information about an X.509 signing certificate.
|
9764
10320
|
#
|
9765
10321
|
# This data type is used as a response element in the
|
9766
|
-
# UploadSigningCertificate and ListSigningCertificates
|
10322
|
+
# [UploadSigningCertificate][1] and [ListSigningCertificates][2]
|
10323
|
+
# operations.
|
10324
|
+
#
|
10325
|
+
#
|
10326
|
+
#
|
10327
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSigningCertificate.html
|
10328
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSigningCertificates.html
|
9767
10329
|
#
|
9768
10330
|
# @!attribute [rw] user_name
|
9769
10331
|
# The name of the user the signing certificate is associated with.
|
@@ -10054,8 +10616,13 @@ module Aws::IAM
|
|
10054
10616
|
include Aws::Structure
|
10055
10617
|
end
|
10056
10618
|
|
10057
|
-
# Contains the response to a successful SimulatePrincipalPolicy or
|
10058
|
-
# SimulateCustomPolicy request.
|
10619
|
+
# Contains the response to a successful [SimulatePrincipalPolicy][1] or
|
10620
|
+
# [SimulateCustomPolicy][2] request.
|
10621
|
+
#
|
10622
|
+
#
|
10623
|
+
#
|
10624
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulatePrincipalPolicy.html
|
10625
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulateCustomPolicy.html
|
10059
10626
|
#
|
10060
10627
|
# @!attribute [rw] evaluation_results
|
10061
10628
|
# The results of the simulation.
|
@@ -10418,13 +10985,6 @@ module Aws::IAM
|
|
10418
10985
|
# might have values that consist of the number associated with the
|
10419
10986
|
# different cost centers in your company. Typically, many resources
|
10420
10987
|
# have tags with the same key name but with different values.
|
10421
|
-
#
|
10422
|
-
# <note markdown="1"> Amazon Web Services always interprets the tag `Value` as a single
|
10423
|
-
# string. If you need to store an array, you can store comma-separated
|
10424
|
-
# values in the string. However, you must interpret the value in your
|
10425
|
-
# code.
|
10426
|
-
#
|
10427
|
-
# </note>
|
10428
10988
|
# @return [String]
|
10429
10989
|
#
|
10430
10990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Tag AWS API Documentation
|
@@ -10665,7 +11225,11 @@ module Aws::IAM
|
|
10665
11225
|
# within the service.
|
10666
11226
|
#
|
10667
11227
|
# This data type is used as a response element in the
|
10668
|
-
# GetServiceLastAccessedDetails operation.
|
11228
|
+
# [GetServiceLastAccessedDetails][1] operation.
|
11229
|
+
#
|
11230
|
+
#
|
11231
|
+
#
|
11232
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html
|
10669
11233
|
#
|
10670
11234
|
# @!attribute [rw] action_name
|
10671
11235
|
# The name of the tracked action to which access was attempted.
|
@@ -11263,11 +11827,12 @@ module Aws::IAM
|
|
11263
11827
|
# However, the format can be further restricted by the account
|
11264
11828
|
# administrator by setting a password policy on the Amazon Web
|
11265
11829
|
# Services account. For more information, see
|
11266
|
-
# UpdateAccountPasswordPolicy.
|
11830
|
+
# [UpdateAccountPasswordPolicy][2].
|
11267
11831
|
#
|
11268
11832
|
#
|
11269
11833
|
#
|
11270
11834
|
# [1]: http://wikipedia.org/wiki/regex
|
11835
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAccountPasswordPolicy.html
|
11271
11836
|
# @return [String]
|
11272
11837
|
#
|
11273
11838
|
# @!attribute [rw] password_reset_required
|
@@ -11288,21 +11853,26 @@ module Aws::IAM
|
|
11288
11853
|
# @!attribute [rw] open_id_connect_provider_arn
|
11289
11854
|
# The Amazon Resource Name (ARN) of the IAM OIDC provider resource
|
11290
11855
|
# object for which you want to update the thumbprint. You can get a
|
11291
|
-
# list of OIDC provider ARNs by using the
|
11292
|
-
# operation.
|
11856
|
+
# list of OIDC provider ARNs by using the
|
11857
|
+
# [ListOpenIDConnectProviders][1] operation.
|
11293
11858
|
#
|
11294
11859
|
# For more information about ARNs, see [Amazon Resource Names
|
11295
|
-
# (ARNs)][
|
11860
|
+
# (ARNs)][2] in the *Amazon Web Services General Reference*.
|
11296
11861
|
#
|
11297
11862
|
#
|
11298
11863
|
#
|
11299
|
-
# [1]: https://docs.aws.amazon.com/
|
11864
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html
|
11865
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
11300
11866
|
# @return [String]
|
11301
11867
|
#
|
11302
11868
|
# @!attribute [rw] thumbprint_list
|
11303
11869
|
# A list of certificate thumbprints that are associated with the
|
11304
11870
|
# specified IAM OpenID Connect provider. For more information, see
|
11305
|
-
# CreateOpenIDConnectProvider.
|
11871
|
+
# [CreateOpenIDConnectProvider][1].
|
11872
|
+
#
|
11873
|
+
#
|
11874
|
+
#
|
11875
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html
|
11306
11876
|
# @return [Array<String>]
|
11307
11877
|
#
|
11308
11878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateOpenIDConnectProviderThumbprintRequest AWS API Documentation
|
@@ -11439,7 +12009,11 @@ module Aws::IAM
|
|
11439
12009
|
include Aws::Structure
|
11440
12010
|
end
|
11441
12011
|
|
11442
|
-
# Contains the response to a successful UpdateSAMLProvider request.
|
12012
|
+
# Contains the response to a successful [UpdateSAMLProvider][1] request.
|
12013
|
+
#
|
12014
|
+
#
|
12015
|
+
#
|
12016
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateSAMLProvider.html
|
11443
12017
|
#
|
11444
12018
|
# @!attribute [rw] saml_provider_arn
|
11445
12019
|
# The Amazon Resource Name (ARN) of the SAML provider that was
|
@@ -11726,7 +12300,11 @@ module Aws::IAM
|
|
11726
12300
|
include Aws::Structure
|
11727
12301
|
end
|
11728
12302
|
|
11729
|
-
# Contains the response to a successful UploadSSHPublicKey request.
|
12303
|
+
# Contains the response to a successful [UploadSSHPublicKey][1] request.
|
12304
|
+
#
|
12305
|
+
#
|
12306
|
+
#
|
12307
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSSHPublicKey.html
|
11730
12308
|
#
|
11731
12309
|
# @!attribute [rw] ssh_public_key
|
11732
12310
|
# Contains information about the SSH public key.
|
@@ -11871,7 +12449,12 @@ module Aws::IAM
|
|
11871
12449
|
include Aws::Structure
|
11872
12450
|
end
|
11873
12451
|
|
11874
|
-
# Contains the response to a successful UploadServerCertificate
|
12452
|
+
# Contains the response to a successful [UploadServerCertificate][1]
|
12453
|
+
# request.
|
12454
|
+
#
|
12455
|
+
#
|
12456
|
+
#
|
12457
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadServerCertificate.html
|
11875
12458
|
#
|
11876
12459
|
# @!attribute [rw] server_certificate_metadata
|
11877
12460
|
# The meta information of the uploaded server certificate without its
|
@@ -11940,9 +12523,13 @@ module Aws::IAM
|
|
11940
12523
|
include Aws::Structure
|
11941
12524
|
end
|
11942
12525
|
|
11943
|
-
# Contains the response to a successful UploadSigningCertificate
|
12526
|
+
# Contains the response to a successful [UploadSigningCertificate][1]
|
11944
12527
|
# request.
|
11945
12528
|
#
|
12529
|
+
#
|
12530
|
+
#
|
12531
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSigningCertificate.html
|
12532
|
+
#
|
11946
12533
|
# @!attribute [rw] certificate
|
11947
12534
|
# Information about the certificate.
|
11948
12535
|
# @return [Types::SigningCertificate]
|
@@ -11960,11 +12547,17 @@ module Aws::IAM
|
|
11960
12547
|
# This data type is used as a response element in the following
|
11961
12548
|
# operations:
|
11962
12549
|
#
|
11963
|
-
# * CreateUser
|
12550
|
+
# * [CreateUser][1]
|
11964
12551
|
#
|
11965
|
-
# * GetUser
|
12552
|
+
# * [GetUser][2]
|
11966
12553
|
#
|
11967
|
-
# * ListUsers
|
12554
|
+
# * [ListUsers][3]
|
12555
|
+
#
|
12556
|
+
#
|
12557
|
+
#
|
12558
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateUser.html
|
12559
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUser.html
|
12560
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUsers.html
|
11968
12561
|
#
|
11969
12562
|
# @!attribute [rw] path
|
11970
12563
|
# The path to the user. For more information about paths, see [IAM
|
@@ -12031,12 +12624,15 @@ module Aws::IAM
|
|
12031
12624
|
# the past, then this field contains the date and time the most recent
|
12032
12625
|
# password was used.
|
12033
12626
|
#
|
12034
|
-
# This value is returned only in the GetUser and ListUsers
|
12627
|
+
# This value is returned only in the [GetUser][3] and [ListUsers][4]
|
12628
|
+
# operations.
|
12035
12629
|
#
|
12036
12630
|
#
|
12037
12631
|
#
|
12038
12632
|
# [1]: http://www.iso.org/iso/iso8601
|
12039
12633
|
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
12634
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUser.html
|
12635
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUsers.html
|
12040
12636
|
# @return [Time]
|
12041
12637
|
#
|
12042
12638
|
# @!attribute [rw] permissions_boundary
|
@@ -12077,7 +12673,11 @@ module Aws::IAM
|
|
12077
12673
|
# policies and all the IAM groups the user is in.
|
12078
12674
|
#
|
12079
12675
|
# This data type is used as a response element in the
|
12080
|
-
# GetAccountAuthorizationDetails operation.
|
12676
|
+
# [GetAccountAuthorizationDetails][1] operation.
|
12677
|
+
#
|
12678
|
+
#
|
12679
|
+
#
|
12680
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html
|
12081
12681
|
#
|
12082
12682
|
# @!attribute [rw] path
|
12083
12683
|
# The path to the user. For more information about paths, see [IAM
|