@aws-sdk/client-sns 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SNSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +423 -2
- package/dist-cjs/protocols/Aws_query.js +468 -1820
- package/dist-es/index.js +1 -0
- package/dist-es/models/SNSServiceException.js +12 -0
- package/dist-es/models/models_0.js +389 -1
- package/dist-es/protocols/Aws_query.js +999 -1917
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SNSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +218 -131
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SNSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +158 -127
- package/package.json +25 -25
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SNSServiceException as __BaseException } from "./SNSServiceException";
|
|
2
3
|
export interface AddPermissionInput {
|
|
3
4
|
|
|
4
5
|
TopicArn: string | undefined;
|
|
@@ -14,28 +15,32 @@ export declare namespace AddPermissionInput {
|
|
|
14
15
|
const filterSensitiveLog: (obj: AddPermissionInput) => any;
|
|
15
16
|
}
|
|
16
17
|
|
|
17
|
-
export
|
|
18
|
-
name: "AuthorizationErrorException";
|
|
19
|
-
$fault: "client";
|
|
20
|
-
|
|
18
|
+
export declare class AuthorizationErrorException extends __BaseException {
|
|
19
|
+
readonly name: "AuthorizationErrorException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
|
|
22
|
+
constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
|
|
21
23
|
}
|
|
22
24
|
|
|
23
|
-
export
|
|
24
|
-
name: "InternalErrorException";
|
|
25
|
-
$fault: "server";
|
|
26
|
-
|
|
25
|
+
export declare class InternalErrorException extends __BaseException {
|
|
26
|
+
readonly name: "InternalErrorException";
|
|
27
|
+
readonly $fault: "server";
|
|
28
|
+
|
|
29
|
+
constructor(opts: __ExceptionOptionType<InternalErrorException, __BaseException>);
|
|
27
30
|
}
|
|
28
31
|
|
|
29
|
-
export
|
|
30
|
-
name: "InvalidParameterException";
|
|
31
|
-
$fault: "client";
|
|
32
|
-
|
|
32
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
33
|
+
readonly name: "InvalidParameterException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
|
|
36
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
33
37
|
}
|
|
34
38
|
|
|
35
|
-
export
|
|
36
|
-
name: "NotFoundException";
|
|
37
|
-
$fault: "client";
|
|
38
|
-
|
|
39
|
+
export declare class NotFoundException extends __BaseException {
|
|
40
|
+
readonly name: "NotFoundException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
|
|
43
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
39
44
|
}
|
|
40
45
|
|
|
41
46
|
export interface CheckIfPhoneNumberIsOptedOutInput {
|
|
@@ -56,11 +61,11 @@ export declare namespace CheckIfPhoneNumberIsOptedOutResponse {
|
|
|
56
61
|
const filterSensitiveLog: (obj: CheckIfPhoneNumberIsOptedOutResponse) => any;
|
|
57
62
|
}
|
|
58
63
|
|
|
59
|
-
export
|
|
60
|
-
name: "ThrottledException";
|
|
61
|
-
$fault: "client";
|
|
64
|
+
export declare class ThrottledException extends __BaseException {
|
|
65
|
+
readonly name: "ThrottledException";
|
|
66
|
+
readonly $fault: "client";
|
|
62
67
|
|
|
63
|
-
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
64
69
|
}
|
|
65
70
|
|
|
66
71
|
export interface ConfirmSubscriptionInput {
|
|
@@ -85,16 +90,18 @@ export declare namespace ConfirmSubscriptionResponse {
|
|
|
85
90
|
const filterSensitiveLog: (obj: ConfirmSubscriptionResponse) => any;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
|
-
export
|
|
89
|
-
name: "FilterPolicyLimitExceededException";
|
|
90
|
-
$fault: "client";
|
|
91
|
-
|
|
93
|
+
export declare class FilterPolicyLimitExceededException extends __BaseException {
|
|
94
|
+
readonly name: "FilterPolicyLimitExceededException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
|
|
97
|
+
constructor(opts: __ExceptionOptionType<FilterPolicyLimitExceededException, __BaseException>);
|
|
92
98
|
}
|
|
93
99
|
|
|
94
|
-
export
|
|
95
|
-
name: "SubscriptionLimitExceededException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
100
|
+
export declare class SubscriptionLimitExceededException extends __BaseException {
|
|
101
|
+
readonly name: "SubscriptionLimitExceededException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
|
|
104
|
+
constructor(opts: __ExceptionOptionType<SubscriptionLimitExceededException, __BaseException>);
|
|
98
105
|
}
|
|
99
106
|
|
|
100
107
|
export interface CreatePlatformApplicationInput {
|
|
@@ -178,22 +185,25 @@ export declare namespace CreateSMSSandboxPhoneNumberResult {
|
|
|
178
185
|
const filterSensitiveLog: (obj: CreateSMSSandboxPhoneNumberResult) => any;
|
|
179
186
|
}
|
|
180
187
|
|
|
181
|
-
export
|
|
182
|
-
name: "OptedOutException";
|
|
183
|
-
$fault: "client";
|
|
184
|
-
|
|
188
|
+
export declare class OptedOutException extends __BaseException {
|
|
189
|
+
readonly name: "OptedOutException";
|
|
190
|
+
readonly $fault: "client";
|
|
191
|
+
|
|
192
|
+
constructor(opts: __ExceptionOptionType<OptedOutException, __BaseException>);
|
|
185
193
|
}
|
|
186
194
|
|
|
187
|
-
export
|
|
188
|
-
name: "UserErrorException";
|
|
189
|
-
$fault: "client";
|
|
190
|
-
|
|
195
|
+
export declare class UserErrorException extends __BaseException {
|
|
196
|
+
readonly name: "UserErrorException";
|
|
197
|
+
readonly $fault: "client";
|
|
198
|
+
|
|
199
|
+
constructor(opts: __ExceptionOptionType<UserErrorException, __BaseException>);
|
|
191
200
|
}
|
|
192
201
|
|
|
193
|
-
export
|
|
194
|
-
name: "ConcurrentAccessException";
|
|
195
|
-
$fault: "client";
|
|
196
|
-
|
|
202
|
+
export declare class ConcurrentAccessException extends __BaseException {
|
|
203
|
+
readonly name: "ConcurrentAccessException";
|
|
204
|
+
readonly $fault: "client";
|
|
205
|
+
|
|
206
|
+
constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
|
|
197
207
|
}
|
|
198
208
|
|
|
199
209
|
export interface Tag {
|
|
@@ -231,34 +241,39 @@ export declare namespace CreateTopicResponse {
|
|
|
231
241
|
const filterSensitiveLog: (obj: CreateTopicResponse) => any;
|
|
232
242
|
}
|
|
233
243
|
|
|
234
|
-
export
|
|
235
|
-
name: "InvalidSecurityException";
|
|
236
|
-
$fault: "client";
|
|
237
|
-
|
|
244
|
+
export declare class InvalidSecurityException extends __BaseException {
|
|
245
|
+
readonly name: "InvalidSecurityException";
|
|
246
|
+
readonly $fault: "client";
|
|
247
|
+
|
|
248
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityException, __BaseException>);
|
|
238
249
|
}
|
|
239
250
|
|
|
240
|
-
export
|
|
241
|
-
name: "StaleTagException";
|
|
242
|
-
$fault: "client";
|
|
243
|
-
|
|
251
|
+
export declare class StaleTagException extends __BaseException {
|
|
252
|
+
readonly name: "StaleTagException";
|
|
253
|
+
readonly $fault: "client";
|
|
254
|
+
|
|
255
|
+
constructor(opts: __ExceptionOptionType<StaleTagException, __BaseException>);
|
|
244
256
|
}
|
|
245
257
|
|
|
246
|
-
export
|
|
247
|
-
name: "TagLimitExceededException";
|
|
248
|
-
$fault: "client";
|
|
249
|
-
|
|
258
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
259
|
+
readonly name: "TagLimitExceededException";
|
|
260
|
+
readonly $fault: "client";
|
|
261
|
+
|
|
262
|
+
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
250
263
|
}
|
|
251
264
|
|
|
252
|
-
export
|
|
253
|
-
name: "TagPolicyException";
|
|
254
|
-
$fault: "client";
|
|
255
|
-
|
|
265
|
+
export declare class TagPolicyException extends __BaseException {
|
|
266
|
+
readonly name: "TagPolicyException";
|
|
267
|
+
readonly $fault: "client";
|
|
268
|
+
|
|
269
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
256
270
|
}
|
|
257
271
|
|
|
258
|
-
export
|
|
259
|
-
name: "TopicLimitExceededException";
|
|
260
|
-
$fault: "client";
|
|
261
|
-
|
|
272
|
+
export declare class TopicLimitExceededException extends __BaseException {
|
|
273
|
+
readonly name: "TopicLimitExceededException";
|
|
274
|
+
readonly $fault: "client";
|
|
275
|
+
|
|
276
|
+
constructor(opts: __ExceptionOptionType<TopicLimitExceededException, __BaseException>);
|
|
262
277
|
}
|
|
263
278
|
|
|
264
279
|
export interface DeleteEndpointInput {
|
|
@@ -293,10 +308,11 @@ export declare namespace DeleteSMSSandboxPhoneNumberResult {
|
|
|
293
308
|
const filterSensitiveLog: (obj: DeleteSMSSandboxPhoneNumberResult) => any;
|
|
294
309
|
}
|
|
295
310
|
|
|
296
|
-
export
|
|
297
|
-
name: "ResourceNotFoundException";
|
|
298
|
-
$fault: "client";
|
|
299
|
-
|
|
311
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
312
|
+
readonly name: "ResourceNotFoundException";
|
|
313
|
+
readonly $fault: "client";
|
|
314
|
+
|
|
315
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
300
316
|
}
|
|
301
317
|
export interface DeleteTopicInput {
|
|
302
318
|
|
|
@@ -505,10 +521,12 @@ export declare namespace ListOriginationNumbersResult {
|
|
|
505
521
|
const filterSensitiveLog: (obj: ListOriginationNumbersResult) => any;
|
|
506
522
|
}
|
|
507
523
|
|
|
508
|
-
export
|
|
509
|
-
name: "ValidationException";
|
|
510
|
-
$fault: "client";
|
|
524
|
+
export declare class ValidationException extends __BaseException {
|
|
525
|
+
readonly name: "ValidationException";
|
|
526
|
+
readonly $fault: "client";
|
|
511
527
|
Message: string | undefined;
|
|
528
|
+
|
|
529
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
512
530
|
}
|
|
513
531
|
|
|
514
532
|
export interface ListPhoneNumbersOptedOutInput {
|
|
@@ -718,61 +736,67 @@ export declare namespace OptInPhoneNumberResponse {
|
|
|
718
736
|
const filterSensitiveLog: (obj: OptInPhoneNumberResponse) => any;
|
|
719
737
|
}
|
|
720
738
|
|
|
721
|
-
export
|
|
722
|
-
name: "EndpointDisabledException";
|
|
723
|
-
$fault: "client";
|
|
739
|
+
export declare class EndpointDisabledException extends __BaseException {
|
|
740
|
+
readonly name: "EndpointDisabledException";
|
|
741
|
+
readonly $fault: "client";
|
|
724
742
|
|
|
725
|
-
|
|
743
|
+
constructor(opts: __ExceptionOptionType<EndpointDisabledException, __BaseException>);
|
|
726
744
|
}
|
|
727
745
|
|
|
728
|
-
export
|
|
729
|
-
name: "InvalidParameterValueException";
|
|
730
|
-
$fault: "client";
|
|
746
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
747
|
+
readonly name: "InvalidParameterValueException";
|
|
748
|
+
readonly $fault: "client";
|
|
731
749
|
|
|
732
|
-
|
|
750
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
733
751
|
}
|
|
734
752
|
|
|
735
|
-
export
|
|
736
|
-
name: "KMSAccessDeniedException";
|
|
737
|
-
$fault: "client";
|
|
738
|
-
|
|
753
|
+
export declare class KMSAccessDeniedException extends __BaseException {
|
|
754
|
+
readonly name: "KMSAccessDeniedException";
|
|
755
|
+
readonly $fault: "client";
|
|
756
|
+
|
|
757
|
+
constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
|
|
739
758
|
}
|
|
740
759
|
|
|
741
|
-
export
|
|
742
|
-
name: "KMSDisabledException";
|
|
743
|
-
$fault: "client";
|
|
744
|
-
|
|
760
|
+
export declare class KMSDisabledException extends __BaseException {
|
|
761
|
+
readonly name: "KMSDisabledException";
|
|
762
|
+
readonly $fault: "client";
|
|
763
|
+
|
|
764
|
+
constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
|
|
745
765
|
}
|
|
746
766
|
|
|
747
|
-
export
|
|
748
|
-
name: "KMSInvalidStateException";
|
|
749
|
-
$fault: "client";
|
|
750
|
-
|
|
767
|
+
export declare class KMSInvalidStateException extends __BaseException {
|
|
768
|
+
readonly name: "KMSInvalidStateException";
|
|
769
|
+
readonly $fault: "client";
|
|
770
|
+
|
|
771
|
+
constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
|
|
751
772
|
}
|
|
752
773
|
|
|
753
|
-
export
|
|
754
|
-
name: "KMSNotFoundException";
|
|
755
|
-
$fault: "client";
|
|
756
|
-
|
|
774
|
+
export declare class KMSNotFoundException extends __BaseException {
|
|
775
|
+
readonly name: "KMSNotFoundException";
|
|
776
|
+
readonly $fault: "client";
|
|
777
|
+
|
|
778
|
+
constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
|
|
757
779
|
}
|
|
758
780
|
|
|
759
|
-
export
|
|
760
|
-
name: "KMSOptInRequired";
|
|
761
|
-
$fault: "client";
|
|
762
|
-
|
|
781
|
+
export declare class KMSOptInRequired extends __BaseException {
|
|
782
|
+
readonly name: "KMSOptInRequired";
|
|
783
|
+
readonly $fault: "client";
|
|
784
|
+
|
|
785
|
+
constructor(opts: __ExceptionOptionType<KMSOptInRequired, __BaseException>);
|
|
763
786
|
}
|
|
764
787
|
|
|
765
|
-
export
|
|
766
|
-
name: "KMSThrottlingException";
|
|
767
|
-
$fault: "client";
|
|
768
|
-
|
|
788
|
+
export declare class KMSThrottlingException extends __BaseException {
|
|
789
|
+
readonly name: "KMSThrottlingException";
|
|
790
|
+
readonly $fault: "client";
|
|
791
|
+
|
|
792
|
+
constructor(opts: __ExceptionOptionType<KMSThrottlingException, __BaseException>);
|
|
769
793
|
}
|
|
770
794
|
|
|
771
|
-
export
|
|
772
|
-
name: "PlatformApplicationDisabledException";
|
|
773
|
-
$fault: "client";
|
|
795
|
+
export declare class PlatformApplicationDisabledException extends __BaseException {
|
|
796
|
+
readonly name: "PlatformApplicationDisabledException";
|
|
797
|
+
readonly $fault: "client";
|
|
774
798
|
|
|
775
|
-
|
|
799
|
+
constructor(opts: __ExceptionOptionType<PlatformApplicationDisabledException, __BaseException>);
|
|
776
800
|
}
|
|
777
801
|
|
|
778
802
|
export interface MessageAttributeValue {
|
|
@@ -826,28 +850,32 @@ export declare namespace PublishResponse {
|
|
|
826
850
|
const filterSensitiveLog: (obj: PublishResponse) => any;
|
|
827
851
|
}
|
|
828
852
|
|
|
829
|
-
export
|
|
830
|
-
name: "BatchEntryIdsNotDistinctException";
|
|
831
|
-
$fault: "client";
|
|
832
|
-
|
|
853
|
+
export declare class BatchEntryIdsNotDistinctException extends __BaseException {
|
|
854
|
+
readonly name: "BatchEntryIdsNotDistinctException";
|
|
855
|
+
readonly $fault: "client";
|
|
856
|
+
|
|
857
|
+
constructor(opts: __ExceptionOptionType<BatchEntryIdsNotDistinctException, __BaseException>);
|
|
833
858
|
}
|
|
834
859
|
|
|
835
|
-
export
|
|
836
|
-
name: "BatchRequestTooLongException";
|
|
837
|
-
$fault: "client";
|
|
838
|
-
|
|
860
|
+
export declare class BatchRequestTooLongException extends __BaseException {
|
|
861
|
+
readonly name: "BatchRequestTooLongException";
|
|
862
|
+
readonly $fault: "client";
|
|
863
|
+
|
|
864
|
+
constructor(opts: __ExceptionOptionType<BatchRequestTooLongException, __BaseException>);
|
|
839
865
|
}
|
|
840
866
|
|
|
841
|
-
export
|
|
842
|
-
name: "EmptyBatchRequestException";
|
|
843
|
-
$fault: "client";
|
|
844
|
-
|
|
867
|
+
export declare class EmptyBatchRequestException extends __BaseException {
|
|
868
|
+
readonly name: "EmptyBatchRequestException";
|
|
869
|
+
readonly $fault: "client";
|
|
870
|
+
|
|
871
|
+
constructor(opts: __ExceptionOptionType<EmptyBatchRequestException, __BaseException>);
|
|
845
872
|
}
|
|
846
873
|
|
|
847
|
-
export
|
|
848
|
-
name: "InvalidBatchEntryIdException";
|
|
849
|
-
$fault: "client";
|
|
850
|
-
|
|
874
|
+
export declare class InvalidBatchEntryIdException extends __BaseException {
|
|
875
|
+
readonly name: "InvalidBatchEntryIdException";
|
|
876
|
+
readonly $fault: "client";
|
|
877
|
+
|
|
878
|
+
constructor(opts: __ExceptionOptionType<InvalidBatchEntryIdException, __BaseException>);
|
|
851
879
|
}
|
|
852
880
|
|
|
853
881
|
export interface PublishBatchRequestEntry {
|
|
@@ -921,10 +949,11 @@ export declare namespace PublishBatchResponse {
|
|
|
921
949
|
const filterSensitiveLog: (obj: PublishBatchResponse) => any;
|
|
922
950
|
}
|
|
923
951
|
|
|
924
|
-
export
|
|
925
|
-
name: "TooManyEntriesInBatchRequestException";
|
|
926
|
-
$fault: "client";
|
|
927
|
-
|
|
952
|
+
export declare class TooManyEntriesInBatchRequestException extends __BaseException {
|
|
953
|
+
readonly name: "TooManyEntriesInBatchRequestException";
|
|
954
|
+
readonly $fault: "client";
|
|
955
|
+
|
|
956
|
+
constructor(opts: __ExceptionOptionType<TooManyEntriesInBatchRequestException, __BaseException>);
|
|
928
957
|
}
|
|
929
958
|
|
|
930
959
|
export interface RemovePermissionInput {
|
|
@@ -1077,12 +1106,14 @@ export declare namespace UntagResourceResponse {
|
|
|
1077
1106
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1078
1107
|
}
|
|
1079
1108
|
|
|
1080
|
-
export
|
|
1081
|
-
name: "VerificationException";
|
|
1082
|
-
$fault: "client";
|
|
1109
|
+
export declare class VerificationException extends __BaseException {
|
|
1110
|
+
readonly name: "VerificationException";
|
|
1111
|
+
readonly $fault: "client";
|
|
1083
1112
|
Message: string | undefined;
|
|
1084
1113
|
|
|
1085
1114
|
Status: string | undefined;
|
|
1115
|
+
|
|
1116
|
+
constructor(opts: __ExceptionOptionType<VerificationException, __BaseException>);
|
|
1086
1117
|
}
|
|
1087
1118
|
export interface VerifySMSSandboxPhoneNumberInput {
|
|
1088
1119
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"entities": "2.2.0",
|