@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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteEmailMonitoringConfigurationRequest, DeleteEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface DeleteEmailMonitoringConfigurationCommandInput extends DeleteEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEmailMonitoringConfigurationCommandOutput extends DeleteEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEmailMonitoringConfigurationCommand extends $Command<DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: DeleteEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeEmailMonitoringConfigurationRequest, DescribeEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface DescribeEmailMonitoringConfigurationCommandInput extends DescribeEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeEmailMonitoringConfigurationCommandOutput extends DescribeEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeEmailMonitoringConfigurationCommand extends $Command<DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: DescribeEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { PutEmailMonitoringConfigurationRequest, PutEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface PutEmailMonitoringConfigurationCommandInput extends PutEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutEmailMonitoringConfigurationCommandOutput extends PutEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutEmailMonitoringConfigurationCommand extends $Command<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: PutEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: PutEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateResourceCommand";
|
|
|
9
9
|
export * from "./CreateUserCommand";
|
|
10
10
|
export * from "./DeleteAccessControlRuleCommand";
|
|
11
11
|
export * from "./DeleteAliasCommand";
|
|
12
|
+
export * from "./DeleteEmailMonitoringConfigurationCommand";
|
|
12
13
|
export * from "./DeleteGroupCommand";
|
|
13
14
|
export * from "./DeleteMailboxPermissionsCommand";
|
|
14
15
|
export * from "./DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -19,6 +20,7 @@ export * from "./DeleteRetentionPolicyCommand";
|
|
|
19
20
|
export * from "./DeleteUserCommand";
|
|
20
21
|
export * from "./DeregisterFromWorkMailCommand";
|
|
21
22
|
export * from "./DeregisterMailDomainCommand";
|
|
23
|
+
export * from "./DescribeEmailMonitoringConfigurationCommand";
|
|
22
24
|
export * from "./DescribeGroupCommand";
|
|
23
25
|
export * from "./DescribeInboundDmarcSettingsCommand";
|
|
24
26
|
export * from "./DescribeMailboxExportJobCommand";
|
|
@@ -48,6 +50,7 @@ export * from "./ListResourcesCommand";
|
|
|
48
50
|
export * from "./ListTagsForResourceCommand";
|
|
49
51
|
export * from "./ListUsersCommand";
|
|
50
52
|
export * from "./PutAccessControlRuleCommand";
|
|
53
|
+
export * from "./PutEmailMonitoringConfigurationCommand";
|
|
51
54
|
export * from "./PutInboundDmarcSettingsCommand";
|
|
52
55
|
export * from "./PutMailboxPermissionsCommand";
|
|
53
56
|
export * from "./PutMobileDeviceAccessOverrideCommand";
|
|
@@ -56,50 +56,30 @@ export interface EntityNotFoundException extends __SmithyException, $MetadataBea
|
|
|
56
56
|
$fault: "client";
|
|
57
57
|
Message?: string;
|
|
58
58
|
}
|
|
59
|
-
export declare namespace EntityNotFoundException {
|
|
60
|
-
|
|
61
|
-
const filterSensitiveLog: (obj: EntityNotFoundException) => any;
|
|
62
|
-
}
|
|
63
59
|
|
|
64
60
|
export interface EntityStateException extends __SmithyException, $MetadataBearer {
|
|
65
61
|
name: "EntityStateException";
|
|
66
62
|
$fault: "client";
|
|
67
63
|
Message?: string;
|
|
68
64
|
}
|
|
69
|
-
export declare namespace EntityStateException {
|
|
70
|
-
|
|
71
|
-
const filterSensitiveLog: (obj: EntityStateException) => any;
|
|
72
|
-
}
|
|
73
65
|
|
|
74
66
|
export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
|
|
75
67
|
name: "InvalidParameterException";
|
|
76
68
|
$fault: "client";
|
|
77
69
|
Message?: string;
|
|
78
70
|
}
|
|
79
|
-
export declare namespace InvalidParameterException {
|
|
80
|
-
|
|
81
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
82
|
-
}
|
|
83
71
|
|
|
84
72
|
export interface OrganizationNotFoundException extends __SmithyException, $MetadataBearer {
|
|
85
73
|
name: "OrganizationNotFoundException";
|
|
86
74
|
$fault: "client";
|
|
87
75
|
Message?: string;
|
|
88
76
|
}
|
|
89
|
-
export declare namespace OrganizationNotFoundException {
|
|
90
|
-
|
|
91
|
-
const filterSensitiveLog: (obj: OrganizationNotFoundException) => any;
|
|
92
|
-
}
|
|
93
77
|
|
|
94
78
|
export interface OrganizationStateException extends __SmithyException, $MetadataBearer {
|
|
95
79
|
name: "OrganizationStateException";
|
|
96
80
|
$fault: "client";
|
|
97
81
|
Message?: string;
|
|
98
82
|
}
|
|
99
|
-
export declare namespace OrganizationStateException {
|
|
100
|
-
|
|
101
|
-
const filterSensitiveLog: (obj: OrganizationStateException) => any;
|
|
102
|
-
}
|
|
103
83
|
export interface AssociateMemberToGroupRequest {
|
|
104
84
|
|
|
105
85
|
OrganizationId: string | undefined;
|
|
@@ -124,30 +104,18 @@ export interface DirectoryServiceAuthenticationFailedException extends __SmithyE
|
|
|
124
104
|
$fault: "client";
|
|
125
105
|
Message?: string;
|
|
126
106
|
}
|
|
127
|
-
export declare namespace DirectoryServiceAuthenticationFailedException {
|
|
128
|
-
|
|
129
|
-
const filterSensitiveLog: (obj: DirectoryServiceAuthenticationFailedException) => any;
|
|
130
|
-
}
|
|
131
107
|
|
|
132
108
|
export interface DirectoryUnavailableException extends __SmithyException, $MetadataBearer {
|
|
133
109
|
name: "DirectoryUnavailableException";
|
|
134
110
|
$fault: "client";
|
|
135
111
|
Message?: string;
|
|
136
112
|
}
|
|
137
|
-
export declare namespace DirectoryUnavailableException {
|
|
138
|
-
|
|
139
|
-
const filterSensitiveLog: (obj: DirectoryUnavailableException) => any;
|
|
140
|
-
}
|
|
141
113
|
|
|
142
114
|
export interface UnsupportedOperationException extends __SmithyException, $MetadataBearer {
|
|
143
115
|
name: "UnsupportedOperationException";
|
|
144
116
|
$fault: "client";
|
|
145
117
|
Message?: string;
|
|
146
118
|
}
|
|
147
|
-
export declare namespace UnsupportedOperationException {
|
|
148
|
-
|
|
149
|
-
const filterSensitiveLog: (obj: UnsupportedOperationException) => any;
|
|
150
|
-
}
|
|
151
119
|
|
|
152
120
|
export interface BookingOptions {
|
|
153
121
|
|
|
@@ -203,40 +171,24 @@ export interface EmailAddressInUseException extends __SmithyException, $Metadata
|
|
|
203
171
|
$fault: "client";
|
|
204
172
|
Message?: string;
|
|
205
173
|
}
|
|
206
|
-
export declare namespace EmailAddressInUseException {
|
|
207
|
-
|
|
208
|
-
const filterSensitiveLog: (obj: EmailAddressInUseException) => any;
|
|
209
|
-
}
|
|
210
174
|
|
|
211
175
|
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
212
176
|
name: "LimitExceededException";
|
|
213
177
|
$fault: "client";
|
|
214
178
|
Message?: string;
|
|
215
179
|
}
|
|
216
|
-
export declare namespace LimitExceededException {
|
|
217
|
-
|
|
218
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
219
|
-
}
|
|
220
180
|
|
|
221
181
|
export interface MailDomainNotFoundException extends __SmithyException, $MetadataBearer {
|
|
222
182
|
name: "MailDomainNotFoundException";
|
|
223
183
|
$fault: "client";
|
|
224
184
|
Message?: string;
|
|
225
185
|
}
|
|
226
|
-
export declare namespace MailDomainNotFoundException {
|
|
227
|
-
|
|
228
|
-
const filterSensitiveLog: (obj: MailDomainNotFoundException) => any;
|
|
229
|
-
}
|
|
230
186
|
|
|
231
187
|
export interface MailDomainStateException extends __SmithyException, $MetadataBearer {
|
|
232
188
|
name: "MailDomainStateException";
|
|
233
189
|
$fault: "client";
|
|
234
190
|
Message?: string;
|
|
235
191
|
}
|
|
236
|
-
export declare namespace MailDomainStateException {
|
|
237
|
-
|
|
238
|
-
const filterSensitiveLog: (obj: MailDomainStateException) => any;
|
|
239
|
-
}
|
|
240
192
|
export interface CreateGroupRequest {
|
|
241
193
|
|
|
242
194
|
OrganizationId: string | undefined;
|
|
@@ -261,20 +213,12 @@ export interface NameAvailabilityException extends __SmithyException, $MetadataB
|
|
|
261
213
|
$fault: "client";
|
|
262
214
|
Message?: string;
|
|
263
215
|
}
|
|
264
|
-
export declare namespace NameAvailabilityException {
|
|
265
|
-
|
|
266
|
-
const filterSensitiveLog: (obj: NameAvailabilityException) => any;
|
|
267
|
-
}
|
|
268
216
|
|
|
269
217
|
export interface ReservedNameException extends __SmithyException, $MetadataBearer {
|
|
270
218
|
name: "ReservedNameException";
|
|
271
219
|
$fault: "client";
|
|
272
220
|
Message?: string;
|
|
273
221
|
}
|
|
274
|
-
export declare namespace ReservedNameException {
|
|
275
|
-
|
|
276
|
-
const filterSensitiveLog: (obj: ReservedNameException) => any;
|
|
277
|
-
}
|
|
278
222
|
export declare enum MobileDeviceAccessRuleEffect {
|
|
279
223
|
ALLOW = "ALLOW",
|
|
280
224
|
DENY = "DENY"
|
|
@@ -362,10 +306,6 @@ export interface DirectoryInUseException extends __SmithyException, $MetadataBea
|
|
|
362
306
|
$fault: "client";
|
|
363
307
|
Message?: string;
|
|
364
308
|
}
|
|
365
|
-
export declare namespace DirectoryInUseException {
|
|
366
|
-
|
|
367
|
-
const filterSensitiveLog: (obj: DirectoryInUseException) => any;
|
|
368
|
-
}
|
|
369
309
|
export declare enum ResourceType {
|
|
370
310
|
EQUIPMENT = "EQUIPMENT",
|
|
371
311
|
ROOM = "ROOM"
|
|
@@ -418,10 +358,6 @@ export interface InvalidPasswordException extends __SmithyException, $MetadataBe
|
|
|
418
358
|
$fault: "client";
|
|
419
359
|
Message?: string;
|
|
420
360
|
}
|
|
421
|
-
export declare namespace InvalidPasswordException {
|
|
422
|
-
|
|
423
|
-
const filterSensitiveLog: (obj: InvalidPasswordException) => any;
|
|
424
|
-
}
|
|
425
361
|
export declare enum MemberType {
|
|
426
362
|
GROUP = "GROUP",
|
|
427
363
|
USER = "USER"
|
|
@@ -471,6 +407,20 @@ export declare namespace DeleteAliasResponse {
|
|
|
471
407
|
|
|
472
408
|
const filterSensitiveLog: (obj: DeleteAliasResponse) => any;
|
|
473
409
|
}
|
|
410
|
+
export interface DeleteEmailMonitoringConfigurationRequest {
|
|
411
|
+
|
|
412
|
+
OrganizationId: string | undefined;
|
|
413
|
+
}
|
|
414
|
+
export declare namespace DeleteEmailMonitoringConfigurationRequest {
|
|
415
|
+
|
|
416
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationRequest) => any;
|
|
417
|
+
}
|
|
418
|
+
export interface DeleteEmailMonitoringConfigurationResponse {
|
|
419
|
+
}
|
|
420
|
+
export declare namespace DeleteEmailMonitoringConfigurationResponse {
|
|
421
|
+
|
|
422
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationResponse) => any;
|
|
423
|
+
}
|
|
474
424
|
export interface DeleteGroupRequest {
|
|
475
425
|
|
|
476
426
|
OrganizationId: string | undefined;
|
|
@@ -647,19 +597,35 @@ export interface InvalidCustomSesConfigurationException extends __SmithyExceptio
|
|
|
647
597
|
$fault: "client";
|
|
648
598
|
Message?: string;
|
|
649
599
|
}
|
|
650
|
-
export declare namespace InvalidCustomSesConfigurationException {
|
|
651
|
-
|
|
652
|
-
const filterSensitiveLog: (obj: InvalidCustomSesConfigurationException) => any;
|
|
653
|
-
}
|
|
654
600
|
|
|
655
601
|
export interface MailDomainInUseException extends __SmithyException, $MetadataBearer {
|
|
656
602
|
name: "MailDomainInUseException";
|
|
657
603
|
$fault: "client";
|
|
658
604
|
Message?: string;
|
|
659
605
|
}
|
|
660
|
-
export
|
|
606
|
+
export interface DescribeEmailMonitoringConfigurationRequest {
|
|
607
|
+
|
|
608
|
+
OrganizationId: string | undefined;
|
|
609
|
+
}
|
|
610
|
+
export declare namespace DescribeEmailMonitoringConfigurationRequest {
|
|
661
611
|
|
|
662
|
-
const filterSensitiveLog: (obj:
|
|
612
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationRequest) => any;
|
|
613
|
+
}
|
|
614
|
+
export interface DescribeEmailMonitoringConfigurationResponse {
|
|
615
|
+
|
|
616
|
+
RoleArn?: string;
|
|
617
|
+
|
|
618
|
+
LogGroupArn?: string;
|
|
619
|
+
}
|
|
620
|
+
export declare namespace DescribeEmailMonitoringConfigurationResponse {
|
|
621
|
+
|
|
622
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationResponse) => any;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
626
|
+
name: "ResourceNotFoundException";
|
|
627
|
+
$fault: "client";
|
|
628
|
+
Message?: string;
|
|
663
629
|
}
|
|
664
630
|
export interface DescribeGroupRequest {
|
|
665
631
|
|
|
@@ -917,10 +883,6 @@ export interface EntityAlreadyRegisteredException extends __SmithyException, $Me
|
|
|
917
883
|
$fault: "client";
|
|
918
884
|
Message?: string;
|
|
919
885
|
}
|
|
920
|
-
export declare namespace EntityAlreadyRegisteredException {
|
|
921
|
-
|
|
922
|
-
const filterSensitiveLog: (obj: EntityAlreadyRegisteredException) => any;
|
|
923
|
-
}
|
|
924
886
|
export declare enum RetentionAction {
|
|
925
887
|
DELETE = "DELETE",
|
|
926
888
|
NONE = "NONE",
|
|
@@ -1106,16 +1068,6 @@ export declare namespace GetMobileDeviceAccessOverrideResponse {
|
|
|
1106
1068
|
const filterSensitiveLog: (obj: GetMobileDeviceAccessOverrideResponse) => any;
|
|
1107
1069
|
}
|
|
1108
1070
|
|
|
1109
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1110
|
-
name: "ResourceNotFoundException";
|
|
1111
|
-
$fault: "client";
|
|
1112
|
-
Message?: string;
|
|
1113
|
-
}
|
|
1114
|
-
export declare namespace ResourceNotFoundException {
|
|
1115
|
-
|
|
1116
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
1071
|
export interface Group {
|
|
1120
1072
|
|
|
1121
1073
|
Id?: string;
|
|
@@ -1140,10 +1092,6 @@ export interface InvalidConfigurationException extends __SmithyException, $Metad
|
|
|
1140
1092
|
$fault: "client";
|
|
1141
1093
|
Message?: string;
|
|
1142
1094
|
}
|
|
1143
|
-
export declare namespace InvalidConfigurationException {
|
|
1144
|
-
|
|
1145
|
-
const filterSensitiveLog: (obj: InvalidConfigurationException) => any;
|
|
1146
|
-
}
|
|
1147
1095
|
|
|
1148
1096
|
export interface MailboxExportJob {
|
|
1149
1097
|
|
|
@@ -1675,6 +1623,24 @@ export declare namespace PutAccessControlRuleResponse {
|
|
|
1675
1623
|
|
|
1676
1624
|
const filterSensitiveLog: (obj: PutAccessControlRuleResponse) => any;
|
|
1677
1625
|
}
|
|
1626
|
+
export interface PutEmailMonitoringConfigurationRequest {
|
|
1627
|
+
|
|
1628
|
+
OrganizationId: string | undefined;
|
|
1629
|
+
|
|
1630
|
+
RoleArn: string | undefined;
|
|
1631
|
+
|
|
1632
|
+
LogGroupArn: string | undefined;
|
|
1633
|
+
}
|
|
1634
|
+
export declare namespace PutEmailMonitoringConfigurationRequest {
|
|
1635
|
+
|
|
1636
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationRequest) => any;
|
|
1637
|
+
}
|
|
1638
|
+
export interface PutEmailMonitoringConfigurationResponse {
|
|
1639
|
+
}
|
|
1640
|
+
export declare namespace PutEmailMonitoringConfigurationResponse {
|
|
1641
|
+
|
|
1642
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationResponse) => any;
|
|
1643
|
+
}
|
|
1678
1644
|
export interface PutInboundDmarcSettingsRequest {
|
|
1679
1645
|
|
|
1680
1646
|
OrganizationId: string | undefined;
|
|
@@ -1861,10 +1827,6 @@ export interface TooManyTagsException extends __SmithyException, $MetadataBearer
|
|
|
1861
1827
|
$fault: "client";
|
|
1862
1828
|
Message?: string;
|
|
1863
1829
|
}
|
|
1864
|
-
export declare namespace TooManyTagsException {
|
|
1865
|
-
|
|
1866
|
-
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
1867
|
-
}
|
|
1868
1830
|
export interface UntagResourceRequest {
|
|
1869
1831
|
|
|
1870
1832
|
ResourceARN: string | undefined;
|
|
@@ -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,8 +1,9 @@
|
|
|
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
|
export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
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
|
export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: WorkMailClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
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>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workmail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workmail Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.1",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,50 +18,46 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.1",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.1",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.1",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.1",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.1",
|
|
52
51
|
"tslib": "^2.3.0",
|
|
53
52
|
"uuid": "^8.3.2"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
57
56
|
"@types/node": "^12.7.5",
|
|
58
|
-
"@types/uuid": "^8.3.0"
|
|
59
|
-
"downlevel-dts": "0.7.0",
|
|
60
|
-
"jest": "^26.1.0",
|
|
61
|
-
"rimraf": "^3.0.0",
|
|
62
|
-
"ts-jest": "^26.4.1",
|
|
63
|
-
"typedoc": "^0.19.2",
|
|
64
|
-
"typescript": "~4.3.5"
|
|
57
|
+
"@types/uuid": "^8.3.0"
|
|
65
58
|
},
|
|
66
59
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
60
|
+
"node": ">=12.0.0"
|
|
68
61
|
},
|
|
69
62
|
"typesVersions": {
|
|
70
63
|
"<4.0": {
|