aws-sdk-iam 1.0.0.rc2 → 1.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
@@ -205,6 +205,7 @@ module Aws::IAM
205
205
  OpenIDConnectProviderListEntry = Shapes::StructureShape.new(name: 'OpenIDConnectProviderListEntry')
206
206
  OpenIDConnectProviderListType = Shapes::ListShape.new(name: 'OpenIDConnectProviderListType')
207
207
  OpenIDConnectProviderUrlType = Shapes::StringShape.new(name: 'OpenIDConnectProviderUrlType')
208
+ OrganizationsDecisionDetail = Shapes::StructureShape.new(name: 'OrganizationsDecisionDetail')
208
209
  PasswordPolicy = Shapes::StructureShape.new(name: 'PasswordPolicy')
209
210
  PasswordPolicyViolationException = Shapes::StructureShape.new(name: 'PasswordPolicyViolationException')
210
211
  Policy = Shapes::StructureShape.new(name: 'Policy')
@@ -634,6 +635,7 @@ module Aws::IAM
634
635
  EvaluationResult.add_member(:eval_decision, Shapes::ShapeRef.new(shape: PolicyEvaluationDecisionType, required: true, location_name: "EvalDecision"))
635
636
  EvaluationResult.add_member(:matched_statements, Shapes::ShapeRef.new(shape: StatementListType, location_name: "MatchedStatements"))
636
637
  EvaluationResult.add_member(:missing_context_values, Shapes::ShapeRef.new(shape: ContextKeyNamesResultListType, location_name: "MissingContextValues"))
638
+ EvaluationResult.add_member(:organizations_decision_detail, Shapes::ShapeRef.new(shape: OrganizationsDecisionDetail, location_name: "OrganizationsDecisionDetail"))
637
639
  EvaluationResult.add_member(:eval_decision_details, Shapes::ShapeRef.new(shape: EvalDecisionDetailsType, location_name: "EvalDecisionDetails"))
638
640
  EvaluationResult.add_member(:resource_specific_results, Shapes::ShapeRef.new(shape: ResourceSpecificResultListType, location_name: "ResourceSpecificResults"))
639
641
  EvaluationResult.struct_class = Types::EvaluationResult
@@ -1090,6 +1092,9 @@ module Aws::IAM
1090
1092
 
1091
1093
  OpenIDConnectProviderListType.member = Shapes::ShapeRef.new(shape: OpenIDConnectProviderListEntry)
1092
1094
 
1095
+ OrganizationsDecisionDetail.add_member(:allowed_by_organizations, Shapes::ShapeRef.new(shape: booleanType, location_name: "AllowedByOrganizations"))
1096
+ OrganizationsDecisionDetail.struct_class = Types::OrganizationsDecisionDetail
1097
+
1093
1098
  PasswordPolicy.add_member(:minimum_password_length, Shapes::ShapeRef.new(shape: minimumPasswordLengthType, location_name: "MinimumPasswordLength"))
1094
1099
  PasswordPolicy.add_member(:require_symbols, Shapes::ShapeRef.new(shape: booleanType, location_name: "RequireSymbols"))
1095
1100
  PasswordPolicy.add_member(:require_numbers, Shapes::ShapeRef.new(shape: booleanType, location_name: "RequireNumbers"))
@@ -41,6 +41,8 @@ module Aws::IAM
41
41
  # The date when the access key was created.
42
42
  # @return [Time]
43
43
  #
