aws-sdk-iam 1.93.0 → 1.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +29 -21
- data/lib/aws-sdk-iam/client_api.rb +7 -1
- data/lib/aws-sdk-iam/errors.rb +16 -0
- data/lib/aws-sdk-iam/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iam/types.rb +41 -17
- data/lib/aws-sdk-iam.rb +1 -1
- data/sig/access_key.rbs +62 -0
- data/sig/access_key_pair.rbs +63 -0
- data/sig/account_password_policy.rbs +80 -0
- data/sig/account_summary.rbs +35 -0
- data/sig/assume_role_policy.rbs +43 -0
- data/sig/client.rbs +1826 -0
- data/sig/current_user.rbs +77 -0
- data/sig/errors.rbs +100 -0
- data/sig/group.rbs +118 -0
- data/sig/group_policy.rbs +58 -0
- data/sig/instance_profile.rbs +80 -0
- data/sig/login_profile.rbs +65 -0
- data/sig/mfa_device.rbs +62 -0
- data/sig/policy.rbs +147 -0
- data/sig/policy_version.rbs +59 -0
- data/sig/resource.rbs +304 -0
- data/sig/role.rbs +107 -0
- data/sig/role_policy.rbs +58 -0
- data/sig/saml_provider.rbs +60 -0
- data/sig/server_certificate.rbs +61 -0
- data/sig/signing_certificate.rbs +65 -0
- data/sig/types.rbs +2136 -0
- data/sig/user.rbs +188 -0
- data/sig/user_policy.rbs +58 -0
- data/sig/virtual_mfa_device.rbs +54 -0
- data/sig/waiters.rbs +53 -0
- metadata +34 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2136 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::IAM
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDetail
|
12
|
+
attr_accessor service_name: ::String
|
13
|
+
attr_accessor service_namespace: ::String
|
14
|
+
attr_accessor region: ::String
|
15
|
+
attr_accessor entity_path: ::String
|
16
|
+
attr_accessor last_authenticated_time: ::Time
|
17
|
+
attr_accessor total_authenticated_entities: ::Integer
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AccessKey
|
22
|
+
attr_accessor user_name: ::String
|
23
|
+
attr_accessor access_key_id: ::String
|
24
|
+
attr_accessor status: ("Active" | "Inactive")
|
25
|
+
attr_accessor secret_access_key: ::String
|
26
|
+
attr_accessor create_date: ::Time
|
27
|
+
SENSITIVE: [:secret_access_key]
|
28
|
+
end
|
29
|
+
|
30
|
+
class AccessKeyLastUsed
|
31
|
+
attr_accessor last_used_date: ::Time
|
32
|
+
attr_accessor service_name: ::String
|
33
|
+
attr_accessor region: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AccessKeyMetadata
|
38
|
+
attr_accessor user_name: ::String
|
39
|
+
attr_accessor access_key_id: ::String
|
40
|
+
attr_accessor status: ("Active" | "Inactive")
|
41
|
+
attr_accessor create_date: ::Time
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AddClientIDToOpenIDConnectProviderRequest
|
46
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
47
|
+
attr_accessor client_id: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class AddRoleToInstanceProfileRequest
|
52
|
+
attr_accessor instance_profile_name: ::String
|
53
|
+
attr_accessor role_name: ::String
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class AddUserToGroupRequest
|
58
|
+
attr_accessor group_name: ::String
|
59
|
+
attr_accessor user_name: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class AttachGroupPolicyRequest
|
64
|
+
attr_accessor group_name: ::String
|
65
|
+
attr_accessor policy_arn: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class AttachRolePolicyRequest
|
70
|
+
attr_accessor role_name: ::String
|
71
|
+
attr_accessor policy_arn: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class AttachUserPolicyRequest
|
76
|
+
attr_accessor user_name: ::String
|
77
|
+
attr_accessor policy_arn: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class AttachedPermissionsBoundary
|
82
|
+
attr_accessor permissions_boundary_type: ("PermissionsBoundaryPolicy")
|
83
|
+
attr_accessor permissions_boundary_arn: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class AttachedPolicy
|
88
|
+
attr_accessor policy_name: ::String
|
89
|
+
attr_accessor policy_arn: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class ChangePasswordRequest
|
94
|
+
attr_accessor old_password: ::String
|
95
|
+
attr_accessor new_password: ::String
|
96
|
+
SENSITIVE: [:old_password, :new_password]
|
97
|
+
end
|
98
|
+
|
99
|
+
class ConcurrentModificationException
|
100
|
+
attr_accessor message: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class ContextEntry
|
105
|
+
attr_accessor context_key_name: ::String
|
106
|
+
attr_accessor context_key_values: ::Array[::String]
|
107
|
+
attr_accessor context_key_type: ("string" | "stringList" | "numeric" | "numericList" | "boolean" | "booleanList" | "ip" | "ipList" | "binary" | "binaryList" | "date" | "dateList")
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CreateAccessKeyRequest
|
112
|
+
attr_accessor user_name: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateAccessKeyResponse
|
117
|
+
attr_accessor access_key: Types::AccessKey
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CreateAccountAliasRequest
|
122
|
+
attr_accessor account_alias: ::String
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class CreateGroupRequest
|
127
|
+
attr_accessor path: ::String
|
128
|
+
attr_accessor group_name: ::String
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class CreateGroupResponse
|
133
|
+
attr_accessor group: Types::Group
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class CreateInstanceProfileRequest
|
138
|
+
attr_accessor instance_profile_name: ::String
|
139
|
+
attr_accessor path: ::String
|
140
|
+
attr_accessor tags: ::Array[Types::Tag]
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateInstanceProfileResponse
|
145
|
+
attr_accessor instance_profile: Types::InstanceProfile
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class CreateLoginProfileRequest
|
150
|
+
attr_accessor user_name: ::String
|
151
|
+
attr_accessor password: ::String
|
152
|
+
attr_accessor password_reset_required: bool
|
153
|
+
SENSITIVE: [:password]
|
154
|
+
end
|
155
|
+
|
156
|
+
class CreateLoginProfileResponse
|
157
|
+
attr_accessor login_profile: Types::LoginProfile
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateOpenIDConnectProviderRequest
|
162
|
+
attr_accessor url: ::String
|
163
|
+
attr_accessor client_id_list: ::Array[::String]
|
164
|
+
attr_accessor thumbprint_list: ::Array[::String]
|
165
|
+
attr_accessor tags: ::Array[Types::Tag]
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CreateOpenIDConnectProviderResponse
|
170
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
171
|
+
attr_accessor tags: ::Array[Types::Tag]
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class CreatePolicyRequest
|
176
|
+
attr_accessor policy_name: ::String
|
177
|
+
attr_accessor path: ::String
|
178
|
+
attr_accessor policy_document: ::String
|
179
|
+
attr_accessor description: ::String
|
180
|
+
attr_accessor tags: ::Array[Types::Tag]
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class CreatePolicyResponse
|
185
|
+
attr_accessor policy: Types::Policy
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class CreatePolicyVersionRequest
|
190
|
+
attr_accessor policy_arn: ::String
|
191
|
+
attr_accessor policy_document: ::String
|
192
|
+
attr_accessor set_as_default: bool
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class CreatePolicyVersionResponse
|
197
|
+
attr_accessor policy_version: Types::PolicyVersion
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class CreateRoleRequest
|
202
|
+
attr_accessor path: ::String
|
203
|
+
attr_accessor role_name: ::String
|
204
|
+
attr_accessor assume_role_policy_document: ::String
|
205
|
+
attr_accessor description: ::String
|
206
|
+
attr_accessor max_session_duration: ::Integer
|
207
|
+
attr_accessor permissions_boundary: ::String
|
208
|
+
attr_accessor tags: ::Array[Types::Tag]
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class CreateRoleResponse
|
213
|
+
attr_accessor role: Types::Role
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateSAMLProviderRequest
|
218
|
+
attr_accessor saml_metadata_document: ::String
|
219
|
+
attr_accessor name: ::String
|
220
|
+
attr_accessor tags: ::Array[Types::Tag]
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateSAMLProviderResponse
|
225
|
+
attr_accessor saml_provider_arn: ::String
|
226
|
+
attr_accessor tags: ::Array[Types::Tag]
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class CreateServiceLinkedRoleRequest
|
231
|
+
attr_accessor aws_service_name: ::String
|
232
|
+
attr_accessor description: ::String
|
233
|
+
attr_accessor custom_suffix: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CreateServiceLinkedRoleResponse
|
238
|
+
attr_accessor role: Types::Role
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class CreateServiceSpecificCredentialRequest
|
243
|
+
attr_accessor user_name: ::String
|
244
|
+
attr_accessor service_name: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class CreateServiceSpecificCredentialResponse
|
249
|
+
attr_accessor service_specific_credential: Types::ServiceSpecificCredential
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class CreateUserRequest
|
254
|
+
attr_accessor path: ::String
|
255
|
+
attr_accessor user_name: ::String
|
256
|
+
attr_accessor permissions_boundary: ::String
|
257
|
+
attr_accessor tags: ::Array[Types::Tag]
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class CreateUserResponse
|
262
|
+
attr_accessor user: Types::User
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class CreateVirtualMFADeviceRequest
|
267
|
+
attr_accessor path: ::String
|
268
|
+
attr_accessor virtual_mfa_device_name: ::String
|
269
|
+
attr_accessor tags: ::Array[Types::Tag]
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class CreateVirtualMFADeviceResponse
|
274
|
+
attr_accessor virtual_mfa_device: Types::VirtualMFADevice
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class CredentialReportExpiredException
|
279
|
+
attr_accessor message: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class CredentialReportNotPresentException
|
284
|
+
attr_accessor message: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class CredentialReportNotReadyException
|
289
|
+
attr_accessor message: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class DeactivateMFADeviceRequest
|
294
|
+
attr_accessor user_name: ::String
|
295
|
+
attr_accessor serial_number: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class DeleteAccessKeyRequest
|
300
|
+
attr_accessor user_name: ::String
|
301
|
+
attr_accessor access_key_id: ::String
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class DeleteAccountAliasRequest
|
306
|
+
attr_accessor account_alias: ::String
|
307
|
+
SENSITIVE: []
|
308
|
+
end
|
309
|
+
|
310
|
+
class DeleteConflictException
|
311
|
+
attr_accessor message: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class DeleteGroupPolicyRequest
|
316
|
+
attr_accessor group_name: ::String
|
317
|
+
attr_accessor policy_name: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class DeleteGroupRequest
|
322
|
+
attr_accessor group_name: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class DeleteInstanceProfileRequest
|
327
|
+
attr_accessor instance_profile_name: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DeleteLoginProfileRequest
|
332
|
+
attr_accessor user_name: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DeleteOpenIDConnectProviderRequest
|
337
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeletePolicyRequest
|
342
|
+
attr_accessor policy_arn: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class DeletePolicyVersionRequest
|
347
|
+
attr_accessor policy_arn: ::String
|
348
|
+
attr_accessor version_id: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class DeleteRolePermissionsBoundaryRequest
|
353
|
+
attr_accessor role_name: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class DeleteRolePolicyRequest
|
358
|
+
attr_accessor role_name: ::String
|
359
|
+
attr_accessor policy_name: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DeleteRoleRequest
|
364
|
+
attr_accessor role_name: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class DeleteSAMLProviderRequest
|
369
|
+
attr_accessor saml_provider_arn: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class DeleteSSHPublicKeyRequest
|
374
|
+
attr_accessor user_name: ::String
|
375
|
+
attr_accessor ssh_public_key_id: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class DeleteServerCertificateRequest
|
380
|
+
attr_accessor server_certificate_name: ::String
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class DeleteServiceLinkedRoleRequest
|
385
|
+
attr_accessor role_name: ::String
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class DeleteServiceLinkedRoleResponse
|
390
|
+
attr_accessor deletion_task_id: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class DeleteServiceSpecificCredentialRequest
|
395
|
+
attr_accessor user_name: ::String
|
396
|
+
attr_accessor service_specific_credential_id: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class DeleteSigningCertificateRequest
|
401
|
+
attr_accessor user_name: ::String
|
402
|
+
attr_accessor certificate_id: ::String
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class DeleteUserPermissionsBoundaryRequest
|
407
|
+
attr_accessor user_name: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class DeleteUserPolicyRequest
|
412
|
+
attr_accessor user_name: ::String
|
413
|
+
attr_accessor policy_name: ::String
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class DeleteUserRequest
|
418
|
+
attr_accessor user_name: ::String
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class DeleteVirtualMFADeviceRequest
|
423
|
+
attr_accessor serial_number: ::String
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class DeletionTaskFailureReasonType
|
428
|
+
attr_accessor reason: ::String
|
429
|
+
attr_accessor role_usage_list: ::Array[Types::RoleUsageType]
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class DetachGroupPolicyRequest
|
434
|
+
attr_accessor group_name: ::String
|
435
|
+
attr_accessor policy_arn: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class DetachRolePolicyRequest
|
440
|
+
attr_accessor role_name: ::String
|
441
|
+
attr_accessor policy_arn: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class DetachUserPolicyRequest
|
446
|
+
attr_accessor user_name: ::String
|
447
|
+
attr_accessor policy_arn: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DuplicateCertificateException
|
452
|
+
attr_accessor message: ::String
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class DuplicateSSHPublicKeyException
|
457
|
+
attr_accessor message: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class EnableMFADeviceRequest
|
462
|
+
attr_accessor user_name: ::String
|
463
|
+
attr_accessor serial_number: ::String
|
464
|
+
attr_accessor authentication_code_1: ::String
|
465
|
+
attr_accessor authentication_code_2: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class EntityAlreadyExistsException
|
470
|
+
attr_accessor message: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class EntityDetails
|
475
|
+
attr_accessor entity_info: Types::EntityInfo
|
476
|
+
attr_accessor last_authenticated: ::Time
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class EntityInfo
|
481
|
+
attr_accessor arn: ::String
|
482
|
+
attr_accessor name: ::String
|
483
|
+
attr_accessor type: ("USER" | "ROLE" | "GROUP")
|
484
|
+
attr_accessor id: ::String
|
485
|
+
attr_accessor path: ::String
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class EntityTemporarilyUnmodifiableException
|
490
|
+
attr_accessor message: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class ErrorDetails
|
495
|
+
attr_accessor message: ::String
|
496
|
+
attr_accessor code: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class EvaluationResult
|
501
|
+
attr_accessor eval_action_name: ::String
|
502
|
+
attr_accessor eval_resource_name: ::String
|
503
|
+
attr_accessor eval_decision: ("allowed" | "explicitDeny" | "implicitDeny")
|
504
|
+
attr_accessor matched_statements: ::Array[Types::Statement]
|
505
|
+
attr_accessor missing_context_values: ::Array[::String]
|
506
|
+
attr_accessor organizations_decision_detail: Types::OrganizationsDecisionDetail
|
507
|
+
attr_accessor permissions_boundary_decision_detail: Types::PermissionsBoundaryDecisionDetail
|
508
|
+
attr_accessor eval_decision_details: ::Hash[::String, ("allowed" | "explicitDeny" | "implicitDeny")]
|
509
|
+
attr_accessor resource_specific_results: ::Array[Types::ResourceSpecificResult]
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class GenerateCredentialReportResponse
|
514
|
+
attr_accessor state: ("STARTED" | "INPROGRESS" | "COMPLETE")
|
515
|
+
attr_accessor description: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class GenerateOrganizationsAccessReportRequest
|
520
|
+
attr_accessor entity_path: ::String
|
521
|
+
attr_accessor organizations_policy_id: ::String
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class GenerateOrganizationsAccessReportResponse
|
526
|
+
attr_accessor job_id: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class GenerateServiceLastAccessedDetailsRequest
|
531
|
+
attr_accessor arn: ::String
|
532
|
+
attr_accessor granularity: ("SERVICE_LEVEL" | "ACTION_LEVEL")
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class GenerateServiceLastAccessedDetailsResponse
|
537
|
+
attr_accessor job_id: ::String
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class GetAccessKeyLastUsedRequest
|
542
|
+
attr_accessor access_key_id: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class GetAccessKeyLastUsedResponse
|
547
|
+
attr_accessor user_name: ::String
|
548
|
+
attr_accessor access_key_last_used: Types::AccessKeyLastUsed
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class GetAccountAuthorizationDetailsRequest
|
553
|
+
attr_accessor filter: ::Array[("User" | "Role" | "Group" | "LocalManagedPolicy" | "AWSManagedPolicy")]
|
554
|
+
attr_accessor max_items: ::Integer
|
555
|
+
attr_accessor marker: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class GetAccountAuthorizationDetailsResponse
|
560
|
+
attr_accessor user_detail_list: ::Array[Types::UserDetail]
|
561
|
+
attr_accessor group_detail_list: ::Array[Types::GroupDetail]
|
562
|
+
attr_accessor role_detail_list: ::Array[Types::RoleDetail]
|
563
|
+
attr_accessor policies: ::Array[Types::ManagedPolicyDetail]
|
564
|
+
attr_accessor is_truncated: bool
|
565
|
+
attr_accessor marker: ::String
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class GetAccountPasswordPolicyResponse
|
570
|
+
attr_accessor password_policy: Types::PasswordPolicy
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class GetAccountSummaryResponse
|
575
|
+
attr_accessor summary_map: ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion"), ::Integer]
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class GetContextKeysForCustomPolicyRequest
|
580
|
+
attr_accessor policy_input_list: ::Array[::String]
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class GetContextKeysForPolicyResponse
|
585
|
+
attr_accessor context_key_names: ::Array[::String]
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class GetContextKeysForPrincipalPolicyRequest
|
590
|
+
attr_accessor policy_source_arn: ::String
|
591
|
+
attr_accessor policy_input_list: ::Array[::String]
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class GetCredentialReportResponse
|
596
|
+
attr_accessor content: ::String
|
597
|
+
attr_accessor report_format: ("text/csv")
|
598
|
+
attr_accessor generated_time: ::Time
|
599
|
+
SENSITIVE: []
|
600
|
+
end
|
601
|
+
|
602
|
+
class GetGroupPolicyRequest
|
603
|
+
attr_accessor group_name: ::String
|
604
|
+
attr_accessor policy_name: ::String
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class GetGroupPolicyResponse
|
609
|
+
attr_accessor group_name: ::String
|
610
|
+
attr_accessor policy_name: ::String
|
611
|
+
attr_accessor policy_document: ::String
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class GetGroupRequest
|
616
|
+
attr_accessor group_name: ::String
|
617
|
+
attr_accessor marker: ::String
|
618
|
+
attr_accessor max_items: ::Integer
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class GetGroupResponse
|
623
|
+
attr_accessor group: Types::Group
|
624
|
+
attr_accessor users: ::Array[Types::User]
|
625
|
+
attr_accessor is_truncated: bool
|
626
|
+
attr_accessor marker: ::String
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class GetInstanceProfileRequest
|
631
|
+
attr_accessor instance_profile_name: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class GetInstanceProfileResponse
|
636
|
+
attr_accessor instance_profile: Types::InstanceProfile
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class GetLoginProfileRequest
|
641
|
+
attr_accessor user_name: ::String
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class GetLoginProfileResponse
|
646
|
+
attr_accessor login_profile: Types::LoginProfile
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class GetMFADeviceRequest
|
651
|
+
attr_accessor serial_number: ::String
|
652
|
+
attr_accessor user_name: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class GetMFADeviceResponse
|
657
|
+
attr_accessor user_name: ::String
|
658
|
+
attr_accessor serial_number: ::String
|
659
|
+
attr_accessor enable_date: ::Time
|
660
|
+
attr_accessor certifications: ::Hash[::String, ::String]
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class GetOpenIDConnectProviderRequest
|
665
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class GetOpenIDConnectProviderResponse
|
670
|
+
attr_accessor url: ::String
|
671
|
+
attr_accessor client_id_list: ::Array[::String]
|
672
|
+
attr_accessor thumbprint_list: ::Array[::String]
|
673
|
+
attr_accessor create_date: ::Time
|
674
|
+
attr_accessor tags: ::Array[Types::Tag]
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class GetOrganizationsAccessReportRequest
|
679
|
+
attr_accessor job_id: ::String
|
680
|
+
attr_accessor max_items: ::Integer
|
681
|
+
attr_accessor marker: ::String
|
682
|
+
attr_accessor sort_key: ("SERVICE_NAMESPACE_ASCENDING" | "SERVICE_NAMESPACE_DESCENDING" | "LAST_AUTHENTICATED_TIME_ASCENDING" | "LAST_AUTHENTICATED_TIME_DESCENDING")
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class GetOrganizationsAccessReportResponse
|
687
|
+
attr_accessor job_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
688
|
+
attr_accessor job_creation_date: ::Time
|
689
|
+
attr_accessor job_completion_date: ::Time
|
690
|
+
attr_accessor number_of_services_accessible: ::Integer
|
691
|
+
attr_accessor number_of_services_not_accessed: ::Integer
|
692
|
+
attr_accessor access_details: ::Array[Types::AccessDetail]
|
693
|
+
attr_accessor is_truncated: bool
|
694
|
+
attr_accessor marker: ::String
|
695
|
+
attr_accessor error_details: Types::ErrorDetails
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class GetPolicyRequest
|
700
|
+
attr_accessor policy_arn: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class GetPolicyResponse
|
705
|
+
attr_accessor policy: Types::Policy
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class GetPolicyVersionRequest
|
710
|
+
attr_accessor policy_arn: ::String
|
711
|
+
attr_accessor version_id: ::String
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class GetPolicyVersionResponse
|
716
|
+
attr_accessor policy_version: Types::PolicyVersion
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class GetRolePolicyRequest
|
721
|
+
attr_accessor role_name: ::String
|
722
|
+
attr_accessor policy_name: ::String
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class GetRolePolicyResponse
|
727
|
+
attr_accessor role_name: ::String
|
728
|
+
attr_accessor policy_name: ::String
|
729
|
+
attr_accessor policy_document: ::String
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class GetRoleRequest
|
734
|
+
attr_accessor role_name: ::String
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class GetRoleResponse
|
739
|
+
attr_accessor role: Types::Role
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class GetSAMLProviderRequest
|
744
|
+
attr_accessor saml_provider_arn: ::String
|
745
|
+
SENSITIVE: []
|
746
|
+
end
|
747
|
+
|
748
|
+
class GetSAMLProviderResponse
|
749
|
+
attr_accessor saml_metadata_document: ::String
|
750
|
+
attr_accessor create_date: ::Time
|
751
|
+
attr_accessor valid_until: ::Time
|
752
|
+
attr_accessor tags: ::Array[Types::Tag]
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class GetSSHPublicKeyRequest
|
757
|
+
attr_accessor user_name: ::String
|
758
|
+
attr_accessor ssh_public_key_id: ::String
|
759
|
+
attr_accessor encoding: ("SSH" | "PEM")
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class GetSSHPublicKeyResponse
|
764
|
+
attr_accessor ssh_public_key: Types::SSHPublicKey
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class GetServerCertificateRequest
|
769
|
+
attr_accessor server_certificate_name: ::String
|
770
|
+
SENSITIVE: []
|
771
|
+
end
|
772
|
+
|
773
|
+
class GetServerCertificateResponse
|
774
|
+
attr_accessor server_certificate: Types::ServerCertificate
|
775
|
+
SENSITIVE: []
|
776
|
+
end
|
777
|
+
|
778
|
+
class GetServiceLastAccessedDetailsRequest
|
779
|
+
attr_accessor job_id: ::String
|
780
|
+
attr_accessor max_items: ::Integer
|
781
|
+
attr_accessor marker: ::String
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class GetServiceLastAccessedDetailsResponse
|
786
|
+
attr_accessor job_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
787
|
+
attr_accessor job_type: ("SERVICE_LEVEL" | "ACTION_LEVEL")
|
788
|
+
attr_accessor job_creation_date: ::Time
|
789
|
+
attr_accessor services_last_accessed: ::Array[Types::ServiceLastAccessed]
|
790
|
+
attr_accessor job_completion_date: ::Time
|
791
|
+
attr_accessor is_truncated: bool
|
792
|
+
attr_accessor marker: ::String
|
793
|
+
attr_accessor error: Types::ErrorDetails
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class GetServiceLastAccessedDetailsWithEntitiesRequest
|
798
|
+
attr_accessor job_id: ::String
|
799
|
+
attr_accessor service_namespace: ::String
|
800
|
+
attr_accessor max_items: ::Integer
|
801
|
+
attr_accessor marker: ::String
|
802
|
+
SENSITIVE: []
|
803
|
+
end
|
804
|
+
|
805
|
+
class GetServiceLastAccessedDetailsWithEntitiesResponse
|
806
|
+
attr_accessor job_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
807
|
+
attr_accessor job_creation_date: ::Time
|
808
|
+
attr_accessor job_completion_date: ::Time
|
809
|
+
attr_accessor entity_details_list: ::Array[Types::EntityDetails]
|
810
|
+
attr_accessor is_truncated: bool
|
811
|
+
attr_accessor marker: ::String
|
812
|
+
attr_accessor error: Types::ErrorDetails
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class GetServiceLinkedRoleDeletionStatusRequest
|
817
|
+
attr_accessor deletion_task_id: ::String
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class GetServiceLinkedRoleDeletionStatusResponse
|
822
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "NOT_STARTED")
|
823
|
+
attr_accessor reason: Types::DeletionTaskFailureReasonType
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class GetUserPolicyRequest
|
828
|
+
attr_accessor user_name: ::String
|
829
|
+
attr_accessor policy_name: ::String
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class GetUserPolicyResponse
|
834
|
+
attr_accessor user_name: ::String
|
835
|
+
attr_accessor policy_name: ::String
|
836
|
+
attr_accessor policy_document: ::String
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class GetUserRequest
|
841
|
+
attr_accessor user_name: ::String
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class GetUserResponse
|
846
|
+
attr_accessor user: Types::User
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class Group
|
851
|
+
attr_accessor path: ::String
|
852
|
+
attr_accessor group_name: ::String
|
853
|
+
attr_accessor group_id: ::String
|
854
|
+
attr_accessor arn: ::String
|
855
|
+
attr_accessor create_date: ::Time
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class GroupDetail
|
860
|
+
attr_accessor path: ::String
|
861
|
+
attr_accessor group_name: ::String
|
862
|
+
attr_accessor group_id: ::String
|
863
|
+
attr_accessor arn: ::String
|
864
|
+
attr_accessor create_date: ::Time
|
865
|
+
attr_accessor group_policy_list: ::Array[Types::PolicyDetail]
|
866
|
+
attr_accessor attached_managed_policies: ::Array[Types::AttachedPolicy]
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class InstanceProfile
|
871
|
+
attr_accessor path: ::String
|
872
|
+
attr_accessor instance_profile_name: ::String
|
873
|
+
attr_accessor instance_profile_id: ::String
|
874
|
+
attr_accessor arn: ::String
|
875
|
+
attr_accessor create_date: ::Time
|
876
|
+
attr_accessor roles: ::Array[Types::Role]
|
877
|
+
attr_accessor tags: ::Array[Types::Tag]
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class InvalidAuthenticationCodeException
|
882
|
+
attr_accessor message: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class InvalidCertificateException
|
887
|
+
attr_accessor message: ::String
|
888
|
+
SENSITIVE: []
|
889
|
+
end
|
890
|
+
|
891
|
+
class InvalidInputException
|
892
|
+
attr_accessor message: ::String
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
896
|
+
class InvalidPublicKeyException
|
897
|
+
attr_accessor message: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class InvalidUserTypeException
|
902
|
+
attr_accessor message: ::String
|
903
|
+
SENSITIVE: []
|
904
|
+
end
|
905
|
+
|
906
|
+
class KeyPairMismatchException
|
907
|
+
attr_accessor message: ::String
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class LimitExceededException
|
912
|
+
attr_accessor message: ::String
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class ListAccessKeysRequest
|
917
|
+
attr_accessor user_name: ::String
|
918
|
+
attr_accessor marker: ::String
|
919
|
+
attr_accessor max_items: ::Integer
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class ListAccessKeysResponse
|
924
|
+
attr_accessor access_key_metadata: ::Array[Types::AccessKeyMetadata]
|
925
|
+
attr_accessor is_truncated: bool
|
926
|
+
attr_accessor marker: ::String
|
927
|
+
SENSITIVE: []
|
928
|
+
end
|
929
|
+
|
930
|
+
class ListAccountAliasesRequest
|
931
|
+
attr_accessor marker: ::String
|
932
|
+
attr_accessor max_items: ::Integer
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class ListAccountAliasesResponse
|
937
|
+
attr_accessor account_aliases: ::Array[::String]
|
938
|
+
attr_accessor is_truncated: bool
|
939
|
+
attr_accessor marker: ::String
|
940
|
+
SENSITIVE: []
|
941
|
+
end
|
942
|
+
|
943
|
+
class ListAttachedGroupPoliciesRequest
|
944
|
+
attr_accessor group_name: ::String
|
945
|
+
attr_accessor path_prefix: ::String
|
946
|
+
attr_accessor marker: ::String
|
947
|
+
attr_accessor max_items: ::Integer
|
948
|
+
SENSITIVE: []
|
949
|
+
end
|
950
|
+
|
951
|
+
class ListAttachedGroupPoliciesResponse
|
952
|
+
attr_accessor attached_policies: ::Array[Types::AttachedPolicy]
|
953
|
+
attr_accessor is_truncated: bool
|
954
|
+
attr_accessor marker: ::String
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class ListAttachedRolePoliciesRequest
|
959
|
+
attr_accessor role_name: ::String
|
960
|
+
attr_accessor path_prefix: ::String
|
961
|
+
attr_accessor marker: ::String
|
962
|
+
attr_accessor max_items: ::Integer
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class ListAttachedRolePoliciesResponse
|
967
|
+
attr_accessor attached_policies: ::Array[Types::AttachedPolicy]
|
968
|
+
attr_accessor is_truncated: bool
|
969
|
+
attr_accessor marker: ::String
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class ListAttachedUserPoliciesRequest
|
974
|
+
attr_accessor user_name: ::String
|
975
|
+
attr_accessor path_prefix: ::String
|
976
|
+
attr_accessor marker: ::String
|
977
|
+
attr_accessor max_items: ::Integer
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class ListAttachedUserPoliciesResponse
|
982
|
+
attr_accessor attached_policies: ::Array[Types::AttachedPolicy]
|
983
|
+
attr_accessor is_truncated: bool
|
984
|
+
attr_accessor marker: ::String
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class ListEntitiesForPolicyRequest
|
989
|
+
attr_accessor policy_arn: ::String
|
990
|
+
attr_accessor entity_filter: ("User" | "Role" | "Group" | "LocalManagedPolicy" | "AWSManagedPolicy")
|
991
|
+
attr_accessor path_prefix: ::String
|
992
|
+
attr_accessor policy_usage_filter: ("PermissionsPolicy" | "PermissionsBoundary")
|
993
|
+
attr_accessor marker: ::String
|
994
|
+
attr_accessor max_items: ::Integer
|
995
|
+
SENSITIVE: []
|
996
|
+
end
|
997
|
+
|
998
|
+
class ListEntitiesForPolicyResponse
|
999
|
+
attr_accessor policy_groups: ::Array[Types::PolicyGroup]
|
1000
|
+
attr_accessor policy_users: ::Array[Types::PolicyUser]
|
1001
|
+
attr_accessor policy_roles: ::Array[Types::PolicyRole]
|
1002
|
+
attr_accessor is_truncated: bool
|
1003
|
+
attr_accessor marker: ::String
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class ListGroupPoliciesRequest
|
1008
|
+
attr_accessor group_name: ::String
|
1009
|
+
attr_accessor marker: ::String
|
1010
|
+
attr_accessor max_items: ::Integer
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class ListGroupPoliciesResponse
|
1015
|
+
attr_accessor policy_names: ::Array[::String]
|
1016
|
+
attr_accessor is_truncated: bool
|
1017
|
+
attr_accessor marker: ::String
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class ListGroupsForUserRequest
|
1022
|
+
attr_accessor user_name: ::String
|
1023
|
+
attr_accessor marker: ::String
|
1024
|
+
attr_accessor max_items: ::Integer
|
1025
|
+
SENSITIVE: []
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class ListGroupsForUserResponse
|
1029
|
+
attr_accessor groups: ::Array[Types::Group]
|
1030
|
+
attr_accessor is_truncated: bool
|
1031
|
+
attr_accessor marker: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class ListGroupsRequest
|
1036
|
+
attr_accessor path_prefix: ::String
|
1037
|
+
attr_accessor marker: ::String
|
1038
|
+
attr_accessor max_items: ::Integer
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class ListGroupsResponse
|
1043
|
+
attr_accessor groups: ::Array[Types::Group]
|
1044
|
+
attr_accessor is_truncated: bool
|
1045
|
+
attr_accessor marker: ::String
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class ListInstanceProfileTagsRequest
|
1050
|
+
attr_accessor instance_profile_name: ::String
|
1051
|
+
attr_accessor marker: ::String
|
1052
|
+
attr_accessor max_items: ::Integer
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class ListInstanceProfileTagsResponse
|
1057
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1058
|
+
attr_accessor is_truncated: bool
|
1059
|
+
attr_accessor marker: ::String
|
1060
|
+
SENSITIVE: []
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class ListInstanceProfilesForRoleRequest
|
1064
|
+
attr_accessor role_name: ::String
|
1065
|
+
attr_accessor marker: ::String
|
1066
|
+
attr_accessor max_items: ::Integer
|
1067
|
+
SENSITIVE: []
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class ListInstanceProfilesForRoleResponse
|
1071
|
+
attr_accessor instance_profiles: ::Array[Types::InstanceProfile]
|
1072
|
+
attr_accessor is_truncated: bool
|
1073
|
+
attr_accessor marker: ::String
|
1074
|
+
SENSITIVE: []
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class ListInstanceProfilesRequest
|
1078
|
+
attr_accessor path_prefix: ::String
|
1079
|
+
attr_accessor marker: ::String
|
1080
|
+
attr_accessor max_items: ::Integer
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class ListInstanceProfilesResponse
|
1085
|
+
attr_accessor instance_profiles: ::Array[Types::InstanceProfile]
|
1086
|
+
attr_accessor is_truncated: bool
|
1087
|
+
attr_accessor marker: ::String
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class ListMFADeviceTagsRequest
|
1092
|
+
attr_accessor serial_number: ::String
|
1093
|
+
attr_accessor marker: ::String
|
1094
|
+
attr_accessor max_items: ::Integer
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class ListMFADeviceTagsResponse
|
1099
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1100
|
+
attr_accessor is_truncated: bool
|
1101
|
+
attr_accessor marker: ::String
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class ListMFADevicesRequest
|
1106
|
+
attr_accessor user_name: ::String
|
1107
|
+
attr_accessor marker: ::String
|
1108
|
+
attr_accessor max_items: ::Integer
|
1109
|
+
SENSITIVE: []
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
class ListMFADevicesResponse
|
1113
|
+
attr_accessor mfa_devices: ::Array[Types::MFADevice]
|
1114
|
+
attr_accessor is_truncated: bool
|
1115
|
+
attr_accessor marker: ::String
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class ListOpenIDConnectProviderTagsRequest
|
1120
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
1121
|
+
attr_accessor marker: ::String
|
1122
|
+
attr_accessor max_items: ::Integer
|
1123
|
+
SENSITIVE: []
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class ListOpenIDConnectProviderTagsResponse
|
1127
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1128
|
+
attr_accessor is_truncated: bool
|
1129
|
+
attr_accessor marker: ::String
|
1130
|
+
SENSITIVE: []
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class ListOpenIDConnectProvidersRequest < Aws::EmptyStructure
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class ListOpenIDConnectProvidersResponse
|
1137
|
+
attr_accessor open_id_connect_provider_list: ::Array[Types::OpenIDConnectProviderListEntry]
|
1138
|
+
SENSITIVE: []
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class ListPoliciesGrantingServiceAccessEntry
|
1142
|
+
attr_accessor service_namespace: ::String
|
1143
|
+
attr_accessor policies: ::Array[Types::PolicyGrantingServiceAccess]
|
1144
|
+
SENSITIVE: []
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class ListPoliciesGrantingServiceAccessRequest
|
1148
|
+
attr_accessor marker: ::String
|
1149
|
+
attr_accessor arn: ::String
|
1150
|
+
attr_accessor service_namespaces: ::Array[::String]
|
1151
|
+
SENSITIVE: []
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class ListPoliciesGrantingServiceAccessResponse
|
1155
|
+
attr_accessor policies_granting_service_access: ::Array[Types::ListPoliciesGrantingServiceAccessEntry]
|
1156
|
+
attr_accessor is_truncated: bool
|
1157
|
+
attr_accessor marker: ::String
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class ListPoliciesRequest
|
1162
|
+
attr_accessor scope: ("All" | "AWS" | "Local")
|
1163
|
+
attr_accessor only_attached: bool
|
1164
|
+
attr_accessor path_prefix: ::String
|
1165
|
+
attr_accessor policy_usage_filter: ("PermissionsPolicy" | "PermissionsBoundary")
|
1166
|
+
attr_accessor marker: ::String
|
1167
|
+
attr_accessor max_items: ::Integer
|
1168
|
+
SENSITIVE: []
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class ListPoliciesResponse
|
1172
|
+
attr_accessor policies: ::Array[Types::Policy]
|
1173
|
+
attr_accessor is_truncated: bool
|
1174
|
+
attr_accessor marker: ::String
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class ListPolicyTagsRequest
|
1179
|
+
attr_accessor policy_arn: ::String
|
1180
|
+
attr_accessor marker: ::String
|
1181
|
+
attr_accessor max_items: ::Integer
|
1182
|
+
SENSITIVE: []
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class ListPolicyTagsResponse
|
1186
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1187
|
+
attr_accessor is_truncated: bool
|
1188
|
+
attr_accessor marker: ::String
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class ListPolicyVersionsRequest
|
1193
|
+
attr_accessor policy_arn: ::String
|
1194
|
+
attr_accessor marker: ::String
|
1195
|
+
attr_accessor max_items: ::Integer
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class ListPolicyVersionsResponse
|
1200
|
+
attr_accessor versions: ::Array[Types::PolicyVersion]
|
1201
|
+
attr_accessor is_truncated: bool
|
1202
|
+
attr_accessor marker: ::String
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class ListRolePoliciesRequest
|
1207
|
+
attr_accessor role_name: ::String
|
1208
|
+
attr_accessor marker: ::String
|
1209
|
+
attr_accessor max_items: ::Integer
|
1210
|
+
SENSITIVE: []
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
class ListRolePoliciesResponse
|
1214
|
+
attr_accessor policy_names: ::Array[::String]
|
1215
|
+
attr_accessor is_truncated: bool
|
1216
|
+
attr_accessor marker: ::String
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class ListRoleTagsRequest
|
1221
|
+
attr_accessor role_name: ::String
|
1222
|
+
attr_accessor marker: ::String
|
1223
|
+
attr_accessor max_items: ::Integer
|
1224
|
+
SENSITIVE: []
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class ListRoleTagsResponse
|
1228
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1229
|
+
attr_accessor is_truncated: bool
|
1230
|
+
attr_accessor marker: ::String
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class ListRolesRequest
|
1235
|
+
attr_accessor path_prefix: ::String
|
1236
|
+
attr_accessor marker: ::String
|
1237
|
+
attr_accessor max_items: ::Integer
|
1238
|
+
SENSITIVE: []
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
class ListRolesResponse
|
1242
|
+
attr_accessor roles: ::Array[Types::Role]
|
1243
|
+
attr_accessor is_truncated: bool
|
1244
|
+
attr_accessor marker: ::String
|
1245
|
+
SENSITIVE: []
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
class ListSAMLProviderTagsRequest
|
1249
|
+
attr_accessor saml_provider_arn: ::String
|
1250
|
+
attr_accessor marker: ::String
|
1251
|
+
attr_accessor max_items: ::Integer
|
1252
|
+
SENSITIVE: []
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class ListSAMLProviderTagsResponse
|
1256
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1257
|
+
attr_accessor is_truncated: bool
|
1258
|
+
attr_accessor marker: ::String
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class ListSAMLProvidersRequest < Aws::EmptyStructure
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
class ListSAMLProvidersResponse
|
1266
|
+
attr_accessor saml_provider_list: ::Array[Types::SAMLProviderListEntry]
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class ListSSHPublicKeysRequest
|
1271
|
+
attr_accessor user_name: ::String
|
1272
|
+
attr_accessor marker: ::String
|
1273
|
+
attr_accessor max_items: ::Integer
|
1274
|
+
SENSITIVE: []
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class ListSSHPublicKeysResponse
|
1278
|
+
attr_accessor ssh_public_keys: ::Array[Types::SSHPublicKeyMetadata]
|
1279
|
+
attr_accessor is_truncated: bool
|
1280
|
+
attr_accessor marker: ::String
|
1281
|
+
SENSITIVE: []
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
class ListServerCertificateTagsRequest
|
1285
|
+
attr_accessor server_certificate_name: ::String
|
1286
|
+
attr_accessor marker: ::String
|
1287
|
+
attr_accessor max_items: ::Integer
|
1288
|
+
SENSITIVE: []
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
class ListServerCertificateTagsResponse
|
1292
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1293
|
+
attr_accessor is_truncated: bool
|
1294
|
+
attr_accessor marker: ::String
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class ListServerCertificatesRequest
|
1299
|
+
attr_accessor path_prefix: ::String
|
1300
|
+
attr_accessor marker: ::String
|
1301
|
+
attr_accessor max_items: ::Integer
|
1302
|
+
SENSITIVE: []
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class ListServerCertificatesResponse
|
1306
|
+
attr_accessor server_certificate_metadata_list: ::Array[Types::ServerCertificateMetadata]
|
1307
|
+
attr_accessor is_truncated: bool
|
1308
|
+
attr_accessor marker: ::String
|
1309
|
+
SENSITIVE: []
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
class ListServiceSpecificCredentialsRequest
|
1313
|
+
attr_accessor user_name: ::String
|
1314
|
+
attr_accessor service_name: ::String
|
1315
|
+
SENSITIVE: []
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class ListServiceSpecificCredentialsResponse
|
1319
|
+
attr_accessor service_specific_credentials: ::Array[Types::ServiceSpecificCredentialMetadata]
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class ListSigningCertificatesRequest
|
1324
|
+
attr_accessor user_name: ::String
|
1325
|
+
attr_accessor marker: ::String
|
1326
|
+
attr_accessor max_items: ::Integer
|
1327
|
+
SENSITIVE: []
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
class ListSigningCertificatesResponse
|
1331
|
+
attr_accessor certificates: ::Array[Types::SigningCertificate]
|
1332
|
+
attr_accessor is_truncated: bool
|
1333
|
+
attr_accessor marker: ::String
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
class ListUserPoliciesRequest
|
1338
|
+
attr_accessor user_name: ::String
|
1339
|
+
attr_accessor marker: ::String
|
1340
|
+
attr_accessor max_items: ::Integer
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class ListUserPoliciesResponse
|
1345
|
+
attr_accessor policy_names: ::Array[::String]
|
1346
|
+
attr_accessor is_truncated: bool
|
1347
|
+
attr_accessor marker: ::String
|
1348
|
+
SENSITIVE: []
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
class ListUserTagsRequest
|
1352
|
+
attr_accessor user_name: ::String
|
1353
|
+
attr_accessor marker: ::String
|
1354
|
+
attr_accessor max_items: ::Integer
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class ListUserTagsResponse
|
1359
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1360
|
+
attr_accessor is_truncated: bool
|
1361
|
+
attr_accessor marker: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class ListUsersRequest
|
1366
|
+
attr_accessor path_prefix: ::String
|
1367
|
+
attr_accessor marker: ::String
|
1368
|
+
attr_accessor max_items: ::Integer
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ListUsersResponse
|
1373
|
+
attr_accessor users: ::Array[Types::User]
|
1374
|
+
attr_accessor is_truncated: bool
|
1375
|
+
attr_accessor marker: ::String
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class ListVirtualMFADevicesRequest
|
1380
|
+
attr_accessor assignment_status: ("Assigned" | "Unassigned" | "Any")
|
1381
|
+
attr_accessor marker: ::String
|
1382
|
+
attr_accessor max_items: ::Integer
|
1383
|
+
SENSITIVE: []
|
1384
|
+
end
|
1385
|
+
|
1386
|
+
class ListVirtualMFADevicesResponse
|
1387
|
+
attr_accessor virtual_mfa_devices: ::Array[Types::VirtualMFADevice]
|
1388
|
+
attr_accessor is_truncated: bool
|
1389
|
+
attr_accessor marker: ::String
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class LoginProfile
|
1394
|
+
attr_accessor user_name: ::String
|
1395
|
+
attr_accessor create_date: ::Time
|
1396
|
+
attr_accessor password_reset_required: bool
|
1397
|
+
SENSITIVE: []
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class MFADevice
|
1401
|
+
attr_accessor user_name: ::String
|
1402
|
+
attr_accessor serial_number: ::String
|
1403
|
+
attr_accessor enable_date: ::Time
|
1404
|
+
SENSITIVE: []
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
class MalformedCertificateException
|
1408
|
+
attr_accessor message: ::String
|
1409
|
+
SENSITIVE: []
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
class MalformedPolicyDocumentException
|
1413
|
+
attr_accessor message: ::String
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class ManagedPolicyDetail
|
1418
|
+
attr_accessor policy_name: ::String
|
1419
|
+
attr_accessor policy_id: ::String
|
1420
|
+
attr_accessor arn: ::String
|
1421
|
+
attr_accessor path: ::String
|
1422
|
+
attr_accessor default_version_id: ::String
|
1423
|
+
attr_accessor attachment_count: ::Integer
|
1424
|
+
attr_accessor permissions_boundary_usage_count: ::Integer
|
1425
|
+
attr_accessor is_attachable: bool
|
1426
|
+
attr_accessor description: ::String
|
1427
|
+
attr_accessor create_date: ::Time
|
1428
|
+
attr_accessor update_date: ::Time
|
1429
|
+
attr_accessor policy_version_list: ::Array[Types::PolicyVersion]
|
1430
|
+
SENSITIVE: []
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
class NoSuchEntityException
|
1434
|
+
attr_accessor message: ::String
|
1435
|
+
SENSITIVE: []
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
class OpenIDConnectProviderListEntry
|
1439
|
+
attr_accessor arn: ::String
|
1440
|
+
SENSITIVE: []
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
class OpenIdIdpCommunicationErrorException
|
1444
|
+
attr_accessor message: ::String
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class OrganizationsDecisionDetail
|
1449
|
+
attr_accessor allowed_by_organizations: bool
|
1450
|
+
SENSITIVE: []
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
class PasswordPolicy
|
1454
|
+
attr_accessor minimum_password_length: ::Integer
|
1455
|
+
attr_accessor require_symbols: bool
|
1456
|
+
attr_accessor require_numbers: bool
|
1457
|
+
attr_accessor require_uppercase_characters: bool
|
1458
|
+
attr_accessor require_lowercase_characters: bool
|
1459
|
+
attr_accessor allow_users_to_change_password: bool
|
1460
|
+
attr_accessor expire_passwords: bool
|
1461
|
+
attr_accessor max_password_age: ::Integer
|
1462
|
+
attr_accessor password_reuse_prevention: ::Integer
|
1463
|
+
attr_accessor hard_expiry: bool
|
1464
|
+
SENSITIVE: []
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class PasswordPolicyViolationException
|
1468
|
+
attr_accessor message: ::String
|
1469
|
+
SENSITIVE: []
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
class PermissionsBoundaryDecisionDetail
|
1473
|
+
attr_accessor allowed_by_permissions_boundary: bool
|
1474
|
+
SENSITIVE: []
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class Policy
|
1478
|
+
attr_accessor policy_name: ::String
|
1479
|
+
attr_accessor policy_id: ::String
|
1480
|
+
attr_accessor arn: ::String
|
1481
|
+
attr_accessor path: ::String
|
1482
|
+
attr_accessor default_version_id: ::String
|
1483
|
+
attr_accessor attachment_count: ::Integer
|
1484
|
+
attr_accessor permissions_boundary_usage_count: ::Integer
|
1485
|
+
attr_accessor is_attachable: bool
|
1486
|
+
attr_accessor description: ::String
|
1487
|
+
attr_accessor create_date: ::Time
|
1488
|
+
attr_accessor update_date: ::Time
|
1489
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1490
|
+
SENSITIVE: []
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
class PolicyDetail
|
1494
|
+
attr_accessor policy_name: ::String
|
1495
|
+
attr_accessor policy_document: ::String
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class PolicyEvaluationException
|
1500
|
+
attr_accessor message: ::String
|
1501
|
+
SENSITIVE: []
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
class PolicyGrantingServiceAccess
|
1505
|
+
attr_accessor policy_name: ::String
|
1506
|
+
attr_accessor policy_type: ("INLINE" | "MANAGED")
|
1507
|
+
attr_accessor policy_arn: ::String
|
1508
|
+
attr_accessor entity_type: ("USER" | "ROLE" | "GROUP")
|
1509
|
+
attr_accessor entity_name: ::String
|
1510
|
+
SENSITIVE: []
|
1511
|
+
end
|
1512
|
+
|
1513
|
+
class PolicyGroup
|
1514
|
+
attr_accessor group_name: ::String
|
1515
|
+
attr_accessor group_id: ::String
|
1516
|
+
SENSITIVE: []
|
1517
|
+
end
|
1518
|
+
|
1519
|
+
class PolicyNotAttachableException
|
1520
|
+
attr_accessor message: ::String
|
1521
|
+
SENSITIVE: []
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
class PolicyRole
|
1525
|
+
attr_accessor role_name: ::String
|
1526
|
+
attr_accessor role_id: ::String
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class PolicyUser
|
1531
|
+
attr_accessor user_name: ::String
|
1532
|
+
attr_accessor user_id: ::String
|
1533
|
+
SENSITIVE: []
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
class PolicyVersion
|
1537
|
+
attr_accessor document: ::String
|
1538
|
+
attr_accessor version_id: ::String
|
1539
|
+
attr_accessor is_default_version: bool
|
1540
|
+
attr_accessor create_date: ::Time
|
1541
|
+
SENSITIVE: []
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
class Position
|
1545
|
+
attr_accessor line: ::Integer
|
1546
|
+
attr_accessor column: ::Integer
|
1547
|
+
SENSITIVE: []
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class PutGroupPolicyRequest
|
1551
|
+
attr_accessor group_name: ::String
|
1552
|
+
attr_accessor policy_name: ::String
|
1553
|
+
attr_accessor policy_document: ::String
|
1554
|
+
SENSITIVE: []
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
class PutRolePermissionsBoundaryRequest
|
1558
|
+
attr_accessor role_name: ::String
|
1559
|
+
attr_accessor permissions_boundary: ::String
|
1560
|
+
SENSITIVE: []
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
class PutRolePolicyRequest
|
1564
|
+
attr_accessor role_name: ::String
|
1565
|
+
attr_accessor policy_name: ::String
|
1566
|
+
attr_accessor policy_document: ::String
|
1567
|
+
SENSITIVE: []
|
1568
|
+
end
|
1569
|
+
|
1570
|
+
class PutUserPermissionsBoundaryRequest
|
1571
|
+
attr_accessor user_name: ::String
|
1572
|
+
attr_accessor permissions_boundary: ::String
|
1573
|
+
SENSITIVE: []
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
class PutUserPolicyRequest
|
1577
|
+
attr_accessor user_name: ::String
|
1578
|
+
attr_accessor policy_name: ::String
|
1579
|
+
attr_accessor policy_document: ::String
|
1580
|
+
SENSITIVE: []
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
class RemoveClientIDFromOpenIDConnectProviderRequest
|
1584
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
1585
|
+
attr_accessor client_id: ::String
|
1586
|
+
SENSITIVE: []
|
1587
|
+
end
|
1588
|
+
|
1589
|
+
class RemoveRoleFromInstanceProfileRequest
|
1590
|
+
attr_accessor instance_profile_name: ::String
|
1591
|
+
attr_accessor role_name: ::String
|
1592
|
+
SENSITIVE: []
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
class RemoveUserFromGroupRequest
|
1596
|
+
attr_accessor group_name: ::String
|
1597
|
+
attr_accessor user_name: ::String
|
1598
|
+
SENSITIVE: []
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
class ReportGenerationLimitExceededException
|
1602
|
+
attr_accessor message: ::String
|
1603
|
+
SENSITIVE: []
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class ResetServiceSpecificCredentialRequest
|
1607
|
+
attr_accessor user_name: ::String
|
1608
|
+
attr_accessor service_specific_credential_id: ::String
|
1609
|
+
SENSITIVE: []
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class ResetServiceSpecificCredentialResponse
|
1613
|
+
attr_accessor service_specific_credential: Types::ServiceSpecificCredential
|
1614
|
+
SENSITIVE: []
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
class ResourceSpecificResult
|
1618
|
+
attr_accessor eval_resource_name: ::String
|
1619
|
+
attr_accessor eval_resource_decision: ("allowed" | "explicitDeny" | "implicitDeny")
|
1620
|
+
attr_accessor matched_statements: ::Array[Types::Statement]
|
1621
|
+
attr_accessor missing_context_values: ::Array[::String]
|
1622
|
+
attr_accessor eval_decision_details: ::Hash[::String, ("allowed" | "explicitDeny" | "implicitDeny")]
|
1623
|
+
attr_accessor permissions_boundary_decision_detail: Types::PermissionsBoundaryDecisionDetail
|
1624
|
+
SENSITIVE: []
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
class ResyncMFADeviceRequest
|
1628
|
+
attr_accessor user_name: ::String
|
1629
|
+
attr_accessor serial_number: ::String
|
1630
|
+
attr_accessor authentication_code_1: ::String
|
1631
|
+
attr_accessor authentication_code_2: ::String
|
1632
|
+
SENSITIVE: []
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
class Role
|
1636
|
+
attr_accessor path: ::String
|
1637
|
+
attr_accessor role_name: ::String
|
1638
|
+
attr_accessor role_id: ::String
|
1639
|
+
attr_accessor arn: ::String
|
1640
|
+
attr_accessor create_date: ::Time
|
1641
|
+
attr_accessor assume_role_policy_document: ::String
|
1642
|
+
attr_accessor description: ::String
|
1643
|
+
attr_accessor max_session_duration: ::Integer
|
1644
|
+
attr_accessor permissions_boundary: Types::AttachedPermissionsBoundary
|
1645
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1646
|
+
attr_accessor role_last_used: Types::RoleLastUsed
|
1647
|
+
SENSITIVE: []
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class RoleDetail
|
1651
|
+
attr_accessor path: ::String
|
1652
|
+
attr_accessor role_name: ::String
|
1653
|
+
attr_accessor role_id: ::String
|
1654
|
+
attr_accessor arn: ::String
|
1655
|
+
attr_accessor create_date: ::Time
|
1656
|
+
attr_accessor assume_role_policy_document: ::String
|
1657
|
+
attr_accessor instance_profile_list: ::Array[Types::InstanceProfile]
|
1658
|
+
attr_accessor role_policy_list: ::Array[Types::PolicyDetail]
|
1659
|
+
attr_accessor attached_managed_policies: ::Array[Types::AttachedPolicy]
|
1660
|
+
attr_accessor permissions_boundary: Types::AttachedPermissionsBoundary
|
1661
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1662
|
+
attr_accessor role_last_used: Types::RoleLastUsed
|
1663
|
+
SENSITIVE: []
|
1664
|
+
end
|
1665
|
+
|
1666
|
+
class RoleLastUsed
|
1667
|
+
attr_accessor last_used_date: ::Time
|
1668
|
+
attr_accessor region: ::String
|
1669
|
+
SENSITIVE: []
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
class RoleUsageType
|
1673
|
+
attr_accessor region: ::String
|
1674
|
+
attr_accessor resources: ::Array[::String]
|
1675
|
+
SENSITIVE: []
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
class SAMLProviderListEntry
|
1679
|
+
attr_accessor arn: ::String
|
1680
|
+
attr_accessor valid_until: ::Time
|
1681
|
+
attr_accessor create_date: ::Time
|
1682
|
+
SENSITIVE: []
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
class SSHPublicKey
|
1686
|
+
attr_accessor user_name: ::String
|
1687
|
+
attr_accessor ssh_public_key_id: ::String
|
1688
|
+
attr_accessor fingerprint: ::String
|
1689
|
+
attr_accessor ssh_public_key_body: ::String
|
1690
|
+
attr_accessor status: ("Active" | "Inactive")
|
1691
|
+
attr_accessor upload_date: ::Time
|
1692
|
+
SENSITIVE: []
|
1693
|
+
end
|
1694
|
+
|
1695
|
+
class SSHPublicKeyMetadata
|
1696
|
+
attr_accessor user_name: ::String
|
1697
|
+
attr_accessor ssh_public_key_id: ::String
|
1698
|
+
attr_accessor status: ("Active" | "Inactive")
|
1699
|
+
attr_accessor upload_date: ::Time
|
1700
|
+
SENSITIVE: []
|
1701
|
+
end
|
1702
|
+
|
1703
|
+
class ServerCertificate
|
1704
|
+
attr_accessor server_certificate_metadata: Types::ServerCertificateMetadata
|
1705
|
+
attr_accessor certificate_body: ::String
|
1706
|
+
attr_accessor certificate_chain: ::String
|
1707
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1708
|
+
SENSITIVE: []
|
1709
|
+
end
|
1710
|
+
|
1711
|
+
class ServerCertificateMetadata
|
1712
|
+
attr_accessor path: ::String
|
1713
|
+
attr_accessor server_certificate_name: ::String
|
1714
|
+
attr_accessor server_certificate_id: ::String
|
1715
|
+
attr_accessor arn: ::String
|
1716
|
+
attr_accessor upload_date: ::Time
|
1717
|
+
attr_accessor expiration: ::Time
|
1718
|
+
SENSITIVE: []
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
class ServiceFailureException
|
1722
|
+
attr_accessor message: ::String
|
1723
|
+
SENSITIVE: []
|
1724
|
+
end
|
1725
|
+
|
1726
|
+
class ServiceLastAccessed
|
1727
|
+
attr_accessor service_name: ::String
|
1728
|
+
attr_accessor last_authenticated: ::Time
|
1729
|
+
attr_accessor service_namespace: ::String
|
1730
|
+
attr_accessor last_authenticated_entity: ::String
|
1731
|
+
attr_accessor last_authenticated_region: ::String
|
1732
|
+
attr_accessor total_authenticated_entities: ::Integer
|
1733
|
+
attr_accessor tracked_actions_last_accessed: ::Array[Types::TrackedActionLastAccessed]
|
1734
|
+
SENSITIVE: []
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
class ServiceNotSupportedException
|
1738
|
+
attr_accessor message: ::String
|
1739
|
+
SENSITIVE: []
|
1740
|
+
end
|
1741
|
+
|
1742
|
+
class ServiceSpecificCredential
|
1743
|
+
attr_accessor create_date: ::Time
|
1744
|
+
attr_accessor service_name: ::String
|
1745
|
+
attr_accessor service_user_name: ::String
|
1746
|
+
attr_accessor service_password: ::String
|
1747
|
+
attr_accessor service_specific_credential_id: ::String
|
1748
|
+
attr_accessor user_name: ::String
|
1749
|
+
attr_accessor status: ("Active" | "Inactive")
|
1750
|
+
SENSITIVE: [:service_password]
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
class ServiceSpecificCredentialMetadata
|
1754
|
+
attr_accessor user_name: ::String
|
1755
|
+
attr_accessor status: ("Active" | "Inactive")
|
1756
|
+
attr_accessor service_user_name: ::String
|
1757
|
+
attr_accessor create_date: ::Time
|
1758
|
+
attr_accessor service_specific_credential_id: ::String
|
1759
|
+
attr_accessor service_name: ::String
|
1760
|
+
SENSITIVE: []
|
1761
|
+
end
|
1762
|
+
|
1763
|
+
class SetDefaultPolicyVersionRequest
|
1764
|
+
attr_accessor policy_arn: ::String
|
1765
|
+
attr_accessor version_id: ::String
|
1766
|
+
SENSITIVE: []
|
1767
|
+
end
|
1768
|
+
|
1769
|
+
class SetSecurityTokenServicePreferencesRequest
|
1770
|
+
attr_accessor global_endpoint_token_version: ("v1Token" | "v2Token")
|
1771
|
+
SENSITIVE: []
|
1772
|
+
end
|
1773
|
+
|
1774
|
+
class SigningCertificate
|
1775
|
+
attr_accessor user_name: ::String
|
1776
|
+
attr_accessor certificate_id: ::String
|
1777
|
+
attr_accessor certificate_body: ::String
|
1778
|
+
attr_accessor status: ("Active" | "Inactive")
|
1779
|
+
attr_accessor upload_date: ::Time
|
1780
|
+
SENSITIVE: []
|
1781
|
+
end
|
1782
|
+
|
1783
|
+
class SimulateCustomPolicyRequest
|
1784
|
+
attr_accessor policy_input_list: ::Array[::String]
|
1785
|
+
attr_accessor permissions_boundary_policy_input_list: ::Array[::String]
|
1786
|
+
attr_accessor action_names: ::Array[::String]
|
1787
|
+
attr_accessor resource_arns: ::Array[::String]
|
1788
|
+
attr_accessor resource_policy: ::String
|
1789
|
+
attr_accessor resource_owner: ::String
|
1790
|
+
attr_accessor caller_arn: ::String
|
1791
|
+
attr_accessor context_entries: ::Array[Types::ContextEntry]
|
1792
|
+
attr_accessor resource_handling_option: ::String
|
1793
|
+
attr_accessor max_items: ::Integer
|
1794
|
+
attr_accessor marker: ::String
|
1795
|
+
SENSITIVE: []
|
1796
|
+
end
|
1797
|
+
|
1798
|
+
class SimulatePolicyResponse
|
1799
|
+
attr_accessor evaluation_results: ::Array[Types::EvaluationResult]
|
1800
|
+
attr_accessor is_truncated: bool
|
1801
|
+
attr_accessor marker: ::String
|
1802
|
+
SENSITIVE: []
|
1803
|
+
end
|
1804
|
+
|
1805
|
+
class SimulatePrincipalPolicyRequest
|
1806
|
+
attr_accessor policy_source_arn: ::String
|
1807
|
+
attr_accessor policy_input_list: ::Array[::String]
|
1808
|
+
attr_accessor permissions_boundary_policy_input_list: ::Array[::String]
|
1809
|
+
attr_accessor action_names: ::Array[::String]
|
1810
|
+
attr_accessor resource_arns: ::Array[::String]
|
1811
|
+
attr_accessor resource_policy: ::String
|
1812
|
+
attr_accessor resource_owner: ::String
|
1813
|
+
attr_accessor caller_arn: ::String
|
1814
|
+
attr_accessor context_entries: ::Array[Types::ContextEntry]
|
1815
|
+
attr_accessor resource_handling_option: ::String
|
1816
|
+
attr_accessor max_items: ::Integer
|
1817
|
+
attr_accessor marker: ::String
|
1818
|
+
SENSITIVE: []
|
1819
|
+
end
|
1820
|
+
|
1821
|
+
class Statement
|
1822
|
+
attr_accessor source_policy_id: ::String
|
1823
|
+
attr_accessor source_policy_type: ("user" | "group" | "role" | "aws-managed" | "user-managed" | "resource" | "none")
|
1824
|
+
attr_accessor start_position: Types::Position
|
1825
|
+
attr_accessor end_position: Types::Position
|
1826
|
+
SENSITIVE: []
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
class Tag
|
1830
|
+
attr_accessor key: ::String
|
1831
|
+
attr_accessor value: ::String
|
1832
|
+
SENSITIVE: []
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
class TagInstanceProfileRequest
|
1836
|
+
attr_accessor instance_profile_name: ::String
|
1837
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1838
|
+
SENSITIVE: []
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
class TagMFADeviceRequest
|
1842
|
+
attr_accessor serial_number: ::String
|
1843
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1844
|
+
SENSITIVE: []
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
class TagOpenIDConnectProviderRequest
|
1848
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
1849
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1850
|
+
SENSITIVE: []
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
class TagPolicyRequest
|
1854
|
+
attr_accessor policy_arn: ::String
|
1855
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1856
|
+
SENSITIVE: []
|
1857
|
+
end
|
1858
|
+
|
1859
|
+
class TagRoleRequest
|
1860
|
+
attr_accessor role_name: ::String
|
1861
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1862
|
+
SENSITIVE: []
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
class TagSAMLProviderRequest
|
1866
|
+
attr_accessor saml_provider_arn: ::String
|
1867
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1868
|
+
SENSITIVE: []
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
class TagServerCertificateRequest
|
1872
|
+
attr_accessor server_certificate_name: ::String
|
1873
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1874
|
+
SENSITIVE: []
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
class TagUserRequest
|
1878
|
+
attr_accessor user_name: ::String
|
1879
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1880
|
+
SENSITIVE: []
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
class TrackedActionLastAccessed
|
1884
|
+
attr_accessor action_name: ::String
|
1885
|
+
attr_accessor last_accessed_entity: ::String
|
1886
|
+
attr_accessor last_accessed_time: ::Time
|
1887
|
+
attr_accessor last_accessed_region: ::String
|
1888
|
+
SENSITIVE: []
|
1889
|
+
end
|
1890
|
+
|
1891
|
+
class UnmodifiableEntityException
|
1892
|
+
attr_accessor message: ::String
|
1893
|
+
SENSITIVE: []
|
1894
|
+
end
|
1895
|
+
|
1896
|
+
class UnrecognizedPublicKeyEncodingException
|
1897
|
+
attr_accessor message: ::String
|
1898
|
+
SENSITIVE: []
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
class UntagInstanceProfileRequest
|
1902
|
+
attr_accessor instance_profile_name: ::String
|
1903
|
+
attr_accessor tag_keys: ::Array[::String]
|
1904
|
+
SENSITIVE: []
|
1905
|
+
end
|
1906
|
+
|
1907
|
+
class UntagMFADeviceRequest
|
1908
|
+
attr_accessor serial_number: ::String
|
1909
|
+
attr_accessor tag_keys: ::Array[::String]
|
1910
|
+
SENSITIVE: []
|
1911
|
+
end
|
1912
|
+
|
1913
|
+
class UntagOpenIDConnectProviderRequest
|
1914
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
1915
|
+
attr_accessor tag_keys: ::Array[::String]
|
1916
|
+
SENSITIVE: []
|
1917
|
+
end
|
1918
|
+
|
1919
|
+
class UntagPolicyRequest
|
1920
|
+
attr_accessor policy_arn: ::String
|
1921
|
+
attr_accessor tag_keys: ::Array[::String]
|
1922
|
+
SENSITIVE: []
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
class UntagRoleRequest
|
1926
|
+
attr_accessor role_name: ::String
|
1927
|
+
attr_accessor tag_keys: ::Array[::String]
|
1928
|
+
SENSITIVE: []
|
1929
|
+
end
|
1930
|
+
|
1931
|
+
class UntagSAMLProviderRequest
|
1932
|
+
attr_accessor saml_provider_arn: ::String
|
1933
|
+
attr_accessor tag_keys: ::Array[::String]
|
1934
|
+
SENSITIVE: []
|
1935
|
+
end
|
1936
|
+
|
1937
|
+
class UntagServerCertificateRequest
|
1938
|
+
attr_accessor server_certificate_name: ::String
|
1939
|
+
attr_accessor tag_keys: ::Array[::String]
|
1940
|
+
SENSITIVE: []
|
1941
|
+
end
|
1942
|
+
|
1943
|
+
class UntagUserRequest
|
1944
|
+
attr_accessor user_name: ::String
|
1945
|
+
attr_accessor tag_keys: ::Array[::String]
|
1946
|
+
SENSITIVE: []
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
class UpdateAccessKeyRequest
|
1950
|
+
attr_accessor user_name: ::String
|
1951
|
+
attr_accessor access_key_id: ::String
|
1952
|
+
attr_accessor status: ("Active" | "Inactive")
|
1953
|
+
SENSITIVE: []
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
class UpdateAccountPasswordPolicyRequest
|
1957
|
+
attr_accessor minimum_password_length: ::Integer
|
1958
|
+
attr_accessor require_symbols: bool
|
1959
|
+
attr_accessor require_numbers: bool
|
1960
|
+
attr_accessor require_uppercase_characters: bool
|
1961
|
+
attr_accessor require_lowercase_characters: bool
|
1962
|
+
attr_accessor allow_users_to_change_password: bool
|
1963
|
+
attr_accessor max_password_age: ::Integer
|
1964
|
+
attr_accessor password_reuse_prevention: ::Integer
|
1965
|
+
attr_accessor hard_expiry: bool
|
1966
|
+
SENSITIVE: []
|
1967
|
+
end
|
1968
|
+
|
1969
|
+
class UpdateAssumeRolePolicyRequest
|
1970
|
+
attr_accessor role_name: ::String
|
1971
|
+
attr_accessor policy_document: ::String
|
1972
|
+
SENSITIVE: []
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
class UpdateGroupRequest
|
1976
|
+
attr_accessor group_name: ::String
|
1977
|
+
attr_accessor new_path: ::String
|
1978
|
+
attr_accessor new_group_name: ::String
|
1979
|
+
SENSITIVE: []
|
1980
|
+
end
|
1981
|
+
|
1982
|
+
class UpdateLoginProfileRequest
|
1983
|
+
attr_accessor user_name: ::String
|
1984
|
+
attr_accessor password: ::String
|
1985
|
+
attr_accessor password_reset_required: bool
|
1986
|
+
SENSITIVE: [:password]
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
class UpdateOpenIDConnectProviderThumbprintRequest
|
1990
|
+
attr_accessor open_id_connect_provider_arn: ::String
|
1991
|
+
attr_accessor thumbprint_list: ::Array[::String]
|
1992
|
+
SENSITIVE: []
|
1993
|
+
end
|
1994
|
+
|
1995
|
+
class UpdateRoleDescriptionRequest
|
1996
|
+
attr_accessor role_name: ::String
|
1997
|
+
attr_accessor description: ::String
|
1998
|
+
SENSITIVE: []
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
class UpdateRoleDescriptionResponse
|
2002
|
+
attr_accessor role: Types::Role
|
2003
|
+
SENSITIVE: []
|
2004
|
+
end
|
2005
|
+
|
2006
|
+
class UpdateRoleRequest
|
2007
|
+
attr_accessor role_name: ::String
|
2008
|
+
attr_accessor description: ::String
|
2009
|
+
attr_accessor max_session_duration: ::Integer
|
2010
|
+
SENSITIVE: []
|
2011
|
+
end
|
2012
|
+
|
2013
|
+
class UpdateRoleResponse < Aws::EmptyStructure
|
2014
|
+
end
|
2015
|
+
|
2016
|
+
class UpdateSAMLProviderRequest
|
2017
|
+
attr_accessor saml_metadata_document: ::String
|
2018
|
+
attr_accessor saml_provider_arn: ::String
|
2019
|
+
SENSITIVE: []
|
2020
|
+
end
|
2021
|
+
|
2022
|
+
class UpdateSAMLProviderResponse
|
2023
|
+
attr_accessor saml_provider_arn: ::String
|
2024
|
+
SENSITIVE: []
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
class UpdateSSHPublicKeyRequest
|
2028
|
+
attr_accessor user_name: ::String
|
2029
|
+
attr_accessor ssh_public_key_id: ::String
|
2030
|
+
attr_accessor status: ("Active" | "Inactive")
|
2031
|
+
SENSITIVE: []
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
class UpdateServerCertificateRequest
|
2035
|
+
attr_accessor server_certificate_name: ::String
|
2036
|
+
attr_accessor new_path: ::String
|
2037
|
+
attr_accessor new_server_certificate_name: ::String
|
2038
|
+
SENSITIVE: []
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
class UpdateServiceSpecificCredentialRequest
|
2042
|
+
attr_accessor user_name: ::String
|
2043
|
+
attr_accessor service_specific_credential_id: ::String
|
2044
|
+
attr_accessor status: ("Active" | "Inactive")
|
2045
|
+
SENSITIVE: []
|
2046
|
+
end
|
2047
|
+
|
2048
|
+
class UpdateSigningCertificateRequest
|
2049
|
+
attr_accessor user_name: ::String
|
2050
|
+
attr_accessor certificate_id: ::String
|
2051
|
+
attr_accessor status: ("Active" | "Inactive")
|
2052
|
+
SENSITIVE: []
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
class UpdateUserRequest
|
2056
|
+
attr_accessor user_name: ::String
|
2057
|
+
attr_accessor new_path: ::String
|
2058
|
+
attr_accessor new_user_name: ::String
|
2059
|
+
SENSITIVE: []
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
class UploadSSHPublicKeyRequest
|
2063
|
+
attr_accessor user_name: ::String
|
2064
|
+
attr_accessor ssh_public_key_body: ::String
|
2065
|
+
SENSITIVE: []
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
class UploadSSHPublicKeyResponse
|
2069
|
+
attr_accessor ssh_public_key: Types::SSHPublicKey
|
2070
|
+
SENSITIVE: []
|
2071
|
+
end
|
2072
|
+
|
2073
|
+
class UploadServerCertificateRequest
|
2074
|
+
attr_accessor path: ::String
|
2075
|
+
attr_accessor server_certificate_name: ::String
|
2076
|
+
attr_accessor certificate_body: ::String
|
2077
|
+
attr_accessor private_key: ::String
|
2078
|
+
attr_accessor certificate_chain: ::String
|
2079
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2080
|
+
SENSITIVE: [:private_key]
|
2081
|
+
end
|
2082
|
+
|
2083
|
+
class UploadServerCertificateResponse
|
2084
|
+
attr_accessor server_certificate_metadata: Types::ServerCertificateMetadata
|
2085
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2086
|
+
SENSITIVE: []
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
class UploadSigningCertificateRequest
|
2090
|
+
attr_accessor user_name: ::String
|
2091
|
+
attr_accessor certificate_body: ::String
|
2092
|
+
SENSITIVE: []
|
2093
|
+
end
|
2094
|
+
|
2095
|
+
class UploadSigningCertificateResponse
|
2096
|
+
attr_accessor certificate: Types::SigningCertificate
|
2097
|
+
SENSITIVE: []
|
2098
|
+
end
|
2099
|
+
|
2100
|
+
class User
|
2101
|
+
attr_accessor path: ::String
|
2102
|
+
attr_accessor user_name: ::String
|
2103
|
+
attr_accessor user_id: ::String
|
2104
|
+
attr_accessor arn: ::String
|
2105
|
+
attr_accessor create_date: ::Time
|
2106
|
+
attr_accessor password_last_used: ::Time
|
2107
|
+
attr_accessor permissions_boundary: Types::AttachedPermissionsBoundary
|
2108
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2109
|
+
SENSITIVE: []
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
class UserDetail
|
2113
|
+
attr_accessor path: ::String
|
2114
|
+
attr_accessor user_name: ::String
|
2115
|
+
attr_accessor user_id: ::String
|
2116
|
+
attr_accessor arn: ::String
|
2117
|
+
attr_accessor create_date: ::Time
|
2118
|
+
attr_accessor user_policy_list: ::Array[Types::PolicyDetail]
|
2119
|
+
attr_accessor group_list: ::Array[::String]
|
2120
|
+
attr_accessor attached_managed_policies: ::Array[Types::AttachedPolicy]
|
2121
|
+
attr_accessor permissions_boundary: Types::AttachedPermissionsBoundary
|
2122
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2123
|
+
SENSITIVE: []
|
2124
|
+
end
|
2125
|
+
|
2126
|
+
class VirtualMFADevice
|
2127
|
+
attr_accessor serial_number: ::String
|
2128
|
+
attr_accessor base_32_string_seed: ::String
|
2129
|
+
attr_accessor qr_code_png: ::String
|
2130
|
+
attr_accessor user: Types::User
|
2131
|
+
attr_accessor enable_date: ::Time
|
2132
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2133
|
+
SENSITIVE: [:base_32_string_seed, :qr_code_png]
|
2134
|
+
end
|
2135
|
+
end
|
2136
|
+
end
|