aws-sdk-iam 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/account_password_policy.rb +1 -1
- data/lib/aws-sdk-iam/client.rb +226 -183
- data/lib/aws-sdk-iam/current_user.rb +5 -5
- data/lib/aws-sdk-iam/group.rb +6 -6
- data/lib/aws-sdk-iam/instance_profile.rb +3 -3
- data/lib/aws-sdk-iam/mfa_device.rb +2 -2
- data/lib/aws-sdk-iam/policy.rb +4 -4
- data/lib/aws-sdk-iam/resource.rb +12 -12
- data/lib/aws-sdk-iam/role.rb +6 -6
- data/lib/aws-sdk-iam/types.rb +123 -123
- data/lib/aws-sdk-iam/user.rb +11 -11
- metadata +2 -2
@@ -25,7 +25,7 @@ module Aws::IAM
|
|
25
25
|
#
|
26
26
|
#
|
27
27
|
#
|
28
|
-
# [1]:
|
28
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
29
29
|
# @return [String]
|
30
30
|
def path
|
31
31
|
data[:path]
|
@@ -43,7 +43,7 @@ module Aws::IAM
|
|
43
43
|
#
|
44
44
|
#
|
45
45
|
#
|
46
|
-
# [1]:
|
46
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
47
47
|
# @return [String]
|
48
48
|
def user_id
|
49
49
|
data[:user_id]
|
@@ -55,7 +55,7 @@ module Aws::IAM
|
|
55
55
|
#
|
56
56
|
#
|
57
57
|
#
|
58
|
-
# [1]:
|
58
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
59
59
|
# @return [String]
|
60
60
|
def arn
|
61
61
|
data[:arn]
|
@@ -95,7 +95,7 @@ module Aws::IAM
|
|
95
95
|
#
|
96
96
|
#
|
97
97
|
# [1]: http://www.iso.org/iso/iso8601
|
98
|
-
# [2]:
|
98
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
99
99
|
# @return [Time]
|
100
100
|
def password_last_used
|
101
101
|
data[:password_last_used]
|
@@ -119,7 +119,7 @@ module Aws::IAM
|
|
119
119
|
#
|
120
120
|
#
|
121
121
|
#
|
122
|
-
# [1]:
|
122
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
123
123
|
# @return [Array<Types::Tag>]
|
124
124
|
def tags
|
125
125
|
data[:tags]
|
data/lib/aws-sdk-iam/group.rb
CHANGED
@@ -36,7 +36,7 @@ module Aws::IAM
|
|
36
36
|
#
|
37
37
|
#
|
38
38
|
#
|
39
|
-
# [1]:
|
39
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
40
40
|
# @return [String]
|
41
41
|
def path
|
42
42
|
data[:path]
|
@@ -48,7 +48,7 @@ module Aws::IAM
|
|
48
48
|
#
|
49
49
|
#
|
50
50
|
#
|
51
|
-
# [1]:
|
51
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
52
52
|
# @return [String]
|
53
53
|
def group_id
|
54
54
|
data[:group_id]
|
@@ -60,7 +60,7 @@ module Aws::IAM
|
|
60
60
|
#
|
61
61
|
#
|
62
62
|
#
|
63
|
-
# [1]:
|
63
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
64
64
|
# @return [String]
|
65
65
|
def arn
|
66
66
|
data[:arn]
|
@@ -247,7 +247,7 @@ module Aws::IAM
|
|
247
247
|
#
|
248
248
|
#
|
249
249
|
#
|
250
|
-
# [1]:
|
250
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
251
251
|
# @return [EmptyStructure]
|
252
252
|
def attach_policy(options = {})
|
253
253
|
options = options.merge(group_name: @name)
|
@@ -277,7 +277,7 @@ module Aws::IAM
|
|
277
277
|
#
|
278
278
|
#
|
279
279
|
#
|
280
|
-
# [1]:
|
280
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
281
281
|
# [2]: http://wikipedia.org/wiki/regex
|
282
282
|
# @return [Group]
|
283
283
|
def create(options = {})
|
@@ -362,7 +362,7 @@ module Aws::IAM
|
|
362
362
|
#
|
363
363
|
#
|
364
364
|
#
|
365
|
-
# [1]:
|
365
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
366
366
|
# @return [EmptyStructure]
|
367
367
|
def detach_policy(options = {})
|
368
368
|
options = options.merge(group_name: @name)
|
@@ -36,7 +36,7 @@ module Aws::IAM
|
|
36
36
|
#
|
37
37
|
#
|
38
38
|
#
|
39
|
-
# [1]:
|
39
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
40
40
|
# @return [String]
|
41
41
|
def path
|
42
42
|
data[:path]
|
@@ -48,7 +48,7 @@ module Aws::IAM
|
|
48
48
|
#
|
49
49
|
#
|
50
50
|
#
|
51
|
-
# [1]:
|
51
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
52
52
|
# @return [String]
|
53
53
|
def instance_profile_id
|
54
54
|
data[:instance_profile_id]
|
@@ -60,7 +60,7 @@ module Aws::IAM
|
|
60
60
|
#
|
61
61
|
#
|
62
62
|
#
|
63
|
-
# [1]:
|
63
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
64
64
|
# @return [String]
|
65
65
|
def arn
|
66
66
|
data[:arn]
|
@@ -192,7 +192,7 @@ module Aws::IAM
|
|
192
192
|
#
|
193
193
|
#
|
194
194
|
#
|
195
|
-
# [1]:
|
195
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
196
196
|
# @option options [required, String] :authentication_code_2
|
197
197
|
# A subsequent authentication code emitted by the device.
|
198
198
|
#
|
@@ -207,7 +207,7 @@ module Aws::IAM
|
|
207
207
|
#
|
208
208
|
#
|
209
209
|
#
|
210
|
-
# [1]:
|
210
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
211
211
|
# @return [EmptyStructure]
|
212
212
|
def associate(options = {})
|
213
213
|
options = options.merge(
|
data/lib/aws-sdk-iam/policy.rb
CHANGED
@@ -43,7 +43,7 @@ module Aws::IAM
|
|
43
43
|
#
|
44
44
|
#
|
45
45
|
#
|
46
|
-
# [1]:
|
46
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
47
47
|
# @return [String]
|
48
48
|
def policy_id
|
49
49
|
data[:policy_id]
|
@@ -56,7 +56,7 @@ module Aws::IAM
|
|
56
56
|
#
|
57
57
|
#
|
58
58
|
#
|
59
|
-
# [1]:
|
59
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
60
60
|
# @return [String]
|
61
61
|
def path
|
62
62
|
data[:path]
|
@@ -84,7 +84,7 @@ module Aws::IAM
|
|
84
84
|
#
|
85
85
|
#
|
86
86
|
#
|
87
|
-
# [1]:
|
87
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
88
88
|
# @return [Integer]
|
89
89
|
def permissions_boundary_usage_count
|
90
90
|
data[:permissions_boundary_usage_count]
|
@@ -378,7 +378,7 @@ module Aws::IAM
|
|
378
378
|
#
|
379
379
|
#
|
380
380
|
#
|
381
|
-
# [1]:
|
381
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
382
382
|
# @return [PolicyVersion]
|
383
383
|
def create_version(options = {})
|
384
384
|
options = options.merge(policy_arn: @arn)
|
data/lib/aws-sdk-iam/resource.rb
CHANGED
@@ -136,7 +136,7 @@ module Aws::IAM
|
|
136
136
|
#
|
137
137
|
#
|
138
138
|
#
|
139
|
-
# [1]:
|
139
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/HowToPwdIAMUser.html
|
140
140
|
# @option options [Integer] :max_password_age
|
141
141
|
# The number of days that an IAM user password is valid.
|
142
142
|
#
|
@@ -188,7 +188,7 @@ module Aws::IAM
|
|
188
188
|
#
|
189
189
|
#
|
190
190
|
#
|
191
|
-
# [1]:
|
191
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
192
192
|
# [2]: http://wikipedia.org/wiki/regex
|
193
193
|
# @option options [required, String] :group_name
|
194
194
|
# The name of the group to create. Do not include the path in this
|
@@ -248,7 +248,7 @@ module Aws::IAM
|
|
248
248
|
#
|
249
249
|
#
|
250
250
|
#
|
251
|
-
# [1]:
|
251
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
252
252
|
# [2]: http://wikipedia.org/wiki/regex
|
253
253
|
# @return [InstanceProfile]
|
254
254
|
def create_instance_profile(options = {})
|
@@ -298,7 +298,7 @@ module Aws::IAM
|
|
298
298
|
#
|
299
299
|
#
|
300
300
|
#
|
301
|
-
# [1]:
|
301
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
302
302
|
# [2]: http://wikipedia.org/wiki/regex
|
303
303
|
# @option options [required, String] :policy_document
|
304
304
|
# The JSON policy document that you want to use as the content for the
|
@@ -370,7 +370,7 @@ module Aws::IAM
|
|
370
370
|
#
|
371
371
|
#
|
372
372
|
#
|
373
|
-
# [1]:
|
373
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
374
374
|
# [2]: http://wikipedia.org/wiki/regex
|
375
375
|
# @option options [required, String] :role_name
|
376
376
|
# The name of the role to create.
|
@@ -426,7 +426,7 @@ module Aws::IAM
|
|
426
426
|
#
|
427
427
|
#
|
428
428
|
#
|
429
|
-
# [1]:
|
429
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
|
430
430
|
# @option options [String] :permissions_boundary
|
431
431
|
# The ARN of the policy that is used to set the permissions boundary for
|
432
432
|
# the role.
|
@@ -444,7 +444,7 @@ module Aws::IAM
|
|
444
444
|
#
|
445
445
|
#
|
446
446
|
#
|
447
|
-
# [1]:
|
447
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
448
448
|
# @return [Role]
|
449
449
|
def create_role(options = {})
|
450
450
|
resp = @client.create_role(options)
|
@@ -475,7 +475,7 @@ module Aws::IAM
|
|
475
475
|
#
|
476
476
|
#
|
477
477
|
#
|
478
|
-
# [1]:
|
478
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html
|
479
479
|
# @option options [required, String] :name
|
480
480
|
# The name of the provider to create.
|
481
481
|
#
|
@@ -527,7 +527,7 @@ module Aws::IAM
|
|
527
527
|
#
|
528
528
|
#
|
529
529
|
#
|
530
|
-
# [1]:
|
530
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
531
531
|
# [2]: http://wikipedia.org/wiki/regex
|
532
532
|
# @option options [required, String] :server_certificate_name
|
533
533
|
# The name for the server certificate. Do not include the path in this
|
@@ -681,7 +681,7 @@ module Aws::IAM
|
|
681
681
|
#
|
682
682
|
#
|
683
683
|
#
|
684
|
-
# [1]:
|
684
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
685
685
|
# [2]: http://wikipedia.org/wiki/regex
|
686
686
|
# @option options [required, String] :user_name
|
687
687
|
# The name of the user to create.
|
@@ -712,7 +712,7 @@ module Aws::IAM
|
|
712
712
|
#
|
713
713
|
#
|
714
714
|
#
|
715
|
-
# [1]:
|
715
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
716
716
|
# @return [User]
|
717
717
|
def create_user(options = {})
|
718
718
|
resp = @client.create_user(options)
|
@@ -746,7 +746,7 @@ module Aws::IAM
|
|
746
746
|
#
|
747
747
|
#
|
748
748
|
#
|
749
|
-
# [1]:
|
749
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
750
750
|
# [2]: http://wikipedia.org/wiki/regex
|
751
751
|
# @option options [required, String] :virtual_mfa_device_name
|
752
752
|
# The name of the virtual MFA device. Use with path to uniquely identify
|
data/lib/aws-sdk-iam/role.rb
CHANGED
@@ -36,7 +36,7 @@ module Aws::IAM
|
|
36
36
|
#
|
37
37
|
#
|
38
38
|
#
|
39
|
-
# [1]:
|
39
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
40
40
|
# @return [String]
|
41
41
|
def path
|
42
42
|
data[:path]
|
@@ -48,7 +48,7 @@ module Aws::IAM
|
|
48
48
|
#
|
49
49
|
#
|
50
50
|
#
|
51
|
-
# [1]:
|
51
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
52
52
|
# @return [String]
|
53
53
|
def role_id
|
54
54
|
data[:role_id]
|
@@ -60,7 +60,7 @@ module Aws::IAM
|
|
60
60
|
#
|
61
61
|
#
|
62
62
|
#
|
63
|
-
# [1]:
|
63
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
64
64
|
# @return [String]
|
65
65
|
def arn
|
66
66
|
data[:arn]
|
@@ -116,7 +116,7 @@ module Aws::IAM
|
|
116
116
|
#
|
117
117
|
#
|
118
118
|
#
|
119
|
-
# [1]:
|
119
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
120
120
|
# @return [Array<Types::Tag>]
|
121
121
|
def tags
|
122
122
|
data[:tags]
|
@@ -268,7 +268,7 @@ module Aws::IAM
|
|
268
268
|
#
|
269
269
|
#
|
270
270
|
#
|
271
|
-
# [1]:
|
271
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
272
272
|
# @return [EmptyStructure]
|
273
273
|
def attach_policy(options = {})
|
274
274
|
options = options.merge(role_name: @name)
|
@@ -301,7 +301,7 @@ module Aws::IAM
|
|
301
301
|
#
|
302
302
|
#
|
303
303
|
#
|
304
|
-
# [1]:
|
304
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
305
305
|
# @return [EmptyStructure]
|
306
306
|
def detach_policy(options = {})
|
307
307
|
options = options.merge(role_name: @name)
|
data/lib/aws-sdk-iam/types.rb
CHANGED
@@ -104,7 +104,7 @@ module Aws::IAM
|
|
104
104
|
#
|
105
105
|
#
|
106
106
|
#
|
107
|
-
# [1]:
|
107
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
108
108
|
# @return [String]
|
109
109
|
#
|
110
110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AccessKeyLastUsed AWS API Documentation
|
@@ -290,7 +290,7 @@ module Aws::IAM
|
|
290
290
|
#
|
291
291
|
#
|
292
292
|
#
|
293
|
-
# [1]:
|
293
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
294
294
|
# @return [String]
|
295
295
|
#
|
296
296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachGroupPolicyRequest AWS API Documentation
|
@@ -331,7 +331,7 @@ module Aws::IAM
|
|
331
331
|
#
|
332
332
|
#
|
333
333
|
#
|
334
|
-
# [1]:
|
334
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
335
335
|
# @return [String]
|
336
336
|
#
|
337
337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachRolePolicyRequest AWS API Documentation
|
@@ -372,7 +372,7 @@ module Aws::IAM
|
|
372
372
|
#
|
373
373
|
#
|
374
374
|
#
|
375
|
-
# [1]:
|
375
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
376
376
|
# @return [String]
|
377
377
|
#
|
378
378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachUserPolicyRequest AWS API Documentation
|
@@ -393,7 +393,7 @@ module Aws::IAM
|
|
393
393
|
#
|
394
394
|
#
|
395
395
|
#
|
396
|
-
# [1]:
|
396
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
397
397
|
#
|
398
398
|
# @!attribute [rw] permissions_boundary_type
|
399
399
|
# The permissions boundary usage type that indicates what type of IAM
|
@@ -427,7 +427,7 @@ module Aws::IAM
|
|
427
427
|
#
|
428
428
|
#
|
429
429
|
#
|
430
|
-
# [1]:
|
430
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
431
431
|
#
|
432
432
|
# @!attribute [rw] policy_name
|
433
433
|
# The friendly name of the attached policy.
|
@@ -442,7 +442,7 @@ module Aws::IAM
|
|
442
442
|
#
|
443
443
|
#
|
444
444
|
#
|
445
|
-
# [1]:
|
445
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
446
446
|
# @return [String]
|
447
447
|
#
|
448
448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachedPolicy AWS API Documentation
|
@@ -626,7 +626,7 @@ module Aws::IAM
|
|
626
626
|
#
|
627
627
|
#
|
628
628
|
#
|
629
|
-
# [1]:
|
629
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
630
630
|
# [2]: http://wikipedia.org/wiki/regex
|
631
631
|
# @return [String]
|
632
632
|
#
|
@@ -704,7 +704,7 @@ module Aws::IAM
|
|
704
704
|
#
|
705
705
|
#
|
706
706
|
#
|
707
|
-
# [1]:
|
707
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
708
708
|
# [2]: http://wikipedia.org/wiki/regex
|
709
709
|
# @return [String]
|
710
710
|
#
|
@@ -861,7 +861,7 @@ module Aws::IAM
|
|
861
861
|
#
|
862
862
|
#
|
863
863
|
#
|
864
|
-
# [1]:
|
864
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html
|
865
865
|
# @return [Array<String>]
|
866
866
|
#
|
867
867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateOpenIDConnectProviderRequest AWS API Documentation
|
@@ -930,7 +930,7 @@ module Aws::IAM
|
|
930
930
|
#
|
931
931
|
#
|
932
932
|
#
|
933
|
-
# [1]:
|
933
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
934
934
|
# [2]: http://wikipedia.org/wiki/regex
|
935
935
|
# @return [String]
|
936
936
|
#
|
@@ -1007,7 +1007,7 @@ module Aws::IAM
|
|
1007
1007
|
#
|
1008
1008
|
#
|
1009
1009
|
#
|
1010
|
-
# [1]:
|
1010
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1011
1011
|
# @return [String]
|
1012
1012
|
#
|
1013
1013
|
# @!attribute [rw] policy_document
|
@@ -1044,7 +1044,7 @@ module Aws::IAM
|
|
1044
1044
|
#
|
1045
1045
|
#
|
1046
1046
|
#
|
1047
|
-
# [1]:
|
1047
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1048
1048
|
# @return [Boolean]
|
1049
1049
|
#
|
1050
1050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreatePolicyVersionRequest AWS API Documentation
|
@@ -1103,7 +1103,7 @@ module Aws::IAM
|
|
1103
1103
|
#
|
1104
1104
|
#
|
1105
1105
|
#
|
1106
|
-
# [1]:
|
1106
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1107
1107
|
# [2]: http://wikipedia.org/wiki/regex
|
1108
1108
|
# @return [String]
|
1109
1109
|
#
|
@@ -1168,7 +1168,7 @@ module Aws::IAM
|
|
1168
1168
|
#
|
1169
1169
|
#
|
1170
1170
|
#
|
1171
|
-
# [1]:
|
1171
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
|
1172
1172
|
# @return [Integer]
|
1173
1173
|
#
|
1174
1174
|
# @!attribute [rw] permissions_boundary
|
@@ -1190,7 +1190,7 @@ module Aws::IAM
|
|
1190
1190
|
#
|
1191
1191
|
#
|
1192
1192
|
#
|
1193
|
-
# [1]:
|
1193
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1194
1194
|
# @return [Array<Types::Tag>]
|
1195
1195
|
#
|
1196
1196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateRoleRequest AWS API Documentation
|
@@ -1240,7 +1240,7 @@ module Aws::IAM
|
|
1240
1240
|
#
|
1241
1241
|
#
|
1242
1242
|
#
|
1243
|
-
# [1]:
|
1243
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html
|
1244
1244
|
# @return [String]
|
1245
1245
|
#
|
1246
1246
|
# @!attribute [rw] name
|
@@ -1301,7 +1301,7 @@ module Aws::IAM
|
|
1301
1301
|
#
|
1302
1302
|
#
|
1303
1303
|
#
|
1304
|
-
# [1]:
|
1304
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-services-that-work-with-iam.html
|
1305
1305
|
# @return [String]
|
1306
1306
|
#
|
1307
1307
|
# @!attribute [rw] description
|
@@ -1426,7 +1426,7 @@ module Aws::IAM
|
|
1426
1426
|
#
|
1427
1427
|
#
|
1428
1428
|
#
|
1429
|
-
# [1]:
|
1429
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1430
1430
|
# [2]: http://wikipedia.org/wiki/regex
|
1431
1431
|
# @return [String]
|
1432
1432
|
#
|
@@ -1464,7 +1464,7 @@ module Aws::IAM
|
|
1464
1464
|
#
|
1465
1465
|
#
|
1466
1466
|
#
|
1467
|
-
# [1]:
|
1467
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1468
1468
|
# @return [Array<Types::Tag>]
|
1469
1469
|
#
|
1470
1470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateUserRequest AWS API Documentation
|
@@ -1514,7 +1514,7 @@ module Aws::IAM
|
|
1514
1514
|
#
|
1515
1515
|
#
|
1516
1516
|
#
|
1517
|
-
# [1]:
|
1517
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1518
1518
|
# [2]: http://wikipedia.org/wiki/regex
|
1519
1519
|
# @return [String]
|
1520
1520
|
#
|
@@ -1825,7 +1825,7 @@ module Aws::IAM
|
|
1825
1825
|
#
|
1826
1826
|
#
|
1827
1827
|
#
|
1828
|
-
# [1]:
|
1828
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1829
1829
|
# @return [String]
|
1830
1830
|
#
|
1831
1831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeletePolicyRequest AWS API Documentation
|
@@ -1852,7 +1852,7 @@ module Aws::IAM
|
|
1852
1852
|
#
|
1853
1853
|
#
|
1854
1854
|
#
|
1855
|
-
# [1]:
|
1855
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1856
1856
|
# @return [String]
|
1857
1857
|
#
|
1858
1858
|
# @!attribute [rw] version_id
|
@@ -1869,7 +1869,7 @@ module Aws::IAM
|
|
1869
1869
|
#
|
1870
1870
|
#
|
1871
1871
|
# [1]: http://wikipedia.org/wiki/regex
|
1872
|
-
# [2]:
|
1872
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1873
1873
|
# @return [String]
|
1874
1874
|
#
|
1875
1875
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeletePolicyVersionRequest AWS API Documentation
|
@@ -2346,7 +2346,7 @@ module Aws::IAM
|
|
2346
2346
|
#
|
2347
2347
|
#
|
2348
2348
|
#
|
2349
|
-
# [1]:
|
2349
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2350
2350
|
# @return [String]
|
2351
2351
|
#
|
2352
2352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachGroupPolicyRequest AWS API Documentation
|
@@ -2387,7 +2387,7 @@ module Aws::IAM
|
|
2387
2387
|
#
|
2388
2388
|
#
|
2389
2389
|
#
|
2390
|
-
# [1]:
|
2390
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2391
2391
|
# @return [String]
|
2392
2392
|
#
|
2393
2393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachRolePolicyRequest AWS API Documentation
|
@@ -2428,7 +2428,7 @@ module Aws::IAM
|
|
2428
2428
|
#
|
2429
2429
|
#
|
2430
2430
|
#
|
2431
|
-
# [1]:
|
2431
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2432
2432
|
# @return [String]
|
2433
2433
|
#
|
2434
2434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachUserPolicyRequest AWS API Documentation
|
@@ -2490,7 +2490,7 @@ module Aws::IAM
|
|
2490
2490
|
#
|
2491
2491
|
#
|
2492
2492
|
#
|
2493
|
-
# [1]:
|
2493
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
2494
2494
|
# @return [String]
|
2495
2495
|
#
|
2496
2496
|
# @!attribute [rw] authentication_code_2
|
@@ -2507,7 +2507,7 @@ module Aws::IAM
|
|
2507
2507
|
#
|
2508
2508
|
#
|
2509
2509
|
#
|
2510
|
-
# [1]:
|
2510
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_sync.html
|
2511
2511
|
# @return [String]
|
2512
2512
|
#
|
2513
2513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EnableMFADeviceRequest AWS API Documentation
|
@@ -2543,7 +2543,7 @@ module Aws::IAM
|
|
2543
2543
|
#
|
2544
2544
|
#
|
2545
2545
|
# [1]: http://www.iso.org/iso/iso8601
|
2546
|
-
# [2]:
|
2546
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
2547
2547
|
# @return [Time]
|
2548
2548
|
#
|
2549
2549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EntityDetails AWS API Documentation
|
@@ -2567,7 +2567,7 @@ module Aws::IAM
|
|
2567
2567
|
#
|
2568
2568
|
#
|
2569
2569
|
#
|
2570
|
-
# [1]:
|
2570
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2571
2571
|
# @return [String]
|
2572
2572
|
#
|
2573
2573
|
# @!attribute [rw] name
|
@@ -2588,7 +2588,7 @@ module Aws::IAM
|
|
2588
2588
|
#
|
2589
2589
|
#
|
2590
2590
|
#
|
2591
|
-
# [1]:
|
2591
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
2592
2592
|
# @return [String]
|
2593
2593
|
#
|
2594
2594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EntityInfo AWS API Documentation
|
@@ -2679,7 +2679,7 @@ module Aws::IAM
|
|
2679
2679
|
#
|
2680
2680
|
#
|
2681
2681
|
#
|
2682
|
-
# [1]:
|
2682
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_compare-resource-policies.html
|
2683
2683
|
# @return [Hash<String,String>]
|
2684
2684
|
#
|
2685
2685
|
# @!attribute [rw] resource_specific_results
|
@@ -2996,7 +2996,7 @@ module Aws::IAM
|
|
2996
2996
|
#
|
2997
2997
|
#
|
2998
2998
|
#
|
2999
|
-
# [1]:
|
2999
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3000
3000
|
# @return [String]
|
3001
3001
|
#
|
3002
3002
|
# @!attribute [rw] policy_input_list
|
@@ -3306,7 +3306,7 @@ module Aws::IAM
|
|
3306
3306
|
#
|
3307
3307
|
#
|
3308
3308
|
#
|
3309
|
-
# [1]:
|
3309
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3310
3310
|
# @return [String]
|
3311
3311
|
#
|
3312
3312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOpenIDConnectProviderRequest AWS API Documentation
|
@@ -3367,7 +3367,7 @@ module Aws::IAM
|
|
3367
3367
|
#
|
3368
3368
|
#
|
3369
3369
|
#
|
3370
|
-
# [1]:
|
3370
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3371
3371
|
# @return [String]
|
3372
3372
|
#
|
3373
3373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetPolicyRequest AWS API Documentation
|
@@ -3407,7 +3407,7 @@ module Aws::IAM
|
|
3407
3407
|
#
|
3408
3408
|
#
|
3409
3409
|
#
|
3410
|
-
# [1]:
|
3410
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3411
3411
|
# @return [String]
|
3412
3412
|
#
|
3413
3413
|
# @!attribute [rw] version_id
|
@@ -3565,7 +3565,7 @@ module Aws::IAM
|
|
3565
3565
|
#
|
3566
3566
|
#
|
3567
3567
|
#
|
3568
|
-
# [1]:
|
3568
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
3569
3569
|
# @return [String]
|
3570
3570
|
#
|
3571
3571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetSAMLProviderRequest AWS API Documentation
|
@@ -3839,8 +3839,8 @@ module Aws::IAM
|
|
3839
3839
|
#
|
3840
3840
|
#
|
3841
3841
|
#
|
3842
|
-
# [1]:
|
3843
|
-
# [2]:
|
3842
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
3843
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
3844
3844
|
# @return [String]
|
3845
3845
|
#
|
3846
3846
|
# @!attribute [rw] max_items
|
@@ -4090,8 +4090,8 @@ module Aws::IAM
|
|
4090
4090
|
#
|
4091
4091
|
#
|
4092
4092
|
#
|
4093
|
-
# [1]:
|
4094
|
-
# [2]:
|
4093
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_finding-unused.html
|
4094
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html
|
4095
4095
|
# @return [Types::User]
|
4096
4096
|
#
|
4097
4097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserResponse AWS API Documentation
|
@@ -4118,7 +4118,7 @@ module Aws::IAM
|
|
4118
4118
|
#
|
4119
4119
|
#
|
4120
4120
|
#
|
4121
|
-
# [1]:
|
4121
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4122
4122
|
# @return [String]
|
4123
4123
|
#
|
4124
4124
|
# @!attribute [rw] group_name
|
@@ -4132,7 +4132,7 @@ module Aws::IAM
|
|
4132
4132
|
#
|
4133
4133
|
#
|
4134
4134
|
#
|
4135
|
-
# [1]:
|
4135
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4136
4136
|
# @return [String]
|
4137
4137
|
#
|
4138
4138
|
# @!attribute [rw] arn
|
@@ -4142,7 +4142,7 @@ module Aws::IAM
|
|
4142
4142
|
#
|
4143
4143
|
#
|
4144
4144
|
#
|
4145
|
-
# [1]:
|
4145
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4146
4146
|
# @return [String]
|
4147
4147
|
#
|
4148
4148
|
# @!attribute [rw] create_date
|
@@ -4177,7 +4177,7 @@ module Aws::IAM
|
|
4177
4177
|
#
|
4178
4178
|
#
|
4179
4179
|
#
|
4180
|
-
# [1]:
|
4180
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4181
4181
|
# @return [String]
|
4182
4182
|
#
|
4183
4183
|
# @!attribute [rw] group_name
|
@@ -4191,7 +4191,7 @@ module Aws::IAM
|
|
4191
4191
|
#
|
4192
4192
|
#
|
4193
4193
|
#
|
4194
|
-
# [1]:
|
4194
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4195
4195
|
# @return [String]
|
4196
4196
|
#
|
4197
4197
|
# @!attribute [rw] arn
|
@@ -4203,7 +4203,7 @@ module Aws::IAM
|
|
4203
4203
|
#
|
4204
4204
|
#
|
4205
4205
|
#
|
4206
|
-
# [1]:
|
4206
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4207
4207
|
# @return [String]
|
4208
4208
|
#
|
4209
4209
|
# @!attribute [rw] create_date
|
@@ -4255,7 +4255,7 @@ module Aws::IAM
|
|
4255
4255
|
#
|
4256
4256
|
#
|
4257
4257
|
#
|
4258
|
-
# [1]:
|
4258
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4259
4259
|
# @return [String]
|
4260
4260
|
#
|
4261
4261
|
# @!attribute [rw] instance_profile_name
|
@@ -4269,7 +4269,7 @@ module Aws::IAM
|
|
4269
4269
|
#
|
4270
4270
|
#
|
4271
4271
|
#
|
4272
|
-
# [1]:
|
4272
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4273
4273
|
# @return [String]
|
4274
4274
|
#
|
4275
4275
|
# @!attribute [rw] arn
|
@@ -4279,7 +4279,7 @@ module Aws::IAM
|
|
4279
4279
|
#
|
4280
4280
|
#
|
4281
4281
|
#
|
4282
|
-
# [1]:
|
4282
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4283
4283
|
# @return [String]
|
4284
4284
|
#
|
4285
4285
|
# @!attribute [rw] create_date
|
@@ -4782,7 +4782,7 @@ module Aws::IAM
|
|
4782
4782
|
#
|
4783
4783
|
#
|
4784
4784
|
#
|
4785
|
-
# [1]:
|
4785
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4786
4786
|
# @return [String]
|
4787
4787
|
#
|
4788
4788
|
# @!attribute [rw] entity_filter
|
@@ -5451,8 +5451,8 @@ module Aws::IAM
|
|
5451
5451
|
#
|
5452
5452
|
#
|
5453
5453
|
#
|
5454
|
-
# [1]:
|
5455
|
-
# [2]:
|
5454
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
5455
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
5456
5456
|
# @return [String]
|
5457
5457
|
#
|
5458
5458
|
# @!attribute [rw] policies
|
@@ -5503,8 +5503,8 @@ module Aws::IAM
|
|
5503
5503
|
#
|
5504
5504
|
#
|
5505
5505
|
#
|
5506
|
-
# [1]:
|
5507
|
-
# [2]:
|
5506
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
5507
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
5508
5508
|
# @return [Array<String>]
|
5509
5509
|
#
|
5510
5510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesGrantingServiceAccessRequest AWS API Documentation
|
@@ -5685,7 +5685,7 @@ module Aws::IAM
|
|
5685
5685
|
#
|
5686
5686
|
#
|
5687
5687
|
#
|
5688
|
-
# [1]:
|
5688
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
5689
5689
|
# @return [String]
|
5690
5690
|
#
|
5691
5691
|
# @!attribute [rw] marker
|
@@ -5727,7 +5727,7 @@ module Aws::IAM
|
|
5727
5727
|
#
|
5728
5728
|
#
|
5729
5729
|
#
|
5730
|
-
# [1]:
|
5730
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
5731
5731
|
# @return [Array<Types::PolicyVersion>]
|
5732
5732
|
#
|
5733
5733
|
# @!attribute [rw] is_truncated
|
@@ -6728,7 +6728,7 @@ module Aws::IAM
|
|
6728
6728
|
#
|
6729
6729
|
#
|
6730
6730
|
#
|
6731
|
-
# [1]:
|
6731
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
6732
6732
|
#
|
6733
6733
|
# @!attribute [rw] policy_name
|
6734
6734
|
# The friendly name (not ARN) identifying the policy.
|
@@ -6742,7 +6742,7 @@ module Aws::IAM
|
|
6742
6742
|
#
|
6743
6743
|
#
|
6744
6744
|
#
|
6745
|
-
# [1]:
|
6745
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
6746
6746
|
# @return [String]
|
6747
6747
|
#
|
6748
6748
|
# @!attribute [rw] arn
|
@@ -6754,7 +6754,7 @@ module Aws::IAM
|
|
6754
6754
|
#
|
6755
6755
|
#
|
6756
6756
|
#
|
6757
|
-
# [1]:
|
6757
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
6758
6758
|
# @return [String]
|
6759
6759
|
#
|
6760
6760
|
# @!attribute [rw] path
|
@@ -6765,7 +6765,7 @@ module Aws::IAM
|
|
6765
6765
|
#
|
6766
6766
|
#
|
6767
6767
|
#
|
6768
|
-
# [1]:
|
6768
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
6769
6769
|
# @return [String]
|
6770
6770
|
#
|
6771
6771
|
# @!attribute [rw] default_version_id
|
@@ -6777,7 +6777,7 @@ module Aws::IAM
|
|
6777
6777
|
#
|
6778
6778
|
#
|
6779
6779
|
#
|
6780
|
-
# [1]:
|
6780
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
6781
6781
|
# @return [String]
|
6782
6782
|
#
|
6783
6783
|
# @!attribute [rw] attachment_count
|
@@ -6794,7 +6794,7 @@ module Aws::IAM
|
|
6794
6794
|
#
|
6795
6795
|
#
|
6796
6796
|
#
|
6797
|
-
# [1]:
|
6797
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
6798
6798
|
# @return [Integer]
|
6799
6799
|
#
|
6800
6800
|
# @!attribute [rw] is_attachable
|
@@ -6863,7 +6863,7 @@ module Aws::IAM
|
|
6863
6863
|
#
|
6864
6864
|
#
|
6865
6865
|
#
|
6866
|
-
# [1]:
|
6866
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
6867
6867
|
# @return [String]
|
6868
6868
|
#
|
6869
6869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/OpenIDConnectProviderListEntry AWS API Documentation
|
@@ -6967,7 +6967,7 @@ module Aws::IAM
|
|
6967
6967
|
#
|
6968
6968
|
#
|
6969
6969
|
#
|
6970
|
-
# [1]:
|
6970
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
6971
6971
|
#
|
6972
6972
|
# @!attribute [rw] policy_name
|
6973
6973
|
# The friendly name (not ARN) identifying the policy.
|
@@ -6981,7 +6981,7 @@ module Aws::IAM
|
|
6981
6981
|
#
|
6982
6982
|
#
|
6983
6983
|
#
|
6984
|
-
# [1]:
|
6984
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
6985
6985
|
# @return [String]
|
6986
6986
|
#
|
6987
6987
|
# @!attribute [rw] arn
|
@@ -6993,7 +6993,7 @@ module Aws::IAM
|
|
6993
6993
|
#
|
6994
6994
|
#
|
6995
6995
|
#
|
6996
|
-
# [1]:
|
6996
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
6997
6997
|
# @return [String]
|
6998
6998
|
#
|
6999
6999
|
# @!attribute [rw] path
|
@@ -7004,7 +7004,7 @@ module Aws::IAM
|
|
7004
7004
|
#
|
7005
7005
|
#
|
7006
7006
|
#
|
7007
|
-
# [1]:
|
7007
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
7008
7008
|
# @return [String]
|
7009
7009
|
#
|
7010
7010
|
# @!attribute [rw] default_version_id
|
@@ -7026,7 +7026,7 @@ module Aws::IAM
|
|
7026
7026
|
#
|
7027
7027
|
#
|
7028
7028
|
#
|
7029
|
-
# [1]:
|
7029
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
7030
7030
|
# @return [Integer]
|
7031
7031
|
#
|
7032
7032
|
# @!attribute [rw] is_attachable
|
@@ -7119,7 +7119,7 @@ module Aws::IAM
|
|
7119
7119
|
#
|
7120
7120
|
#
|
7121
7121
|
#
|
7122
|
-
# [1]:
|
7122
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7123
7123
|
# @return [String]
|
7124
7124
|
#
|
7125
7125
|
# @!attribute [rw] policy_arn
|
@@ -7131,7 +7131,7 @@ module Aws::IAM
|
|
7131
7131
|
#
|
7132
7132
|
#
|
7133
7133
|
#
|
7134
|
-
# [1]:
|
7134
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
7135
7135
|
# @return [String]
|
7136
7136
|
#
|
7137
7137
|
# @!attribute [rw] entity_type
|
@@ -7144,7 +7144,7 @@ module Aws::IAM
|
|
7144
7144
|
#
|
7145
7145
|
#
|
7146
7146
|
#
|
7147
|
-
# [1]:
|
7147
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7148
7148
|
# @return [String]
|
7149
7149
|
#
|
7150
7150
|
# @!attribute [rw] entity_name
|
@@ -7157,7 +7157,7 @@ module Aws::IAM
|
|
7157
7157
|
#
|
7158
7158
|
#
|
7159
7159
|
#
|
7160
|
-
# [1]:
|
7160
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7161
7161
|
# @return [String]
|
7162
7162
|
#
|
7163
7163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyGrantingServiceAccess AWS API Documentation
|
@@ -7182,7 +7182,7 @@ module Aws::IAM
|
|
7182
7182
|
#
|
7183
7183
|
#
|
7184
7184
|
#
|
7185
|
-
# [1]:
|
7185
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7186
7186
|
#
|
7187
7187
|
# @!attribute [rw] group_name
|
7188
7188
|
# The name (friendly name, not ARN) identifying the group.
|
@@ -7195,7 +7195,7 @@ module Aws::IAM
|
|
7195
7195
|
#
|
7196
7196
|
#
|
7197
7197
|
#
|
7198
|
-
# [1]:
|
7198
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
7199
7199
|
# @return [String]
|
7200
7200
|
#
|
7201
7201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyGroup AWS API Documentation
|
@@ -7217,7 +7217,7 @@ module Aws::IAM
|
|
7217
7217
|
#
|
7218
7218
|
#
|
7219
7219
|
#
|
7220
|
-
# [1]:
|
7220
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7221
7221
|
#
|
7222
7222
|
# @!attribute [rw] role_name
|
7223
7223
|
# The name (friendly name, not ARN) identifying the role.
|
@@ -7230,7 +7230,7 @@ module Aws::IAM
|
|
7230
7230
|
#
|
7231
7231
|
#
|
7232
7232
|
#
|
7233
|
-
# [1]:
|
7233
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
7234
7234
|
# @return [String]
|
7235
7235
|
#
|
7236
7236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyRole AWS API Documentation
|
@@ -7252,7 +7252,7 @@ module Aws::IAM
|
|
7252
7252
|
#
|
7253
7253
|
#
|
7254
7254
|
#
|
7255
|
-
# [1]:
|
7255
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7256
7256
|
#
|
7257
7257
|
# @!attribute [rw] user_name
|
7258
7258
|
# The name (friendly name, not ARN) identifying the user.
|
@@ -7265,7 +7265,7 @@ module Aws::IAM
|
|
7265
7265
|
#
|
7266
7266
|
#
|
7267
7267
|
#
|
7268
|
-
# [1]:
|
7268
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
7269
7269
|
# @return [String]
|
7270
7270
|
#
|
7271
7271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyUser AWS API Documentation
|
@@ -7287,7 +7287,7 @@ module Aws::IAM
|
|
7287
7287
|
#
|
7288
7288
|
#
|
7289
7289
|
#
|
7290
|
-
# [1]:
|
7290
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
7291
7291
|
#
|
7292
7292
|
# @!attribute [rw] document
|
7293
7293
|
# The policy document.
|
@@ -7624,7 +7624,7 @@ module Aws::IAM
|
|
7624
7624
|
#
|
7625
7625
|
#
|
7626
7626
|
#
|
7627
|
-
# [1]:
|
7627
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
7628
7628
|
# @return [String]
|
7629
7629
|
#
|
7630
7630
|
# @!attribute [rw] client_id
|
@@ -7906,7 +7906,7 @@ module Aws::IAM
|
|
7906
7906
|
#
|
7907
7907
|
#
|
7908
7908
|
#
|
7909
|
-
# [1]:
|
7909
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
7910
7910
|
# @return [String]
|
7911
7911
|
#
|
7912
7912
|
# @!attribute [rw] role_name
|
@@ -7920,7 +7920,7 @@ module Aws::IAM
|
|
7920
7920
|
#
|
7921
7921
|
#
|
7922
7922
|
#
|
7923
|
-
# [1]:
|
7923
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
7924
7924
|
# @return [String]
|
7925
7925
|
#
|
7926
7926
|
# @!attribute [rw] arn
|
@@ -7930,7 +7930,7 @@ module Aws::IAM
|
|
7930
7930
|
#
|
7931
7931
|
#
|
7932
7932
|
#
|
7933
|
-
# [1]:
|
7933
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
7934
7934
|
# @return [String]
|
7935
7935
|
#
|
7936
7936
|
# @!attribute [rw] create_date
|
@@ -7974,7 +7974,7 @@ module Aws::IAM
|
|
7974
7974
|
#
|
7975
7975
|
#
|
7976
7976
|
#
|
7977
|
-
# [1]:
|
7977
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
7978
7978
|
# @return [Array<Types::Tag>]
|
7979
7979
|
#
|
7980
7980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Role AWS API Documentation
|
@@ -8005,7 +8005,7 @@ module Aws::IAM
|
|
8005
8005
|
#
|
8006
8006
|
#
|
8007
8007
|
#
|
8008
|
-
# [1]:
|
8008
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
8009
8009
|
# @return [String]
|
8010
8010
|
#
|
8011
8011
|
# @!attribute [rw] role_name
|
@@ -8019,7 +8019,7 @@ module Aws::IAM
|
|
8019
8019
|
#
|
8020
8020
|
#
|
8021
8021
|
#
|
8022
|
-
# [1]:
|
8022
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
8023
8023
|
# @return [String]
|
8024
8024
|
#
|
8025
8025
|
# @!attribute [rw] arn
|
@@ -8031,7 +8031,7 @@ module Aws::IAM
|
|
8031
8031
|
#
|
8032
8032
|
#
|
8033
8033
|
#
|
8034
|
-
# [1]:
|
8034
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8035
8035
|
# @return [String]
|
8036
8036
|
#
|
8037
8037
|
# @!attribute [rw] create_date
|
@@ -8078,7 +8078,7 @@ module Aws::IAM
|
|
8078
8078
|
#
|
8079
8079
|
#
|
8080
8080
|
#
|
8081
|
-
# [1]:
|
8081
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
8082
8082
|
# @return [Array<Types::Tag>]
|
8083
8083
|
#
|
8084
8084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RoleDetail AWS API Documentation
|
@@ -8269,7 +8269,7 @@ module Aws::IAM
|
|
8269
8269
|
#
|
8270
8270
|
#
|
8271
8271
|
#
|
8272
|
-
# [1]:
|
8272
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
8273
8273
|
# @return [String]
|
8274
8274
|
#
|
8275
8275
|
# @!attribute [rw] server_certificate_name
|
@@ -8283,7 +8283,7 @@ module Aws::IAM
|
|
8283
8283
|
#
|
8284
8284
|
#
|
8285
8285
|
#
|
8286
|
-
# [1]:
|
8286
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
8287
8287
|
# @return [String]
|
8288
8288
|
#
|
8289
8289
|
# @!attribute [rw] arn
|
@@ -8293,7 +8293,7 @@ module Aws::IAM
|
|
8293
8293
|
#
|
8294
8294
|
#
|
8295
8295
|
#
|
8296
|
-
# [1]:
|
8296
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
8297
8297
|
# @return [String]
|
8298
8298
|
#
|
8299
8299
|
# @!attribute [rw] upload_date
|
@@ -8336,7 +8336,7 @@ module Aws::IAM
|
|
8336
8336
|
#
|
8337
8337
|
#
|
8338
8338
|
# [1]: http://www.iso.org/iso/iso8601
|
8339
|
-
# [2]:
|
8339
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8340
8340
|
# @return [Time]
|
8341
8341
|
#
|
8342
8342
|
# @!attribute [rw] service_namespace
|
@@ -8352,8 +8352,8 @@ module Aws::IAM
|
|
8352
8352
|
#
|
8353
8353
|
#
|
8354
8354
|
#
|
8355
|
-
# [1]:
|
8356
|
-
# [2]:
|
8355
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
8356
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
8357
8357
|
# @return [String]
|
8358
8358
|
#
|
8359
8359
|
# @!attribute [rw] last_authenticated_entity
|
@@ -8366,7 +8366,7 @@ module Aws::IAM
|
|
8366
8366
|
#
|
8367
8367
|
#
|
8368
8368
|
#
|
8369
|
-
# [1]:
|
8369
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8370
8370
|
# @return [String]
|
8371
8371
|
#
|
8372
8372
|
# @!attribute [rw] total_authenticated_entities
|
@@ -8378,7 +8378,7 @@ module Aws::IAM
|
|
8378
8378
|
#
|
8379
8379
|
#
|
8380
8380
|
#
|
8381
|
-
# [1]:
|
8381
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8382
8382
|
# @return [Integer]
|
8383
8383
|
#
|
8384
8384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServiceLastAccessed AWS API Documentation
|
@@ -8509,7 +8509,7 @@ module Aws::IAM
|
|
8509
8509
|
#
|
8510
8510
|
#
|
8511
8511
|
#
|
8512
|
-
# [1]:
|
8512
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8513
8513
|
# @return [String]
|
8514
8514
|
#
|
8515
8515
|
# @!attribute [rw] version_id
|
@@ -8520,7 +8520,7 @@ module Aws::IAM
|
|
8520
8520
|
#
|
8521
8521
|
#
|
8522
8522
|
#
|
8523
|
-
# [1]:
|
8523
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
8524
8524
|
# @return [String]
|
8525
8525
|
#
|
8526
8526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SetDefaultPolicyVersionRequest AWS API Documentation
|
@@ -8615,8 +8615,8 @@ module Aws::IAM
|
|
8615
8615
|
#
|
8616
8616
|
#
|
8617
8617
|
#
|
8618
|
-
# [1]:
|
8619
|
-
# [2]:
|
8618
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetFederationToken.html
|
8619
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_AssumeRole.html
|
8620
8620
|
# [3]: http://wikipedia.org/wiki/regex
|
8621
8621
|
# @return [Array<String>]
|
8622
8622
|
#
|
@@ -8648,7 +8648,7 @@ module Aws::IAM
|
|
8648
8648
|
#
|
8649
8649
|
#
|
8650
8650
|
#
|
8651
|
-
# [1]:
|
8651
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8652
8652
|
# @return [Array<String>]
|
8653
8653
|
#
|
8654
8654
|
# @!attribute [rw] resource_policy
|
@@ -8754,7 +8754,7 @@ module Aws::IAM
|
|
8754
8754
|
#
|
8755
8755
|
#
|
8756
8756
|
#
|
8757
|
-
# [1]:
|
8757
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
8758
8758
|
# @return [String]
|
8759
8759
|
#
|
8760
8760
|
# @!attribute [rw] max_items
|
@@ -8861,7 +8861,7 @@ module Aws::IAM
|
|
8861
8861
|
#
|
8862
8862
|
#
|
8863
8863
|
#
|
8864
|
-
# [1]:
|
8864
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8865
8865
|
# @return [String]
|
8866
8866
|
#
|
8867
8867
|
# @!attribute [rw] policy_input_list
|
@@ -8910,7 +8910,7 @@ module Aws::IAM
|
|
8910
8910
|
#
|
8911
8911
|
#
|
8912
8912
|
#
|
8913
|
-
# [1]:
|
8913
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8914
8914
|
# @return [Array<String>]
|
8915
8915
|
#
|
8916
8916
|
# @!attribute [rw] resource_policy
|
@@ -8973,7 +8973,7 @@ module Aws::IAM
|
|
8973
8973
|
#
|
8974
8974
|
#
|
8975
8975
|
#
|
8976
|
-
# [1]:
|
8976
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
8977
8977
|
# @return [String]
|
8978
8978
|
#
|
8979
8979
|
# @!attribute [rw] context_entries
|
@@ -9027,7 +9027,7 @@ module Aws::IAM
|
|
9027
9027
|
#
|
9028
9028
|
#
|
9029
9029
|
#
|
9030
|
-
# [1]:
|
9030
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
9031
9031
|
# @return [String]
|
9032
9032
|
#
|
9033
9033
|
# @!attribute [rw] max_items
|
@@ -9107,7 +9107,7 @@ module Aws::IAM
|
|
9107
9107
|
#
|
9108
9108
|
#
|
9109
9109
|
#
|
9110
|
-
# [1]:
|
9110
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9111
9111
|
#
|
9112
9112
|
# @note When making an API call, you may pass Tag
|
9113
9113
|
# data as a hash:
|
@@ -9415,7 +9415,7 @@ module Aws::IAM
|
|
9415
9415
|
#
|
9416
9416
|
#
|
9417
9417
|
#
|
9418
|
-
# [1]:
|
9418
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/HowToPwdIAMUser.html
|
9419
9419
|
# @return [Boolean]
|
9420
9420
|
#
|
9421
9421
|
# @!attribute [rw] max_password_age
|
@@ -9651,7 +9651,7 @@ module Aws::IAM
|
|
9651
9651
|
#
|
9652
9652
|
#
|
9653
9653
|
#
|
9654
|
-
# [1]:
|
9654
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
9655
9655
|
# @return [String]
|
9656
9656
|
#
|
9657
9657
|
# @!attribute [rw] thumbprint_list
|
@@ -9740,7 +9740,7 @@ module Aws::IAM
|
|
9740
9740
|
#
|
9741
9741
|
#
|
9742
9742
|
#
|
9743
|
-
# [1]:
|
9743
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html
|
9744
9744
|
# @return [Integer]
|
9745
9745
|
#
|
9746
9746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateRoleRequest AWS API Documentation
|
@@ -9781,7 +9781,7 @@ module Aws::IAM
|
|
9781
9781
|
#
|
9782
9782
|
#
|
9783
9783
|
#
|
9784
|
-
# [1]:
|
9784
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
9785
9785
|
# @return [String]
|
9786
9786
|
#
|
9787
9787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSAMLProviderRequest AWS API Documentation
|
@@ -10174,7 +10174,7 @@ module Aws::IAM
|
|
10174
10174
|
#
|
10175
10175
|
#
|
10176
10176
|
#
|
10177
|
-
# [1]:
|
10177
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10178
10178
|
# [2]: http://wikipedia.org/wiki/regex
|
10179
10179
|
# @return [String]
|
10180
10180
|
#
|
@@ -10359,7 +10359,7 @@ module Aws::IAM
|
|
10359
10359
|
#
|
10360
10360
|
#
|
10361
10361
|
#
|
10362
|
-
# [1]:
|
10362
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10363
10363
|
# @return [String]
|
10364
10364
|
#
|
10365
10365
|
# @!attribute [rw] user_name
|
@@ -10373,7 +10373,7 @@ module Aws::IAM
|
|
10373
10373
|
#
|
10374
10374
|
#
|
10375
10375
|
#
|
10376
|
-
# [1]:
|
10376
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10377
10377
|
# @return [String]
|
10378
10378
|
#
|
10379
10379
|
# @!attribute [rw] arn
|
@@ -10383,7 +10383,7 @@ module Aws::IAM
|
|
10383
10383
|
#
|
10384
10384
|
#
|
10385
10385
|
#
|
10386
|
-
# [1]:
|
10386
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10387
10387
|
# @return [String]
|
10388
10388
|
#
|
10389
10389
|
# @!attribute [rw] create_date
|
@@ -10420,7 +10420,7 @@ module Aws::IAM
|
|
10420
10420
|
#
|
10421
10421
|
#
|
10422
10422
|
# [1]: http://www.iso.org/iso/iso8601
|
10423
|
-
# [2]:
|
10423
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
10424
10424
|
# @return [Time]
|
10425
10425
|
#
|
10426
10426
|
# @!attribute [rw] permissions_boundary
|
@@ -10440,7 +10440,7 @@ module Aws::IAM
|
|
10440
10440
|
#
|
10441
10441
|
#
|
10442
10442
|
#
|
10443
|
-
# [1]:
|
10443
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
10444
10444
|
# @return [Array<Types::Tag>]
|
10445
10445
|
#
|
10446
10446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/User AWS API Documentation
|
@@ -10469,7 +10469,7 @@ module Aws::IAM
|
|
10469
10469
|
#
|
10470
10470
|
#
|
10471
10471
|
#
|
10472
|
-
# [1]:
|
10472
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10473
10473
|
# @return [String]
|
10474
10474
|
#
|
10475
10475
|
# @!attribute [rw] user_name
|
@@ -10483,7 +10483,7 @@ module Aws::IAM
|
|
10483
10483
|
#
|
10484
10484
|
#
|
10485
10485
|
#
|
10486
|
-
# [1]:
|
10486
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
10487
10487
|
# @return [String]
|
10488
10488
|
#
|
10489
10489
|
# @!attribute [rw] arn
|
@@ -10495,7 +10495,7 @@ module Aws::IAM
|
|
10495
10495
|
#
|
10496
10496
|
#
|
10497
10497
|
#
|
10498
|
-
# [1]:
|
10498
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
10499
10499
|
# @return [String]
|
10500
10500
|
#
|
10501
10501
|
# @!attribute [rw] create_date
|
@@ -10536,7 +10536,7 @@ module Aws::IAM
|
|
10536
10536
|
#
|
10537
10537
|
#
|
10538
10538
|
#
|
10539
|
-
# [1]:
|
10539
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
10540
10540
|
# @return [Array<Types::Tag>]
|
10541
10541
|
#
|
10542
10542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UserDetail AWS API Documentation
|