@aws-sdk/client-route-53 3.975.0 → 3.980.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/dist-cjs/index.js +54 -43
- package/dist-es/Route53.js +19 -1
- package/dist-types/Route53.d.ts +50 -1
- package/dist-types/ts3.4/Route53.d.ts +58 -1
- package/package.json +19 -19
package/dist-cjs/index.js
CHANGED
|
@@ -4184,6 +4184,48 @@ class UpdateTrafficPolicyInstanceCommand extends smithyClient.Command
|
|
|
4184
4184
|
.build() {
|
|
4185
4185
|
}
|
|
4186
4186
|
|
|
4187
|
+
const paginateListCidrBlocks = core.createPaginator(Route53Client, ListCidrBlocksCommand, "NextToken", "NextToken", "MaxResults");
|
|
4188
|
+
|
|
4189
|
+
const paginateListCidrCollections = core.createPaginator(Route53Client, ListCidrCollectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4190
|
+
|
|
4191
|
+
const paginateListCidrLocations = core.createPaginator(Route53Client, ListCidrLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4192
|
+
|
|
4193
|
+
const paginateListHealthChecks = core.createPaginator(Route53Client, ListHealthChecksCommand, "Marker", "NextMarker", "MaxItems");
|
|
4194
|
+
|
|
4195
|
+
const paginateListHostedZones = core.createPaginator(Route53Client, ListHostedZonesCommand, "Marker", "NextMarker", "MaxItems");
|
|
4196
|
+
|
|
4197
|
+
const paginateListQueryLoggingConfigs = core.createPaginator(Route53Client, ListQueryLoggingConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4198
|
+
|
|
4199
|
+
const checkState = async (client, input) => {
|
|
4200
|
+
let reason;
|
|
4201
|
+
try {
|
|
4202
|
+
let result = await client.send(new GetChangeCommand(input));
|
|
4203
|
+
reason = result;
|
|
4204
|
+
try {
|
|
4205
|
+
const returnComparator = () => {
|
|
4206
|
+
return result.ChangeInfo.Status;
|
|
4207
|
+
};
|
|
4208
|
+
if (returnComparator() === "INSYNC") {
|
|
4209
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
4210
|
+
}
|
|
4211
|
+
}
|
|
4212
|
+
catch (e) { }
|
|
4213
|
+
}
|
|
4214
|
+
catch (exception) {
|
|
4215
|
+
reason = exception;
|
|
4216
|
+
}
|
|
4217
|
+
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
4218
|
+
};
|
|
4219
|
+
const waitForResourceRecordSetsChanged = async (params, input) => {
|
|
4220
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
4221
|
+
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
4222
|
+
};
|
|
4223
|
+
const waitUntilResourceRecordSetsChanged = async (params, input) => {
|
|
4224
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
4225
|
+
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
4226
|
+
return utilWaiter.checkExceptions(result);
|
|
4227
|
+
};
|
|
4228
|
+
|
|
4187
4229
|
const commands = {
|
|
4188
4230
|
ActivateKeySigningKeyCommand,
|
|
4189
4231
|
AssociateVPCWithHostedZoneCommand,
|
|
@@ -4257,51 +4299,20 @@ const commands = {
|
|
|
4257
4299
|
UpdateTrafficPolicyCommentCommand,
|
|
4258
4300
|
UpdateTrafficPolicyInstanceCommand,
|
|
4259
4301
|
};
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
const paginateListCidrLocations = core.createPaginator(Route53Client, ListCidrLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4269
|
-
|
|
4270
|
-
const paginateListHealthChecks = core.createPaginator(Route53Client, ListHealthChecksCommand, "Marker", "NextMarker", "MaxItems");
|
|
4271
|
-
|
|
4272
|
-
const paginateListHostedZones = core.createPaginator(Route53Client, ListHostedZonesCommand, "Marker", "NextMarker", "MaxItems");
|
|
4273
|
-
|
|
4274
|
-
const paginateListQueryLoggingConfigs = core.createPaginator(Route53Client, ListQueryLoggingConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4275
|
-
|
|
4276
|
-
const checkState = async (client, input) => {
|
|
4277
|
-
let reason;
|
|
4278
|
-
try {
|
|
4279
|
-
let result = await client.send(new GetChangeCommand(input));
|
|
4280
|
-
reason = result;
|
|
4281
|
-
try {
|
|
4282
|
-
const returnComparator = () => {
|
|
4283
|
-
return result.ChangeInfo.Status;
|
|
4284
|
-
};
|
|
4285
|
-
if (returnComparator() === "INSYNC") {
|
|
4286
|
-
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
4287
|
-
}
|
|
4288
|
-
}
|
|
4289
|
-
catch (e) { }
|
|
4290
|
-
}
|
|
4291
|
-
catch (exception) {
|
|
4292
|
-
reason = exception;
|
|
4293
|
-
}
|
|
4294
|
-
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
4295
|
-
};
|
|
4296
|
-
const waitForResourceRecordSetsChanged = async (params, input) => {
|
|
4297
|
-
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
4298
|
-
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
4302
|
+
const paginators = {
|
|
4303
|
+
paginateListCidrBlocks,
|
|
4304
|
+
paginateListCidrCollections,
|
|
4305
|
+
paginateListCidrLocations,
|
|
4306
|
+
paginateListHealthChecks,
|
|
4307
|
+
paginateListHostedZones,
|
|
4308
|
+
paginateListQueryLoggingConfigs,
|
|
4299
4309
|
};
|
|
4300
|
-
const
|
|
4301
|
-
|
|
4302
|
-
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
4303
|
-
return utilWaiter.checkExceptions(result);
|
|
4310
|
+
const waiters = {
|
|
4311
|
+
waitUntilResourceRecordSetsChanged,
|
|
4304
4312
|
};
|
|
4313
|
+
class Route53 extends Route53Client {
|
|
4314
|
+
}
|
|
4315
|
+
smithyClient.createAggregatedClient(commands, Route53, { paginators, waiters });
|
|
4305
4316
|
|
|
4306
4317
|
const AcceleratedRecoveryStatus = {
|
|
4307
4318
|
DISABLED: "DISABLED",
|
package/dist-es/Route53.js
CHANGED
|
@@ -70,7 +70,14 @@ import { UpdateHostedZoneCommentCommand, } from "./commands/UpdateHostedZoneComm
|
|
|
70
70
|
import { UpdateHostedZoneFeaturesCommand, } from "./commands/UpdateHostedZoneFeaturesCommand";
|
|
71
71
|
import { UpdateTrafficPolicyCommentCommand, } from "./commands/UpdateTrafficPolicyCommentCommand";
|
|
72
72
|
import { UpdateTrafficPolicyInstanceCommand, } from "./commands/UpdateTrafficPolicyInstanceCommand";
|
|
73
|
+
import { paginateListCidrBlocks } from "./pagination/ListCidrBlocksPaginator";
|
|
74
|
+
import { paginateListCidrCollections } from "./pagination/ListCidrCollectionsPaginator";
|
|
75
|
+
import { paginateListCidrLocations } from "./pagination/ListCidrLocationsPaginator";
|
|
76
|
+
import { paginateListHealthChecks } from "./pagination/ListHealthChecksPaginator";
|
|
77
|
+
import { paginateListHostedZones } from "./pagination/ListHostedZonesPaginator";
|
|
78
|
+
import { paginateListQueryLoggingConfigs } from "./pagination/ListQueryLoggingConfigsPaginator";
|
|
73
79
|
import { Route53Client } from "./Route53Client";
|
|
80
|
+
import { waitUntilResourceRecordSetsChanged } from "./waiters/waitForResourceRecordSetsChanged";
|
|
74
81
|
const commands = {
|
|
75
82
|
ActivateKeySigningKeyCommand,
|
|
76
83
|
AssociateVPCWithHostedZoneCommand,
|
|
@@ -144,6 +151,17 @@ const commands = {
|
|
|
144
151
|
UpdateTrafficPolicyCommentCommand,
|
|
145
152
|
UpdateTrafficPolicyInstanceCommand,
|
|
146
153
|
};
|
|
154
|
+
const paginators = {
|
|
155
|
+
paginateListCidrBlocks,
|
|
156
|
+
paginateListCidrCollections,
|
|
157
|
+
paginateListCidrLocations,
|
|
158
|
+
paginateListHealthChecks,
|
|
159
|
+
paginateListHostedZones,
|
|
160
|
+
paginateListQueryLoggingConfigs,
|
|
161
|
+
};
|
|
162
|
+
const waiters = {
|
|
163
|
+
waitUntilResourceRecordSetsChanged,
|
|
164
|
+
};
|
|
147
165
|
export class Route53 extends Route53Client {
|
|
148
166
|
}
|
|
149
|
-
createAggregatedClient(commands, Route53);
|
|
167
|
+
createAggregatedClient(commands, Route53, { paginators, waiters });
|
package/dist-types/Route53.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { ActivateKeySigningKeyCommandInput, ActivateKeySigningKeyCommandOutput } from "./commands/ActivateKeySigningKeyCommand";
|
|
3
4
|
import { AssociateVPCWithHostedZoneCommandInput, AssociateVPCWithHostedZoneCommandOutput } from "./commands/AssociateVPCWithHostedZoneCommand";
|
|
4
5
|
import { ChangeCidrCollectionCommandInput, ChangeCidrCollectionCommandOutput } from "./commands/ChangeCidrCollectionCommand";
|
|
@@ -512,6 +513,54 @@ export interface Route53 {
|
|
|
512
513
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficPolicyInstanceCommandOutput>;
|
|
513
514
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, cb: (err: any, data?: UpdateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
514
515
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
516
|
+
/**
|
|
517
|
+
* @see {@link ListCidrBlocksCommand}
|
|
518
|
+
* @param args - command input.
|
|
519
|
+
* @param paginationConfig - optional pagination config.
|
|
520
|
+
* @returns AsyncIterable of {@link ListCidrBlocksCommandOutput}.
|
|
521
|
+
*/
|
|
522
|
+
paginateListCidrBlocks(args: ListCidrBlocksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCidrBlocksCommandOutput>;
|
|
523
|
+
/**
|
|
524
|
+
* @see {@link ListCidrCollectionsCommand}
|
|
525
|
+
* @param args - command input.
|
|
526
|
+
* @param paginationConfig - optional pagination config.
|
|
527
|
+
* @returns AsyncIterable of {@link ListCidrCollectionsCommandOutput}.
|
|
528
|
+
*/
|
|
529
|
+
paginateListCidrCollections(args?: ListCidrCollectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCidrCollectionsCommandOutput>;
|
|
530
|
+
/**
|
|
531
|
+
* @see {@link ListCidrLocationsCommand}
|
|
532
|
+
* @param args - command input.
|
|
533
|
+
* @param paginationConfig - optional pagination config.
|
|
534
|
+
* @returns AsyncIterable of {@link ListCidrLocationsCommandOutput}.
|
|
535
|
+
*/
|
|
536
|
+
paginateListCidrLocations(args: ListCidrLocationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCidrLocationsCommandOutput>;
|
|
537
|
+
/**
|
|
538
|
+
* @see {@link ListHealthChecksCommand}
|
|
539
|
+
* @param args - command input.
|
|
540
|
+
* @param paginationConfig - optional pagination config.
|
|
541
|
+
* @returns AsyncIterable of {@link ListHealthChecksCommandOutput}.
|
|
542
|
+
*/
|
|
543
|
+
paginateListHealthChecks(args?: ListHealthChecksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHealthChecksCommandOutput>;
|
|
544
|
+
/**
|
|
545
|
+
* @see {@link ListHostedZonesCommand}
|
|
546
|
+
* @param args - command input.
|
|
547
|
+
* @param paginationConfig - optional pagination config.
|
|
548
|
+
* @returns AsyncIterable of {@link ListHostedZonesCommandOutput}.
|
|
549
|
+
*/
|
|
550
|
+
paginateListHostedZones(args?: ListHostedZonesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHostedZonesCommandOutput>;
|
|
551
|
+
/**
|
|
552
|
+
* @see {@link ListQueryLoggingConfigsCommand}
|
|
553
|
+
* @param args - command input.
|
|
554
|
+
* @param paginationConfig - optional pagination config.
|
|
555
|
+
* @returns AsyncIterable of {@link ListQueryLoggingConfigsCommandOutput}.
|
|
556
|
+
*/
|
|
557
|
+
paginateListQueryLoggingConfigs(args?: ListQueryLoggingConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueryLoggingConfigsCommandOutput>;
|
|
558
|
+
/**
|
|
559
|
+
* @see {@link GetChangeCommand}
|
|
560
|
+
* @param args - command input.
|
|
561
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
562
|
+
*/
|
|
563
|
+
waitUntilResourceRecordSetsChanged(args: GetChangeCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Route53>, "client">): Promise<WaiterResult>;
|
|
515
564
|
}
|
|
516
565
|
/**
|
|
517
566
|
* <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
ActivateKeySigningKeyCommandInput,
|
|
4
10
|
ActivateKeySigningKeyCommandOutput,
|
|
@@ -1246,5 +1252,56 @@ export interface Route53 {
|
|
|
1246
1252
|
options: __HttpHandlerOptions,
|
|
1247
1253
|
cb: (err: any, data?: UpdateTrafficPolicyInstanceCommandOutput) => void
|
|
1248
1254
|
): void;
|
|
1255
|
+
paginateListCidrBlocks(
|
|
1256
|
+
args: ListCidrBlocksCommandInput,
|
|
1257
|
+
paginationConfig?: Pick<
|
|
1258
|
+
PaginationConfiguration,
|
|
1259
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1260
|
+
>
|
|
1261
|
+
): Paginator<ListCidrBlocksCommandOutput>;
|
|
1262
|
+
paginateListCidrCollections(
|
|
1263
|
+
args?: ListCidrCollectionsCommandInput,
|
|
1264
|
+
paginationConfig?: Pick<
|
|
1265
|
+
PaginationConfiguration,
|
|
1266
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1267
|
+
>
|
|
1268
|
+
): Paginator<ListCidrCollectionsCommandOutput>;
|
|
1269
|
+
paginateListCidrLocations(
|
|
1270
|
+
args: ListCidrLocationsCommandInput,
|
|
1271
|
+
paginationConfig?: Pick<
|
|
1272
|
+
PaginationConfiguration,
|
|
1273
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1274
|
+
>
|
|
1275
|
+
): Paginator<ListCidrLocationsCommandOutput>;
|
|
1276
|
+
paginateListHealthChecks(
|
|
1277
|
+
args?: ListHealthChecksCommandInput,
|
|
1278
|
+
paginationConfig?: Pick<
|
|
1279
|
+
PaginationConfiguration,
|
|
1280
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1281
|
+
>
|
|
1282
|
+
): Paginator<ListHealthChecksCommandOutput>;
|
|
1283
|
+
paginateListHostedZones(
|
|
1284
|
+
args?: ListHostedZonesCommandInput,
|
|
1285
|
+
paginationConfig?: Pick<
|
|
1286
|
+
PaginationConfiguration,
|
|
1287
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1288
|
+
>
|
|
1289
|
+
): Paginator<ListHostedZonesCommandOutput>;
|
|
1290
|
+
paginateListQueryLoggingConfigs(
|
|
1291
|
+
args?: ListQueryLoggingConfigsCommandInput,
|
|
1292
|
+
paginationConfig?: Pick<
|
|
1293
|
+
PaginationConfiguration,
|
|
1294
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1295
|
+
>
|
|
1296
|
+
): Paginator<ListQueryLoggingConfigsCommandOutput>;
|
|
1297
|
+
waitUntilResourceRecordSetsChanged(
|
|
1298
|
+
args: GetChangeCommandInput,
|
|
1299
|
+
waiterConfig:
|
|
1300
|
+
| number
|
|
1301
|
+
| Pick<
|
|
1302
|
+
WaiterConfiguration<Route53>,
|
|
1303
|
+
Exclude<keyof WaiterConfiguration<Route53>, "client">
|
|
1304
|
+
>
|
|
1305
|
+
): Promise<WaiterResult>;
|
|
1249
1306
|
}
|
|
1250
1307
|
export declare class Route53 extends Route53Client implements Route53 {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route-53",
|
|
@@ -23,39 +23,39 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-sdk-route53": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
33
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
34
|
-
"@aws-sdk/types": "^3.973.
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.5",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
31
|
+
"@aws-sdk/middleware-sdk-route53": "^3.972.3",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
33
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
34
|
+
"@aws-sdk/types": "^3.973.1",
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
38
38
|
"@smithy/config-resolver": "^4.4.6",
|
|
39
|
-
"@smithy/core": "^3.
|
|
39
|
+
"@smithy/core": "^3.22.0",
|
|
40
40
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
41
41
|
"@smithy/hash-node": "^4.2.8",
|
|
42
42
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
43
43
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
44
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
45
|
-
"@smithy/middleware-retry": "^4.4.
|
|
44
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
45
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
46
46
|
"@smithy/middleware-serde": "^4.2.9",
|
|
47
47
|
"@smithy/middleware-stack": "^4.2.8",
|
|
48
48
|
"@smithy/node-config-provider": "^4.3.8",
|
|
49
49
|
"@smithy/node-http-handler": "^4.4.8",
|
|
50
50
|
"@smithy/protocol-http": "^5.3.8",
|
|
51
|
-
"@smithy/smithy-client": "^4.
|
|
51
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
52
52
|
"@smithy/types": "^4.12.0",
|
|
53
53
|
"@smithy/url-parser": "^4.2.8",
|
|
54
54
|
"@smithy/util-base64": "^4.3.0",
|
|
55
55
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
56
56
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
59
59
|
"@smithy/util-endpoints": "^3.2.8",
|
|
60
60
|
"@smithy/util-middleware": "^4.2.8",
|
|
61
61
|
"@smithy/util-retry": "^4.2.8",
|