aws-sdk-workmail 1.61.0 → 1.63.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workmail/client.rb +1 -1
- data/lib/aws-sdk-workmail/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-workmail.rb +1 -1
- data/sig/client.rbs +1270 -0
- data/sig/errors.rbs +82 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1456 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1456 @@
|
|
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::WorkMail
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessControlRule
|
12
|
+
attr_accessor name: ::String
|
13
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
14
|
+
attr_accessor description: ::String
|
15
|
+
attr_accessor ip_ranges: ::Array[::String]
|
16
|
+
attr_accessor not_ip_ranges: ::Array[::String]
|
17
|
+
attr_accessor actions: ::Array[::String]
|
18
|
+
attr_accessor not_actions: ::Array[::String]
|
19
|
+
attr_accessor user_ids: ::Array[::String]
|
20
|
+
attr_accessor not_user_ids: ::Array[::String]
|
21
|
+
attr_accessor date_created: ::Time
|
22
|
+
attr_accessor date_modified: ::Time
|
23
|
+
attr_accessor impersonation_role_ids: ::Array[::String]
|
24
|
+
attr_accessor not_impersonation_role_ids: ::Array[::String]
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssociateDelegateToResourceRequest
|
29
|
+
attr_accessor organization_id: ::String
|
30
|
+
attr_accessor resource_id: ::String
|
31
|
+
attr_accessor entity_id: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class AssociateDelegateToResourceResponse < Aws::EmptyStructure
|
36
|
+
end
|
37
|
+
|
38
|
+
class AssociateMemberToGroupRequest
|
39
|
+
attr_accessor organization_id: ::String
|
40
|
+
attr_accessor group_id: ::String
|
41
|
+
attr_accessor member_id: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AssociateMemberToGroupResponse < Aws::EmptyStructure
|
46
|
+
end
|
47
|
+
|
48
|
+
class AssumeImpersonationRoleRequest
|
49
|
+
attr_accessor organization_id: ::String
|
50
|
+
attr_accessor impersonation_role_id: ::String
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class AssumeImpersonationRoleResponse
|
55
|
+
attr_accessor token: ::String
|
56
|
+
attr_accessor expires_in: ::Integer
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class AvailabilityConfiguration
|
61
|
+
attr_accessor domain_name: ::String
|
62
|
+
attr_accessor provider_type: ("EWS" | "LAMBDA")
|
63
|
+
attr_accessor ews_provider: Types::RedactedEwsAvailabilityProvider
|
64
|
+
attr_accessor lambda_provider: Types::LambdaAvailabilityProvider
|
65
|
+
attr_accessor date_created: ::Time
|
66
|
+
attr_accessor date_modified: ::Time
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class BookingOptions
|
71
|
+
attr_accessor auto_accept_requests: bool
|
72
|
+
attr_accessor auto_decline_recurring_requests: bool
|
73
|
+
attr_accessor auto_decline_conflicting_requests: bool
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class CancelMailboxExportJobRequest
|
78
|
+
attr_accessor client_token: ::String
|
79
|
+
attr_accessor job_id: ::String
|
80
|
+
attr_accessor organization_id: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class CancelMailboxExportJobResponse < Aws::EmptyStructure
|
85
|
+
end
|
86
|
+
|
87
|
+
class CreateAliasRequest
|
88
|
+
attr_accessor organization_id: ::String
|
89
|
+
attr_accessor entity_id: ::String
|
90
|
+
attr_accessor alias: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CreateAliasResponse < Aws::EmptyStructure
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateAvailabilityConfigurationRequest
|
98
|
+
attr_accessor client_token: ::String
|
99
|
+
attr_accessor organization_id: ::String
|
100
|
+
attr_accessor domain_name: ::String
|
101
|
+
attr_accessor ews_provider: Types::EwsAvailabilityProvider
|
102
|
+
attr_accessor lambda_provider: Types::LambdaAvailabilityProvider
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class CreateAvailabilityConfigurationResponse < Aws::EmptyStructure
|
107
|
+
end
|
108
|
+
|
109
|
+
class CreateGroupRequest
|
110
|
+
attr_accessor organization_id: ::String
|
111
|
+
attr_accessor name: ::String
|
112
|
+
attr_accessor hidden_from_global_address_list: bool
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateGroupResponse
|
117
|
+
attr_accessor group_id: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CreateImpersonationRoleRequest
|
122
|
+
attr_accessor client_token: ::String
|
123
|
+
attr_accessor organization_id: ::String
|
124
|
+
attr_accessor name: ::String
|
125
|
+
attr_accessor type: ("FULL_ACCESS" | "READ_ONLY")
|
126
|
+
attr_accessor description: ::String
|
127
|
+
attr_accessor rules: ::Array[Types::ImpersonationRule]
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateImpersonationRoleResponse
|
132
|
+
attr_accessor impersonation_role_id: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateMobileDeviceAccessRuleRequest
|
137
|
+
attr_accessor organization_id: ::String
|
138
|
+
attr_accessor client_token: ::String
|
139
|
+
attr_accessor name: ::String
|
140
|
+
attr_accessor description: ::String
|
141
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
142
|
+
attr_accessor device_types: ::Array[::String]
|
143
|
+
attr_accessor not_device_types: ::Array[::String]
|
144
|
+
attr_accessor device_models: ::Array[::String]
|
145
|
+
attr_accessor not_device_models: ::Array[::String]
|
146
|
+
attr_accessor device_operating_systems: ::Array[::String]
|
147
|
+
attr_accessor not_device_operating_systems: ::Array[::String]
|
148
|
+
attr_accessor device_user_agents: ::Array[::String]
|
149
|
+
attr_accessor not_device_user_agents: ::Array[::String]
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class CreateMobileDeviceAccessRuleResponse
|
154
|
+
attr_accessor mobile_device_access_rule_id: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class CreateOrganizationRequest
|
159
|
+
attr_accessor directory_id: ::String
|
160
|
+
attr_accessor alias: ::String
|
161
|
+
attr_accessor client_token: ::String
|
162
|
+
attr_accessor domains: ::Array[Types::Domain]
|
163
|
+
attr_accessor kms_key_arn: ::String
|
164
|
+
attr_accessor enable_interoperability: bool
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class CreateOrganizationResponse
|
169
|
+
attr_accessor organization_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateResourceRequest
|
174
|
+
attr_accessor organization_id: ::String
|
175
|
+
attr_accessor name: ::String
|
176
|
+
attr_accessor type: ("ROOM" | "EQUIPMENT")
|
177
|
+
attr_accessor description: ::String
|
178
|
+
attr_accessor hidden_from_global_address_list: bool
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class CreateResourceResponse
|
183
|
+
attr_accessor resource_id: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class CreateUserRequest
|
188
|
+
attr_accessor organization_id: ::String
|
189
|
+
attr_accessor name: ::String
|
190
|
+
attr_accessor display_name: ::String
|
191
|
+
attr_accessor password: ::String
|
192
|
+
attr_accessor role: ("USER" | "RESOURCE" | "SYSTEM_USER" | "REMOTE_USER")
|
193
|
+
attr_accessor first_name: ::String
|
194
|
+
attr_accessor last_name: ::String
|
195
|
+
attr_accessor hidden_from_global_address_list: bool
|
196
|
+
SENSITIVE: [:display_name, :password, :first_name, :last_name]
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateUserResponse
|
200
|
+
attr_accessor user_id: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class Delegate
|
205
|
+
attr_accessor id: ::String
|
206
|
+
attr_accessor type: ("GROUP" | "USER")
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class DeleteAccessControlRuleRequest
|
211
|
+
attr_accessor organization_id: ::String
|
212
|
+
attr_accessor name: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class DeleteAccessControlRuleResponse < Aws::EmptyStructure
|
217
|
+
end
|
218
|
+
|
219
|
+
class DeleteAliasRequest
|
220
|
+
attr_accessor organization_id: ::String
|
221
|
+
attr_accessor entity_id: ::String
|
222
|
+
attr_accessor alias: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class DeleteAliasResponse < Aws::EmptyStructure
|
227
|
+
end
|
228
|
+
|
229
|
+
class DeleteAvailabilityConfigurationRequest
|
230
|
+
attr_accessor organization_id: ::String
|
231
|
+
attr_accessor domain_name: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class DeleteAvailabilityConfigurationResponse < Aws::EmptyStructure
|
236
|
+
end
|
237
|
+
|
238
|
+
class DeleteEmailMonitoringConfigurationRequest
|
239
|
+
attr_accessor organization_id: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class DeleteEmailMonitoringConfigurationResponse < Aws::EmptyStructure
|
244
|
+
end
|
245
|
+
|
246
|
+
class DeleteGroupRequest
|
247
|
+
attr_accessor organization_id: ::String
|
248
|
+
attr_accessor group_id: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class DeleteGroupResponse < Aws::EmptyStructure
|
253
|
+
end
|
254
|
+
|
255
|
+
class DeleteImpersonationRoleRequest
|
256
|
+
attr_accessor organization_id: ::String
|
257
|
+
attr_accessor impersonation_role_id: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class DeleteImpersonationRoleResponse < Aws::EmptyStructure
|
262
|
+
end
|
263
|
+
|
264
|
+
class DeleteMailboxPermissionsRequest
|
265
|
+
attr_accessor organization_id: ::String
|
266
|
+
attr_accessor entity_id: ::String
|
267
|
+
attr_accessor grantee_id: ::String
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class DeleteMailboxPermissionsResponse < Aws::EmptyStructure
|
272
|
+
end
|
273
|
+
|
274
|
+
class DeleteMobileDeviceAccessOverrideRequest
|
275
|
+
attr_accessor organization_id: ::String
|
276
|
+
attr_accessor user_id: ::String
|
277
|
+
attr_accessor device_id: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DeleteMobileDeviceAccessOverrideResponse < Aws::EmptyStructure
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteMobileDeviceAccessRuleRequest
|
285
|
+
attr_accessor organization_id: ::String
|
286
|
+
attr_accessor mobile_device_access_rule_id: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class DeleteMobileDeviceAccessRuleResponse < Aws::EmptyStructure
|
291
|
+
end
|
292
|
+
|
293
|
+
class DeleteOrganizationRequest
|
294
|
+
attr_accessor client_token: ::String
|
295
|
+
attr_accessor organization_id: ::String
|
296
|
+
attr_accessor delete_directory: bool
|
297
|
+
attr_accessor force_delete: bool
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DeleteOrganizationResponse
|
302
|
+
attr_accessor organization_id: ::String
|
303
|
+
attr_accessor state: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class DeleteResourceRequest
|
308
|
+
attr_accessor organization_id: ::String
|
309
|
+
attr_accessor resource_id: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class DeleteResourceResponse < Aws::EmptyStructure
|
314
|
+
end
|
315
|
+
|
316
|
+
class DeleteRetentionPolicyRequest
|
317
|
+
attr_accessor organization_id: ::String
|
318
|
+
attr_accessor id: ::String
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class DeleteRetentionPolicyResponse < Aws::EmptyStructure
|
323
|
+
end
|
324
|
+
|
325
|
+
class DeleteUserRequest
|
326
|
+
attr_accessor organization_id: ::String
|
327
|
+
attr_accessor user_id: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DeleteUserResponse < Aws::EmptyStructure
|
332
|
+
end
|
333
|
+
|
334
|
+
class DeregisterFromWorkMailRequest
|
335
|
+
attr_accessor organization_id: ::String
|
336
|
+
attr_accessor entity_id: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class DeregisterFromWorkMailResponse < Aws::EmptyStructure
|
341
|
+
end
|
342
|
+
|
343
|
+
class DeregisterMailDomainRequest
|
344
|
+
attr_accessor organization_id: ::String
|
345
|
+
attr_accessor domain_name: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DeregisterMailDomainResponse < Aws::EmptyStructure
|
350
|
+
end
|
351
|
+
|
352
|
+
class DescribeEmailMonitoringConfigurationRequest
|
353
|
+
attr_accessor organization_id: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class DescribeEmailMonitoringConfigurationResponse
|
358
|
+
attr_accessor role_arn: ::String
|
359
|
+
attr_accessor log_group_arn: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DescribeEntityRequest
|
364
|
+
attr_accessor organization_id: ::String
|
365
|
+
attr_accessor email: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DescribeEntityResponse
|
370
|
+
attr_accessor entity_id: ::String
|
371
|
+
attr_accessor name: ::String
|
372
|
+
attr_accessor type: ("GROUP" | "USER" | "RESOURCE")
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class DescribeGroupRequest
|
377
|
+
attr_accessor organization_id: ::String
|
378
|
+
attr_accessor group_id: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class DescribeGroupResponse
|
383
|
+
attr_accessor group_id: ::String
|
384
|
+
attr_accessor name: ::String
|
385
|
+
attr_accessor email: ::String
|
386
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
387
|
+
attr_accessor enabled_date: ::Time
|
388
|
+
attr_accessor disabled_date: ::Time
|
389
|
+
attr_accessor hidden_from_global_address_list: bool
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class DescribeInboundDmarcSettingsRequest
|
394
|
+
attr_accessor organization_id: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class DescribeInboundDmarcSettingsResponse
|
399
|
+
attr_accessor enforced: bool
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class DescribeMailboxExportJobRequest
|
404
|
+
attr_accessor job_id: ::String
|
405
|
+
attr_accessor organization_id: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class DescribeMailboxExportJobResponse
|
410
|
+
attr_accessor entity_id: ::String
|
411
|
+
attr_accessor description: ::String
|
412
|
+
attr_accessor role_arn: ::String
|
413
|
+
attr_accessor kms_key_arn: ::String
|
414
|
+
attr_accessor s3_bucket_name: ::String
|
415
|
+
attr_accessor s3_prefix: ::String
|
416
|
+
attr_accessor s3_path: ::String
|
417
|
+
attr_accessor estimated_progress: ::Integer
|
418
|
+
attr_accessor state: ("RUNNING" | "COMPLETED" | "FAILED" | "CANCELLED")
|
419
|
+
attr_accessor error_info: ::String
|
420
|
+
attr_accessor start_time: ::Time
|
421
|
+
attr_accessor end_time: ::Time
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class DescribeOrganizationRequest
|
426
|
+
attr_accessor organization_id: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class DescribeOrganizationResponse
|
431
|
+
attr_accessor organization_id: ::String
|
432
|
+
attr_accessor alias: ::String
|
433
|
+
attr_accessor state: ::String
|
434
|
+
attr_accessor directory_id: ::String
|
435
|
+
attr_accessor directory_type: ::String
|
436
|
+
attr_accessor default_mail_domain: ::String
|
437
|
+
attr_accessor completed_date: ::Time
|
438
|
+
attr_accessor error_message: ::String
|
439
|
+
attr_accessor arn: ::String
|
440
|
+
attr_accessor migration_admin: ::String
|
441
|
+
attr_accessor interoperability_enabled: bool
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class DescribeResourceRequest
|
446
|
+
attr_accessor organization_id: ::String
|
447
|
+
attr_accessor resource_id: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DescribeResourceResponse
|
452
|
+
attr_accessor resource_id: ::String
|
453
|
+
attr_accessor email: ::String
|
454
|
+
attr_accessor name: ::String
|
455
|
+
attr_accessor type: ("ROOM" | "EQUIPMENT")
|
456
|
+
attr_accessor booking_options: Types::BookingOptions
|
457
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
458
|
+
attr_accessor enabled_date: ::Time
|
459
|
+
attr_accessor disabled_date: ::Time
|
460
|
+
attr_accessor description: ::String
|
461
|
+
attr_accessor hidden_from_global_address_list: bool
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class DescribeUserRequest
|
466
|
+
attr_accessor organization_id: ::String
|
467
|
+
attr_accessor user_id: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class DescribeUserResponse
|
472
|
+
attr_accessor user_id: ::String
|
473
|
+
attr_accessor name: ::String
|
474
|
+
attr_accessor email: ::String
|
475
|
+
attr_accessor display_name: ::String
|
476
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
477
|
+
attr_accessor user_role: ("USER" | "RESOURCE" | "SYSTEM_USER" | "REMOTE_USER")
|
478
|
+
attr_accessor enabled_date: ::Time
|
479
|
+
attr_accessor disabled_date: ::Time
|
480
|
+
attr_accessor mailbox_provisioned_date: ::Time
|
481
|
+
attr_accessor mailbox_deprovisioned_date: ::Time
|
482
|
+
attr_accessor first_name: ::String
|
483
|
+
attr_accessor last_name: ::String
|
484
|
+
attr_accessor hidden_from_global_address_list: bool
|
485
|
+
attr_accessor initials: ::String
|
486
|
+
attr_accessor telephone: ::String
|
487
|
+
attr_accessor street: ::String
|
488
|
+
attr_accessor job_title: ::String
|
489
|
+
attr_accessor city: ::String
|
490
|
+
attr_accessor company: ::String
|
491
|
+
attr_accessor zip_code: ::String
|
492
|
+
attr_accessor department: ::String
|
493
|
+
attr_accessor country: ::String
|
494
|
+
attr_accessor office: ::String
|
495
|
+
SENSITIVE: [:display_name, :first_name, :last_name, :initials, :telephone, :street, :job_title, :city, :company, :zip_code, :department, :country, :office]
|
496
|
+
end
|
497
|
+
|
498
|
+
class DirectoryInUseException
|
499
|
+
attr_accessor message: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class DirectoryServiceAuthenticationFailedException
|
504
|
+
attr_accessor message: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class DirectoryUnavailableException
|
509
|
+
attr_accessor message: ::String
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class DisassociateDelegateFromResourceRequest
|
514
|
+
attr_accessor organization_id: ::String
|
515
|
+
attr_accessor resource_id: ::String
|
516
|
+
attr_accessor entity_id: ::String
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class DisassociateDelegateFromResourceResponse < Aws::EmptyStructure
|
521
|
+
end
|
522
|
+
|
523
|
+
class DisassociateMemberFromGroupRequest
|
524
|
+
attr_accessor organization_id: ::String
|
525
|
+
attr_accessor group_id: ::String
|
526
|
+
attr_accessor member_id: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class DisassociateMemberFromGroupResponse < Aws::EmptyStructure
|
531
|
+
end
|
532
|
+
|
533
|
+
class DnsRecord
|
534
|
+
attr_accessor type: ::String
|
535
|
+
attr_accessor hostname: ::String
|
536
|
+
attr_accessor value: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class Domain
|
541
|
+
attr_accessor domain_name: ::String
|
542
|
+
attr_accessor hosted_zone_id: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class EmailAddressInUseException
|
547
|
+
attr_accessor message: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class EntityAlreadyRegisteredException
|
552
|
+
attr_accessor message: ::String
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class EntityNotFoundException
|
557
|
+
attr_accessor message: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class EntityStateException
|
562
|
+
attr_accessor message: ::String
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class EwsAvailabilityProvider
|
567
|
+
attr_accessor ews_endpoint: ::String
|
568
|
+
attr_accessor ews_username: ::String
|
569
|
+
attr_accessor ews_password: ::String
|
570
|
+
SENSITIVE: [:ews_password]
|
571
|
+
end
|
572
|
+
|
573
|
+
class FolderConfiguration
|
574
|
+
attr_accessor name: ("INBOX" | "DELETED_ITEMS" | "SENT_ITEMS" | "DRAFTS" | "JUNK_EMAIL")
|
575
|
+
attr_accessor action: ("NONE" | "DELETE" | "PERMANENTLY_DELETE")
|
576
|
+
attr_accessor period: ::Integer
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class GetAccessControlEffectRequest
|
581
|
+
attr_accessor organization_id: ::String
|
582
|
+
attr_accessor ip_address: ::String
|
583
|
+
attr_accessor action: ::String
|
584
|
+
attr_accessor user_id: ::String
|
585
|
+
attr_accessor impersonation_role_id: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class GetAccessControlEffectResponse
|
590
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
591
|
+
attr_accessor matched_rules: ::Array[::String]
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class GetDefaultRetentionPolicyRequest
|
596
|
+
attr_accessor organization_id: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class GetDefaultRetentionPolicyResponse
|
601
|
+
attr_accessor id: ::String
|
602
|
+
attr_accessor name: ::String
|
603
|
+
attr_accessor description: ::String
|
604
|
+
attr_accessor folder_configurations: ::Array[Types::FolderConfiguration]
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class GetImpersonationRoleEffectRequest
|
609
|
+
attr_accessor organization_id: ::String
|
610
|
+
attr_accessor impersonation_role_id: ::String
|
611
|
+
attr_accessor target_user: ::String
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class GetImpersonationRoleEffectResponse
|
616
|
+
attr_accessor type: ("FULL_ACCESS" | "READ_ONLY")
|
617
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
618
|
+
attr_accessor matched_rules: ::Array[Types::ImpersonationMatchedRule]
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class GetImpersonationRoleRequest
|
623
|
+
attr_accessor organization_id: ::String
|
624
|
+
attr_accessor impersonation_role_id: ::String
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class GetImpersonationRoleResponse
|
629
|
+
attr_accessor impersonation_role_id: ::String
|
630
|
+
attr_accessor name: ::String
|
631
|
+
attr_accessor type: ("FULL_ACCESS" | "READ_ONLY")
|
632
|
+
attr_accessor description: ::String
|
633
|
+
attr_accessor rules: ::Array[Types::ImpersonationRule]
|
634
|
+
attr_accessor date_created: ::Time
|
635
|
+
attr_accessor date_modified: ::Time
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class GetMailDomainRequest
|
640
|
+
attr_accessor organization_id: ::String
|
641
|
+
attr_accessor domain_name: ::String
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class GetMailDomainResponse
|
646
|
+
attr_accessor records: ::Array[Types::DnsRecord]
|
647
|
+
attr_accessor is_test_domain: bool
|
648
|
+
attr_accessor is_default: bool
|
649
|
+
attr_accessor ownership_verification_status: ("PENDING" | "VERIFIED" | "FAILED")
|
650
|
+
attr_accessor dkim_verification_status: ("PENDING" | "VERIFIED" | "FAILED")
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class GetMailboxDetailsRequest
|
655
|
+
attr_accessor organization_id: ::String
|
656
|
+
attr_accessor user_id: ::String
|
657
|
+
SENSITIVE: []
|
658
|
+
end
|
659
|
+
|
660
|
+
class GetMailboxDetailsResponse
|
661
|
+
attr_accessor mailbox_quota: ::Integer
|
662
|
+
attr_accessor mailbox_size: ::Float
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class GetMobileDeviceAccessEffectRequest
|
667
|
+
attr_accessor organization_id: ::String
|
668
|
+
attr_accessor device_type: ::String
|
669
|
+
attr_accessor device_model: ::String
|
670
|
+
attr_accessor device_operating_system: ::String
|
671
|
+
attr_accessor device_user_agent: ::String
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class GetMobileDeviceAccessEffectResponse
|
676
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
677
|
+
attr_accessor matched_rules: ::Array[Types::MobileDeviceAccessMatchedRule]
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class GetMobileDeviceAccessOverrideRequest
|
682
|
+
attr_accessor organization_id: ::String
|
683
|
+
attr_accessor user_id: ::String
|
684
|
+
attr_accessor device_id: ::String
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class GetMobileDeviceAccessOverrideResponse
|
689
|
+
attr_accessor user_id: ::String
|
690
|
+
attr_accessor device_id: ::String
|
691
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
692
|
+
attr_accessor description: ::String
|
693
|
+
attr_accessor date_created: ::Time
|
694
|
+
attr_accessor date_modified: ::Time
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class Group
|
699
|
+
attr_accessor id: ::String
|
700
|
+
attr_accessor email: ::String
|
701
|
+
attr_accessor name: ::String
|
702
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
703
|
+
attr_accessor enabled_date: ::Time
|
704
|
+
attr_accessor disabled_date: ::Time
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class GroupIdentifier
|
709
|
+
attr_accessor group_id: ::String
|
710
|
+
attr_accessor group_name: ::String
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class ImpersonationMatchedRule
|
715
|
+
attr_accessor impersonation_rule_id: ::String
|
716
|
+
attr_accessor name: ::String
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class ImpersonationRole
|
721
|
+
attr_accessor impersonation_role_id: ::String
|
722
|
+
attr_accessor name: ::String
|
723
|
+
attr_accessor type: ("FULL_ACCESS" | "READ_ONLY")
|
724
|
+
attr_accessor date_created: ::Time
|
725
|
+
attr_accessor date_modified: ::Time
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class ImpersonationRule
|
730
|
+
attr_accessor impersonation_rule_id: ::String
|
731
|
+
attr_accessor name: ::String
|
732
|
+
attr_accessor description: ::String
|
733
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
734
|
+
attr_accessor target_users: ::Array[::String]
|
735
|
+
attr_accessor not_target_users: ::Array[::String]
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class InvalidConfigurationException
|
740
|
+
attr_accessor message: ::String
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class InvalidCustomSesConfigurationException
|
745
|
+
attr_accessor message: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class InvalidParameterException
|
750
|
+
attr_accessor message: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class InvalidPasswordException
|
755
|
+
attr_accessor message: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class LambdaAvailabilityProvider
|
760
|
+
attr_accessor lambda_arn: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class LimitExceededException
|
765
|
+
attr_accessor message: ::String
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class ListAccessControlRulesRequest
|
770
|
+
attr_accessor organization_id: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class ListAccessControlRulesResponse
|
775
|
+
attr_accessor rules: ::Array[Types::AccessControlRule]
|
776
|
+
SENSITIVE: []
|
777
|
+
end
|
778
|
+
|
779
|
+
class ListAliasesRequest
|
780
|
+
attr_accessor organization_id: ::String
|
781
|
+
attr_accessor entity_id: ::String
|
782
|
+
attr_accessor next_token: ::String
|
783
|
+
attr_accessor max_results: ::Integer
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class ListAliasesResponse
|
788
|
+
attr_accessor aliases: ::Array[::String]
|
789
|
+
attr_accessor next_token: ::String
|
790
|
+
SENSITIVE: []
|
791
|
+
end
|
792
|
+
|
793
|
+
class ListAvailabilityConfigurationsRequest
|
794
|
+
attr_accessor organization_id: ::String
|
795
|
+
attr_accessor max_results: ::Integer
|
796
|
+
attr_accessor next_token: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class ListAvailabilityConfigurationsResponse
|
801
|
+
attr_accessor availability_configurations: ::Array[Types::AvailabilityConfiguration]
|
802
|
+
attr_accessor next_token: ::String
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class ListGroupMembersRequest
|
807
|
+
attr_accessor organization_id: ::String
|
808
|
+
attr_accessor group_id: ::String
|
809
|
+
attr_accessor next_token: ::String
|
810
|
+
attr_accessor max_results: ::Integer
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class ListGroupMembersResponse
|
815
|
+
attr_accessor members: ::Array[Types::Member]
|
816
|
+
attr_accessor next_token: ::String
|
817
|
+
SENSITIVE: []
|
818
|
+
end
|
819
|
+
|
820
|
+
class ListGroupsFilters
|
821
|
+
attr_accessor name_prefix: ::String
|
822
|
+
attr_accessor primary_email_prefix: ::String
|
823
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class ListGroupsForEntityFilters
|
828
|
+
attr_accessor group_name_prefix: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class ListGroupsForEntityRequest
|
833
|
+
attr_accessor organization_id: ::String
|
834
|
+
attr_accessor entity_id: ::String
|
835
|
+
attr_accessor filters: Types::ListGroupsForEntityFilters
|
836
|
+
attr_accessor next_token: ::String
|
837
|
+
attr_accessor max_results: ::Integer
|
838
|
+
SENSITIVE: []
|
839
|
+
end
|
840
|
+
|
841
|
+
class ListGroupsForEntityResponse
|
842
|
+
attr_accessor groups: ::Array[Types::GroupIdentifier]
|
843
|
+
attr_accessor next_token: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class ListGroupsRequest
|
848
|
+
attr_accessor organization_id: ::String
|
849
|
+
attr_accessor next_token: ::String
|
850
|
+
attr_accessor max_results: ::Integer
|
851
|
+
attr_accessor filters: Types::ListGroupsFilters
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
855
|
+
class ListGroupsResponse
|
856
|
+
attr_accessor groups: ::Array[Types::Group]
|
857
|
+
attr_accessor next_token: ::String
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class ListImpersonationRolesRequest
|
862
|
+
attr_accessor organization_id: ::String
|
863
|
+
attr_accessor next_token: ::String
|
864
|
+
attr_accessor max_results: ::Integer
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class ListImpersonationRolesResponse
|
869
|
+
attr_accessor roles: ::Array[Types::ImpersonationRole]
|
870
|
+
attr_accessor next_token: ::String
|
871
|
+
SENSITIVE: []
|
872
|
+
end
|
873
|
+
|
874
|
+
class ListMailDomainsRequest
|
875
|
+
attr_accessor organization_id: ::String
|
876
|
+
attr_accessor max_results: ::Integer
|
877
|
+
attr_accessor next_token: ::String
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class ListMailDomainsResponse
|
882
|
+
attr_accessor mail_domains: ::Array[Types::MailDomainSummary]
|
883
|
+
attr_accessor next_token: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class ListMailboxExportJobsRequest
|
888
|
+
attr_accessor organization_id: ::String
|
889
|
+
attr_accessor next_token: ::String
|
890
|
+
attr_accessor max_results: ::Integer
|
891
|
+
SENSITIVE: []
|
892
|
+
end
|
893
|
+
|
894
|
+
class ListMailboxExportJobsResponse
|
895
|
+
attr_accessor jobs: ::Array[Types::MailboxExportJob]
|
896
|
+
attr_accessor next_token: ::String
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class ListMailboxPermissionsRequest
|
901
|
+
attr_accessor organization_id: ::String
|
902
|
+
attr_accessor entity_id: ::String
|
903
|
+
attr_accessor next_token: ::String
|
904
|
+
attr_accessor max_results: ::Integer
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class ListMailboxPermissionsResponse
|
909
|
+
attr_accessor permissions: ::Array[Types::Permission]
|
910
|
+
attr_accessor next_token: ::String
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class ListMobileDeviceAccessOverridesRequest
|
915
|
+
attr_accessor organization_id: ::String
|
916
|
+
attr_accessor user_id: ::String
|
917
|
+
attr_accessor device_id: ::String
|
918
|
+
attr_accessor next_token: ::String
|
919
|
+
attr_accessor max_results: ::Integer
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class ListMobileDeviceAccessOverridesResponse
|
924
|
+
attr_accessor overrides: ::Array[Types::MobileDeviceAccessOverride]
|
925
|
+
attr_accessor next_token: ::String
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class ListMobileDeviceAccessRulesRequest
|
930
|
+
attr_accessor organization_id: ::String
|
931
|
+
SENSITIVE: []
|
932
|
+
end
|
933
|
+
|
934
|
+
class ListMobileDeviceAccessRulesResponse
|
935
|
+
attr_accessor rules: ::Array[Types::MobileDeviceAccessRule]
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class ListOrganizationsRequest
|
940
|
+
attr_accessor next_token: ::String
|
941
|
+
attr_accessor max_results: ::Integer
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class ListOrganizationsResponse
|
946
|
+
attr_accessor organization_summaries: ::Array[Types::OrganizationSummary]
|
947
|
+
attr_accessor next_token: ::String
|
948
|
+
SENSITIVE: []
|
949
|
+
end
|
950
|
+
|
951
|
+
class ListResourceDelegatesRequest
|
952
|
+
attr_accessor organization_id: ::String
|
953
|
+
attr_accessor resource_id: ::String
|
954
|
+
attr_accessor next_token: ::String
|
955
|
+
attr_accessor max_results: ::Integer
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class ListResourceDelegatesResponse
|
960
|
+
attr_accessor delegates: ::Array[Types::Delegate]
|
961
|
+
attr_accessor next_token: ::String
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
965
|
+
class ListResourcesFilters
|
966
|
+
attr_accessor name_prefix: ::String
|
967
|
+
attr_accessor primary_email_prefix: ::String
|
968
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class ListResourcesRequest
|
973
|
+
attr_accessor organization_id: ::String
|
974
|
+
attr_accessor next_token: ::String
|
975
|
+
attr_accessor max_results: ::Integer
|
976
|
+
attr_accessor filters: Types::ListResourcesFilters
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
980
|
+
class ListResourcesResponse
|
981
|
+
attr_accessor resources: ::Array[Types::Resource]
|
982
|
+
attr_accessor next_token: ::String
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class ListTagsForResourceRequest
|
987
|
+
attr_accessor resource_arn: ::String
|
988
|
+
SENSITIVE: []
|
989
|
+
end
|
990
|
+
|
991
|
+
class ListTagsForResourceResponse
|
992
|
+
attr_accessor tags: ::Array[Types::Tag]
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class ListUsersFilters
|
997
|
+
attr_accessor username_prefix: ::String
|
998
|
+
attr_accessor display_name_prefix: ::String
|
999
|
+
attr_accessor primary_email_prefix: ::String
|
1000
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
1001
|
+
SENSITIVE: [:display_name_prefix]
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class ListUsersRequest
|
1005
|
+
attr_accessor organization_id: ::String
|
1006
|
+
attr_accessor next_token: ::String
|
1007
|
+
attr_accessor max_results: ::Integer
|
1008
|
+
attr_accessor filters: Types::ListUsersFilters
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class ListUsersResponse
|
1013
|
+
attr_accessor users: ::Array[Types::User]
|
1014
|
+
attr_accessor next_token: ::String
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class MailDomainInUseException
|
1019
|
+
attr_accessor message: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class MailDomainNotFoundException
|
1024
|
+
attr_accessor message: ::String
|
1025
|
+
SENSITIVE: []
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class MailDomainStateException
|
1029
|
+
attr_accessor message: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class MailDomainSummary
|
1034
|
+
attr_accessor domain_name: ::String
|
1035
|
+
attr_accessor default_domain: bool
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class MailboxExportJob
|
1040
|
+
attr_accessor job_id: ::String
|
1041
|
+
attr_accessor entity_id: ::String
|
1042
|
+
attr_accessor description: ::String
|
1043
|
+
attr_accessor s3_bucket_name: ::String
|
1044
|
+
attr_accessor s3_path: ::String
|
1045
|
+
attr_accessor estimated_progress: ::Integer
|
1046
|
+
attr_accessor state: ("RUNNING" | "COMPLETED" | "FAILED" | "CANCELLED")
|
1047
|
+
attr_accessor start_time: ::Time
|
1048
|
+
attr_accessor end_time: ::Time
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class Member
|
1053
|
+
attr_accessor id: ::String
|
1054
|
+
attr_accessor name: ::String
|
1055
|
+
attr_accessor type: ("GROUP" | "USER")
|
1056
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
1057
|
+
attr_accessor enabled_date: ::Time
|
1058
|
+
attr_accessor disabled_date: ::Time
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class MobileDeviceAccessMatchedRule
|
1063
|
+
attr_accessor mobile_device_access_rule_id: ::String
|
1064
|
+
attr_accessor name: ::String
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class MobileDeviceAccessOverride
|
1069
|
+
attr_accessor user_id: ::String
|
1070
|
+
attr_accessor device_id: ::String
|
1071
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
1072
|
+
attr_accessor description: ::String
|
1073
|
+
attr_accessor date_created: ::Time
|
1074
|
+
attr_accessor date_modified: ::Time
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class MobileDeviceAccessRule
|
1079
|
+
attr_accessor mobile_device_access_rule_id: ::String
|
1080
|
+
attr_accessor name: ::String
|
1081
|
+
attr_accessor description: ::String
|
1082
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
1083
|
+
attr_accessor device_types: ::Array[::String]
|
1084
|
+
attr_accessor not_device_types: ::Array[::String]
|
1085
|
+
attr_accessor device_models: ::Array[::String]
|
1086
|
+
attr_accessor not_device_models: ::Array[::String]
|
1087
|
+
attr_accessor device_operating_systems: ::Array[::String]
|
1088
|
+
attr_accessor not_device_operating_systems: ::Array[::String]
|
1089
|
+
attr_accessor device_user_agents: ::Array[::String]
|
1090
|
+
attr_accessor not_device_user_agents: ::Array[::String]
|
1091
|
+
attr_accessor date_created: ::Time
|
1092
|
+
attr_accessor date_modified: ::Time
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class NameAvailabilityException
|
1097
|
+
attr_accessor message: ::String
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class OrganizationNotFoundException
|
1102
|
+
attr_accessor message: ::String
|
1103
|
+
SENSITIVE: []
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class OrganizationStateException
|
1107
|
+
attr_accessor message: ::String
|
1108
|
+
SENSITIVE: []
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class OrganizationSummary
|
1112
|
+
attr_accessor organization_id: ::String
|
1113
|
+
attr_accessor alias: ::String
|
1114
|
+
attr_accessor default_mail_domain: ::String
|
1115
|
+
attr_accessor error_message: ::String
|
1116
|
+
attr_accessor state: ::String
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class Permission
|
1121
|
+
attr_accessor grantee_id: ::String
|
1122
|
+
attr_accessor grantee_type: ("GROUP" | "USER")
|
1123
|
+
attr_accessor permission_values: ::Array[("FULL_ACCESS" | "SEND_AS" | "SEND_ON_BEHALF")]
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class PutAccessControlRuleRequest
|
1128
|
+
attr_accessor name: ::String
|
1129
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
1130
|
+
attr_accessor description: ::String
|
1131
|
+
attr_accessor ip_ranges: ::Array[::String]
|
1132
|
+
attr_accessor not_ip_ranges: ::Array[::String]
|
1133
|
+
attr_accessor actions: ::Array[::String]
|
1134
|
+
attr_accessor not_actions: ::Array[::String]
|
1135
|
+
attr_accessor user_ids: ::Array[::String]
|
1136
|
+
attr_accessor not_user_ids: ::Array[::String]
|
1137
|
+
attr_accessor organization_id: ::String
|
1138
|
+
attr_accessor impersonation_role_ids: ::Array[::String]
|
1139
|
+
attr_accessor not_impersonation_role_ids: ::Array[::String]
|
1140
|
+
SENSITIVE: []
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class PutAccessControlRuleResponse < Aws::EmptyStructure
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class PutEmailMonitoringConfigurationRequest
|
1147
|
+
attr_accessor organization_id: ::String
|
1148
|
+
attr_accessor role_arn: ::String
|
1149
|
+
attr_accessor log_group_arn: ::String
|
1150
|
+
SENSITIVE: []
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class PutEmailMonitoringConfigurationResponse < Aws::EmptyStructure
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class PutInboundDmarcSettingsRequest
|
1157
|
+
attr_accessor organization_id: ::String
|
1158
|
+
attr_accessor enforced: bool
|
1159
|
+
SENSITIVE: []
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class PutInboundDmarcSettingsResponse < Aws::EmptyStructure
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class PutMailboxPermissionsRequest
|
1166
|
+
attr_accessor organization_id: ::String
|
1167
|
+
attr_accessor entity_id: ::String
|
1168
|
+
attr_accessor grantee_id: ::String
|
1169
|
+
attr_accessor permission_values: ::Array[("FULL_ACCESS" | "SEND_AS" | "SEND_ON_BEHALF")]
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class PutMailboxPermissionsResponse < Aws::EmptyStructure
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
class PutMobileDeviceAccessOverrideRequest
|
1177
|
+
attr_accessor organization_id: ::String
|
1178
|
+
attr_accessor user_id: ::String
|
1179
|
+
attr_accessor device_id: ::String
|
1180
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
1181
|
+
attr_accessor description: ::String
|
1182
|
+
SENSITIVE: []
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class PutMobileDeviceAccessOverrideResponse < Aws::EmptyStructure
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class PutRetentionPolicyRequest
|
1189
|
+
attr_accessor organization_id: ::String
|
1190
|
+
attr_accessor id: ::String
|
1191
|
+
attr_accessor name: ::String
|
1192
|
+
attr_accessor description: ::String
|
1193
|
+
attr_accessor folder_configurations: ::Array[Types::FolderConfiguration]
|
1194
|
+
SENSITIVE: [:description]
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
class PutRetentionPolicyResponse < Aws::EmptyStructure
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class RedactedEwsAvailabilityProvider
|
1201
|
+
attr_accessor ews_endpoint: ::String
|
1202
|
+
attr_accessor ews_username: ::String
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class RegisterMailDomainRequest
|
1207
|
+
attr_accessor client_token: ::String
|
1208
|
+
attr_accessor organization_id: ::String
|
1209
|
+
attr_accessor domain_name: ::String
|
1210
|
+
SENSITIVE: []
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
class RegisterMailDomainResponse < Aws::EmptyStructure
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
class RegisterToWorkMailRequest
|
1217
|
+
attr_accessor organization_id: ::String
|
1218
|
+
attr_accessor entity_id: ::String
|
1219
|
+
attr_accessor email: ::String
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class RegisterToWorkMailResponse < Aws::EmptyStructure
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class ReservedNameException
|
1227
|
+
attr_accessor message: ::String
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class ResetPasswordRequest
|
1232
|
+
attr_accessor organization_id: ::String
|
1233
|
+
attr_accessor user_id: ::String
|
1234
|
+
attr_accessor password: ::String
|
1235
|
+
SENSITIVE: [:password]
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class ResetPasswordResponse < Aws::EmptyStructure
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
class Resource
|
1242
|
+
attr_accessor id: ::String
|
1243
|
+
attr_accessor email: ::String
|
1244
|
+
attr_accessor name: ::String
|
1245
|
+
attr_accessor type: ("ROOM" | "EQUIPMENT")
|
1246
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
1247
|
+
attr_accessor enabled_date: ::Time
|
1248
|
+
attr_accessor disabled_date: ::Time
|
1249
|
+
attr_accessor description: ::String
|
1250
|
+
SENSITIVE: []
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
class ResourceNotFoundException
|
1254
|
+
attr_accessor message: ::String
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class StartMailboxExportJobRequest
|
1259
|
+
attr_accessor client_token: ::String
|
1260
|
+
attr_accessor organization_id: ::String
|
1261
|
+
attr_accessor entity_id: ::String
|
1262
|
+
attr_accessor description: ::String
|
1263
|
+
attr_accessor role_arn: ::String
|
1264
|
+
attr_accessor kms_key_arn: ::String
|
1265
|
+
attr_accessor s3_bucket_name: ::String
|
1266
|
+
attr_accessor s3_prefix: ::String
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class StartMailboxExportJobResponse
|
1271
|
+
attr_accessor job_id: ::String
|
1272
|
+
SENSITIVE: []
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
class Tag
|
1276
|
+
attr_accessor key: ::String
|
1277
|
+
attr_accessor value: ::String
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class TagResourceRequest
|
1282
|
+
attr_accessor resource_arn: ::String
|
1283
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1284
|
+
SENSITIVE: []
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
class TestAvailabilityConfigurationRequest
|
1291
|
+
attr_accessor organization_id: ::String
|
1292
|
+
attr_accessor domain_name: ::String
|
1293
|
+
attr_accessor ews_provider: Types::EwsAvailabilityProvider
|
1294
|
+
attr_accessor lambda_provider: Types::LambdaAvailabilityProvider
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class TestAvailabilityConfigurationResponse
|
1299
|
+
attr_accessor test_passed: bool
|
1300
|
+
attr_accessor failure_reason: ::String
|
1301
|
+
SENSITIVE: []
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class TooManyTagsException
|
1305
|
+
attr_accessor message: ::String
|
1306
|
+
SENSITIVE: []
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
class UnsupportedOperationException
|
1310
|
+
attr_accessor message: ::String
|
1311
|
+
SENSITIVE: []
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
class UntagResourceRequest
|
1315
|
+
attr_accessor resource_arn: ::String
|
1316
|
+
attr_accessor tag_keys: ::Array[::String]
|
1317
|
+
SENSITIVE: []
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class UpdateAvailabilityConfigurationRequest
|
1324
|
+
attr_accessor organization_id: ::String
|
1325
|
+
attr_accessor domain_name: ::String
|
1326
|
+
attr_accessor ews_provider: Types::EwsAvailabilityProvider
|
1327
|
+
attr_accessor lambda_provider: Types::LambdaAvailabilityProvider
|
1328
|
+
SENSITIVE: []
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class UpdateAvailabilityConfigurationResponse < Aws::EmptyStructure
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
class UpdateDefaultMailDomainRequest
|
1335
|
+
attr_accessor organization_id: ::String
|
1336
|
+
attr_accessor domain_name: ::String
|
1337
|
+
SENSITIVE: []
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class UpdateDefaultMailDomainResponse < Aws::EmptyStructure
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
class UpdateGroupRequest
|
1344
|
+
attr_accessor organization_id: ::String
|
1345
|
+
attr_accessor group_id: ::String
|
1346
|
+
attr_accessor hidden_from_global_address_list: bool
|
1347
|
+
SENSITIVE: []
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class UpdateGroupResponse < Aws::EmptyStructure
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class UpdateImpersonationRoleRequest
|
1354
|
+
attr_accessor organization_id: ::String
|
1355
|
+
attr_accessor impersonation_role_id: ::String
|
1356
|
+
attr_accessor name: ::String
|
1357
|
+
attr_accessor type: ("FULL_ACCESS" | "READ_ONLY")
|
1358
|
+
attr_accessor description: ::String
|
1359
|
+
attr_accessor rules: ::Array[Types::ImpersonationRule]
|
1360
|
+
SENSITIVE: []
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class UpdateImpersonationRoleResponse < Aws::EmptyStructure
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
class UpdateMailboxQuotaRequest
|
1367
|
+
attr_accessor organization_id: ::String
|
1368
|
+
attr_accessor user_id: ::String
|
1369
|
+
attr_accessor mailbox_quota: ::Integer
|
1370
|
+
SENSITIVE: []
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
class UpdateMailboxQuotaResponse < Aws::EmptyStructure
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
class UpdateMobileDeviceAccessRuleRequest
|
1377
|
+
attr_accessor organization_id: ::String
|
1378
|
+
attr_accessor mobile_device_access_rule_id: ::String
|
1379
|
+
attr_accessor name: ::String
|
1380
|
+
attr_accessor description: ::String
|
1381
|
+
attr_accessor effect: ("ALLOW" | "DENY")
|
1382
|
+
attr_accessor device_types: ::Array[::String]
|
1383
|
+
attr_accessor not_device_types: ::Array[::String]
|
1384
|
+
attr_accessor device_models: ::Array[::String]
|
1385
|
+
attr_accessor not_device_models: ::Array[::String]
|
1386
|
+
attr_accessor device_operating_systems: ::Array[::String]
|
1387
|
+
attr_accessor not_device_operating_systems: ::Array[::String]
|
1388
|
+
attr_accessor device_user_agents: ::Array[::String]
|
1389
|
+
attr_accessor not_device_user_agents: ::Array[::String]
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class UpdateMobileDeviceAccessRuleResponse < Aws::EmptyStructure
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class UpdatePrimaryEmailAddressRequest
|
1397
|
+
attr_accessor organization_id: ::String
|
1398
|
+
attr_accessor entity_id: ::String
|
1399
|
+
attr_accessor email: ::String
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class UpdatePrimaryEmailAddressResponse < Aws::EmptyStructure
|
1404
|
+
end
|
1405
|
+
|
1406
|
+
class UpdateResourceRequest
|
1407
|
+
attr_accessor organization_id: ::String
|
1408
|
+
attr_accessor resource_id: ::String
|
1409
|
+
attr_accessor name: ::String
|
1410
|
+
attr_accessor booking_options: Types::BookingOptions
|
1411
|
+
attr_accessor description: ::String
|
1412
|
+
attr_accessor type: ("ROOM" | "EQUIPMENT")
|
1413
|
+
attr_accessor hidden_from_global_address_list: bool
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class UpdateResourceResponse < Aws::EmptyStructure
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class UpdateUserRequest
|
1421
|
+
attr_accessor organization_id: ::String
|
1422
|
+
attr_accessor user_id: ::String
|
1423
|
+
attr_accessor role: ("USER" | "RESOURCE" | "SYSTEM_USER" | "REMOTE_USER")
|
1424
|
+
attr_accessor display_name: ::String
|
1425
|
+
attr_accessor first_name: ::String
|
1426
|
+
attr_accessor last_name: ::String
|
1427
|
+
attr_accessor hidden_from_global_address_list: bool
|
1428
|
+
attr_accessor initials: ::String
|
1429
|
+
attr_accessor telephone: ::String
|
1430
|
+
attr_accessor street: ::String
|
1431
|
+
attr_accessor job_title: ::String
|
1432
|
+
attr_accessor city: ::String
|
1433
|
+
attr_accessor company: ::String
|
1434
|
+
attr_accessor zip_code: ::String
|
1435
|
+
attr_accessor department: ::String
|
1436
|
+
attr_accessor country: ::String
|
1437
|
+
attr_accessor office: ::String
|
1438
|
+
SENSITIVE: [:display_name, :first_name, :last_name, :initials, :telephone, :street, :job_title, :city, :company, :zip_code, :department, :country, :office]
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
class UpdateUserResponse < Aws::EmptyStructure
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class User
|
1445
|
+
attr_accessor id: ::String
|
1446
|
+
attr_accessor email: ::String
|
1447
|
+
attr_accessor name: ::String
|
1448
|
+
attr_accessor display_name: ::String
|
1449
|
+
attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
|
1450
|
+
attr_accessor user_role: ("USER" | "RESOURCE" | "SYSTEM_USER" | "REMOTE_USER")
|
1451
|
+
attr_accessor enabled_date: ::Time
|
1452
|
+
attr_accessor disabled_date: ::Time
|
1453
|
+
SENSITIVE: []
|
1454
|
+
end
|
1455
|
+
end
|
1456
|
+
end
|