workmail.d.ts
48.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class WorkMail extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: WorkMail.Types.ClientConfiguration)
config: Config & WorkMail.Types.ClientConfiguration;
/**
* Adds a member (user or group) to the resource's set of delegates.
*/
associateDelegateToResource(params: WorkMail.Types.AssociateDelegateToResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.AssociateDelegateToResourceResponse) => void): Request<WorkMail.Types.AssociateDelegateToResourceResponse, AWSError>;
/**
* Adds a member (user or group) to the resource's set of delegates.
*/
associateDelegateToResource(callback?: (err: AWSError, data: WorkMail.Types.AssociateDelegateToResourceResponse) => void): Request<WorkMail.Types.AssociateDelegateToResourceResponse, AWSError>;
/**
* Adds a member (user or group) to the group's set.
*/
associateMemberToGroup(params: WorkMail.Types.AssociateMemberToGroupRequest, callback?: (err: AWSError, data: WorkMail.Types.AssociateMemberToGroupResponse) => void): Request<WorkMail.Types.AssociateMemberToGroupResponse, AWSError>;
/**
* Adds a member (user or group) to the group's set.
*/
associateMemberToGroup(callback?: (err: AWSError, data: WorkMail.Types.AssociateMemberToGroupResponse) => void): Request<WorkMail.Types.AssociateMemberToGroupResponse, AWSError>;
/**
* Adds an alias to the set of a given member (user or group) of Amazon WorkMail.
*/
createAlias(params: WorkMail.Types.CreateAliasRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateAliasResponse) => void): Request<WorkMail.Types.CreateAliasResponse, AWSError>;
/**
* Adds an alias to the set of a given member (user or group) of Amazon WorkMail.
*/
createAlias(callback?: (err: AWSError, data: WorkMail.Types.CreateAliasResponse) => void): Request<WorkMail.Types.CreateAliasResponse, AWSError>;
/**
* Creates a group that can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
*/
createGroup(params: WorkMail.Types.CreateGroupRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateGroupResponse) => void): Request<WorkMail.Types.CreateGroupResponse, AWSError>;
/**
* Creates a group that can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
*/
createGroup(callback?: (err: AWSError, data: WorkMail.Types.CreateGroupResponse) => void): Request<WorkMail.Types.CreateGroupResponse, AWSError>;
/**
* Creates a new Amazon WorkMail resource.
*/
createResource(params: WorkMail.Types.CreateResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateResourceResponse) => void): Request<WorkMail.Types.CreateResourceResponse, AWSError>;
/**
* Creates a new Amazon WorkMail resource.
*/
createResource(callback?: (err: AWSError, data: WorkMail.Types.CreateResourceResponse) => void): Request<WorkMail.Types.CreateResourceResponse, AWSError>;
/**
* Creates a user who can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
*/
createUser(params: WorkMail.Types.CreateUserRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateUserResponse) => void): Request<WorkMail.Types.CreateUserResponse, AWSError>;
/**
* Creates a user who can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
*/
createUser(callback?: (err: AWSError, data: WorkMail.Types.CreateUserResponse) => void): Request<WorkMail.Types.CreateUserResponse, AWSError>;
/**
* Remove one or more specified aliases from a set of aliases for a given user.
*/
deleteAlias(params: WorkMail.Types.DeleteAliasRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteAliasResponse) => void): Request<WorkMail.Types.DeleteAliasResponse, AWSError>;
/**
* Remove one or more specified aliases from a set of aliases for a given user.
*/
deleteAlias(callback?: (err: AWSError, data: WorkMail.Types.DeleteAliasResponse) => void): Request<WorkMail.Types.DeleteAliasResponse, AWSError>;
/**
* Deletes a group from Amazon WorkMail.
*/
deleteGroup(params: WorkMail.Types.DeleteGroupRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteGroupResponse) => void): Request<WorkMail.Types.DeleteGroupResponse, AWSError>;
/**
* Deletes a group from Amazon WorkMail.
*/
deleteGroup(callback?: (err: AWSError, data: WorkMail.Types.DeleteGroupResponse) => void): Request<WorkMail.Types.DeleteGroupResponse, AWSError>;
/**
* Deletes permissions granted to a member (user or group).
*/
deleteMailboxPermissions(params: WorkMail.Types.DeleteMailboxPermissionsRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteMailboxPermissionsResponse) => void): Request<WorkMail.Types.DeleteMailboxPermissionsResponse, AWSError>;
/**
* Deletes permissions granted to a member (user or group).
*/
deleteMailboxPermissions(callback?: (err: AWSError, data: WorkMail.Types.DeleteMailboxPermissionsResponse) => void): Request<WorkMail.Types.DeleteMailboxPermissionsResponse, AWSError>;
/**
* Deletes the specified resource.
*/
deleteResource(params: WorkMail.Types.DeleteResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteResourceResponse) => void): Request<WorkMail.Types.DeleteResourceResponse, AWSError>;
/**
* Deletes the specified resource.
*/
deleteResource(callback?: (err: AWSError, data: WorkMail.Types.DeleteResourceResponse) => void): Request<WorkMail.Types.DeleteResourceResponse, AWSError>;
/**
* Deletes a user from Amazon WorkMail and all subsequent systems. Before you can delete a user, the user state must be DISABLED. Use the DescribeUser action to confirm the user state. Deleting a user is permanent and cannot be undone. WorkMail archives user mailboxes for 30 days before they are permanently removed.
*/
deleteUser(params: WorkMail.Types.DeleteUserRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteUserResponse) => void): Request<WorkMail.Types.DeleteUserResponse, AWSError>;
/**
* Deletes a user from Amazon WorkMail and all subsequent systems. Before you can delete a user, the user state must be DISABLED. Use the DescribeUser action to confirm the user state. Deleting a user is permanent and cannot be undone. WorkMail archives user mailboxes for 30 days before they are permanently removed.
*/
deleteUser(callback?: (err: AWSError, data: WorkMail.Types.DeleteUserResponse) => void): Request<WorkMail.Types.DeleteUserResponse, AWSError>;
/**
* Mark a user, group, or resource as no longer used in Amazon WorkMail. This action disassociates the mailbox and schedules it for clean-up. WorkMail keeps mailboxes for 30 days before they are permanently removed. The functionality in the console is Disable.
*/
deregisterFromWorkMail(params: WorkMail.Types.DeregisterFromWorkMailRequest, callback?: (err: AWSError, data: WorkMail.Types.DeregisterFromWorkMailResponse) => void): Request<WorkMail.Types.DeregisterFromWorkMailResponse, AWSError>;
/**
* Mark a user, group, or resource as no longer used in Amazon WorkMail. This action disassociates the mailbox and schedules it for clean-up. WorkMail keeps mailboxes for 30 days before they are permanently removed. The functionality in the console is Disable.
*/
deregisterFromWorkMail(callback?: (err: AWSError, data: WorkMail.Types.DeregisterFromWorkMailResponse) => void): Request<WorkMail.Types.DeregisterFromWorkMailResponse, AWSError>;
/**
* Returns the data available for the group.
*/
describeGroup(params: WorkMail.Types.DescribeGroupRequest, callback?: (err: AWSError, data: WorkMail.Types.DescribeGroupResponse) => void): Request<WorkMail.Types.DescribeGroupResponse, AWSError>;
/**
* Returns the data available for the group.
*/
describeGroup(callback?: (err: AWSError, data: WorkMail.Types.DescribeGroupResponse) => void): Request<WorkMail.Types.DescribeGroupResponse, AWSError>;
/**
* Provides more information regarding a given organization based on its identifier.
*/
describeOrganization(params: WorkMail.Types.DescribeOrganizationRequest, callback?: (err: AWSError, data: WorkMail.Types.DescribeOrganizationResponse) => void): Request<WorkMail.Types.DescribeOrganizationResponse, AWSError>;
/**
* Provides more information regarding a given organization based on its identifier.
*/
describeOrganization(callback?: (err: AWSError, data: WorkMail.Types.DescribeOrganizationResponse) => void): Request<WorkMail.Types.DescribeOrganizationResponse, AWSError>;
/**
* Returns the data available for the resource.
*/
describeResource(params: WorkMail.Types.DescribeResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.DescribeResourceResponse) => void): Request<WorkMail.Types.DescribeResourceResponse, AWSError>;
/**
* Returns the data available for the resource.
*/
describeResource(callback?: (err: AWSError, data: WorkMail.Types.DescribeResourceResponse) => void): Request<WorkMail.Types.DescribeResourceResponse, AWSError>;
/**
* Provides information regarding the user.
*/
describeUser(params: WorkMail.Types.DescribeUserRequest, callback?: (err: AWSError, data: WorkMail.Types.DescribeUserResponse) => void): Request<WorkMail.Types.DescribeUserResponse, AWSError>;
/**
* Provides information regarding the user.
*/
describeUser(callback?: (err: AWSError, data: WorkMail.Types.DescribeUserResponse) => void): Request<WorkMail.Types.DescribeUserResponse, AWSError>;
/**
* Removes a member from the resource's set of delegates.
*/
disassociateDelegateFromResource(params: WorkMail.Types.DisassociateDelegateFromResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.DisassociateDelegateFromResourceResponse) => void): Request<WorkMail.Types.DisassociateDelegateFromResourceResponse, AWSError>;
/**
* Removes a member from the resource's set of delegates.
*/
disassociateDelegateFromResource(callback?: (err: AWSError, data: WorkMail.Types.DisassociateDelegateFromResourceResponse) => void): Request<WorkMail.Types.DisassociateDelegateFromResourceResponse, AWSError>;
/**
* Removes a member from a group.
*/
disassociateMemberFromGroup(params: WorkMail.Types.DisassociateMemberFromGroupRequest, callback?: (err: AWSError, data: WorkMail.Types.DisassociateMemberFromGroupResponse) => void): Request<WorkMail.Types.DisassociateMemberFromGroupResponse, AWSError>;
/**
* Removes a member from a group.
*/
disassociateMemberFromGroup(callback?: (err: AWSError, data: WorkMail.Types.DisassociateMemberFromGroupResponse) => void): Request<WorkMail.Types.DisassociateMemberFromGroupResponse, AWSError>;
/**
* Requests a user's mailbox details for a specified organization and user.
*/
getMailboxDetails(params: WorkMail.Types.GetMailboxDetailsRequest, callback?: (err: AWSError, data: WorkMail.Types.GetMailboxDetailsResponse) => void): Request<WorkMail.Types.GetMailboxDetailsResponse, AWSError>;
/**
* Requests a user's mailbox details for a specified organization and user.
*/
getMailboxDetails(callback?: (err: AWSError, data: WorkMail.Types.GetMailboxDetailsResponse) => void): Request<WorkMail.Types.GetMailboxDetailsResponse, AWSError>;
/**
* Creates a paginated call to list the aliases associated with a given entity.
*/
listAliases(params: WorkMail.Types.ListAliasesRequest, callback?: (err: AWSError, data: WorkMail.Types.ListAliasesResponse) => void): Request<WorkMail.Types.ListAliasesResponse, AWSError>;
/**
* Creates a paginated call to list the aliases associated with a given entity.
*/
listAliases(callback?: (err: AWSError, data: WorkMail.Types.ListAliasesResponse) => void): Request<WorkMail.Types.ListAliasesResponse, AWSError>;
/**
* Returns an overview of the members of a group. Users and groups can be members of a group.
*/
listGroupMembers(params: WorkMail.Types.ListGroupMembersRequest, callback?: (err: AWSError, data: WorkMail.Types.ListGroupMembersResponse) => void): Request<WorkMail.Types.ListGroupMembersResponse, AWSError>;
/**
* Returns an overview of the members of a group. Users and groups can be members of a group.
*/
listGroupMembers(callback?: (err: AWSError, data: WorkMail.Types.ListGroupMembersResponse) => void): Request<WorkMail.Types.ListGroupMembersResponse, AWSError>;
/**
* Returns summaries of the organization's groups.
*/
listGroups(params: WorkMail.Types.ListGroupsRequest, callback?: (err: AWSError, data: WorkMail.Types.ListGroupsResponse) => void): Request<WorkMail.Types.ListGroupsResponse, AWSError>;
/**
* Returns summaries of the organization's groups.
*/
listGroups(callback?: (err: AWSError, data: WorkMail.Types.ListGroupsResponse) => void): Request<WorkMail.Types.ListGroupsResponse, AWSError>;
/**
* Lists the mailbox permissions associated with a user, group, or resource mailbox.
*/
listMailboxPermissions(params: WorkMail.Types.ListMailboxPermissionsRequest, callback?: (err: AWSError, data: WorkMail.Types.ListMailboxPermissionsResponse) => void): Request<WorkMail.Types.ListMailboxPermissionsResponse, AWSError>;
/**
* Lists the mailbox permissions associated with a user, group, or resource mailbox.
*/
listMailboxPermissions(callback?: (err: AWSError, data: WorkMail.Types.ListMailboxPermissionsResponse) => void): Request<WorkMail.Types.ListMailboxPermissionsResponse, AWSError>;
/**
* Returns summaries of the customer's non-deleted organizations.
*/
listOrganizations(params: WorkMail.Types.ListOrganizationsRequest, callback?: (err: AWSError, data: WorkMail.Types.ListOrganizationsResponse) => void): Request<WorkMail.Types.ListOrganizationsResponse, AWSError>;
/**
* Returns summaries of the customer's non-deleted organizations.
*/
listOrganizations(callback?: (err: AWSError, data: WorkMail.Types.ListOrganizationsResponse) => void): Request<WorkMail.Types.ListOrganizationsResponse, AWSError>;
/**
* Lists the delegates associated with a resource. Users and groups can be resource delegates and answer requests on behalf of the resource.
*/
listResourceDelegates(params: WorkMail.Types.ListResourceDelegatesRequest, callback?: (err: AWSError, data: WorkMail.Types.ListResourceDelegatesResponse) => void): Request<WorkMail.Types.ListResourceDelegatesResponse, AWSError>;
/**
* Lists the delegates associated with a resource. Users and groups can be resource delegates and answer requests on behalf of the resource.
*/
listResourceDelegates(callback?: (err: AWSError, data: WorkMail.Types.ListResourceDelegatesResponse) => void): Request<WorkMail.Types.ListResourceDelegatesResponse, AWSError>;
/**
* Returns summaries of the organization's resources.
*/
listResources(params: WorkMail.Types.ListResourcesRequest, callback?: (err: AWSError, data: WorkMail.Types.ListResourcesResponse) => void): Request<WorkMail.Types.ListResourcesResponse, AWSError>;
/**
* Returns summaries of the organization's resources.
*/
listResources(callback?: (err: AWSError, data: WorkMail.Types.ListResourcesResponse) => void): Request<WorkMail.Types.ListResourcesResponse, AWSError>;
/**
* Returns summaries of the organization's users.
*/
listUsers(params: WorkMail.Types.ListUsersRequest, callback?: (err: AWSError, data: WorkMail.Types.ListUsersResponse) => void): Request<WorkMail.Types.ListUsersResponse, AWSError>;
/**
* Returns summaries of the organization's users.
*/
listUsers(callback?: (err: AWSError, data: WorkMail.Types.ListUsersResponse) => void): Request<WorkMail.Types.ListUsersResponse, AWSError>;
/**
* Sets permissions for a user, group, or resource. This replaces any pre-existing permissions.
*/
putMailboxPermissions(params: WorkMail.Types.PutMailboxPermissionsRequest, callback?: (err: AWSError, data: WorkMail.Types.PutMailboxPermissionsResponse) => void): Request<WorkMail.Types.PutMailboxPermissionsResponse, AWSError>;
/**
* Sets permissions for a user, group, or resource. This replaces any pre-existing permissions.
*/
putMailboxPermissions(callback?: (err: AWSError, data: WorkMail.Types.PutMailboxPermissionsResponse) => void): Request<WorkMail.Types.PutMailboxPermissionsResponse, AWSError>;
/**
* Registers an existing and disabled user, group, or resource for Amazon WorkMail use by associating a mailbox and calendaring capabilities. It performs no change if the user, group, or resource is enabled and fails if the user, group, or resource is deleted. This operation results in the accumulation of costs. For more information, see Pricing. The equivalent console functionality for this operation is Enable. Users can either be created by calling the CreateUser API operation or they can be synchronized from your directory. For more information, see DeregisterFromWorkMail.
*/
registerToWorkMail(params: WorkMail.Types.RegisterToWorkMailRequest, callback?: (err: AWSError, data: WorkMail.Types.RegisterToWorkMailResponse) => void): Request<WorkMail.Types.RegisterToWorkMailResponse, AWSError>;
/**
* Registers an existing and disabled user, group, or resource for Amazon WorkMail use by associating a mailbox and calendaring capabilities. It performs no change if the user, group, or resource is enabled and fails if the user, group, or resource is deleted. This operation results in the accumulation of costs. For more information, see Pricing. The equivalent console functionality for this operation is Enable. Users can either be created by calling the CreateUser API operation or they can be synchronized from your directory. For more information, see DeregisterFromWorkMail.
*/
registerToWorkMail(callback?: (err: AWSError, data: WorkMail.Types.RegisterToWorkMailResponse) => void): Request<WorkMail.Types.RegisterToWorkMailResponse, AWSError>;
/**
* Allows the administrator to reset the password for a user.
*/
resetPassword(params: WorkMail.Types.ResetPasswordRequest, callback?: (err: AWSError, data: WorkMail.Types.ResetPasswordResponse) => void): Request<WorkMail.Types.ResetPasswordResponse, AWSError>;
/**
* Allows the administrator to reset the password for a user.
*/
resetPassword(callback?: (err: AWSError, data: WorkMail.Types.ResetPasswordResponse) => void): Request<WorkMail.Types.ResetPasswordResponse, AWSError>;
/**
* Updates a user's current mailbox quota for a specified organization and user.
*/
updateMailboxQuota(params: WorkMail.Types.UpdateMailboxQuotaRequest, callback?: (err: AWSError, data: WorkMail.Types.UpdateMailboxQuotaResponse) => void): Request<WorkMail.Types.UpdateMailboxQuotaResponse, AWSError>;
/**
* Updates a user's current mailbox quota for a specified organization and user.
*/
updateMailboxQuota(callback?: (err: AWSError, data: WorkMail.Types.UpdateMailboxQuotaResponse) => void): Request<WorkMail.Types.UpdateMailboxQuotaResponse, AWSError>;
/**
* Updates the primary email for a user, group, or resource. The current email is moved into the list of aliases (or swapped between an existing alias and the current primary email), and the email provided in the input is promoted as the primary.
*/
updatePrimaryEmailAddress(params: WorkMail.Types.UpdatePrimaryEmailAddressRequest, callback?: (err: AWSError, data: WorkMail.Types.UpdatePrimaryEmailAddressResponse) => void): Request<WorkMail.Types.UpdatePrimaryEmailAddressResponse, AWSError>;
/**
* Updates the primary email for a user, group, or resource. The current email is moved into the list of aliases (or swapped between an existing alias and the current primary email), and the email provided in the input is promoted as the primary.
*/
updatePrimaryEmailAddress(callback?: (err: AWSError, data: WorkMail.Types.UpdatePrimaryEmailAddressResponse) => void): Request<WorkMail.Types.UpdatePrimaryEmailAddressResponse, AWSError>;
/**
* Updates data for the resource. To have the latest information, it must be preceded by a DescribeResource call. The dataset in the request should be the one expected when performing another DescribeResource call.
*/
updateResource(params: WorkMail.Types.UpdateResourceRequest, callback?: (err: AWSError, data: WorkMail.Types.UpdateResourceResponse) => void): Request<WorkMail.Types.UpdateResourceResponse, AWSError>;
/**
* Updates data for the resource. To have the latest information, it must be preceded by a DescribeResource call. The dataset in the request should be the one expected when performing another DescribeResource call.
*/
updateResource(callback?: (err: AWSError, data: WorkMail.Types.UpdateResourceResponse) => void): Request<WorkMail.Types.UpdateResourceResponse, AWSError>;
}
declare namespace WorkMail {
export type Aliases = EmailAddress[];
export interface AssociateDelegateToResourceRequest {
/**
* The organization under which the resource exists.
*/
OrganizationId: OrganizationId;
/**
* The resource for which members (users or groups) are associated.
*/
ResourceId: ResourceId;
/**
* The member (user or group) to associate to the resource.
*/
EntityId: WorkMailIdentifier;
}
export interface AssociateDelegateToResourceResponse {
}
export interface AssociateMemberToGroupRequest {
/**
* The organization under which the group exists.
*/
OrganizationId: OrganizationId;
/**
* The group to which the member (user or group) is associated.
*/
GroupId: WorkMailIdentifier;
/**
* The member (user or group) to associate to the group.
*/
MemberId: WorkMailIdentifier;
}
export interface AssociateMemberToGroupResponse {
}
export interface BookingOptions {
/**
* The resource's ability to automatically reply to requests. If disabled, delegates must be associated to the resource.
*/
AutoAcceptRequests?: Boolean;
/**
* The resource's ability to automatically decline any recurring requests.
*/
AutoDeclineRecurringRequests?: Boolean;
/**
* The resource's ability to automatically decline any conflicting requests.
*/
AutoDeclineConflictingRequests?: Boolean;
}
export type Boolean = boolean;
export interface CreateAliasRequest {
/**
* The organization under which the member (user or group) exists.
*/
OrganizationId: OrganizationId;
/**
* The member (user or group) to which this alias is added.
*/
EntityId: WorkMailIdentifier;
/**
* The alias to add to the member set.
*/
Alias: EmailAddress;
}
export interface CreateAliasResponse {
}
export interface CreateGroupRequest {
/**
* The organization under which the group is to be created.
*/
OrganizationId: OrganizationId;
/**
* The name of the group.
*/
Name: GroupName;
}
export interface CreateGroupResponse {
/**
* The identifier of the group.
*/
GroupId?: WorkMailIdentifier;
}
export interface CreateResourceRequest {
/**
* The identifier associated with the organization for which the resource is created.
*/
OrganizationId: OrganizationId;
/**
* The name of the new resource.
*/
Name: ResourceName;
/**
* The type of the new resource. The available types are equipment and room.
*/
Type: ResourceType;
}
export interface CreateResourceResponse {
/**
* The identifier of the new resource.
*/
ResourceId?: ResourceId;
}
export interface CreateUserRequest {
/**
* The identifier of the organization for which the user is created.
*/
OrganizationId: OrganizationId;
/**
* The name for the new user. Simple AD or AD Connector user names have a maximum length of 20. All others have a maximum length of 64.
*/
Name: UserName;
/**
* The display name for the new user.
*/
DisplayName: String;
/**
* The password for the new user.
*/
Password: Password;
}
export interface CreateUserResponse {
/**
* The identifier for the new user.
*/
UserId?: WorkMailIdentifier;
}
export interface Delegate {
/**
* The identifier for the user or group associated as the resource's delegate.
*/
Id: String;
/**
* The type of the delegate: user or group.
*/
Type: MemberType;
}
export interface DeleteAliasRequest {
/**
* The identifier for the organization under which the user exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the member (user or group) from which to have the aliases removed.
*/
EntityId: WorkMailIdentifier;
/**
* The aliases to be removed from the user's set of aliases. Duplicate entries in the list are collapsed into single entries (the list is transformed into a set).
*/
Alias: EmailAddress;
}
export interface DeleteAliasResponse {
}
export interface DeleteGroupRequest {
/**
* The organization that contains the group.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the group to be deleted.
*/
GroupId: WorkMailIdentifier;
}
export interface DeleteGroupResponse {
}
export interface DeleteMailboxPermissionsRequest {
/**
* The identifier of the organization under which the member (user or group) exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the member (user or group)that owns the mailbox.
*/
EntityId: WorkMailIdentifier;
/**
* The identifier of the member (user or group) for which to delete granted permissions.
*/
GranteeId: WorkMailIdentifier;
}
export interface DeleteMailboxPermissionsResponse {
}
export interface DeleteResourceRequest {
/**
* The identifier associated with the organization from which the resource is deleted.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the resource to be deleted.
*/
ResourceId: ResourceId;
}
export interface DeleteResourceResponse {
}
export interface DeleteUserRequest {
/**
* The organization that contains the user to be deleted.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the user to be deleted.
*/
UserId: WorkMailIdentifier;
}
export interface DeleteUserResponse {
}
export interface DeregisterFromWorkMailRequest {
/**
* The identifier for the organization under which the Amazon WorkMail entity exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the member (user or group) to be updated.
*/
EntityId: WorkMailIdentifier;
}
export interface DeregisterFromWorkMailResponse {
}
export interface DescribeGroupRequest {
/**
* The identifier for the organization under which the group exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the group to be described.
*/
GroupId: WorkMailIdentifier;
}
export interface DescribeGroupResponse {
/**
* The identifier of the described group.
*/
GroupId?: WorkMailIdentifier;
/**
* The name of the described group.
*/
Name?: GroupName;
/**
* The email of the described group.
*/
Email?: EmailAddress;
/**
* The state of the user: enabled (registered to Amazon WorkMail) or disabled (deregistered or never registered to WorkMail).
*/
State?: EntityState;
/**
* The date and time when a user was registered to WorkMail, in UNIX epoch time format.
*/
EnabledDate?: Timestamp;
/**
* The date and time when a user was deregistered from WorkMail, in UNIX epoch time format.
*/
DisabledDate?: Timestamp;
}
export interface DescribeOrganizationRequest {
/**
* The identifier for the organization to be described.
*/
OrganizationId: OrganizationId;
}
export interface DescribeOrganizationResponse {
/**
* The identifier of an organization.
*/
OrganizationId?: OrganizationId;
/**
* The alias for an organization.
*/
Alias?: OrganizationName;
/**
* The state of an organization.
*/
State?: String;
/**
* The identifier for the directory associated with an Amazon WorkMail organization.
*/
DirectoryId?: String;
/**
* The type of directory associated with the WorkMail organization.
*/
DirectoryType?: String;
/**
* The default mail domain associated with the organization.
*/
DefaultMailDomain?: String;
/**
* The date at which the organization became usable in the WorkMail context, in UNIX epoch time format.
*/
CompletedDate?: Timestamp;
/**
* (Optional) The error message indicating if unexpected behavior was encountered with regards to the organization.
*/
ErrorMessage?: String;
}
export interface DescribeResourceRequest {
/**
* The identifier associated with the organization for which the resource is described.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the resource to be described.
*/
ResourceId: ResourceId;
}
export interface DescribeResourceResponse {
/**
* The identifier of the described resource.
*/
ResourceId?: ResourceId;
/**
* The email of the described resource.
*/
Email?: EmailAddress;
/**
* The name of the described resource.
*/
Name?: ResourceName;
/**
* The type of the described resource.
*/
Type?: ResourceType;
/**
* The booking options for the described resource.
*/
BookingOptions?: BookingOptions;
/**
* The state of the resource: enabled (registered to Amazon WorkMail) or disabled (deregistered or never registered to WorkMail).
*/
State?: EntityState;
/**
* The date and time when a resource was enabled for WorkMail, in UNIX epoch time format.
*/
EnabledDate?: Timestamp;
/**
* The date and time when a resource was disabled from WorkMail, in UNIX epoch time format.
*/
DisabledDate?: Timestamp;
}
export interface DescribeUserRequest {
/**
* The identifier for the organization under which the user exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the user to be described.
*/
UserId: WorkMailIdentifier;
}
export interface DescribeUserResponse {
/**
* The identifier for the described user.
*/
UserId?: WorkMailIdentifier;
/**
* The name for the user.
*/
Name?: UserName;
/**
* The email of the user.
*/
Email?: EmailAddress;
/**
* The display name of the user.
*/
DisplayName?: String;
/**
* The state of a user: enabled (registered to Amazon WorkMail) or disabled (deregistered or never registered to WorkMail).
*/
State?: EntityState;
/**
* In certain cases, other entities are modeled as users. If interoperability is enabled, resources are imported into Amazon WorkMail as users. Because different WorkMail organizations rely on different directory types, administrators can distinguish between an unregistered user (account is disabled and has a user role) and the directory administrators. The values are USER, RESOURCE, and SYSTEM_USER.
*/
UserRole?: UserRole;
/**
* The date and time at which the user was enabled for Amazon WorkMail usage, in UNIX epoch time format.
*/
EnabledDate?: Timestamp;
/**
* The date and time at which the user was disabled for Amazon WorkMail usage, in UNIX epoch time format.
*/
DisabledDate?: Timestamp;
}
export interface DisassociateDelegateFromResourceRequest {
/**
* The identifier for the organization under which the resource exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the resource from which delegates' set members are removed.
*/
ResourceId: ResourceId;
/**
* The identifier for the member (user, group) to be removed from the resource's delegates.
*/
EntityId: WorkMailIdentifier;
}
export interface DisassociateDelegateFromResourceResponse {
}
export interface DisassociateMemberFromGroupRequest {
/**
* The identifier for the organization under which the group exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the group from which members are removed.
*/
GroupId: WorkMailIdentifier;
/**
* The identifier for the member to be removed to the group.
*/
MemberId: WorkMailIdentifier;
}
export interface DisassociateMemberFromGroupResponse {
}
export type EmailAddress = string;
export type EntityState = "ENABLED"|"DISABLED"|"DELETED"|string;
export interface GetMailboxDetailsRequest {
/**
* The identifier for the organization that contains the user whose mailbox details are being requested.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the user whose mailbox details are being requested.
*/
UserId: WorkMailIdentifier;
}
export interface GetMailboxDetailsResponse {
/**
* The maximum allowed mailbox size, in MB, for the specified user.
*/
MailboxQuota?: MailboxQuota;
/**
* The current mailbox size, in MB, for the specified user.
*/
MailboxSize?: MailboxSize;
}
export interface Group {
/**
* The identifier of the group.
*/
Id?: WorkMailIdentifier;
/**
* The email of the group.
*/
Email?: EmailAddress;
/**
* The name of the group.
*/
Name?: GroupName;
/**
* The state of the group, which can be ENABLED, DISABLED, or DELETED.
*/
State?: EntityState;
/**
* The date indicating when the group was enabled for Amazon WorkMail use.
*/
EnabledDate?: Timestamp;
/**
* The date indicating when the group was disabled from Amazon WorkMail use.
*/
DisabledDate?: Timestamp;
}
export type GroupName = string;
export type Groups = Group[];
export interface ListAliasesRequest {
/**
* The identifier for the organization under which the entity exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the entity for which to list the aliases.
*/
EntityId: WorkMailIdentifier;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListAliasesResponse {
/**
* The entity's paginated aliases.
*/
Aliases?: Aliases;
/**
* The token to use to retrieve the next page of results. The value is "null" when there are no more results to return.
*/
NextToken?: NextToken;
}
export interface ListGroupMembersRequest {
/**
* The identifier for the organization under which the group exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the group to which the members (users or groups) are associated.
*/
GroupId: WorkMailIdentifier;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListGroupMembersResponse {
/**
* The members associated to the group.
*/
Members?: Members;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
}
export interface ListGroupsRequest {
/**
* The identifier for the organization under which the groups exist.
*/
OrganizationId: OrganizationId;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListGroupsResponse {
/**
* The overview of groups for an organization.
*/
Groups?: Groups;
/**
* The token to use to retrieve the next page of results. The value is "null" when there are no more results to return.
*/
NextToken?: NextToken;
}
export interface ListMailboxPermissionsRequest {
/**
* The identifier of the organization under which the user, group, or resource exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the user, group, or resource for which to list mailbox permissions.
*/
EntityId: WorkMailIdentifier;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListMailboxPermissionsResponse {
/**
* One page of the user, group, or resource mailbox permissions.
*/
Permissions?: Permissions;
/**
* The token to use to retrieve the next page of results. The value is "null" when there are no more results to return.
*/
NextToken?: NextToken;
}
export interface ListOrganizationsRequest {
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListOrganizationsResponse {
/**
* The overview of owned organizations presented as a list of organization summaries.
*/
OrganizationSummaries?: OrganizationSummaries;
/**
* The token to use to retrieve the next page of results. The value is "null" when there are no more results to return.
*/
NextToken?: NextToken;
}
export interface ListResourceDelegatesRequest {
/**
* The identifier for the organization that contains the resource for which delegates are listed.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the resource whose delegates are listed.
*/
ResourceId: WorkMailIdentifier;
/**
* The token used to paginate through the delegates associated with a resource.
*/
NextToken?: NextToken;
/**
* The number of maximum results in a page.
*/
MaxResults?: MaxResults;
}
export interface ListResourceDelegatesResponse {
/**
* One page of the resource's delegates.
*/
Delegates?: ResourceDelegates;
/**
* The token used to paginate through the delegates associated with a resource. While results are still available, it has an associated value. When the last page is reached, the token is empty.
*/
NextToken?: NextToken;
}
export interface ListResourcesRequest {
/**
* The identifier for the organization under which the resources exist.
*/
OrganizationId: OrganizationId;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListResourcesResponse {
/**
* One page of the organization's resource representation.
*/
Resources?: Resources;
/**
* The token used to paginate through all the organization's resources. While results are still available, it has an associated value. When the last page is reached, the token is empty.
*/
NextToken?: NextToken;
}
export interface ListUsersRequest {
/**
* The identifier for the organization under which the users exist.
*/
OrganizationId: OrganizationId;
/**
* The token to use to retrieve the next page of results. The first call does not contain any tokens.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return in a single call.
*/
MaxResults?: MaxResults;
}
export interface ListUsersResponse {
/**
* The overview of users for an organization.
*/
Users?: Users;
/**
* The token to use to retrieve the next page of results. This value is `null` when there are no more results to return.
*/
NextToken?: NextToken;
}
export type MailboxQuota = number;
export type MailboxSize = number;
export type MaxResults = number;
export interface Member {
/**
* The identifier of the member.
*/
Id?: String;
/**
* The name of the member.
*/
Name?: String;
/**
* A member can be a user or group.
*/
Type?: MemberType;
/**
* The state of the member, which can be ENABLED, DISABLED, or DELETED.
*/
State?: EntityState;
/**
* The date indicating when the member was enabled for Amazon WorkMail use.
*/
EnabledDate?: Timestamp;
/**
* The date indicating when the member was disabled from Amazon WorkMail use.
*/
DisabledDate?: Timestamp;
}
export type MemberType = "GROUP"|"USER"|string;
export type Members = Member[];
export type NextToken = string;
export type OrganizationId = string;
export type OrganizationName = string;
export type OrganizationSummaries = OrganizationSummary[];
export interface OrganizationSummary {
/**
* The identifier associated with the organization.
*/
OrganizationId?: OrganizationId;
/**
* The alias associated with the organization.
*/
Alias?: OrganizationName;
/**
* The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.
*/
ErrorMessage?: String;
/**
* The state associated with the organization.
*/
State?: String;
}
export type Password = string;
export interface Permission {
/**
* The identifier of the user, group, or resource to which the permissions are granted.
*/
GranteeId: WorkMailIdentifier;
/**
* The type of user, group, or resource referred to in GranteeId.
*/
GranteeType: MemberType;
/**
* The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.
*/
PermissionValues: PermissionValues;
}
export type PermissionType = "FULL_ACCESS"|"SEND_AS"|"SEND_ON_BEHALF"|string;
export type PermissionValues = PermissionType[];
export type Permissions = Permission[];
export interface PutMailboxPermissionsRequest {
/**
* The identifier of the organization under which the user, group, or resource exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the user, group, or resource for which to update mailbox permissions.
*/
EntityId: WorkMailIdentifier;
/**
* The identifier of the user, group, or resource to which to grant the permissions.
*/
GranteeId: WorkMailIdentifier;
/**
* The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.
*/
PermissionValues: PermissionValues;
}
export interface PutMailboxPermissionsResponse {
}
export interface RegisterToWorkMailRequest {
/**
* The identifier for the organization under which the user, group, or resource exists.
*/
OrganizationId: OrganizationId;
/**
* The identifier for the user, group, or resource to be updated.
*/
EntityId: WorkMailIdentifier;
/**
* The email for the user, group, or resource to be updated.
*/
Email: EmailAddress;
}
export interface RegisterToWorkMailResponse {
}
export interface ResetPasswordRequest {
/**
* The identifier of the organization that contains the user for which the password is reset.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the user for whom the password is reset.
*/
UserId: WorkMailIdentifier;
/**
* The new password for the user.
*/
Password: Password;
}
export interface ResetPasswordResponse {
}
export interface Resource {
/**
* The identifier of the resource.
*/
Id?: WorkMailIdentifier;
/**
* The email of the resource.
*/
Email?: EmailAddress;
/**
* The name of the resource.
*/
Name?: ResourceName;
/**
* The type of the resource: equipment or room.
*/
Type?: ResourceType;
/**
* The state of the resource, which can be ENABLED, DISABLED, or DELETED.
*/
State?: EntityState;
/**
* The date indicating when the resource was enabled for Amazon WorkMail use.
*/
EnabledDate?: Timestamp;
/**
* The date indicating when the resource was disabled from Amazon WorkMail use.
*/
DisabledDate?: Timestamp;
}
export type ResourceDelegates = Delegate[];
export type ResourceId = string;
export type ResourceName = string;
export type ResourceType = "ROOM"|"EQUIPMENT"|string;
export type Resources = Resource[];
export type String = string;
export type Timestamp = Date;
export interface UpdateMailboxQuotaRequest {
/**
* The identifier for the organization that contains the user for whom to update the mailbox quota.
*/
OrganizationId: OrganizationId;
/**
* The identifer for the user for whom to update the mailbox quota.
*/
UserId: WorkMailIdentifier;
/**
* The updated mailbox quota, in MB, for the specified user.
*/
MailboxQuota: MailboxQuota;
}
export interface UpdateMailboxQuotaResponse {
}
export interface UpdatePrimaryEmailAddressRequest {
/**
* The organization that contains the user, group, or resource to update.
*/
OrganizationId: OrganizationId;
/**
* The user, group, or resource to update.
*/
EntityId: WorkMailIdentifier;
/**
* The value of the email to be updated as primary.
*/
Email: EmailAddress;
}
export interface UpdatePrimaryEmailAddressResponse {
}
export interface UpdateResourceRequest {
/**
* The identifier associated with the organization for which the resource is updated.
*/
OrganizationId: OrganizationId;
/**
* The identifier of the resource to be updated.
*/
ResourceId: ResourceId;
/**
* The name of the resource to be updated.
*/
Name?: ResourceName;
/**
* The resource's booking options to be updated.
*/
BookingOptions?: BookingOptions;
}
export interface UpdateResourceResponse {
}
export interface User {
/**
* The identifier of the user.
*/
Id?: WorkMailIdentifier;
/**
* The email of the user.
*/
Email?: EmailAddress;
/**
* The name of the user.
*/
Name?: UserName;
/**
* The display name of the user.
*/
DisplayName?: String;
/**
* The state of the user, which can be ENABLED, DISABLED, or DELETED.
*/
State?: EntityState;
/**
* The role of the user.
*/
UserRole?: UserRole;
/**
* The date indicating when the user was enabled for Amazon WorkMail use.
*/
EnabledDate?: Timestamp;
/**
* The date indicating when the user was disabled from Amazon WorkMail use.
*/
DisabledDate?: Timestamp;
}
export type UserName = string;
export type UserRole = "USER"|"RESOURCE"|"SYSTEM_USER"|string;
export type Users = User[];
export type WorkMailIdentifier = string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2017-10-01"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the WorkMail client.
*/
export import Types = WorkMail;
}
export = WorkMail;