44
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AccessKey AWS API Documentation
45
+ #
44
46
  class AccessKey < Struct.new(
45
47
  :user_name,
46
48
  :access_key_id,
@@ -102,6 +104,8 @@ module Aws::IAM
102
104
  # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html
103
105
  # @return [String]
104
106
  #
107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AccessKeyLastUsed AWS API Documentation
108
+ #
105
109
  class AccessKeyLastUsed < Struct.new(
106
110
  :last_used_date,
107
111
  :service_name,
@@ -131,6 +135,8 @@ module Aws::IAM
131
135
  # The date when the access key was created.
132
136
  # @return [Time]
133
137
  #
138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AccessKeyMetadata AWS API Documentation
139
+ #
134
140
  class AccessKeyMetadata < Struct.new(
135
141
  :user_name,
136
142
  :access_key_id,
@@ -158,6 +164,8 @@ module Aws::IAM
158
164
  # Connect provider resource.
159
165
  # @return [String]
160
166
  #
167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AddClientIDToOpenIDConnectProviderRequest AWS API Documentation
168
+ #
161
169
  class AddClientIDToOpenIDConnectProviderRequest < Struct.new(
162
170
  :open_id_connect_provider_arn,
163
171
  :client_id)
@@ -198,6 +206,8 @@ module Aws::IAM
198
206
  # [1]: http://wikipedia.org/wiki/regex
199
207
  # @return [String]
200
208
  #
209
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AddRoleToInstanceProfileRequest AWS API Documentation
210
+ #
201
211
  class AddRoleToInstanceProfileRequest < Struct.new(
202
212
  :instance_profile_name,
203
213
  :role_name)
@@ -238,6 +248,8 @@ module Aws::IAM
238
248
  # [1]: http://wikipedia.org/wiki/regex
239
249
  # @return [String]
240
250
  #
251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AddUserToGroupRequest AWS API Documentation
252
+ #
241
253
  class AddUserToGroupRequest < Struct.new(
242
254
  :group_name,
243
255
  :user_name)
@@ -277,6 +289,8 @@ module Aws::IAM
277
289
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
278
290
  # @return [String]
279
291
  #
292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachGroupPolicyRequest AWS API Documentation
293
+ #
280
294
  class AttachGroupPolicyRequest < Struct.new(
281
295
  :group_name,
282
296
  :policy_arn)
@@ -316,6 +330,8 @@ module Aws::IAM
316
330
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
317
331
  # @return [String]
318
332
  #
333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachRolePolicyRequest AWS API Documentation
334
+ #
319
335
  class AttachRolePolicyRequest < Struct.new(
320
336
  :role_name,
321
337
  :policy_arn)
@@ -355,6 +371,8 @@ module Aws::IAM
355
371
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
356
372
  # @return [String]
357
373
  #
374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachUserPolicyRequest AWS API Documentation
375
+ #
358
376
  class AttachUserPolicyRequest < Struct.new(
359
377
  :user_name,
360
378
  :policy_arn)
@@ -391,6 +409,8 @@ module Aws::IAM
391
409
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
392
410
  # @return [String]
393
411
  #
412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/AttachedPolicy AWS API Documentation
413
+ #
394
414
  class AttachedPolicy < Struct.new(
395
415
  :policy_name,
396
416
  :policy_arn)
@@ -428,6 +448,8 @@ module Aws::IAM
428
448
  # [1]: http://wikipedia.org/wiki/regex
429
449
  # @return [String]
430
450
  #
451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ChangePasswordRequest AWS API Documentation
452
+ #
431
453
  class ChangePasswordRequest < Struct.new(
432
454
  :old_password,
433
455
  :new_password)
@@ -468,6 +490,8 @@ module Aws::IAM
468
490
  # `ContextKeyValues` parameter.
469
491
  # @return [String]
470
492
  #
493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ContextEntry AWS API Documentation
494
+ #
471
495
  class ContextEntry < Struct.new(
472
496
  :context_key_name,
473
497
  :context_key_values,
@@ -495,6 +519,8 @@ module Aws::IAM
495
519
  # [1]: http://wikipedia.org/wiki/regex
496
520
  # @return [String]
497
521
  #
522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateAccessKeyRequest AWS API Documentation
523
+ #
498
524
  class CreateAccessKeyRequest < Struct.new(
499
525
  :user_name)
500
526
  include Aws::Structure
@@ -506,6 +532,8 @@ module Aws::IAM
506
532
  # A structure with details about the access key.
507
533
  # @return [Types::AccessKey]
508
534
  #
535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateAccessKeyResponse AWS API Documentation
536
+ #
509
537
  class CreateAccessKeyResponse < Struct.new(
510
538
  :access_key)
511
539
  include Aws::Structure
@@ -531,6 +559,8 @@ module Aws::IAM
531
559
  # [1]: http://wikipedia.org/wiki/regex
532
560
  # @return [String]
533
561
  #
562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateAccountAliasRequest AWS API Documentation
563
+ #
534
564
  class CreateAccountAliasRequest < Struct.new(
535
565
  :account_alias)
536
566
  include Aws::Structure
@@ -580,6 +610,8 @@ module Aws::IAM
580
610
  # [1]: http://wikipedia.org/wiki/regex
581
611
  # @return [String]
582
612
  #
613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateGroupRequest AWS API Documentation
614
+ #
583
615
  class CreateGroupRequest < Struct.new(
584
616
  :path,
585
617
  :group_name)
@@ -592,6 +624,8 @@ module Aws::IAM
592
624
  # A structure containing details about the new group.
593
625
  # @return [Types::Group]
594
626
  #
627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateGroupResponse AWS API Documentation
628
+ #
595
629
  class CreateGroupResponse < Struct.new(
596
630
  :group)
597
631
  include Aws::Structure
@@ -638,6 +672,8 @@ module Aws::IAM
638
672
  # [2]: http://wikipedia.org/wiki/regex
639
673
  # @return [String]
640
674
  #
675
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateInstanceProfileRequest AWS API Documentation
676
+ #
641
677
  class CreateInstanceProfileRequest < Struct.new(
642
678
  :instance_profile_name,
643
679
  :path)
@@ -650,6 +686,8 @@ module Aws::IAM
650
686
  # A structure containing details about the new instance profile.
651
687
  # @return [Types::InstanceProfile]
652
688
  #
689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateInstanceProfileResponse AWS API Documentation
690
+ #
653
691
  class CreateInstanceProfileResponse < Struct.new(
654
692
  :instance_profile)
655
693
  include Aws::Structure
@@ -701,6 +739,8 @@ module Aws::IAM
701
739
  # sign-in.
702
740
  # @return [Boolean]
703
741
  #
742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateLoginProfileRequest AWS API Documentation
743
+ #
704
744
  class CreateLoginProfileRequest < Struct.new(
705
745
  :user_name,
706
746
  :password,
@@ -714,6 +754,8 @@ module Aws::IAM
714
754
  # A structure containing the user name and password create date.
715
755
  # @return [Types::LoginProfile]
716
756
  #
757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateLoginProfileResponse AWS API Documentation
758
+ #
717
759
  class CreateLoginProfileResponse < Struct.new(
718
760
  :login_profile)
719
761
  include Aws::Structure
@@ -786,6 +828,8 @@ module Aws::IAM
786
828
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html
787
829
  # @return [Array<String>]
788
830
  #
831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateOpenIDConnectProviderRequest AWS API Documentation
832
+ #
789
833
  class CreateOpenIDConnectProviderRequest < Struct.new(
790
834
  :url,
791
835
  :client_id_list,
@@ -802,6 +846,8 @@ module Aws::IAM
802
846
  # OpenIDConnectProviderListEntry.
803
847
  # @return [String]
804
848
  #
849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateOpenIDConnectProviderResponse AWS API Documentation
850
+ #
805
851
  class CreateOpenIDConnectProviderResponse < Struct.new(
806
852
  :open_id_connect_provider_arn)
807
853
  include Aws::Structure
@@ -880,6 +926,8 @@ module Aws::IAM
880
926
  # cannot be changed.
881
927
  # @return [String]
882
928
  #
929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreatePolicyRequest AWS API Documentation
930
+ #
883
931
  class CreatePolicyRequest < Struct.new(
884
932
  :policy_name,
885
933
  :path,
@@ -894,6 +942,8 @@ module Aws::IAM
894
942
  # A structure containing details about the new policy.
895
943
  # @return [Types::Policy]
896
944
  #
945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreatePolicyResponse AWS API Documentation
946
+ #
897
947
  class CreatePolicyResponse < Struct.new(
898
948
  :policy)
899
949
  include Aws::Structure
@@ -953,6 +1003,8 @@ module Aws::IAM
953
1003
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
954
1004
  # @return [Boolean]
955
1005
  #
1006
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreatePolicyVersionRequest AWS API Documentation
1007
+ #
956
1008
  class CreatePolicyVersionRequest < Struct.new(
957
1009
  :policy_arn,
958
1010
  :policy_document,
@@ -966,6 +1018,8 @@ module Aws::IAM
966
1018
  # A structure containing details about the new policy version.
967
1019
  # @return [Types::PolicyVersion]
968
1020
  #
1021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreatePolicyVersionResponse AWS API Documentation
1022
+ #
969
1023
  class CreatePolicyVersionResponse < Struct.new(
970
1024
  :policy_version)
971
1025
  include Aws::Structure
@@ -1032,6 +1086,8 @@ module Aws::IAM
1032
1086
  # [1]: http://wikipedia.org/wiki/regex
1033
1087
  # @return [String]
1034
1088
  #
1089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateRoleRequest AWS API Documentation
1090
+ #
1035
1091
  class CreateRoleRequest < Struct.new(
1036
1092
  :path,
1037
1093
  :role_name,
@@ -1045,6 +1101,8 @@ module Aws::IAM
1045
1101
  # A structure containing details about the new role.
1046
1102
  # @return [Types::Role]
1047
1103
  #
1104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateRoleResponse AWS API Documentation
1105
+ #
1048
1106
  class CreateRoleResponse < Struct.new(
1049
1107
  :role)
1050
1108
  include Aws::Structure
@@ -1087,6 +1145,8 @@ module Aws::IAM
1087
1145
  # [1]: http://wikipedia.org/wiki/regex
1088
1146
  # @return [String]
1089
1147
  #
1148
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateSAMLProviderRequest AWS API Documentation
1149
+ #
1090
1150
  class CreateSAMLProviderRequest < Struct.new(
1091
1151
  :saml_metadata_document,
1092
1152
  :name)
@@ -1100,6 +1160,8 @@ module Aws::IAM
1100
1160
  # IAM.
1101
1161
  # @return [String]
1102
1162
  #
1163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateSAMLProviderResponse AWS API Documentation
1164
+ #
1103
1165
  class CreateSAMLProviderResponse < Struct.new(
1104
1166
  :saml_provider_arn)
1105
1167
  include Aws::Structure
@@ -1135,6 +1197,8 @@ module Aws::IAM
1135
1197
  # can be accessed using these credentials.
1136
1198
  # @return [String]
1137
1199
  #
1200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialRequest AWS API Documentation
1201
+ #
1138
1202
  class CreateServiceSpecificCredentialRequest < Struct.new(
1139
1203
  :user_name,
1140
1204
  :service_name)
@@ -1150,6 +1214,8 @@ module Aws::IAM
1150
1214
  # reset the password with ResetServiceSpecificCredential.
1151
1215
  # @return [Types::ServiceSpecificCredential]
1152
1216
  #
1217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialResponse AWS API Documentation
1218
+ #
1153
1219
  class CreateServiceSpecificCredentialResponse < Struct.new(
1154
1220
  :service_specific_credential)
1155
1221
  include Aws::Structure
@@ -1198,6 +1264,8 @@ module Aws::IAM
1198
1264
  # [1]: http://wikipedia.org/wiki/regex
1199
1265
  # @return [String]
1200
1266
  #
1267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateUserRequest AWS API Documentation
1268
+ #
1201
1269
  class CreateUserRequest < Struct.new(
1202
1270
  :path,
1203
1271
  :user_name)
@@ -1210,6 +1278,8 @@ module Aws::IAM
1210
1278
  # A structure with details about the new IAM user.
1211
1279
  # @return [Types::User]
1212
1280
  #
1281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateUserResponse AWS API Documentation
1282
+ #
1213
1283
  class CreateUserResponse < Struct.new(
1214
1284
  :user)
1215
1285
  include Aws::Structure
@@ -1257,6 +1327,8 @@ module Aws::IAM
1257
1327
  # [1]: http://wikipedia.org/wiki/regex
1258
1328
  # @return [String]
1259
1329
  #
1330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateVirtualMFADeviceRequest AWS API Documentation
1331
+ #
1260
1332
  class CreateVirtualMFADeviceRequest < Struct.new(
1261
1333
  :path,
1262
1334
  :virtual_mfa_device_name)
@@ -1269,6 +1341,8 @@ module Aws::IAM
1269
1341
  # A structure containing details about the new virtual MFA device.
1270
1342
  # @return [Types::VirtualMFADevice]
1271
1343
  #
1344
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateVirtualMFADeviceResponse AWS API Documentation
1345
+ #
1272
1346
  class CreateVirtualMFADeviceResponse < Struct.new(
1273
1347
  :virtual_mfa_device)
1274
1348
  include Aws::Structure
@@ -1309,6 +1383,8 @@ module Aws::IAM
1309
1383
  # [1]: http://wikipedia.org/wiki/regex
1310
1384
  # @return [String]
1311
1385
  #
1386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeactivateMFADeviceRequest AWS API Documentation
1387
+ #
1312
1388
  class DeactivateMFADeviceRequest < Struct.new(
1313
1389
  :user_name,
1314
1390
  :serial_number)
@@ -1349,6 +1425,8 @@ module Aws::IAM
1349
1425
  # [1]: http://wikipedia.org/wiki/regex
1350
1426
  # @return [String]
1351
1427
  #
1428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteAccessKeyRequest AWS API Documentation
1429
+ #
1352
1430
  class DeleteAccessKeyRequest < Struct.new(
1353
1431
  :user_name,
1354
1432
  :access_key_id)
@@ -1375,6 +1453,8 @@ module Aws::IAM
1375
1453
  # [1]: http://wikipedia.org/wiki/regex
1376
1454
  # @return [String]
1377
1455
  #
1456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteAccountAliasRequest AWS API Documentation
1457
+ #
1378
1458
  class DeleteAccountAliasRequest < Struct.new(
1379
1459
  :account_alias)
1380
1460
  include Aws::Structure
@@ -1415,6 +1495,8 @@ module Aws::IAM
1415
1495
  # [1]: http://wikipedia.org/wiki/regex
1416
1496
  # @return [String]
1417
1497
  #
1498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteGroupPolicyRequest AWS API Documentation
1499
+ #
1418
1500
  class DeleteGroupPolicyRequest < Struct.new(
1419
1501
  :group_name,
1420
1502
  :policy_name)
@@ -1441,6 +1523,8 @@ module Aws::IAM
1441
1523
  # [1]: http://wikipedia.org/wiki/regex
1442
1524
  # @return [String]
1443
1525
  #
1526
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteGroupRequest AWS API Documentation
1527
+ #
1444
1528
  class DeleteGroupRequest < Struct.new(
1445
1529
  :group_name)
1446
1530
  include Aws::Structure
@@ -1466,6 +1550,8 @@ module Aws::IAM
1466
1550
  # [1]: http://wikipedia.org/wiki/regex
1467
1551
  # @return [String]
1468
1552
  #
1553
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteInstanceProfileRequest AWS API Documentation
1554
+ #
1469
1555
  class DeleteInstanceProfileRequest < Struct.new(
1470
1556
  :instance_profile_name)
1471
1557
  include Aws::Structure
@@ -1491,6 +1577,8 @@ module Aws::IAM
1491
1577
  # [1]: http://wikipedia.org/wiki/regex
1492
1578
  # @return [String]
1493
1579
  #
1580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteLoginProfileRequest AWS API Documentation
1581
+ #
1494
1582
  class DeleteLoginProfileRequest < Struct.new(
1495
1583
  :user_name)
1496
1584
  include Aws::Structure
@@ -1510,6 +1598,8 @@ module Aws::IAM
1510
1598
  # action.
1511
1599
  # @return [String]
1512
1600
  #
1601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteOpenIDConnectProviderRequest AWS API Documentation
1602
+ #
1513
1603
  class DeleteOpenIDConnectProviderRequest < Struct.new(
1514
1604
  :open_id_connect_provider_arn)
1515
1605
  include Aws::Structure
@@ -1533,6 +1623,8 @@ module Aws::IAM
1533
1623
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1534
1624
  # @return [String]
1535
1625
  #
1626
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeletePolicyRequest AWS API Documentation
1627
+ #
1536
1628
  class DeletePolicyRequest < Struct.new(
1537
1629
  :policy_arn)
1538
1630
  include Aws::Structure
@@ -1575,6 +1667,8 @@ module Aws::IAM
1575
1667
  # [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
1576
1668
  # @return [String]
1577
1669
  #
1670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeletePolicyVersionRequest AWS API Documentation
1671
+ #
1578
1672
  class DeletePolicyVersionRequest < Struct.new(
1579
1673
  :policy_arn,
1580
1674
  :version_id)
@@ -1616,6 +1710,8 @@ module Aws::IAM
1616
1710
  # [1]: http://wikipedia.org/wiki/regex
1617
1711
  # @return [String]
1618
1712
  #
1713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteRolePolicyRequest AWS API Documentation
1714
+ #
1619
1715
  class DeleteRolePolicyRequest < Struct.new(
1620
1716
  :role_name,
1621
1717
  :policy_name)
@@ -1642,6 +1738,8 @@ module Aws::IAM
1642
1738
  # [1]: http://wikipedia.org/wiki/regex
1643
1739
  # @return [String]
1644
1740
  #
1741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteRoleRequest AWS API Documentation
1742
+ #
1645
1743
  class DeleteRoleRequest < Struct.new(
1646
1744
  :role_name)
1647
1745
  include Aws::Structure
@@ -1658,6 +1756,8 @@ module Aws::IAM
1658
1756
  # The Amazon Resource Name (ARN) of the SAML provider to delete.
1659
1757
  # @return [String]
1660
1758
  #
1759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteSAMLProviderRequest AWS API Documentation
1760
+ #
1661
1761
  class DeleteSAMLProviderRequest < Struct.new(
1662
1762
  :saml_provider_arn)
1663
1763
  include Aws::Structure
@@ -1696,6 +1796,8 @@ module Aws::IAM
1696
1796
  # [1]: http://wikipedia.org/wiki/regex
1697
1797
  # @return [String]
1698
1798
  #
1799
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteSSHPublicKeyRequest AWS API Documentation
1800
+ #
1699
1801
  class DeleteSSHPublicKeyRequest < Struct.new(
1700
1802
  :user_name,
1701
1803
  :ssh_public_key_id)
@@ -1722,6 +1824,8 @@ module Aws::IAM
1722
1824
  # [1]: http://wikipedia.org/wiki/regex
1723
1825
  # @return [String]
1724
1826
  #
1827
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteServerCertificateRequest AWS API Documentation
1828
+ #
1725
1829
  class DeleteServerCertificateRequest < Struct.new(
1726
1830
  :server_certificate_name)
1727
1831
  include Aws::Structure
@@ -1763,6 +1867,8 @@ module Aws::IAM
1763
1867
  # [1]: http://wikipedia.org/wiki/regex
1764
1868
  # @return [String]
1765
1869
  #
1870
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteServiceSpecificCredentialRequest AWS API Documentation
1871
+ #
1766
1872
  class DeleteServiceSpecificCredentialRequest < Struct.new(
1767
1873
  :user_name,
1768
1874
  :service_specific_credential_id)
@@ -1802,6 +1908,8 @@ module Aws::IAM
1802
1908
  # [1]: http://wikipedia.org/wiki/regex
1803
1909
  # @return [String]
1804
1910
  #
1911
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteSigningCertificateRequest AWS API Documentation
1912
+ #
1805
1913
  class DeleteSigningCertificateRequest < Struct.new(
1806
1914
  :user_name,
1807
1915
  :certificate_id)
@@ -1843,6 +1951,8 @@ module Aws::IAM
1843
1951
  # [1]: http://wikipedia.org/wiki/regex
1844
1952
  # @return [String]
1845
1953
  #
1954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteUserPolicyRequest AWS API Documentation
1955
+ #
1846
1956
  class DeleteUserPolicyRequest < Struct.new(
1847
1957
  :user_name,
1848
1958
  :policy_name)
@@ -1869,6 +1979,8 @@ module Aws::IAM
1869
1979
  # [1]: http://wikipedia.org/wiki/regex
1870
1980
  # @return [String]
1871
1981
  #
1982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteUserRequest AWS API Documentation
1983
+ #
1872
1984
  class DeleteUserRequest < Struct.new(
1873
1985
  :user_name)
1874
1986
  include Aws::Structure
@@ -1895,6 +2007,8 @@ module Aws::IAM
1895
2007
  # [1]: http://wikipedia.org/wiki/regex
1896
2008
  # @return [String]
1897
2009
  #
2010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DeleteVirtualMFADeviceRequest AWS API Documentation
2011
+ #
1898
2012
  class DeleteVirtualMFADeviceRequest < Struct.new(
1899
2013
  :serial_number)
1900
2014
  include Aws::Structure
@@ -1933,6 +2047,8 @@ module Aws::IAM
1933
2047
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1934
2048
  # @return [String]
1935
2049
  #
2050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachGroupPolicyRequest AWS API Documentation
2051
+ #
1936
2052
  class DetachGroupPolicyRequest < Struct.new(
1937
2053
  :group_name,
1938
2054
  :policy_arn)
@@ -1972,6 +2088,8 @@ module Aws::IAM
1972
2088
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1973
2089
  # @return [String]
1974
2090
  #
2091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachRolePolicyRequest AWS API Documentation
2092
+ #
1975
2093
  class DetachRolePolicyRequest < Struct.new(
1976
2094
  :role_name,
1977
2095
  :policy_arn)
@@ -2011,6 +2129,8 @@ module Aws::IAM
2011
2129
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2012
2130
  # @return [String]
2013
2131
  #
2132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/DetachUserPolicyRequest AWS API Documentation
2133
+ #
2014
2134
  class DetachUserPolicyRequest < Struct.new(
2015
2135
  :user_name,
2016
2136
  :policy_arn)
@@ -2066,6 +2186,8 @@ module Aws::IAM
2066
2186
  # The format for this parameter is a string of 6 digits.
2067
2187
  # @return [String]
2068
2188
  #
2189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EnableMFADeviceRequest AWS API Documentation
2190
+ #
2069
2191
  class EnableMFADeviceRequest < Struct.new(
2070
2192
  :user_name,
2071
2193
  :serial_number,
@@ -2110,6 +2232,12 @@ module Aws::IAM
2110
2232
  # GetContextKeysForCustomPolicy or GetContextKeysForPrincipalPolicy.
2111
2233
  # @return [Array<String>]
2112
2234
  #
2235
+ # @!attribute [rw] organizations_decision_detail
2236
+ # A structure that details how AWS Organizations and its service
2237
+ # control policies affect the results of the simulation. Only applies
2238
+ # if the simulated user's account is part of an organization.
2239
+ # @return [Types::OrganizationsDecisionDetail]
2240
+ #
2113
2241
  # @!attribute [rw] eval_decision_details
2114
2242
  # Additional details about the results of the evaluation decision.
2115
2243
  # When there are both IAM policies and resource policies, this
@@ -2129,12 +2257,15 @@ module Aws::IAM
2129
2257
  # in EvalActionName on each resource.
2130
2258
  # @return [Array<Types::ResourceSpecificResult>]
2131
2259
  #
2260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EvaluationResult AWS API Documentation
2261
+ #
2132
2262
  class EvaluationResult < Struct.new(
2133
2263
  :eval_action_name,
2134
2264
  :eval_resource_name,
2135
2265
  :eval_decision,
2136
2266
  :matched_statements,
2137
2267
  :missing_context_values,
2268
+ :organizations_decision_detail,
2138
2269
  :eval_decision_details,
2139
2270
  :resource_specific_results)
2140
2271
  include Aws::Structure
@@ -2151,6 +2282,8 @@ module Aws::IAM
2151
2282
  # Information about the credential report.
2152
2283
  # @return [String]
2153
2284
  #
2285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateCredentialReportResponse AWS API Documentation
2286
+ #
2154
2287
  class GenerateCredentialReportResponse < Struct.new(
2155
2288
  :state,
2156
2289
  :description)
@@ -2176,6 +2309,8 @@ module Aws::IAM
2176
2309
  # [1]: http://wikipedia.org/wiki/regex
2177
2310
  # @return [String]
2178
2311
  #
2312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccessKeyLastUsedRequest AWS API Documentation
2313
+ #
2179
2314
  class GetAccessKeyLastUsedRequest < Struct.new(
2180
2315
  :access_key_id)
2181
2316
  include Aws::Structure
@@ -2193,6 +2328,8 @@ module Aws::IAM
2193
2328
  # Contains information about the last time the access key was used.
2194
2329
  # @return [Types::AccessKeyLastUsed]
2195
2330
  #
2331
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccessKeyLastUsedResponse AWS API Documentation
2332
+ #
2196
2333
  class GetAccessKeyLastUsedResponse < Struct.new(
2197
2334
  :user_name,
2198
2335
  :access_key_last_used)
@@ -2238,6 +2375,8 @@ module Aws::IAM
2238
2375
  # received to indicate where the next call should start.
2239
2376
  # @return [String]
2240
2377
  #
2378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccountAuthorizationDetailsRequest AWS API Documentation
2379
+ #
2241
2380
  class GetAccountAuthorizationDetailsRequest < Struct.new(
2242
2381
  :filter,
2243
2382
  :max_items,
@@ -2280,6 +2419,8 @@ module Aws::IAM
2280
2419
  # pagination request.
2281
2420
  # @return [String]
2282
2421
  #
2422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccountAuthorizationDetailsResponse AWS API Documentation
2423
+ #
2283
2424
  class GetAccountAuthorizationDetailsResponse < Struct.new(
2284
2425
  :user_detail_list,
2285
2426
  :group_detail_list,
@@ -2297,6 +2438,8 @@ module Aws::IAM
2297
2438
  # Contains information about the account password policy.
2298
2439
  # @return [Types::PasswordPolicy]
2299
2440
  #
2441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccountPasswordPolicyResponse AWS API Documentation
2442
+ #
2300
2443
  class GetAccountPasswordPolicyResponse < Struct.new(
2301
2444
  :password_policy)
2302
2445
  include Aws::Structure
@@ -2309,6 +2452,8 @@ module Aws::IAM
2309
2452
  # usage and IAM quotas.
2310
2453
  # @return [Hash<String,Integer>]
2311
2454
  #
2455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetAccountSummaryResponse AWS API Documentation
2456
+ #
2312
2457
  class GetAccountSummaryResponse < Struct.new(
2313
2458
  :summary_map)
2314
2459
  include Aws::Structure
@@ -2339,6 +2484,8 @@ module Aws::IAM
2339
2484
  # [1]: http://wikipedia.org/wiki/regex
2340
2485
  # @return [Array<String>]
2341
2486
  #
2487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetContextKeysForCustomPolicyRequest AWS API Documentation
2488
+ #
2342
2489
  class GetContextKeysForCustomPolicyRequest < Struct.new(
2343
2490
  :policy_input_list)
2344
2491
  include Aws::Structure
@@ -2351,6 +2498,8 @@ module Aws::IAM
2351
2498
  # The list of context keys that are referenced in the input policies.
2352
2499
  # @return [Array<String>]
2353
2500
  #
2501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetContextKeysForPolicyResponse AWS API Documentation
2502
+ #
2354
2503
  class GetContextKeysForPolicyResponse < Struct.new(
2355
2504
  :context_key_names)
2356
2505
  include Aws::Structure
@@ -2399,6 +2548,8 @@ module Aws::IAM
2399
2548
  # [1]: http://wikipedia.org/wiki/regex
2400
2549
  # @return [Array<String>]
2401
2550
  #
2551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetContextKeysForPrincipalPolicyRequest AWS API Documentation
2552
+ #
2402
2553
  class GetContextKeysForPrincipalPolicyRequest < Struct.new(
2403
2554
  :policy_source_arn,
2404
2555
  :policy_input_list)
@@ -2424,6 +2575,8 @@ module Aws::IAM
2424
2575
  # [1]: http://www.iso.org/iso/iso8601
2425
2576
  # @return [Time]
2426
2577
  #
2578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetCredentialReportResponse AWS API Documentation
2579
+ #
2427
2580
  class GetCredentialReportResponse < Struct.new(
2428
2581
  :content,
2429
2582
  :report_format,
@@ -2465,6 +2618,8 @@ module Aws::IAM
2465
2618
  # [1]: http://wikipedia.org/wiki/regex
2466
2619
  # @return [String]
2467
2620
  #
2621
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupPolicyRequest AWS API Documentation
2622
+ #
2468
2623
  class GetGroupPolicyRequest < Struct.new(
2469
2624
  :group_name,
2470
2625
  :policy_name)
@@ -2485,6 +2640,8 @@ module Aws::IAM
2485
2640
  # The policy document.
2486
2641
  # @return [String]
2487
2642
  #
2643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupPolicyResponse AWS API Documentation
2644
+ #
2488
2645
  class GetGroupPolicyResponse < Struct.new(
2489
2646
  :group_name,
2490
2647
  :policy_name,
@@ -2534,6 +2691,8 @@ module Aws::IAM
2534
2691
  # call that tells the service where to continue from.
2535
2692
  # @return [Integer]
2536
2693
  #
2694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupRequest AWS API Documentation
2695
+ #
2537
2696
  class GetGroupRequest < Struct.new(
2538
2697
  :group_name,
2539
2698
  :marker,
@@ -2567,6 +2726,8 @@ module Aws::IAM
2567
2726
  # pagination request.
2568
2727
  # @return [String]
2569
2728
  #
2729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupResponse AWS API Documentation
2730
+ #
2570
2731
  class GetGroupResponse < Struct.new(
2571
2732
  :group,
2572
2733
  :users,
@@ -2595,6 +2756,8 @@ module Aws::IAM
2595
2756
  # [1]: http://wikipedia.org/wiki/regex
2596
2757
  # @return [String]
2597
2758
  #
2759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetInstanceProfileRequest AWS API Documentation
2760
+ #
2598
2761
  class GetInstanceProfileRequest < Struct.new(
2599
2762
  :instance_profile_name)
2600
2763
  include Aws::Structure
@@ -2606,6 +2769,8 @@ module Aws::IAM
2606
2769
  # A structure containing details about the instance profile.
2607
2770
  # @return [Types::InstanceProfile]
2608
2771
  #
2772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetInstanceProfileResponse AWS API Documentation
2773
+ #
2609
2774
  class GetInstanceProfileResponse < Struct.new(
2610
2775
  :instance_profile)
2611
2776
  include Aws::Structure
@@ -2631,6 +2796,8 @@ module Aws::IAM
2631
2796
  # [1]: http://wikipedia.org/wiki/regex
2632
2797
  # @return [String]
2633
2798
  #
2799
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetLoginProfileRequest AWS API Documentation
2800
+ #
2634
2801
  class GetLoginProfileRequest < Struct.new(
2635
2802
  :user_name)
2636
2803
  include Aws::Structure
@@ -2643,6 +2810,8 @@ module Aws::IAM
2643
2810
  # the user.
2644
2811
  # @return [Types::LoginProfile]
2645
2812
  #
2813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetLoginProfileResponse AWS API Documentation
2814
+ #
2646
2815
  class GetLoginProfileResponse < Struct.new(
2647
2816
  :login_profile)
2648
2817
  include Aws::Structure
@@ -2668,6 +2837,8 @@ module Aws::IAM
2668
2837
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2669
2838
  # @return [String]
2670
2839
  #
2840
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOpenIDConnectProviderRequest AWS API Documentation
2841
+ #
2671
2842
  class GetOpenIDConnectProviderRequest < Struct.new(
2672
2843
  :open_id_connect_provider_arn)
2673
2844
  include Aws::Structure
@@ -2698,6 +2869,8 @@ module Aws::IAM
2698
2869
  # created in the AWS account.
2699
2870
  # @return [Time]
2700
2871
  #
2872
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOpenIDConnectProviderResponse AWS API Documentation
2873
+ #
2701
2874
  class GetOpenIDConnectProviderResponse < Struct.new(
2702
2875
  :url,
2703
2876
  :client_id_list,
@@ -2725,6 +2898,8 @@ module Aws::IAM
2725
2898
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2726
2899
  # @return [String]
2727
2900
  #
2901
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetPolicyRequest AWS API Documentation
2902
+ #
2728
2903
  class GetPolicyRequest < Struct.new(
2729
2904
  :policy_arn)
2730
2905
  include Aws::Structure
@@ -2736,6 +2911,8 @@ module Aws::IAM
2736
2911
  # A structure containing details about the policy.
2737
2912
  # @return [Types::Policy]
2738
2913
  #
2914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetPolicyResponse AWS API Documentation
2915
+ #
2739
2916
  class GetPolicyResponse < Struct.new(
2740
2917
  :policy)
2741
2918
  include Aws::Structure
@@ -2774,6 +2951,8 @@ module Aws::IAM
2774
2951
  # [1]: http://wikipedia.org/wiki/regex
2775
2952
  # @return [String]
2776
2953
  #
2954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetPolicyVersionRequest AWS API Documentation
2955
+ #
2777
2956
  class GetPolicyVersionRequest < Struct.new(
2778
2957
  :policy_arn,
2779
2958
  :version_id)
@@ -2786,6 +2965,8 @@ module Aws::IAM
2786
2965
  # A structure containing details about the policy version.
2787
2966
  # @return [Types::PolicyVersion]
2788
2967
  #
2968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetPolicyVersionResponse AWS API Documentation
2969
+ #
2789
2970
  class GetPolicyVersionResponse < Struct.new(
2790
2971
  :policy_version)
2791
2972
  include Aws::Structure
@@ -2825,6 +3006,8 @@ module Aws::IAM
2825
3006
  # [1]: http://wikipedia.org/wiki/regex
2826
3007
  # @return [String]
2827
3008
  #
3009
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetRolePolicyRequest AWS API Documentation
3010
+ #
2828
3011
  class GetRolePolicyRequest < Struct.new(
2829
3012
  :role_name,
2830
3013
  :policy_name)
@@ -2845,6 +3028,8 @@ module Aws::IAM
2845
3028
  # The policy document.
2846
3029
  # @return [String]
2847
3030
  #
3031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetRolePolicyResponse AWS API Documentation
3032
+ #
2848
3033
  class GetRolePolicyResponse < Struct.new(
2849
3034
  :role_name,
2850
3035
  :policy_name,
@@ -2872,6 +3057,8 @@ module Aws::IAM
2872
3057
  # [1]: http://wikipedia.org/wiki/regex
2873
3058
  # @return [String]
2874
3059
  #
3060
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetRoleRequest AWS API Documentation
3061
+ #
2875
3062
  class GetRoleRequest < Struct.new(
2876
3063
  :role_name)
2877
3064
  include Aws::Structure
@@ -2883,6 +3070,8 @@ module Aws::IAM
2883
3070
  # A structure containing details about the IAM role.
2884
3071
  # @return [Types::Role]
2885
3072
  #
3073
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetRoleResponse AWS API Documentation
3074
+ #
2886
3075
  class GetRoleResponse < Struct.new(
2887
3076
  :role)
2888
3077
  include Aws::Structure
@@ -2907,6 +3096,8 @@ module Aws::IAM
2907
3096
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2908
3097
  # @return [String]
2909
3098
  #
3099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetSAMLProviderRequest AWS API Documentation
3100
+ #
2910
3101
  class GetSAMLProviderRequest < Struct.new(
2911
3102
  :saml_provider_arn)
2912
3103
  include Aws::Structure
@@ -2927,6 +3118,8 @@ module Aws::IAM
2927
3118
  # The expiration date and time for the SAML provider.
2928
3119
  # @return [Time]
2929
3120
  #
3121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetSAMLProviderResponse AWS API Documentation
3122
+ #
2930
3123
  class GetSAMLProviderResponse < Struct.new(
2931
3124
  :saml_metadata_document,
2932
3125
  :create_date,
@@ -2974,6 +3167,8 @@ module Aws::IAM
2974
3167
  # the public key in PEM format, use `PEM`.
2975
3168
  # @return [String]
2976
3169
  #
3170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetSSHPublicKeyRequest AWS API Documentation
3171
+ #
2977
3172
  class GetSSHPublicKeyRequest < Struct.new(
2978
3173
  :user_name,
2979
3174
  :ssh_public_key_id,
@@ -2987,6 +3182,8 @@ module Aws::IAM
2987
3182
  # A structure containing details about the SSH public key.
2988
3183
  # @return [Types::SSHPublicKey]
2989
3184
  #
3185
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetSSHPublicKeyResponse AWS API Documentation
3186
+ #
2990
3187
  class GetSSHPublicKeyResponse < Struct.new(
2991
3188
  :ssh_public_key)
2992
3189
  include Aws::Structure
@@ -3013,6 +3210,8 @@ module Aws::IAM
3013
3210
  # [1]: http://wikipedia.org/wiki/regex
3014
3211
  # @return [String]
3015
3212
  #
3213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServerCertificateRequest AWS API Documentation
3214
+ #
3016
3215
  class GetServerCertificateRequest < Struct.new(
3017
3216
  :server_certificate_name)
3018
3217
  include Aws::Structure
@@ -3024,6 +3223,8 @@ module Aws::IAM
3024
3223
  # A structure containing details about the server certificate.
3025
3224
  # @return [Types::ServerCertificate]
3026
3225
  #
3226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServerCertificateResponse AWS API Documentation
3227
+ #
3027
3228
  class GetServerCertificateResponse < Struct.new(
3028
3229
  :server_certificate)
3029
3230
  include Aws::Structure
@@ -3063,6 +3264,8 @@ module Aws::IAM
3063
3264
  # [1]: http://wikipedia.org/wiki/regex
3064
3265
  # @return [String]
3065
3266
  #
3267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserPolicyRequest AWS API Documentation
3268
+ #
3066
3269
  class GetUserPolicyRequest < Struct.new(
3067
3270
  :user_name,
3068
3271
  :policy_name)
@@ -3083,6 +3286,8 @@ module Aws::IAM
3083
3286
  # The policy document.
3084
3287
  # @return [String]
3085
3288
  #
3289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserPolicyResponse AWS API Documentation
3290
+ #
3086
3291
  class GetUserPolicyResponse < Struct.new(
3087
3292
  :user_name,
3088
3293
  :policy_name,
@@ -3111,6 +3316,8 @@ module Aws::IAM
3111
3316
  # [1]: http://wikipedia.org/wiki/regex
3112
3317
  # @return [String]
3113
3318
  #
3319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserRequest AWS API Documentation
3320
+ #
3114
3321
  class GetUserRequest < Struct.new(
3115
3322
  :user_name)
3116
3323
  include Aws::Structure
@@ -3122,6 +3329,8 @@ module Aws::IAM
3122
3329
  # A structure containing details about the IAM user.
3123
3330
  # @return [Types::User]
3124
3331
  #
3332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserResponse AWS API Documentation
3333
+ #
3125
3334
  class GetUserResponse < Struct.new(
3126
3335
  :user)
3127
3336
  include Aws::Structure
@@ -3179,6 +3388,8 @@ module Aws::IAM
3179
3388
  # [1]: http://www.iso.org/iso/iso8601
3180
3389
  # @return [Time]
3181
3390
  #
3391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Group AWS API Documentation
3392
+ #
3182
3393
  class Group < Struct.new(
3183
3394
  :path,
3184
3395
  :group_name,
@@ -3246,6 +3457,8 @@ module Aws::IAM
3246
3457
  # A list of the managed policies attached to the group.
3247
3458
  # @return [Array<Types::AttachedPolicy>]
3248
3459
  #
3460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GroupDetail AWS API Documentation
3461
+ #
3249
3462
  class GroupDetail < Struct.new(
3250
3463
  :path,
3251
3464
  :group_name,
@@ -3310,6 +3523,8 @@ module Aws::IAM
3310
3523
  # The role associated with the instance profile.
3311
3524
  # @return [Array<Types::Role>]
3312
3525
  #
3526
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/InstanceProfile AWS API Documentation
3527
+ #
3313
3528
  class InstanceProfile < Struct.new(
3314
3529
  :path,
3315
3530
  :instance_profile_name,
@@ -3362,6 +3577,8 @@ module Aws::IAM
3362
3577
  # call that tells the service where to continue from.
3363
3578
  # @return [Integer]
3364
3579
  #
3580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccessKeysRequest AWS API Documentation
3581
+ #
3365
3582
  class ListAccessKeysRequest < Struct.new(
3366
3583
  :user_name,
3367
3584
  :marker,
@@ -3391,6 +3608,8 @@ module Aws::IAM
3391
3608
  # pagination request.
3392
3609
  # @return [String]
3393
3610
  #
3611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccessKeysResponse AWS API Documentation
3612
+ #
3394
3613
  class ListAccessKeysResponse < Struct.new(
3395
3614
  :access_key_metadata,
3396
3615
  :is_truncated,
@@ -3426,6 +3645,8 @@ module Aws::IAM
3426
3645
  # call that tells the service where to continue from.
3427
3646
  # @return [Integer]
3428
3647
  #
3648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccountAliasesRequest AWS API Documentation
3649
+ #
3429
3650
  class ListAccountAliasesRequest < Struct.new(
3430
3651
  :marker,
3431
3652
  :max_items)
@@ -3455,6 +3676,8 @@ module Aws::IAM
3455
3676
  # pagination request.
3456
3677
  # @return [String]
3457
3678
  #
3679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccountAliasesResponse AWS API Documentation
3680
+ #
3458
3681
  class ListAccountAliasesResponse < Struct.new(
3459
3682
  :account_aliases,
3460
3683
  :is_truncated,
@@ -3523,6 +3746,8 @@ module Aws::IAM
3523
3746
  # call that tells the service where to continue from.
3524
3747
  # @return [Integer]
3525
3748
  #
3749
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedGroupPoliciesRequest AWS API Documentation
3750
+ #
3526
3751
  class ListAttachedGroupPoliciesRequest < Struct.new(
3527
3752
  :group_name,
3528
3753
  :path_prefix,
@@ -3554,6 +3779,8 @@ module Aws::IAM
3554
3779
  # pagination request.
3555
3780
  # @return [String]
3556
3781
  #
3782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedGroupPoliciesResponse AWS API Documentation
3783
+ #
3557
3784
  class ListAttachedGroupPoliciesResponse < Struct.new(
3558
3785
  :attached_policies,
3559
3786
  :is_truncated,
@@ -3622,6 +3849,8 @@ module Aws::IAM
3622
3849
  # call that tells the service where to continue from.
3623
3850
  # @return [Integer]
3624
3851
  #
3852
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedRolePoliciesRequest AWS API Documentation
3853
+ #
3625
3854
  class ListAttachedRolePoliciesRequest < Struct.new(
3626
3855
  :role_name,
3627
3856
  :path_prefix,
@@ -3653,6 +3882,8 @@ module Aws::IAM
3653
3882
  # pagination request.
3654
3883
  # @return [String]
3655
3884
  #
3885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedRolePoliciesResponse AWS API Documentation
3886
+ #
3656
3887
  class ListAttachedRolePoliciesResponse < Struct.new(
3657
3888
  :attached_policies,
3658
3889
  :is_truncated,
@@ -3721,6 +3952,8 @@ module Aws::IAM
3721
3952
  # call that tells the service where to continue from.
3722
3953
  # @return [Integer]
3723
3954
  #
3955
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedUserPoliciesRequest AWS API Documentation
3956
+ #
3724
3957
  class ListAttachedUserPoliciesRequest < Struct.new(
3725
3958
  :user_name,
3726
3959
  :path_prefix,
@@ -3752,6 +3985,8 @@ module Aws::IAM
3752
3985
  # pagination request.
3753
3986
  # @return [String]
3754
3987
  #
3988
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedUserPoliciesResponse AWS API Documentation
3989
+ #
3755
3990
  class ListAttachedUserPoliciesResponse < Struct.new(
3756
3991
  :attached_policies,
3757
3992
  :is_truncated,
@@ -3829,6 +4064,8 @@ module Aws::IAM
3829
4064
  # call that tells the service where to continue from.
3830
4065
  # @return [Integer]
3831
4066
  #
4067
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListEntitiesForPolicyRequest AWS API Documentation
4068
+ #
3832
4069
  class ListEntitiesForPolicyRequest < Struct.new(
3833
4070
  :policy_arn,
3834
4071
  :entity_filter,
@@ -3868,6 +4105,8 @@ module Aws::IAM
3868
4105
  # pagination request.
3869
4106
  # @return [String]
3870
4107
  #
4108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListEntitiesForPolicyResponse AWS API Documentation
4109
+ #
3871
4110
  class ListEntitiesForPolicyResponse < Struct.new(
3872
4111
  :policy_groups,
3873
4112
  :policy_users,
@@ -3919,6 +4158,8 @@ module Aws::IAM
3919
4158
  # call that tells the service where to continue from.
3920
4159
  # @return [Integer]
3921
4160
  #
4161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupPoliciesRequest AWS API Documentation
4162
+ #
3922
4163
  class ListGroupPoliciesRequest < Struct.new(
3923
4164
  :group_name,
3924
4165
  :marker,
@@ -3948,6 +4189,8 @@ module Aws::IAM
3948
4189
  # pagination request.
3949
4190
  # @return [String]
3950
4191
  #
4192
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupPoliciesResponse AWS API Documentation
4193
+ #
3951
4194
  class ListGroupPoliciesResponse < Struct.new(
3952
4195
  :policy_names,
3953
4196
  :is_truncated,
@@ -3997,6 +4240,8 @@ module Aws::IAM
3997
4240
  # call that tells the service where to continue from.
3998
4241
  # @return [Integer]
3999
4242
  #
4243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsForUserRequest AWS API Documentation
4244
+ #
4000
4245
  class ListGroupsForUserRequest < Struct.new(
4001
4246
  :user_name,
4002
4247
  :marker,
@@ -4026,6 +4271,8 @@ module Aws::IAM
4026
4271
  # pagination request.
4027
4272
  # @return [String]
4028
4273
  #
4274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsForUserResponse AWS API Documentation
4275
+ #
4029
4276
  class ListGroupsForUserResponse < Struct.new(
4030
4277
  :groups,
4031
4278
  :is_truncated,
@@ -4080,6 +4327,8 @@ module Aws::IAM
4080
4327
  # call that tells the service where to continue from.
4081
4328
  # @return [Integer]
4082
4329
  #
4330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsRequest AWS API Documentation
4331
+ #
4083
4332
  class ListGroupsRequest < Struct.new(
4084
4333
  :path_prefix,
4085
4334
  :marker,
@@ -4109,6 +4358,8 @@ module Aws::IAM
4109
4358
  # pagination request.
4110
4359
  # @return [String]
4111
4360
  #
4361
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsResponse AWS API Documentation
4362
+ #
4112
4363
  class ListGroupsResponse < Struct.new(
4113
4364
  :groups,
4114
4365
  :is_truncated,
@@ -4158,6 +4409,8 @@ module Aws::IAM
4158
4409
  # call that tells the service where to continue from.
4159
4410
  # @return [Integer]
4160
4411
  #
4412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesForRoleRequest AWS API Documentation
4413
+ #
4161
4414
  class ListInstanceProfilesForRoleRequest < Struct.new(
4162
4415
  :role_name,
4163
4416
  :marker,
@@ -4188,6 +4441,8 @@ module Aws::IAM
4188
4441
  # pagination request.
4189
4442
  # @return [String]
4190
4443
  #
4444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesForRoleResponse AWS API Documentation
4445
+ #
4191
4446
  class ListInstanceProfilesForRoleResponse < Struct.new(
4192
4447
  :instance_profiles,
4193
4448
  :is_truncated,
@@ -4242,6 +4497,8 @@ module Aws::IAM
4242
4497
  # call that tells the service where to continue from.
4243
4498
  # @return [Integer]
4244
4499
  #
4500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesRequest AWS API Documentation
4501
+ #
4245
4502
  class ListInstanceProfilesRequest < Struct.new(
4246
4503
  :path_prefix,
4247
4504
  :marker,
@@ -4271,6 +4528,8 @@ module Aws::IAM
4271
4528
  # pagination request.
4272
4529
  # @return [String]
4273
4530
  #
4531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesResponse AWS API Documentation
4532
+ #
4274
4533
  class ListInstanceProfilesResponse < Struct.new(
4275
4534
  :instance_profiles,
4276
4535
  :is_truncated,
@@ -4320,6 +4579,8 @@ module Aws::IAM
4320
4579
  # call that tells the service where to continue from.
4321
4580
  # @return [Integer]
4322
4581
  #
4582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListMFADevicesRequest AWS API Documentation
4583
+ #
4323
4584
  class ListMFADevicesRequest < Struct.new(
4324
4585
  :user_name,
4325
4586
  :marker,
@@ -4349,6 +4610,8 @@ module Aws::IAM
4349
4610
  # pagination request.
4350
4611
  # @return [String]
4351
4612
  #
4613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListMFADevicesResponse AWS API Documentation
4614
+ #
4352
4615
  class ListMFADevicesResponse < Struct.new(
4353
4616
  :mfa_devices,
4354
4617
  :is_truncated,
@@ -4358,6 +4621,8 @@ module Aws::IAM
4358
4621
 
4359
4622
  # @api private
4360
4623
  #
4624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListOpenIDConnectProvidersRequest AWS API Documentation
4625
+ #
4361
4626
  class ListOpenIDConnectProvidersRequest < Aws::EmptyStructure; end
4362
4627
 
4363
4628
  # Contains the response to a successful ListOpenIDConnectProviders
@@ -4368,6 +4633,8 @@ module Aws::IAM
4368
4633
  # account.
4369
4634
  # @return [Array<Types::OpenIDConnectProviderListEntry>]
4370
4635
  #
4636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListOpenIDConnectProvidersResponse AWS API Documentation
4637
+ #
4371
4638
  class ListOpenIDConnectProvidersResponse < Struct.new(
4372
4639
  :open_id_connect_provider_list)
4373
4640
  include Aws::Structure
@@ -4439,6 +4706,8 @@ module Aws::IAM
4439
4706
  # call that tells the service where to continue from.
4440
4707
  # @return [Integer]
4441
4708
  #
4709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesRequest AWS API Documentation
4710
+ #
4442
4711
  class ListPoliciesRequest < Struct.new(
4443
4712
  :scope,
4444
4713
  :only_attached,
@@ -4470,6 +4739,8 @@ module Aws::IAM
4470
4739
  # pagination request.
4471
4740
  # @return [String]
4472
4741
  #
4742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesResponse AWS API Documentation
4743
+ #
4473
4744
  class ListPoliciesResponse < Struct.new(
4474
4745
  :policies,
4475
4746
  :is_truncated,
@@ -4518,6 +4789,8 @@ module Aws::IAM
4518
4789
  # call that tells the service where to continue from.
4519
4790
  # @return [Integer]
4520
4791
  #
4792
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPolicyVersionsRequest AWS API Documentation
4793
+ #
4521
4794
  class ListPolicyVersionsRequest < Struct.new(
4522
4795
  :policy_arn,
4523
4796
  :marker,
@@ -4554,6 +4827,8 @@ module Aws::IAM
4554
4827
  # pagination request.
4555
4828
  # @return [String]
4556
4829
  #
4830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPolicyVersionsResponse AWS API Documentation
4831
+ #
4557
4832
  class ListPolicyVersionsResponse < Struct.new(
4558
4833
  :versions,
4559
4834
  :is_truncated,
@@ -4603,6 +4878,8 @@ module Aws::IAM
4603
4878
  # call that tells the service where to continue from.
4604
4879
  # @return [Integer]
4605
4880
  #
4881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolePoliciesRequest AWS API Documentation
4882
+ #
4606
4883
  class ListRolePoliciesRequest < Struct.new(
4607
4884
  :role_name,
4608
4885
  :marker,
@@ -4632,6 +4909,8 @@ module Aws::IAM
4632
4909
  # pagination request.
4633
4910
  # @return [String]
4634
4911
  #
4912
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolePoliciesResponse AWS API Documentation
4913
+ #
4635
4914
  class ListRolePoliciesResponse < Struct.new(
4636
4915
  :policy_names,
4637
4916
  :is_truncated,
@@ -4686,6 +4965,8 @@ module Aws::IAM
4686
4965
  # call that tells the service where to continue from.
4687
4966
  # @return [Integer]
4688
4967
  #
4968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolesRequest AWS API Documentation
4969
+ #
4689
4970
  class ListRolesRequest < Struct.new(
4690
4971
  :path_prefix,
4691
4972
  :marker,
@@ -4715,6 +4996,8 @@ module Aws::IAM
4715
4996
  # pagination request.
4716
4997
  # @return [String]
4717
4998
  #
4999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolesResponse AWS API Documentation
5000
+ #
4718
5001
  class ListRolesResponse < Struct.new(
4719
5002
  :roles,
4720
5003
  :is_truncated,
@@ -4724,6 +5007,8 @@ module Aws::IAM
4724
5007
 
4725
5008
  # @api private
4726
5009
  #
5010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSAMLProvidersRequest AWS API Documentation
5011
+ #
4727
5012
  class ListSAMLProvidersRequest < Aws::EmptyStructure; end
4728
5013
 
4729
5014
  # Contains the response to a successful ListSAMLProviders request.
@@ -4733,6 +5018,8 @@ module Aws::IAM
4733
5018
  # AWS account.
4734
5019
  # @return [Array<Types::SAMLProviderListEntry>]
4735
5020
  #
5021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSAMLProvidersResponse AWS API Documentation
5022
+ #
4736
5023
  class ListSAMLProvidersResponse < Struct.new(
4737
5024
  :saml_provider_list)
4738
5025
  include Aws::Structure
@@ -4782,6 +5069,8 @@ module Aws::IAM
4782
5069
  # call that tells the service where to continue from.
4783
5070
  # @return [Integer]
4784
5071
  #
5072
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSSHPublicKeysRequest AWS API Documentation
5073
+ #
4785
5074
  class ListSSHPublicKeysRequest < Struct.new(
4786
5075
  :user_name,
4787
5076
  :marker,
@@ -4811,6 +5100,8 @@ module Aws::IAM
4811
5100
  # pagination request.
4812
5101
  # @return [String]
4813
5102
  #
5103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSSHPublicKeysResponse AWS API Documentation
5104
+ #
4814
5105
  class ListSSHPublicKeysResponse < Struct.new(
4815
5106
  :ssh_public_keys,
4816
5107
  :is_truncated,
@@ -4865,6 +5156,8 @@ module Aws::IAM
4865
5156
  # call that tells the service where to continue from.
4866
5157
  # @return [Integer]
4867
5158
  #
5159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServerCertificatesRequest AWS API Documentation
5160
+ #
4868
5161
  class ListServerCertificatesRequest < Struct.new(
4869
5162
  :path_prefix,
4870
5163
  :marker,
@@ -4894,6 +5187,8 @@ module Aws::IAM
4894
5187
  # pagination request.
4895
5188
  # @return [String]
4896
5189
  #
5190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServerCertificatesResponse AWS API Documentation
5191
+ #
4897
5192
  class ListServerCertificatesResponse < Struct.new(
4898
5193
  :server_certificate_metadata_list,
4899
5194
  :is_truncated,
@@ -4930,6 +5225,8 @@ module Aws::IAM
4930
5225
  # credentials for all services.
4931
5226
  # @return [String]
4932
5227
  #
5228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServiceSpecificCredentialsRequest AWS API Documentation
5229
+ #
4933
5230
  class ListServiceSpecificCredentialsRequest < Struct.new(
4934
5231
  :user_name,
4935
5232
  :service_name)
@@ -4941,6 +5238,8 @@ module Aws::IAM
4941
5238
  # service-specific credential.
4942
5239
  # @return [Array<Types::ServiceSpecificCredentialMetadata>]
4943
5240
  #
5241
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServiceSpecificCredentialsResponse AWS API Documentation
5242
+ #
4944
5243
  class ListServiceSpecificCredentialsResponse < Struct.new(
4945
5244
  :service_specific_credentials)
4946
5245
  include Aws::Structure
@@ -4989,6 +5288,8 @@ module Aws::IAM
4989
5288
  # call that tells the service where to continue from.
4990
5289
  # @return [Integer]
4991
5290
  #
5291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSigningCertificatesRequest AWS API Documentation
5292
+ #
4992
5293
  class ListSigningCertificatesRequest < Struct.new(
4993
5294
  :user_name,
4994
5295
  :marker,
@@ -5018,6 +5319,8 @@ module Aws::IAM
5018
5319
  # pagination request.
5019
5320
  # @return [String]
5020
5321
  #
5322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSigningCertificatesResponse AWS API Documentation
5323
+ #
5021
5324
  class ListSigningCertificatesResponse < Struct.new(
5022
5325
  :certificates,
5023
5326
  :is_truncated,
@@ -5067,6 +5370,8 @@ module Aws::IAM
5067
5370
  # call that tells the service where to continue from.
5068
5371
  # @return [Integer]
5069
5372
  #
5373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUserPoliciesRequest AWS API Documentation
5374
+ #
5070
5375
  class ListUserPoliciesRequest < Struct.new(
5071
5376
  :user_name,
5072
5377
  :marker,
@@ -5096,6 +5401,8 @@ module Aws::IAM
5096
5401
  # pagination request.
5097
5402
  # @return [String]
5098
5403
  #
5404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUserPoliciesResponse AWS API Documentation
5405
+ #
5099
5406
  class ListUserPoliciesResponse < Struct.new(
5100
5407
  :policy_names,
5101
5408
  :is_truncated,
@@ -5150,6 +5457,8 @@ module Aws::IAM
5150
5457
  # call that tells the service where to continue from.
5151
5458
  # @return [Integer]
5152
5459
  #
5460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUsersRequest AWS API Documentation
5461
+ #
5153
5462
  class ListUsersRequest < Struct.new(
5154
5463
  :path_prefix,
5155
5464
  :marker,
@@ -5179,6 +5488,8 @@ module Aws::IAM
5179
5488
  # pagination request.
5180
5489
  # @return [String]
5181
5490
  #
5491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUsersResponse AWS API Documentation
5492
+ #
5182
5493
  class ListUsersResponse < Struct.new(
5183
5494
  :users,
5184
5495
  :is_truncated,
@@ -5221,6 +5532,8 @@ module Aws::IAM
5221
5532
  # call that tells the service where to continue from.
5222
5533
  # @return [Integer]
5223
5534
  #
5535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListVirtualMFADevicesRequest AWS API Documentation
5536
+ #
5224
5537
  class ListVirtualMFADevicesRequest < Struct.new(
5225
5538
  :assignment_status,
5226
5539
  :marker,
@@ -5251,6 +5564,8 @@ module Aws::IAM
5251
5564
  # pagination request.
5252
5565
  # @return [String]
5253
5566
  #
5567
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListVirtualMFADevicesResponse AWS API Documentation
5568
+ #
5254
5569
  class ListVirtualMFADevicesResponse < Struct.new(
5255
5570
  :virtual_mfa_devices,
5256
5571
  :is_truncated,
@@ -5277,6 +5592,8 @@ module Aws::IAM
5277
5592
  # sign-in.
5278
5593
  # @return [Boolean]
5279
5594
  #
5595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/LoginProfile AWS API Documentation
5596
+ #
5280
5597
  class LoginProfile < Struct.new(
5281
5598
  :user_name,
5282
5599
  :create_date,
@@ -5302,6 +5619,8 @@ module Aws::IAM
5302
5619
  # The date when the MFA device was enabled for the user.
5303
5620
  # @return [Time]
5304
5621
  #
5622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/MFADevice AWS API Documentation
5623
+ #
5305
5624
  class MFADevice < Struct.new(
5306
5625
  :user_name,
5307
5626
  :serial_number,
@@ -5414,6 +5733,8 @@ module Aws::IAM
5414
5733
  # A list containing information about the versions of the policy.
5415
5734
  # @return [Array<Types::PolicyVersion>]
5416
5735
  #
5736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ManagedPolicyDetail AWS API Documentation
5737
+ #
5417
5738
  class ManagedPolicyDetail < Struct.new(
5418
5739
  :policy_name,
5419
5740
  :policy_id,
@@ -5444,11 +5765,29 @@ module Aws::IAM
5444
5765
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
5445
5766
  # @return [String]
5446
5767
  #
5768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/OpenIDConnectProviderListEntry AWS API Documentation
5769
+ #
5447
5770
  class OpenIDConnectProviderListEntry < Struct.new(
5448
5771
  :arn)
5449
5772
  include Aws::Structure
5450
5773
  end
5451
5774
 
5775
+ # Contains information about AWS Organizations's affect on a policy
5776
+ # simulation.
5777
+ #
5778
+ # @!attribute [rw] allowed_by_organizations
5779
+ # Specifies whether the simulated action is allowed by the AWS
5780
+ # Organizations service control policies that impact the simulated
5781
+ # user's account.
5782
+ # @return [Boolean]
5783
+ #
5784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/OrganizationsDecisionDetail AWS API Documentation
5785
+ #
5786
+ class OrganizationsDecisionDetail < Struct.new(
5787
+ :allowed_by_organizations)
5788
+ include Aws::Structure
5789
+ end
5790
+
5452
5791
  # Contains information about the account password policy.
5453
5792
  #
5454
5793
  # This data type is used as a response element in the
@@ -5501,6 +5840,8 @@ module Aws::IAM
5501
5840
  # password after their password has expired.
5502
5841
  # @return [Boolean]
5503
5842
  #
5843
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PasswordPolicy AWS API Documentation
5844
+ #
5504
5845
  class PasswordPolicy < Struct.new(
5505
5846
  :minimum_password_length,
5506
5847
  :require_symbols,
@@ -5610,6 +5951,8 @@ module Aws::IAM
5610
5951
  # [1]: http://www.iso.org/iso/iso8601
5611
5952
  # @return [Time]
5612
5953
  #
5954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Policy AWS API Documentation
5955
+ #
5613
5956
  class Policy < Struct.new(
5614
5957
  :policy_name,
5615
5958
  :policy_id,
@@ -5638,6 +5981,8 @@ module Aws::IAM
5638
5981
  # The policy document.
5639
5982
  # @return [String]
5640
5983
  #
5984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyDetail AWS API Documentation
5985
+ #
5641
5986
  class PolicyDetail < Struct.new(
5642
5987
  :policy_name,
5643
5988
  :policy_document)
@@ -5671,6 +6016,8 @@ module Aws::IAM
5671
6016
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
5672
6017
  # @return [String]
5673
6018
  #
6019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyGroup AWS API Documentation
6020
+ #
5674
6021
  class PolicyGroup < Struct.new(
5675
6022
  :group_name,
5676
6023
  :group_id)
@@ -5704,6 +6051,8 @@ module Aws::IAM
5704
6051
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
5705
6052
  # @return [String]
5706
6053
  #
6054
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyRole AWS API Documentation
6055
+ #
5707
6056
  class PolicyRole < Struct.new(
5708
6057
  :role_name,
5709
6058
  :role_id)
@@ -5737,6 +6086,8 @@ module Aws::IAM
5737
6086
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
5738
6087
  # @return [String]
5739
6088
  #
6089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyUser AWS API Documentation
6090
+ #
5740
6091
  class PolicyUser < Struct.new(
5741
6092
  :user_name,
5742
6093
  :user_id)
@@ -5786,6 +6137,8 @@ module Aws::IAM
5786
6137
  # [1]: http://www.iso.org/iso/iso8601
5787
6138
  # @return [Time]
5788
6139
  #
6140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyVersion AWS API Documentation
6141
+ #
5789
6142
  class PolicyVersion < Struct.new(
5790
6143
  :document,
5791
6144
  :version_id,
@@ -5808,6 +6161,8 @@ module Aws::IAM
5808
6161
  # document.
5809
6162
  # @return [Integer]
5810
6163
  #
6164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Position AWS API Documentation
6165
+ #
5811
6166
  class Position < Struct.new(
5812
6167
  :line,
5813
6168
  :column)
@@ -5865,6 +6220,8 @@ module Aws::IAM
5865
6220
  # [1]: http://wikipedia.org/wiki/regex
5866
6221
  # @return [String]
5867
6222
  #
6223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PutGroupPolicyRequest AWS API Documentation
6224
+ #
5868
6225
  class PutGroupPolicyRequest < Struct.new(
5869
6226
  :group_name,
5870
6227
  :policy_name,
@@ -5923,6 +6280,8 @@ module Aws::IAM
5923
6280
  # [1]: http://wikipedia.org/wiki/regex
5924
6281
  # @return [String]
5925
6282
  #
6283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PutRolePolicyRequest AWS API Documentation
6284
+ #
5926
6285
  class PutRolePolicyRequest < Struct.new(
5927
6286
  :role_name,
5928
6287
  :policy_name,
@@ -5981,6 +6340,8 @@ module Aws::IAM
5981
6340
  # [1]: http://wikipedia.org/wiki/regex
5982
6341
  # @return [String]
5983
6342
  #
6343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PutUserPolicyRequest AWS API Documentation
6344
+ #
5984
6345
  class PutUserPolicyRequest < Struct.new(
5985
6346
  :user_name,
5986
6347
  :policy_name,
@@ -6015,6 +6376,8 @@ module Aws::IAM
6015
6376
  # CreateOpenIDConnectProvider.
6016
6377
  # @return [String]
6017
6378
  #
6379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RemoveClientIDFromOpenIDConnectProviderRequest AWS API Documentation
6380
+ #
6018
6381
  class RemoveClientIDFromOpenIDConnectProviderRequest < Struct.new(
6019
6382
  :open_id_connect_provider_arn,
6020
6383
  :client_id)
@@ -6055,6 +6418,8 @@ module Aws::IAM
6055
6418
  # [1]: http://wikipedia.org/wiki/regex
6056
6419
  # @return [String]
6057
6420
  #
6421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RemoveRoleFromInstanceProfileRequest AWS API Documentation
6422
+ #
6058
6423
  class RemoveRoleFromInstanceProfileRequest < Struct.new(
6059
6424
  :instance_profile_name,
6060
6425
  :role_name)
@@ -6095,6 +6460,8 @@ module Aws::IAM
6095
6460
  # [1]: http://wikipedia.org/wiki/regex
6096
6461
  # @return [String]
6097
6462
  #
6463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RemoveUserFromGroupRequest AWS API Documentation
6464
+ #
6098
6465
  class RemoveUserFromGroupRequest < Struct.new(
6099
6466
  :group_name,
6100
6467
  :user_name)
@@ -6136,6 +6503,8 @@ module Aws::IAM
6136
6503
  # [1]: http://wikipedia.org/wiki/regex
6137
6504
  # @return [String]
6138
6505
  #
6506
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ResetServiceSpecificCredentialRequest AWS API Documentation
6507
+ #
6139
6508
  class ResetServiceSpecificCredentialRequest < Struct.new(
6140
6509
  :user_name,
6141
6510
  :service_specific_credential_id)
@@ -6150,6 +6519,8 @@ module Aws::IAM
6150
6519
  # cannot recover the password later, but you can reset it again.
6151
6520
  # @return [Types::ServiceSpecificCredential]
6152
6521
  #
6522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ResetServiceSpecificCredentialResponse AWS API Documentation
6523
+ #
6153
6524
  class ResetServiceSpecificCredentialResponse < Struct.new(
6154
6525
  :service_specific_credential)
6155
6526
  include Aws::Structure
@@ -6200,6 +6571,8 @@ module Aws::IAM
6200
6571
  # policy must grant access.
6201
6572
  # @return [Hash<String,String>]
6202
6573
  #
6574
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ResourceSpecificResult AWS API Documentation
6575
+ #
6203
6576
  class ResourceSpecificResult < Struct.new(
6204
6577
  :eval_resource_name,
6205
6578
  :eval_resource_decision,
@@ -6257,6 +6630,8 @@ module Aws::IAM
6257
6630
  # The format for this parameter is a sequence of six digits.
6258
6631
  # @return [String]
6259
6632
  #
6633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ResyncMFADeviceRequest AWS API Documentation
6634
+ #
6260
6635
  class ResyncMFADeviceRequest < Struct.new(
6261
6636
  :user_name,
6262
6637
  :serial_number,
@@ -6321,6 +6696,8 @@ module Aws::IAM
6321
6696
  # The policy that grants an entity permission to assume the role.
6322
6697
  # @return [String]
6323
6698
  #
6699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Role AWS API Documentation
6700
+ #
6324
6701
  class Role < Struct.new(
6325
6702
  :path,
6326
6703
  :role_name,
@@ -6399,6 +6776,8 @@ module Aws::IAM
6399
6776
  # the role's access (permissions) policies.
6400
6777
  # @return [Array<Types::AttachedPolicy>]
6401
6778
  #
6779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RoleDetail AWS API Documentation
6780
+ #
6402
6781
  class RoleDetail < Struct.new(
6403
6782
  :path,
6404
6783
  :role_name,
@@ -6426,6 +6805,8 @@ module Aws::IAM
6426
6805
  # The date and time when the SAML provider was created.
6427
6806
  # @return [Time]
6428
6807
  #
6808
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SAMLProviderListEntry AWS API Documentation
6809
+ #
6429
6810
  class SAMLProviderListEntry < Struct.new(
6430
6811
  :arn,
6431
6812
  :valid_until,
@@ -6469,6 +6850,8 @@ module Aws::IAM
6469
6850
  # [1]: http://www.iso.org/iso/iso8601
6470
6851
  # @return [Time]
6471
6852
  #
6853
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SSHPublicKey AWS API Documentation
6854
+ #
6472
6855
  class SSHPublicKey < Struct.new(
6473
6856
  :user_name,
6474
6857
  :ssh_public_key_id,
@@ -6508,6 +6891,8 @@ module Aws::IAM
6508
6891
  # [1]: http://www.iso.org/iso/iso8601
6509
6892
  # @return [Time]
6510
6893
  #
6894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SSHPublicKeyMetadata AWS API Documentation
6895
+ #
6511
6896
  class SSHPublicKeyMetadata < Struct.new(
6512
6897
  :user_name,
6513
6898
  :ssh_public_key_id,
@@ -6534,6 +6919,8 @@ module Aws::IAM
6534
6919
  # The contents of the public key certificate chain.
6535
6920
  # @return [String]
6536
6921
  #
6922
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServerCertificate AWS API Documentation
6923
+ #
6537
6924
  class ServerCertificate < Struct.new(
6538
6925
  :server_certificate_metadata,
6539
6926
  :certificate_body,
@@ -6588,6 +6975,8 @@ module Aws::IAM
6588
6975
  # The date on which the certificate is set to expire.
6589
6976
  # @return [Time]
6590
6977
  #
6978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServerCertificateMetadata AWS API Documentation
6979
+ #
6591
6980
  class ServerCertificateMetadata < Struct.new(
6592
6981
  :path,
6593
6982
  :server_certificate_name,
@@ -6639,6 +7028,8 @@ module Aws::IAM
6639
7028
  # key is valid for API calls, while `Inactive` means it is not.
6640
7029
  # @return [String]
6641
7030
  #
7031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServiceSpecificCredential AWS API Documentation
7032
+ #
6642
7033
  class ServiceSpecificCredential < Struct.new(
6643
7034
  :create_date,
6644
7035
  :service_name,
@@ -6684,6 +7075,8 @@ module Aws::IAM
6684
7075
  # credential.
6685
7076
  # @return [String]
6686
7077
  #
7078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServiceSpecificCredentialMetadata AWS API Documentation
7079
+ #
6687
7080
  class ServiceSpecificCredentialMetadata < Struct.new(
6688
7081
  :user_name,
6689
7082
  :status,
@@ -6725,6 +7118,8 @@ module Aws::IAM
6725
7118
  # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
6726
7119
  # @return [String]
6727
7120
  #
7121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SetDefaultPolicyVersionRequest AWS API Documentation
7122
+ #
6728
7123
  class SetDefaultPolicyVersionRequest < Struct.new(
6729
7124
  :policy_arn,
6730
7125
  :version_id)
@@ -6757,6 +7152,8 @@ module Aws::IAM
6757
7152
  # The date when the signing certificate was uploaded.
6758
7153
  # @return [Time]
6759
7154
  #
7155
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SigningCertificate AWS API Documentation
7156
+ #
6760
7157
  class SigningCertificate < Struct.new(
6761
7158
  :user_name,
6762
7159
  :certificate_id,
@@ -6959,6 +7356,8 @@ module Aws::IAM
6959
7356
  # received to indicate where the next call should start.
6960
7357
  # @return [String]
6961
7358
  #
7359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SimulateCustomPolicyRequest AWS API Documentation
7360
+ #
6962
7361
  class SimulateCustomPolicyRequest < Struct.new(
6963
7362
  :policy_input_list,
6964
7363
  :action_names,
@@ -6996,6 +7395,8 @@ module Aws::IAM
6996
7395
  # pagination request.
6997
7396
  # @return [String]
6998
7397
  #
7398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SimulatePolicyResponse AWS API Documentation
7399
+ #
6999
7400
  class SimulatePolicyResponse < Struct.new(
7000
7401
  :evaluation_results,
7001
7402
  :is_truncated,
@@ -7218,6 +7619,8 @@ module Aws::IAM
7218
7619
  # received to indicate where the next call should start.
7219
7620
  # @return [String]
7220
7621
  #
7622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/SimulatePrincipalPolicyRequest AWS API Documentation
7623
+ #
7221
7624
  class SimulatePrincipalPolicyRequest < Struct.new(
7222
7625
  :policy_source_arn,
7223
7626
  :policy_input_list,
@@ -7256,6 +7659,8 @@ module Aws::IAM
7256
7659
  # The row and column of the end of a `Statement` in an IAM policy.
7257
7660
  # @return [Types::Position]
7258
7661
  #
7662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Statement AWS API Documentation
7663
+ #
7259
7664
  class Statement < Struct.new(
7260
7665
  :source_policy_id,
7261
7666
  :source_policy_type,
@@ -7304,6 +7709,8 @@ module Aws::IAM
7304
7709
  # means the key cannot be used.
7305
7710
  # @return [String]
7306
7711
  #
7712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateAccessKeyRequest AWS API Documentation
7713
+ #
7307
7714
  class UpdateAccessKeyRequest < Struct.new(
7308
7715
  :user_name,
7309
7716
  :access_key_id,
@@ -7397,6 +7804,8 @@ module Aws::IAM
7397
7804
  # Default value: false
7398
7805
  # @return [Boolean]
7399
7806
  #
7807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateAccountPasswordPolicyRequest AWS API Documentation
7808
+ #
7400
7809
  class UpdateAccountPasswordPolicyRequest < Struct.new(
7401
7810
  :minimum_password_length,
7402
7811
  :require_symbols,
@@ -7447,6 +7856,8 @@ module Aws::IAM
7447
7856
  # [1]: http://wikipedia.org/wiki/regex
7448
7857
  # @return [String]
7449
7858
  #
7859
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateAssumeRolePolicyRequest AWS API Documentation
7860
+ #
7450
7861
  class UpdateAssumeRolePolicyRequest < Struct.new(
7451
7862
  :role_name,
7452
7863
  :policy_document)
@@ -7506,6 +7917,8 @@ module Aws::IAM
7506
7917
  # [1]: http://wikipedia.org/wiki/regex
7507
7918
  # @return [String]
7508
7919
  #
7920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateGroupRequest AWS API Documentation
7921
+ #
7509
7922
  class UpdateGroupRequest < Struct.new(
7510
7923
  :group_name,
7511
7924
  :new_path,
@@ -7559,6 +7972,8 @@ module Aws::IAM
7559
7972
  # specified IAM user to set a new password on next sign-in.
7560
7973
  # @return [Boolean]
7561
7974
  #
7975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateLoginProfileRequest AWS API Documentation
7976
+ #
7562
7977
  class UpdateLoginProfileRequest < Struct.new(
7563
7978
  :user_name,
7564
7979
  :password,
@@ -7594,6 +8009,8 @@ module Aws::IAM
7594
8009
  # CreateOpenIDConnectProvider.
7595
8010
  # @return [Array<String>]
7596
8011
  #
8012
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateOpenIDConnectProviderThumbprintRequest AWS API Documentation
8013
+ #
7597
8014
  class UpdateOpenIDConnectProviderThumbprintRequest < Struct.new(
7598
8015
  :open_id_connect_provider_arn,
7599
8016
  :thumbprint_list)
@@ -7628,6 +8045,8 @@ module Aws::IAM
7628
8045
  # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
7629
8046
  # @return [String]
7630
8047
  #
8048
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSAMLProviderRequest AWS API Documentation
8049
+ #
7631
8050
  class UpdateSAMLProviderRequest < Struct.new(
7632
8051
  :saml_metadata_document,
7633
8052
  :saml_provider_arn)
@@ -7641,6 +8060,8 @@ module Aws::IAM
7641
8060
  # updated.
7642
8061
  # @return [String]
7643
8062
  #
8063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSAMLProviderResponse AWS API Documentation
8064
+ #
7644
8065
  class UpdateSAMLProviderResponse < Struct.new(
7645
8066
  :saml_provider_arn)
7646
8067
  include Aws::Structure
@@ -7686,6 +8107,8 @@ module Aws::IAM
7686
8107
  # `Inactive` means the key cannot be used.
7687
8108
  # @return [String]
7688
8109
  #
8110
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSSHPublicKeyRequest AWS API Documentation
8111
+ #
7689
8112
  class UpdateSSHPublicKeyRequest < Struct.new(
7690
8113
  :user_name,
7691
8114
  :ssh_public_key_id,
@@ -7746,6 +8169,8 @@ module Aws::IAM
7746
8169
  # [1]: http://wikipedia.org/wiki/regex
7747
8170
  # @return [String]
7748
8171
  #
8172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateServerCertificateRequest AWS API Documentation
8173
+ #
7749
8174
  class UpdateServerCertificateRequest < Struct.new(
7750
8175
  :server_certificate_name,
7751
8176
  :new_path,
@@ -7793,6 +8218,8 @@ module Aws::IAM
7793
8218
  # The status to be assigned to the service-specific credential.
7794
8219
  # @return [String]
7795
8220
  #
8221
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateServiceSpecificCredentialRequest AWS API Documentation
8222
+ #
7796
8223
  class UpdateServiceSpecificCredentialRequest < Struct.new(
7797
8224
  :user_name,
7798
8225
  :service_specific_credential_id,
@@ -7840,6 +8267,8 @@ module Aws::IAM
7840
8267
  # the certificate cannot be used.
7841
8268
  # @return [String]
7842
8269
  #
8270
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSigningCertificateRequest AWS API Documentation
8271
+ #
7843
8272
  class UpdateSigningCertificateRequest < Struct.new(
7844
8273
  :user_name,
7845
8274
  :certificate_id,
@@ -7900,6 +8329,8 @@ module Aws::IAM
7900
8329
  # [1]: http://wikipedia.org/wiki/regex
7901
8330
  # @return [String]
7902
8331
  #
8332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateUserRequest AWS API Documentation
8333
+ #
7903
8334
  class UpdateUserRequest < Struct.new(
7904
8335
  :user_name,
7905
8336
  :new_path,
@@ -7945,6 +8376,8 @@ module Aws::IAM
7945
8376
  # [1]: http://wikipedia.org/wiki/regex
7946
8377
  # @return [String]
7947
8378
  #
8379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadSSHPublicKeyRequest AWS API Documentation
8380
+ #
7948
8381
  class UploadSSHPublicKeyRequest < Struct.new(
7949
8382
  :user_name,
7950
8383
  :ssh_public_key_body)
@@ -7957,6 +8390,8 @@ module Aws::IAM
7957
8390
  # Contains information about the SSH public key.
7958
8391
  # @return [Types::SSHPublicKey]
7959
8392
  #
8393
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadSSHPublicKeyResponse AWS API Documentation
8394
+ #
7960
8395
  class UploadSSHPublicKeyResponse < Struct.new(
7961
8396
  :ssh_public_key)
7962
8397
  include Aws::Structure
@@ -8062,6 +8497,8 @@ module Aws::IAM
8062
8497
  # [1]: http://wikipedia.org/wiki/regex
8063
8498
  # @return [String]
8064
8499
  #
8500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadServerCertificateRequest AWS API Documentation
8501
+ #
8065
8502
  class UploadServerCertificateRequest < Struct.new(
8066
8503
  :path,
8067
8504
  :server_certificate_name,
@@ -8078,6 +8515,8 @@ module Aws::IAM
8078
8515
  # certificate body, certificate chain, and private key.
8079
8516
  # @return [Types::ServerCertificateMetadata]
8080
8517
  #
8518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadServerCertificateResponse AWS API Documentation
8519
+ #
8081
8520
  class UploadServerCertificateResponse < Struct.new(
8082
8521
  :server_certificate_metadata)
8083
8522
  include Aws::Structure
@@ -8120,6 +8559,8 @@ module Aws::IAM
8120
8559
  # [1]: http://wikipedia.org/wiki/regex
8121
8560
  # @return [String]
8122
8561
  #
8562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadSigningCertificateRequest AWS API Documentation
8563
+ #
8123
8564
  class UploadSigningCertificateRequest < Struct.new(
8124
8565
  :user_name,
8125
8566
  :certificate_body)
@@ -8133,6 +8574,8 @@ module Aws::IAM
8133
8574
  # Information about the certificate.
8134
8575
  # @return [Types::SigningCertificate]
8135
8576
  #
8577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UploadSigningCertificateResponse AWS API Documentation
8578
+ #
8136
8579
  class UploadSigningCertificateResponse < Struct.new(
8137
8580
  :certificate)
8138
8581
  include Aws::Structure
@@ -8214,6 +8657,8 @@ module Aws::IAM
8214
8657
  # [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
8215
8658
  # @return [Time]
8216
8659
  #
8660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/User AWS API Documentation
8661
+ #
8217
8662
  class User < Struct.new(
8218
8663
  :path,
8219
8664
  :user_name,
@@ -8286,6 +8731,8 @@ module Aws::IAM
8286
8731
  # A list of the managed policies attached to the user.
8287
8732
  # @return [Array<Types::AttachedPolicy>]
8288
8733
  #
8734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UserDetail AWS API Documentation
8735
+ #
8289
8736
  class UserDetail < Struct.new(
8290
8737
  :path,
8291
8738
  :user_name,
@@ -8330,6 +8777,8 @@ module Aws::IAM
8330
8777
  # The date and time on which the virtual MFA device was enabled.
8331
8778
  # @return [Time]
8332
8779
  #
8780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/VirtualMFADevice AWS API Documentation
8781
+ #
8333
8782
  class VirtualMFADevice < Struct.new(
8334
8783
  :serial_number,
8335
8784
  :base_32_string_seed,