@aws-sdk/client-workmail 3.43.0 → 3.47.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +47 -0
- package/dist-cjs/WorkMail.js +45 -0
- package/dist-cjs/commands/DeleteEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/PutEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +36 -132
- package/dist-cjs/protocols/Aws_json1_1.js +270 -3
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/WorkMail.js +45 -0
- package/dist-es/commands/DeleteEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/PutEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +24 -88
- package/dist-es/protocols/Aws_json1_1.js +289 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/WorkMail.d.ts +21 -0
- package/dist-types/WorkMailClient.d.ts +10 -3
- package/dist-types/commands/DeleteEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/PutEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +80 -136
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/WorkMail.d.ts +15 -0
- package/dist-types/ts3.4/WorkMailClient.d.ts +8 -3
- package/dist-types/ts3.4/commands/DeleteEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +54 -92
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -99,12 +99,6 @@ export interface EntityNotFoundException extends __SmithyException, $MetadataBea
|
|
|
99
99
|
$fault: "client";
|
|
100
100
|
Message?: string;
|
|
101
101
|
}
|
|
102
|
-
export declare namespace EntityNotFoundException {
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
const filterSensitiveLog: (obj: EntityNotFoundException) => any;
|
|
107
|
-
}
|
|
108
102
|
/**
|
|
109
103
|
* <p>You are performing an operation on a user, group, or resource that isn't in the
|
|
110
104
|
* expected state, such as trying to delete an active user.</p>
|
|
@@ -114,12 +108,6 @@ export interface EntityStateException extends __SmithyException, $MetadataBearer
|
|
|
114
108
|
$fault: "client";
|
|
115
109
|
Message?: string;
|
|
116
110
|
}
|
|
117
|
-
export declare namespace EntityStateException {
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
const filterSensitiveLog: (obj: EntityStateException) => any;
|
|
122
|
-
}
|
|
123
111
|
/**
|
|
124
112
|
* <p>One or more of the input parameters don't match the service's restrictions.</p>
|
|
125
113
|
*/
|
|
@@ -128,12 +116,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
128
116
|
$fault: "client";
|
|
129
117
|
Message?: string;
|
|
130
118
|
}
|
|
131
|
-
export declare namespace InvalidParameterException {
|
|
132
|
-
/**
|
|
133
|
-
* @internal
|
|
134
|
-
*/
|
|
135
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
136
|
-
}
|
|
137
119
|
/**
|
|
138
120
|
* <p>An operation received a valid organization identifier that either doesn't belong or
|
|
139
121
|
* exist in the system.</p>
|
|
@@ -143,12 +125,6 @@ export interface OrganizationNotFoundException extends __SmithyException, $Metad
|
|
|
143
125
|
$fault: "client";
|
|
144
126
|
Message?: string;
|
|
145
127
|
}
|
|
146
|
-
export declare namespace OrganizationNotFoundException {
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
const filterSensitiveLog: (obj: OrganizationNotFoundException) => any;
|
|
151
|
-
}
|
|
152
128
|
/**
|
|
153
129
|
* <p>The organization must have a valid state to perform certain
|
|
154
130
|
* operations on the organization or its members.</p>
|
|
@@ -158,12 +134,6 @@ export interface OrganizationStateException extends __SmithyException, $Metadata
|
|
|
158
134
|
$fault: "client";
|
|
159
135
|
Message?: string;
|
|
160
136
|
}
|
|
161
|
-
export declare namespace OrganizationStateException {
|
|
162
|
-
/**
|
|
163
|
-
* @internal
|
|
164
|
-
*/
|
|
165
|
-
const filterSensitiveLog: (obj: OrganizationStateException) => any;
|
|
166
|
-
}
|
|
167
137
|
export interface AssociateMemberToGroupRequest {
|
|
168
138
|
/**
|
|
169
139
|
* <p>The organization under which the group exists.</p>
|
|
@@ -200,12 +170,6 @@ export interface DirectoryServiceAuthenticationFailedException extends __SmithyE
|
|
|
200
170
|
$fault: "client";
|
|
201
171
|
Message?: string;
|
|
202
172
|
}
|
|
203
|
-
export declare namespace DirectoryServiceAuthenticationFailedException {
|
|
204
|
-
/**
|
|
205
|
-
* @internal
|
|
206
|
-
*/
|
|
207
|
-
const filterSensitiveLog: (obj: DirectoryServiceAuthenticationFailedException) => any;
|
|
208
|
-
}
|
|
209
173
|
/**
|
|
210
174
|
* <p>The directory is unavailable. It might be located in another Region or deleted.</p>
|
|
211
175
|
*/
|
|
@@ -214,12 +178,6 @@ export interface DirectoryUnavailableException extends __SmithyException, $Metad
|
|
|
214
178
|
$fault: "client";
|
|
215
179
|
Message?: string;
|
|
216
180
|
}
|
|
217
|
-
export declare namespace DirectoryUnavailableException {
|
|
218
|
-
/**
|
|
219
|
-
* @internal
|
|
220
|
-
*/
|
|
221
|
-
const filterSensitiveLog: (obj: DirectoryUnavailableException) => any;
|
|
222
|
-
}
|
|
223
181
|
/**
|
|
224
182
|
* <p>You can't perform a write operation against a read-only directory.</p>
|
|
225
183
|
*/
|
|
@@ -228,12 +186,6 @@ export interface UnsupportedOperationException extends __SmithyException, $Metad
|
|
|
228
186
|
$fault: "client";
|
|
229
187
|
Message?: string;
|
|
230
188
|
}
|
|
231
|
-
export declare namespace UnsupportedOperationException {
|
|
232
|
-
/**
|
|
233
|
-
* @internal
|
|
234
|
-
*/
|
|
235
|
-
const filterSensitiveLog: (obj: UnsupportedOperationException) => any;
|
|
236
|
-
}
|
|
237
189
|
/**
|
|
238
190
|
* <p>At least one delegate must be associated to the resource to disable automatic replies
|
|
239
191
|
* from the resource.</p>
|
|
@@ -324,12 +276,6 @@ export interface EmailAddressInUseException extends __SmithyException, $Metadata
|
|
|
324
276
|
$fault: "client";
|
|
325
277
|
Message?: string;
|
|
326
278
|
}
|
|
327
|
-
export declare namespace EmailAddressInUseException {
|
|
328
|
-
/**
|
|
329
|
-
* @internal
|
|
330
|
-
*/
|
|
331
|
-
const filterSensitiveLog: (obj: EmailAddressInUseException) => any;
|
|
332
|
-
}
|
|
333
279
|
/**
|
|
334
280
|
* <p>The request exceeds the limit of the resource.</p>
|
|
335
281
|
*/
|
|
@@ -338,12 +284,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
338
284
|
$fault: "client";
|
|
339
285
|
Message?: string;
|
|
340
286
|
}
|
|
341
|
-
export declare namespace LimitExceededException {
|
|
342
|
-
/**
|
|
343
|
-
* @internal
|
|
344
|
-
*/
|
|
345
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
346
|
-
}
|
|
347
287
|
/**
|
|
348
288
|
* <p>The domain specified is not found in your organization.</p>
|
|
349
289
|
*/
|
|
@@ -352,12 +292,6 @@ export interface MailDomainNotFoundException extends __SmithyException, $Metadat
|
|
|
352
292
|
$fault: "client";
|
|
353
293
|
Message?: string;
|
|
354
294
|
}
|
|
355
|
-
export declare namespace MailDomainNotFoundException {
|
|
356
|
-
/**
|
|
357
|
-
* @internal
|
|
358
|
-
*/
|
|
359
|
-
const filterSensitiveLog: (obj: MailDomainNotFoundException) => any;
|
|
360
|
-
}
|
|
361
295
|
/**
|
|
362
296
|
* <p>After a domain has been added to the organization, it must be verified. The domain is
|
|
363
297
|
* not yet verified.</p>
|
|
@@ -367,12 +301,6 @@ export interface MailDomainStateException extends __SmithyException, $MetadataBe
|
|
|
367
301
|
$fault: "client";
|
|
368
302
|
Message?: string;
|
|
369
303
|
}
|
|
370
|
-
export declare namespace MailDomainStateException {
|
|
371
|
-
/**
|
|
372
|
-
* @internal
|
|
373
|
-
*/
|
|
374
|
-
const filterSensitiveLog: (obj: MailDomainStateException) => any;
|
|
375
|
-
}
|
|
376
304
|
export interface CreateGroupRequest {
|
|
377
305
|
/**
|
|
378
306
|
* <p>The organization under which the group is to be created.</p>
|
|
@@ -409,12 +337,6 @@ export interface NameAvailabilityException extends __SmithyException, $MetadataB
|
|
|
409
337
|
$fault: "client";
|
|
410
338
|
Message?: string;
|
|
411
339
|
}
|
|
412
|
-
export declare namespace NameAvailabilityException {
|
|
413
|
-
/**
|
|
414
|
-
* @internal
|
|
415
|
-
*/
|
|
416
|
-
const filterSensitiveLog: (obj: NameAvailabilityException) => any;
|
|
417
|
-
}
|
|
418
340
|
/**
|
|
419
341
|
* <p>This user, group, or resource name is not allowed in Amazon WorkMail.</p>
|
|
420
342
|
*/
|
|
@@ -423,12 +345,6 @@ export interface ReservedNameException extends __SmithyException, $MetadataBeare
|
|
|
423
345
|
$fault: "client";
|
|
424
346
|
Message?: string;
|
|
425
347
|
}
|
|
426
|
-
export declare namespace ReservedNameException {
|
|
427
|
-
/**
|
|
428
|
-
* @internal
|
|
429
|
-
*/
|
|
430
|
-
const filterSensitiveLog: (obj: ReservedNameException) => any;
|
|
431
|
-
}
|
|
432
348
|
export declare enum MobileDeviceAccessRuleEffect {
|
|
433
349
|
ALLOW = "ALLOW",
|
|
434
350
|
DENY = "DENY"
|
|
@@ -578,12 +494,6 @@ export interface DirectoryInUseException extends __SmithyException, $MetadataBea
|
|
|
578
494
|
$fault: "client";
|
|
579
495
|
Message?: string;
|
|
580
496
|
}
|
|
581
|
-
export declare namespace DirectoryInUseException {
|
|
582
|
-
/**
|
|
583
|
-
* @internal
|
|
584
|
-
*/
|
|
585
|
-
const filterSensitiveLog: (obj: DirectoryInUseException) => any;
|
|
586
|
-
}
|
|
587
497
|
export declare enum ResourceType {
|
|
588
498
|
EQUIPMENT = "EQUIPMENT",
|
|
589
499
|
ROOM = "ROOM"
|
|
@@ -667,12 +577,6 @@ export interface InvalidPasswordException extends __SmithyException, $MetadataBe
|
|
|
667
577
|
$fault: "client";
|
|
668
578
|
Message?: string;
|
|
669
579
|
}
|
|
670
|
-
export declare namespace InvalidPasswordException {
|
|
671
|
-
/**
|
|
672
|
-
* @internal
|
|
673
|
-
*/
|
|
674
|
-
const filterSensitiveLog: (obj: InvalidPasswordException) => any;
|
|
675
|
-
}
|
|
676
580
|
export declare enum MemberType {
|
|
677
581
|
GROUP = "GROUP",
|
|
678
582
|
USER = "USER"
|
|
@@ -751,6 +655,26 @@ export declare namespace DeleteAliasResponse {
|
|
|
751
655
|
*/
|
|
752
656
|
const filterSensitiveLog: (obj: DeleteAliasResponse) => any;
|
|
753
657
|
}
|
|
658
|
+
export interface DeleteEmailMonitoringConfigurationRequest {
|
|
659
|
+
/**
|
|
660
|
+
* <p>The ID of the organization from which the email monitoring configuration is deleted.</p>
|
|
661
|
+
*/
|
|
662
|
+
OrganizationId: string | undefined;
|
|
663
|
+
}
|
|
664
|
+
export declare namespace DeleteEmailMonitoringConfigurationRequest {
|
|
665
|
+
/**
|
|
666
|
+
* @internal
|
|
667
|
+
*/
|
|
668
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationRequest) => any;
|
|
669
|
+
}
|
|
670
|
+
export interface DeleteEmailMonitoringConfigurationResponse {
|
|
671
|
+
}
|
|
672
|
+
export declare namespace DeleteEmailMonitoringConfigurationResponse {
|
|
673
|
+
/**
|
|
674
|
+
* @internal
|
|
675
|
+
*/
|
|
676
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationResponse) => any;
|
|
677
|
+
}
|
|
754
678
|
export interface DeleteGroupRequest {
|
|
755
679
|
/**
|
|
756
680
|
* <p>The organization that contains the group.</p>
|
|
@@ -1037,12 +961,6 @@ export interface InvalidCustomSesConfigurationException extends __SmithyExceptio
|
|
|
1037
961
|
$fault: "client";
|
|
1038
962
|
Message?: string;
|
|
1039
963
|
}
|
|
1040
|
-
export declare namespace InvalidCustomSesConfigurationException {
|
|
1041
|
-
/**
|
|
1042
|
-
* @internal
|
|
1043
|
-
*/
|
|
1044
|
-
const filterSensitiveLog: (obj: InvalidCustomSesConfigurationException) => any;
|
|
1045
|
-
}
|
|
1046
964
|
/**
|
|
1047
965
|
* <p>The domain you're trying to change is in use by another user or organization in your account. See the error message for details.</p>
|
|
1048
966
|
*/
|
|
@@ -1051,11 +969,41 @@ export interface MailDomainInUseException extends __SmithyException, $MetadataBe
|
|
|
1051
969
|
$fault: "client";
|
|
1052
970
|
Message?: string;
|
|
1053
971
|
}
|
|
1054
|
-
export
|
|
972
|
+
export interface DescribeEmailMonitoringConfigurationRequest {
|
|
973
|
+
/**
|
|
974
|
+
* <p>The ID of the organization for which the email monitoring configuration is described.</p>
|
|
975
|
+
*/
|
|
976
|
+
OrganizationId: string | undefined;
|
|
977
|
+
}
|
|
978
|
+
export declare namespace DescribeEmailMonitoringConfigurationRequest {
|
|
979
|
+
/**
|
|
980
|
+
* @internal
|
|
981
|
+
*/
|
|
982
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationRequest) => any;
|
|
983
|
+
}
|
|
984
|
+
export interface DescribeEmailMonitoringConfigurationResponse {
|
|
985
|
+
/**
|
|
986
|
+
* <p>The Amazon Resource Name (ARN) of the IAM Role associated with the email monitoring configuration.</p>
|
|
987
|
+
*/
|
|
988
|
+
RoleArn?: string;
|
|
989
|
+
/**
|
|
990
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch Log group associated with the email monitoring configuration.</p>
|
|
991
|
+
*/
|
|
992
|
+
LogGroupArn?: string;
|
|
993
|
+
}
|
|
994
|
+
export declare namespace DescribeEmailMonitoringConfigurationResponse {
|
|
1055
995
|
/**
|
|
1056
996
|
* @internal
|
|
1057
997
|
*/
|
|
1058
|
-
const filterSensitiveLog: (obj:
|
|
998
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationResponse) => any;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The resource cannot be found.</p>
|
|
1002
|
+
*/
|
|
1003
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1004
|
+
name: "ResourceNotFoundException";
|
|
1005
|
+
$fault: "client";
|
|
1006
|
+
Message?: string;
|
|
1059
1007
|
}
|
|
1060
1008
|
export interface DescribeGroupRequest {
|
|
1061
1009
|
/**
|
|
@@ -1499,12 +1447,6 @@ export interface EntityAlreadyRegisteredException extends __SmithyException, $Me
|
|
|
1499
1447
|
$fault: "client";
|
|
1500
1448
|
Message?: string;
|
|
1501
1449
|
}
|
|
1502
|
-
export declare namespace EntityAlreadyRegisteredException {
|
|
1503
|
-
/**
|
|
1504
|
-
* @internal
|
|
1505
|
-
*/
|
|
1506
|
-
const filterSensitiveLog: (obj: EntityAlreadyRegisteredException) => any;
|
|
1507
|
-
}
|
|
1508
1450
|
export declare enum RetentionAction {
|
|
1509
1451
|
DELETE = "DELETE",
|
|
1510
1452
|
NONE = "NONE",
|
|
@@ -1828,20 +1770,6 @@ export declare namespace GetMobileDeviceAccessOverrideResponse {
|
|
|
1828
1770
|
*/
|
|
1829
1771
|
const filterSensitiveLog: (obj: GetMobileDeviceAccessOverrideResponse) => any;
|
|
1830
1772
|
}
|
|
1831
|
-
/**
|
|
1832
|
-
* <p>The resource cannot be found.</p>
|
|
1833
|
-
*/
|
|
1834
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1835
|
-
name: "ResourceNotFoundException";
|
|
1836
|
-
$fault: "client";
|
|
1837
|
-
Message?: string;
|
|
1838
|
-
}
|
|
1839
|
-
export declare namespace ResourceNotFoundException {
|
|
1840
|
-
/**
|
|
1841
|
-
* @internal
|
|
1842
|
-
*/
|
|
1843
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
1844
|
-
}
|
|
1845
1773
|
/**
|
|
1846
1774
|
* <p>The representation of an Amazon WorkMail group.</p>
|
|
1847
1775
|
*/
|
|
@@ -1887,12 +1815,6 @@ export interface InvalidConfigurationException extends __SmithyException, $Metad
|
|
|
1887
1815
|
$fault: "client";
|
|
1888
1816
|
Message?: string;
|
|
1889
1817
|
}
|
|
1890
|
-
export declare namespace InvalidConfigurationException {
|
|
1891
|
-
/**
|
|
1892
|
-
* @internal
|
|
1893
|
-
*/
|
|
1894
|
-
const filterSensitiveLog: (obj: InvalidConfigurationException) => any;
|
|
1895
|
-
}
|
|
1896
1818
|
/**
|
|
1897
1819
|
* <p>The details of a mailbox export job, including the user or resource ID associated
|
|
1898
1820
|
* with the mailbox and the S3 bucket that the mailbox contents are exported to.</p>
|
|
@@ -2851,6 +2773,34 @@ export declare namespace PutAccessControlRuleResponse {
|
|
|
2851
2773
|
*/
|
|
2852
2774
|
const filterSensitiveLog: (obj: PutAccessControlRuleResponse) => any;
|
|
2853
2775
|
}
|
|
2776
|
+
export interface PutEmailMonitoringConfigurationRequest {
|
|
2777
|
+
/**
|
|
2778
|
+
* <p>The ID of the organization for which the email monitoring configuration is set.</p>
|
|
2779
|
+
*/
|
|
2780
|
+
OrganizationId: string | undefined;
|
|
2781
|
+
/**
|
|
2782
|
+
* <p>The Amazon Resource Name (ARN) of the IAM Role associated with the email monitoring configuration.</p>
|
|
2783
|
+
*/
|
|
2784
|
+
RoleArn: string | undefined;
|
|
2785
|
+
/**
|
|
2786
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch Log group associated with the email monitoring configuration.</p>
|
|
2787
|
+
*/
|
|
2788
|
+
LogGroupArn: string | undefined;
|
|
2789
|
+
}
|
|
2790
|
+
export declare namespace PutEmailMonitoringConfigurationRequest {
|
|
2791
|
+
/**
|
|
2792
|
+
* @internal
|
|
2793
|
+
*/
|
|
2794
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationRequest) => any;
|
|
2795
|
+
}
|
|
2796
|
+
export interface PutEmailMonitoringConfigurationResponse {
|
|
2797
|
+
}
|
|
2798
|
+
export declare namespace PutEmailMonitoringConfigurationResponse {
|
|
2799
|
+
/**
|
|
2800
|
+
* @internal
|
|
2801
|
+
*/
|
|
2802
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationResponse) => any;
|
|
2803
|
+
}
|
|
2854
2804
|
export interface PutInboundDmarcSettingsRequest {
|
|
2855
2805
|
/**
|
|
2856
2806
|
* <p>The ID of the organization that you are applying the DMARC policy to. </p>
|
|
@@ -3173,12 +3123,6 @@ export interface TooManyTagsException extends __SmithyException, $MetadataBearer
|
|
|
3173
3123
|
$fault: "client";
|
|
3174
3124
|
Message?: string;
|
|
3175
3125
|
}
|
|
3176
|
-
export declare namespace TooManyTagsException {
|
|
3177
|
-
/**
|
|
3178
|
-
* @internal
|
|
3179
|
-
*/
|
|
3180
|
-
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
3181
|
-
}
|
|
3182
3126
|
export interface UntagResourceRequest {
|
|
3183
3127
|
/**
|
|
3184
3128
|
* <p>The resource ARN.</p>
|
|
@@ -11,6 +11,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "../comm
|
|
|
11
11
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
12
12
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "../commands/DeleteAccessControlRuleCommand";
|
|
13
13
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/DeleteAliasCommand";
|
|
14
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "../commands/DeleteEmailMonitoringConfigurationCommand";
|
|
14
15
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
15
16
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "../commands/DeleteMailboxPermissionsCommand";
|
|
16
17
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "../commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -21,6 +22,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
21
22
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
22
23
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "../commands/DeregisterFromWorkMailCommand";
|
|
23
24
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "../commands/DeregisterMailDomainCommand";
|
|
25
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "../commands/DescribeEmailMonitoringConfigurationCommand";
|
|
24
26
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
25
27
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "../commands/DescribeInboundDmarcSettingsCommand";
|
|
26
28
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "../commands/DescribeMailboxExportJobCommand";
|
|
@@ -50,6 +52,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../comman
|
|
|
50
52
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
51
53
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
52
54
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "../commands/PutAccessControlRuleCommand";
|
|
55
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "../commands/PutEmailMonitoringConfigurationCommand";
|
|
53
56
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "../commands/PutInboundDmarcSettingsCommand";
|
|
54
57
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "../commands/PutMailboxPermissionsCommand";
|
|
55
58
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "../commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -76,6 +79,7 @@ export declare const serializeAws_json1_1CreateResourceCommand: (input: CreateRe
|
|
|
76
79
|
export declare const serializeAws_json1_1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
80
|
export declare const serializeAws_json1_1DeleteAccessControlRuleCommand: (input: DeleteAccessControlRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
81
|
export declare const serializeAws_json1_1DeleteAliasCommand: (input: DeleteAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1DeleteEmailMonitoringConfigurationCommand: (input: DeleteEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
83
|
export declare const serializeAws_json1_1DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
84
|
export declare const serializeAws_json1_1DeleteMailboxPermissionsCommand: (input: DeleteMailboxPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
85
|
export declare const serializeAws_json1_1DeleteMobileDeviceAccessOverrideCommand: (input: DeleteMobileDeviceAccessOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -86,6 +90,7 @@ export declare const serializeAws_json1_1DeleteRetentionPolicyCommand: (input: D
|
|
|
86
90
|
export declare const serializeAws_json1_1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
91
|
export declare const serializeAws_json1_1DeregisterFromWorkMailCommand: (input: DeregisterFromWorkMailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
92
|
export declare const serializeAws_json1_1DeregisterMailDomainCommand: (input: DeregisterMailDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
export declare const serializeAws_json1_1DescribeEmailMonitoringConfigurationCommand: (input: DescribeEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
94
|
export declare const serializeAws_json1_1DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
95
|
export declare const serializeAws_json1_1DescribeInboundDmarcSettingsCommand: (input: DescribeInboundDmarcSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
96
|
export declare const serializeAws_json1_1DescribeMailboxExportJobCommand: (input: DescribeMailboxExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -115,6 +120,7 @@ export declare const serializeAws_json1_1ListResourcesCommand: (input: ListResou
|
|
|
115
120
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
121
|
export declare const serializeAws_json1_1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
122
|
export declare const serializeAws_json1_1PutAccessControlRuleCommand: (input: PutAccessControlRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
export declare const serializeAws_json1_1PutEmailMonitoringConfigurationCommand: (input: PutEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
124
|
export declare const serializeAws_json1_1PutInboundDmarcSettingsCommand: (input: PutInboundDmarcSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
125
|
export declare const serializeAws_json1_1PutMailboxPermissionsCommand: (input: PutMailboxPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
126
|
export declare const serializeAws_json1_1PutMobileDeviceAccessOverrideCommand: (input: PutMobileDeviceAccessOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -141,6 +147,7 @@ export declare const deserializeAws_json1_1CreateResourceCommand: (output: __Htt
|
|
|
141
147
|
export declare const deserializeAws_json1_1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
142
148
|
export declare const deserializeAws_json1_1DeleteAccessControlRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessControlRuleCommandOutput>;
|
|
143
149
|
export declare const deserializeAws_json1_1DeleteAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAliasCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_json1_1DeleteEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
144
151
|
export declare const deserializeAws_json1_1DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
145
152
|
export declare const deserializeAws_json1_1DeleteMailboxPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMailboxPermissionsCommandOutput>;
|
|
146
153
|
export declare const deserializeAws_json1_1DeleteMobileDeviceAccessOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMobileDeviceAccessOverrideCommandOutput>;
|
|
@@ -151,6 +158,7 @@ export declare const deserializeAws_json1_1DeleteRetentionPolicyCommand: (output
|
|
|
151
158
|
export declare const deserializeAws_json1_1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
152
159
|
export declare const deserializeAws_json1_1DeregisterFromWorkMailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterFromWorkMailCommandOutput>;
|
|
153
160
|
export declare const deserializeAws_json1_1DeregisterMailDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterMailDomainCommandOutput>;
|
|
161
|
+
export declare const deserializeAws_json1_1DescribeEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
154
162
|
export declare const deserializeAws_json1_1DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
155
163
|
export declare const deserializeAws_json1_1DescribeInboundDmarcSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInboundDmarcSettingsCommandOutput>;
|
|
156
164
|
export declare const deserializeAws_json1_1DescribeMailboxExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMailboxExportJobCommandOutput>;
|
|
@@ -180,6 +188,7 @@ export declare const deserializeAws_json1_1ListResourcesCommand: (output: __Http
|
|
|
180
188
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
181
189
|
export declare const deserializeAws_json1_1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
182
190
|
export declare const deserializeAws_json1_1PutAccessControlRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccessControlRuleCommandOutput>;
|
|
191
|
+
export declare const deserializeAws_json1_1PutEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
183
192
|
export declare const deserializeAws_json1_1PutInboundDmarcSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutInboundDmarcSettingsCommandOutput>;
|
|
184
193
|
export declare const deserializeAws_json1_1PutMailboxPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMailboxPermissionsCommandOutput>;
|
|
185
194
|
export declare const deserializeAws_json1_1PutMobileDeviceAccessOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMobileDeviceAccessOverrideCommandOutput>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { WorkMailClientConfig } from "./WorkMailClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { WorkMailClientConfig } from "./WorkMailClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -10,6 +10,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./comma
|
|
|
10
10
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
11
11
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
12
12
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
13
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
13
14
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
14
15
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
15
16
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -20,6 +21,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
20
21
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
21
22
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
22
23
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
24
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
23
25
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
24
26
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
25
27
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
@@ -49,6 +51,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./command
|
|
|
49
51
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
50
52
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
51
53
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
54
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
52
55
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
53
56
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
54
57
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -112,6 +115,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
112
115
|
deleteAlias(args: DeleteAliasCommandInput, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
113
116
|
deleteAlias(args: DeleteAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
114
117
|
|
|
118
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
119
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: DeleteEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
120
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
121
|
+
|
|
115
122
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
116
123
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
117
124
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
@@ -152,6 +159,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
152
159
|
deregisterMailDomain(args: DeregisterMailDomainCommandInput, cb: (err: any, data?: DeregisterMailDomainCommandOutput) => void): void;
|
|
153
160
|
deregisterMailDomain(args: DeregisterMailDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterMailDomainCommandOutput) => void): void;
|
|
154
161
|
|
|
162
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
163
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: DescribeEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
164
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
165
|
+
|
|
155
166
|
describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
|
|
156
167
|
describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
157
168
|
describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
@@ -268,6 +279,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
268
279
|
putAccessControlRule(args: PutAccessControlRuleCommandInput, cb: (err: any, data?: PutAccessControlRuleCommandOutput) => void): void;
|
|
269
280
|
putAccessControlRule(args: PutAccessControlRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccessControlRuleCommandOutput) => void): void;
|
|
270
281
|
|
|
282
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
283
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
284
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
285
|
+
|
|
271
286
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutInboundDmarcSettingsCommandOutput>;
|
|
272
287
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, cb: (err: any, data?: PutInboundDmarcSettingsCommandOutput) => void): void;
|
|
273
288
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutInboundDmarcSettingsCommandOutput) => void): void;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateDelegateToResourceCommandInput, AssociateDelegateToResourceCommandOutput } from "./commands/AssociateDelegateToResourceCommand";
|
|
10
10
|
import { AssociateMemberToGroupCommandInput, AssociateMemberToGroupCommandOutput } from "./commands/AssociateMemberToGroupCommand";
|
|
@@ -17,6 +17,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./comma
|
|
|
17
17
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
18
18
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
19
19
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
20
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
20
21
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
21
22
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
22
23
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -27,6 +28,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
27
28
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
28
29
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
29
30
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
31
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
30
32
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
31
33
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
32
34
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
@@ -56,6 +58,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./command
|
|
|
56
58
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
57
59
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
58
60
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
61
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
59
62
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
60
63
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
61
64
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -71,8 +74,8 @@ import { UpdateMailboxQuotaCommandInput, UpdateMailboxQuotaCommandOutput } from
|
|
|
71
74
|
import { UpdateMobileDeviceAccessRuleCommandInput, UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
72
75
|
import { UpdatePrimaryEmailAddressCommandInput, UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
73
76
|
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
74
|
-
export declare type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateGroupCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteGroupCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeGroupCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDefaultMailDomainCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput;
|
|
75
|
-
export declare type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateGroupCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteGroupCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeGroupCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput;
|
|
77
|
+
export declare type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateGroupCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteEmailMonitoringConfigurationCommandInput | DeleteGroupCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeEmailMonitoringConfigurationCommandInput | DescribeGroupCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutEmailMonitoringConfigurationCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDefaultMailDomainCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput;
|
|
78
|
+
export declare type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateGroupCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteEmailMonitoringConfigurationCommandOutput | DeleteGroupCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeEmailMonitoringConfigurationCommandOutput | DescribeGroupCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutEmailMonitoringConfigurationCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput;
|
|
76
79
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
77
80
|
|
|
78
81
|
requestHandler?: __HttpHandler;
|
|
@@ -116,6 +119,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
116
119
|
regionInfoProvider?: RegionInfoProvider;
|
|
117
120
|
|
|
118
121
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
122
|
+
|
|
123
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
119
124
|
}
|
|
120
125
|
declare type WorkMailClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
121
126
|
|