@aws-sdk/client-route-53 3.204.0 → 3.208.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/README.md +16 -1
- package/dist-cjs/models/models_0.js +195 -5
- package/dist-es/models/models_0.js +189 -0
- package/dist-types/Route53.d.ts +19 -7
- package/dist-types/Route53Client.d.ts +16 -1
- package/dist-types/commands/ChangeCidrCollectionCommand.d.ts +2 -3
- package/dist-types/commands/CreateCidrCollectionCommand.d.ts +1 -3
- package/dist-types/models/models_0.d.ts +181 -22
- package/dist-types/ts3.4/models/models_0.d.ts +173 -144
- package/package.json +37 -37
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Route53ServiceException as __BaseException } from "./Route53ServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
export declare enum AccountLimitType {
|
|
4
|
+
MAX_HEALTH_CHECKS_BY_OWNER = "MAX_HEALTH_CHECKS_BY_OWNER",
|
|
5
|
+
MAX_HOSTED_ZONES_BY_OWNER = "MAX_HOSTED_ZONES_BY_OWNER",
|
|
6
|
+
MAX_REUSABLE_DELEGATION_SETS_BY_OWNER = "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER",
|
|
7
|
+
MAX_TRAFFIC_POLICIES_BY_OWNER = "MAX_TRAFFIC_POLICIES_BY_OWNER",
|
|
8
|
+
MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER = "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER",
|
|
9
|
+
}
|
|
9
10
|
export interface AccountLimit {
|
|
10
11
|
Type: AccountLimitType | string | undefined;
|
|
11
12
|
Value: number | undefined;
|
|
@@ -14,7 +15,10 @@ export interface ActivateKeySigningKeyRequest {
|
|
|
14
15
|
HostedZoneId: string | undefined;
|
|
15
16
|
Name: string | undefined;
|
|
16
17
|
}
|
|
17
|
-
export declare
|
|
18
|
+
export declare enum ChangeStatus {
|
|
19
|
+
INSYNC = "INSYNC",
|
|
20
|
+
PENDING = "PENDING",
|
|
21
|
+
}
|
|
18
22
|
export interface ChangeInfo {
|
|
19
23
|
Id: string | undefined;
|
|
20
24
|
Status: ChangeStatus | string | undefined;
|
|
@@ -62,37 +66,39 @@ export declare class NoSuchKeySigningKey extends __BaseException {
|
|
|
62
66
|
opts: __ExceptionOptionType<NoSuchKeySigningKey, __BaseException>
|
|
63
67
|
);
|
|
64
68
|
}
|
|
65
|
-
export declare
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
69
|
+
export declare enum CloudWatchRegion {
|
|
70
|
+
af_south_1 = "af-south-1",
|
|
71
|
+
ap_east_1 = "ap-east-1",
|
|
72
|
+
ap_northeast_1 = "ap-northeast-1",
|
|
73
|
+
ap_northeast_2 = "ap-northeast-2",
|
|
74
|
+
ap_northeast_3 = "ap-northeast-3",
|
|
75
|
+
ap_south_1 = "ap-south-1",
|
|
76
|
+
ap_southeast_1 = "ap-southeast-1",
|
|
77
|
+
ap_southeast_2 = "ap-southeast-2",
|
|
78
|
+
ap_southeast_3 = "ap-southeast-3",
|
|
79
|
+
ca_central_1 = "ca-central-1",
|
|
80
|
+
cn_north_1 = "cn-north-1",
|
|
81
|
+
cn_northwest_1 = "cn-northwest-1",
|
|
82
|
+
eu_central_1 = "eu-central-1",
|
|
83
|
+
eu_central_2 = "eu-central-2",
|
|
84
|
+
eu_north_1 = "eu-north-1",
|
|
85
|
+
eu_south_1 = "eu-south-1",
|
|
86
|
+
eu_west_1 = "eu-west-1",
|
|
87
|
+
eu_west_2 = "eu-west-2",
|
|
88
|
+
eu_west_3 = "eu-west-3",
|
|
89
|
+
me_central_1 = "me-central-1",
|
|
90
|
+
me_south_1 = "me-south-1",
|
|
91
|
+
sa_east_1 = "sa-east-1",
|
|
92
|
+
us_east_1 = "us-east-1",
|
|
93
|
+
us_east_2 = "us-east-2",
|
|
94
|
+
us_gov_east_1 = "us-gov-east-1",
|
|
95
|
+
us_gov_west_1 = "us-gov-west-1",
|
|
96
|
+
us_iso_east_1 = "us-iso-east-1",
|
|
97
|
+
us_iso_west_1 = "us-iso-west-1",
|
|
98
|
+
us_isob_east_1 = "us-isob-east-1",
|
|
99
|
+
us_west_1 = "us-west-1",
|
|
100
|
+
us_west_2 = "us-west-2",
|
|
101
|
+
}
|
|
96
102
|
export interface AlarmIdentifier {
|
|
97
103
|
Region: CloudWatchRegion | string | undefined;
|
|
98
104
|
Name: string | undefined;
|
|
@@ -102,36 +108,38 @@ export interface AliasTarget {
|
|
|
102
108
|
DNSName: string | undefined;
|
|
103
109
|
EvaluateTargetHealth: boolean | undefined;
|
|
104
110
|
}
|
|
105
|
-
export declare
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
111
|
+
export declare enum VPCRegion {
|
|
112
|
+
af_south_1 = "af-south-1",
|
|
113
|
+
ap_east_1 = "ap-east-1",
|
|
114
|
+
ap_northeast_1 = "ap-northeast-1",
|
|
115
|
+
ap_northeast_2 = "ap-northeast-2",
|
|
116
|
+
ap_northeast_3 = "ap-northeast-3",
|
|
117
|
+
ap_south_1 = "ap-south-1",
|
|
118
|
+
ap_southeast_1 = "ap-southeast-1",
|
|
119
|
+
ap_southeast_2 = "ap-southeast-2",
|
|
120
|
+
ap_southeast_3 = "ap-southeast-3",
|
|
121
|
+
ca_central_1 = "ca-central-1",
|
|
122
|
+
cn_north_1 = "cn-north-1",
|
|
123
|
+
eu_central_1 = "eu-central-1",
|
|
124
|
+
eu_central_2 = "eu-central-2",
|
|
125
|
+
eu_north_1 = "eu-north-1",
|
|
126
|
+
eu_south_1 = "eu-south-1",
|
|
127
|
+
eu_west_1 = "eu-west-1",
|
|
128
|
+
eu_west_2 = "eu-west-2",
|
|
129
|
+
eu_west_3 = "eu-west-3",
|
|
130
|
+
me_central_1 = "me-central-1",
|
|
131
|
+
me_south_1 = "me-south-1",
|
|
132
|
+
sa_east_1 = "sa-east-1",
|
|
133
|
+
us_east_1 = "us-east-1",
|
|
134
|
+
us_east_2 = "us-east-2",
|
|
135
|
+
us_gov_east_1 = "us-gov-east-1",
|
|
136
|
+
us_gov_west_1 = "us-gov-west-1",
|
|
137
|
+
us_iso_east_1 = "us-iso-east-1",
|
|
138
|
+
us_iso_west_1 = "us-iso-west-1",
|
|
139
|
+
us_isob_east_1 = "us-isob-east-1",
|
|
140
|
+
us_west_1 = "us-west-1",
|
|
141
|
+
us_west_2 = "us-west-2",
|
|
142
|
+
}
|
|
135
143
|
export interface VPC {
|
|
136
144
|
VPCRegion?: VPCRegion | string;
|
|
137
145
|
VPCId?: string;
|
|
@@ -231,59 +239,70 @@ export declare class NoSuchCidrCollectionException extends __BaseException {
|
|
|
231
239
|
opts: __ExceptionOptionType<NoSuchCidrCollectionException, __BaseException>
|
|
232
240
|
);
|
|
233
241
|
}
|
|
234
|
-
export declare
|
|
242
|
+
export declare enum ChangeAction {
|
|
243
|
+
CREATE = "CREATE",
|
|
244
|
+
DELETE = "DELETE",
|
|
245
|
+
UPSERT = "UPSERT",
|
|
246
|
+
}
|
|
235
247
|
export interface CidrRoutingConfig {
|
|
236
248
|
CollectionId: string | undefined;
|
|
237
249
|
LocationName: string | undefined;
|
|
238
250
|
}
|
|
239
|
-
export declare
|
|
251
|
+
export declare enum ResourceRecordSetFailover {
|
|
252
|
+
PRIMARY = "PRIMARY",
|
|
253
|
+
SECONDARY = "SECONDARY",
|
|
254
|
+
}
|
|
240
255
|
export interface GeoLocation {
|
|
241
256
|
ContinentCode?: string;
|
|
242
257
|
CountryCode?: string;
|
|
243
258
|
SubdivisionCode?: string;
|
|
244
259
|
}
|
|
245
|
-
export declare
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
260
|
+
export declare enum ResourceRecordSetRegion {
|
|
261
|
+
af_south_1 = "af-south-1",
|
|
262
|
+
ap_east_1 = "ap-east-1",
|
|
263
|
+
ap_northeast_1 = "ap-northeast-1",
|
|
264
|
+
ap_northeast_2 = "ap-northeast-2",
|
|
265
|
+
ap_northeast_3 = "ap-northeast-3",
|
|
266
|
+
ap_south_1 = "ap-south-1",
|
|
267
|
+
ap_southeast_1 = "ap-southeast-1",
|
|
268
|
+
ap_southeast_2 = "ap-southeast-2",
|
|
269
|
+
ap_southeast_3 = "ap-southeast-3",
|
|
270
|
+
ca_central_1 = "ca-central-1",
|
|
271
|
+
cn_north_1 = "cn-north-1",
|
|
272
|
+
cn_northwest_1 = "cn-northwest-1",
|
|
273
|
+
eu_central_1 = "eu-central-1",
|
|
274
|
+
eu_central_2 = "eu-central-2",
|
|
275
|
+
eu_north_1 = "eu-north-1",
|
|
276
|
+
eu_south_1 = "eu-south-1",
|
|
277
|
+
eu_west_1 = "eu-west-1",
|
|
278
|
+
eu_west_2 = "eu-west-2",
|
|
279
|
+
eu_west_3 = "eu-west-3",
|
|
280
|
+
me_central_1 = "me-central-1",
|
|
281
|
+
me_south_1 = "me-south-1",
|
|
282
|
+
sa_east_1 = "sa-east-1",
|
|
283
|
+
us_east_1 = "us-east-1",
|
|
284
|
+
us_east_2 = "us-east-2",
|
|
285
|
+
us_west_1 = "us-west-1",
|
|
286
|
+
us_west_2 = "us-west-2",
|
|
287
|
+
}
|
|
270
288
|
export interface ResourceRecord {
|
|
271
289
|
Value: string | undefined;
|
|
272
290
|
}
|
|
273
|
-
export declare
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
291
|
+
export declare enum RRType {
|
|
292
|
+
A = "A",
|
|
293
|
+
AAAA = "AAAA",
|
|
294
|
+
CAA = "CAA",
|
|
295
|
+
CNAME = "CNAME",
|
|
296
|
+
DS = "DS",
|
|
297
|
+
MX = "MX",
|
|
298
|
+
NAPTR = "NAPTR",
|
|
299
|
+
NS = "NS",
|
|
300
|
+
PTR = "PTR",
|
|
301
|
+
SOA = "SOA",
|
|
302
|
+
SPF = "SPF",
|
|
303
|
+
SRV = "SRV",
|
|
304
|
+
TXT = "TXT",
|
|
305
|
+
}
|
|
287
306
|
export interface ResourceRecordSet {
|
|
288
307
|
Name: string | undefined;
|
|
289
308
|
Type: RRType | string | undefined;
|
|
@@ -330,7 +349,10 @@ export interface Tag {
|
|
|
330
349
|
Key?: string;
|
|
331
350
|
Value?: string;
|
|
332
351
|
}
|
|
333
|
-
export declare
|
|
352
|
+
export declare enum TagResourceType {
|
|
353
|
+
healthcheck = "healthcheck",
|
|
354
|
+
hostedzone = "hostedzone",
|
|
355
|
+
}
|
|
334
356
|
export interface ChangeTagsForResourceRequest {
|
|
335
357
|
ResourceType: TagResourceType | string | undefined;
|
|
336
358
|
ResourceId: string | undefined;
|
|
@@ -370,19 +392,21 @@ export interface CreateCidrCollectionResponse {
|
|
|
370
392
|
Collection?: CidrCollection;
|
|
371
393
|
Location?: string;
|
|
372
394
|
}
|
|
373
|
-
export declare
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
395
|
+
export declare enum InsufficientDataHealthStatus {
|
|
396
|
+
Healthy = "Healthy",
|
|
397
|
+
LastKnownStatus = "LastKnownStatus",
|
|
398
|
+
Unhealthy = "Unhealthy",
|
|
399
|
+
}
|
|
400
|
+
export declare enum HealthCheckRegion {
|
|
401
|
+
ap_northeast_1 = "ap-northeast-1",
|
|
402
|
+
ap_southeast_1 = "ap-southeast-1",
|
|
403
|
+
ap_southeast_2 = "ap-southeast-2",
|
|
404
|
+
eu_west_1 = "eu-west-1",
|
|
405
|
+
sa_east_1 = "sa-east-1",
|
|
406
|
+
us_east_1 = "us-east-1",
|
|
407
|
+
us_west_1 = "us-west-1",
|
|
408
|
+
us_west_2 = "us-west-2",
|
|
409
|
+
}
|
|
386
410
|
export declare enum HealthCheckType {
|
|
387
411
|
CALCULATED = "CALCULATED",
|
|
388
412
|
CLOUDWATCH_METRIC = "CLOUDWATCH_METRIC",
|
|
@@ -417,21 +441,23 @@ export interface CreateHealthCheckRequest {
|
|
|
417
441
|
CallerReference: string | undefined;
|
|
418
442
|
HealthCheckConfig: HealthCheckConfig | undefined;
|
|
419
443
|
}
|
|
420
|
-
export declare
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
444
|
+
export declare enum ComparisonOperator {
|
|
445
|
+
GreaterThanOrEqualToThreshold = "GreaterThanOrEqualToThreshold",
|
|
446
|
+
GreaterThanThreshold = "GreaterThanThreshold",
|
|
447
|
+
LessThanOrEqualToThreshold = "LessThanOrEqualToThreshold",
|
|
448
|
+
LessThanThreshold = "LessThanThreshold",
|
|
449
|
+
}
|
|
425
450
|
export interface Dimension {
|
|
426
451
|
Name: string | undefined;
|
|
427
452
|
Value: string | undefined;
|
|
428
453
|
}
|
|
429
|
-
export declare
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
454
|
+
export declare enum Statistic {
|
|
455
|
+
Average = "Average",
|
|
456
|
+
Maximum = "Maximum",
|
|
457
|
+
Minimum = "Minimum",
|
|
458
|
+
SampleCount = "SampleCount",
|
|
459
|
+
Sum = "Sum",
|
|
460
|
+
}
|
|
435
461
|
export interface CloudWatchAlarmConfiguration {
|
|
436
462
|
EvaluationPeriods: number | undefined;
|
|
437
463
|
Threshold: number | undefined;
|
|
@@ -1057,9 +1083,10 @@ export interface GetHostedZoneCountRequest {}
|
|
|
1057
1083
|
export interface GetHostedZoneCountResponse {
|
|
1058
1084
|
HostedZoneCount: number | undefined;
|
|
1059
1085
|
}
|
|
1060
|
-
export declare
|
|
1061
|
-
|
|
1062
|
-
|
|
1086
|
+
export declare enum HostedZoneLimitType {
|
|
1087
|
+
MAX_RRSETS_BY_ZONE = "MAX_RRSETS_BY_ZONE",
|
|
1088
|
+
MAX_VPCS_ASSOCIATED_BY_ZONE = "MAX_VPCS_ASSOCIATED_BY_ZONE",
|
|
1089
|
+
}
|
|
1063
1090
|
export interface GetHostedZoneLimitRequest {
|
|
1064
1091
|
Type: HostedZoneLimitType | string | undefined;
|
|
1065
1092
|
HostedZoneId: string | undefined;
|
|
@@ -1091,8 +1118,9 @@ export interface GetReusableDelegationSetRequest {
|
|
|
1091
1118
|
export interface GetReusableDelegationSetResponse {
|
|
1092
1119
|
DelegationSet: DelegationSet | undefined;
|
|
1093
1120
|
}
|
|
1094
|
-
export declare
|
|
1095
|
-
"MAX_ZONES_BY_REUSABLE_DELEGATION_SET"
|
|
1121
|
+
export declare enum ReusableDelegationSetLimitType {
|
|
1122
|
+
MAX_ZONES_BY_REUSABLE_DELEGATION_SET = "MAX_ZONES_BY_REUSABLE_DELEGATION_SET",
|
|
1123
|
+
}
|
|
1096
1124
|
export interface GetReusableDelegationSetLimitRequest {
|
|
1097
1125
|
Type: ReusableDelegationSetLimitType | string | undefined;
|
|
1098
1126
|
DelegationSetId: string | undefined;
|
|
@@ -1406,11 +1434,12 @@ export declare class HealthCheckVersionMismatch extends __BaseException {
|
|
|
1406
1434
|
opts: __ExceptionOptionType<HealthCheckVersionMismatch, __BaseException>
|
|
1407
1435
|
);
|
|
1408
1436
|
}
|
|
1409
|
-
export declare
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1437
|
+
export declare enum ResettableElementName {
|
|
1438
|
+
ChildHealthChecks = "ChildHealthChecks",
|
|
1439
|
+
FullyQualifiedDomainName = "FullyQualifiedDomainName",
|
|
1440
|
+
Regions = "Regions",
|
|
1441
|
+
ResourcePath = "ResourcePath",
|
|
1442
|
+
}
|
|
1414
1443
|
export interface UpdateHealthCheckRequest {
|
|
1415
1444
|
HealthCheckId: string | undefined;
|
|
1416
1445
|
HealthCheckVersion?: number;
|
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.208.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",
|
|
@@ -19,50 +19,50 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-sdk-route53": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
47
|
-
"@aws-sdk/util-base64-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.208.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.208.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.208.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.208.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.208.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.208.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.208.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.208.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.208.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.208.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.208.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.208.0",
|
|
34
|
+
"@aws-sdk/middleware-sdk-route53": "3.208.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.208.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.208.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.208.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.208.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.208.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.208.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.208.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.208.0",
|
|
43
|
+
"@aws-sdk/types": "3.208.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.208.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.208.0",
|
|
46
|
+
"@aws-sdk/util-base64-browser": "3.208.0",
|
|
47
|
+
"@aws-sdk/util-base64-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
49
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
+
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.208.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.208.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.208.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.208.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.208.0",
|
|
55
55
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
56
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
57
|
-
"@aws-sdk/util-waiter": "3.
|
|
56
|
+
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
57
|
+
"@aws-sdk/util-waiter": "3.208.0",
|
|
58
58
|
"@aws-sdk/xml-builder": "3.201.0",
|
|
59
59
|
"fast-xml-parser": "4.0.11",
|
|
60
60
|
"tslib": "^2.3.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
63
|
+
"@aws-sdk/service-client-documentation-generator": "3.208.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
|
-
"@types/node": "^
|
|
65
|
+
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|