@aws-sdk/client-route53resolver 3.301.0 → 3.303.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/models/models_0.js +149 -175
- package/dist-es/models/models_0.js +149 -175
- package/dist-types/models/models_0.d.ts +279 -149
- package/dist-types/ts3.4/models/models_0.d.ts +196 -149
- package/package.json +34 -34
|
@@ -8,15 +8,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
12
|
-
ALERT
|
|
13
|
-
ALLOW
|
|
14
|
-
BLOCK
|
|
15
|
-
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
export declare const Action: {
|
|
12
|
+
readonly ALERT: "ALERT";
|
|
13
|
+
readonly ALLOW: "ALLOW";
|
|
14
|
+
readonly BLOCK: "BLOCK";
|
|
15
|
+
};
|
|
16
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
17
|
+
export declare const MutationProtectionStatus: {
|
|
18
|
+
readonly DISABLED: "DISABLED";
|
|
19
|
+
readonly ENABLED: "ENABLED";
|
|
20
|
+
};
|
|
21
|
+
export type MutationProtectionStatus =
|
|
22
|
+
(typeof MutationProtectionStatus)[keyof typeof MutationProtectionStatus];
|
|
20
23
|
export interface Tag {
|
|
21
24
|
Key: string | undefined;
|
|
22
25
|
Value: string | undefined;
|
|
@@ -30,11 +33,13 @@ export interface AssociateFirewallRuleGroupRequest {
|
|
|
30
33
|
MutationProtection?: MutationProtectionStatus | string;
|
|
31
34
|
Tags?: Tag[];
|
|
32
35
|
}
|
|
33
|
-
export declare
|
|
34
|
-
COMPLETE
|
|
35
|
-
DELETING
|
|
36
|
-
UPDATING
|
|
37
|
-
}
|
|
36
|
+
export declare const FirewallRuleGroupAssociationStatus: {
|
|
37
|
+
readonly COMPLETE: "COMPLETE";
|
|
38
|
+
readonly DELETING: "DELETING";
|
|
39
|
+
readonly UPDATING: "UPDATING";
|
|
40
|
+
};
|
|
41
|
+
export type FirewallRuleGroupAssociationStatus =
|
|
42
|
+
(typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
|
|
38
43
|
export interface FirewallRuleGroupAssociation {
|
|
39
44
|
Id?: string;
|
|
40
45
|
Arn?: string;
|
|
@@ -111,23 +116,29 @@ export interface AssociateResolverEndpointIpAddressRequest {
|
|
|
111
116
|
ResolverEndpointId: string | undefined;
|
|
112
117
|
IpAddress: IpAddressUpdate | undefined;
|
|
113
118
|
}
|
|
114
|
-
export declare
|
|
115
|
-
Inbound
|
|
116
|
-
Outbound
|
|
117
|
-
}
|
|
118
|
-
export
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
119
|
+
export declare const ResolverEndpointDirection: {
|
|
120
|
+
readonly Inbound: "INBOUND";
|
|
121
|
+
readonly Outbound: "OUTBOUND";
|
|
122
|
+
};
|
|
123
|
+
export type ResolverEndpointDirection =
|
|
124
|
+
(typeof ResolverEndpointDirection)[keyof typeof ResolverEndpointDirection];
|
|
125
|
+
export declare const ResolverEndpointType: {
|
|
126
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
127
|
+
readonly IPV4: "IPV4";
|
|
128
|
+
readonly IPV6: "IPV6";
|
|
129
|
+
};
|
|
130
|
+
export type ResolverEndpointType =
|
|
131
|
+
(typeof ResolverEndpointType)[keyof typeof ResolverEndpointType];
|
|
132
|
+
export declare const ResolverEndpointStatus: {
|
|
133
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
134
|
+
readonly AutoRecovering: "AUTO_RECOVERING";
|
|
135
|
+
readonly Creating: "CREATING";
|
|
136
|
+
readonly Deleting: "DELETING";
|
|
137
|
+
readonly Operational: "OPERATIONAL";
|
|
138
|
+
readonly Updating: "UPDATING";
|
|
139
|
+
};
|
|
140
|
+
export type ResolverEndpointStatus =
|
|
141
|
+
(typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
|
|
131
142
|
export interface ResolverEndpoint {
|
|
132
143
|
Id?: string;
|
|
133
144
|
CreatorRequestId?: string;
|
|
@@ -176,19 +187,23 @@ export interface AssociateResolverQueryLogConfigRequest {
|
|
|
176
187
|
ResolverQueryLogConfigId: string | undefined;
|
|
177
188
|
ResourceId: string | undefined;
|
|
178
189
|
}
|
|
179
|
-
export declare
|
|
180
|
-
AccessDenied
|
|
181
|
-
DestinationNotFound
|
|
182
|
-
InternalServiceError
|
|
183
|
-
None
|
|
184
|
-
}
|
|
185
|
-
export
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
190
|
+
export declare const ResolverQueryLogConfigAssociationError: {
|
|
191
|
+
readonly AccessDenied: "ACCESS_DENIED";
|
|
192
|
+
readonly DestinationNotFound: "DESTINATION_NOT_FOUND";
|
|
193
|
+
readonly InternalServiceError: "INTERNAL_SERVICE_ERROR";
|
|
194
|
+
readonly None: "NONE";
|
|
195
|
+
};
|
|
196
|
+
export type ResolverQueryLogConfigAssociationError =
|
|
197
|
+
(typeof ResolverQueryLogConfigAssociationError)[keyof typeof ResolverQueryLogConfigAssociationError];
|
|
198
|
+
export declare const ResolverQueryLogConfigAssociationStatus: {
|
|
199
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
200
|
+
readonly Active: "ACTIVE";
|
|
201
|
+
readonly Creating: "CREATING";
|
|
202
|
+
readonly Deleting: "DELETING";
|
|
203
|
+
readonly Failed: "FAILED";
|
|
204
|
+
};
|
|
205
|
+
export type ResolverQueryLogConfigAssociationStatus =
|
|
206
|
+
(typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
|
|
192
207
|
export interface ResolverQueryLogConfigAssociation {
|
|
193
208
|
Id?: string;
|
|
194
209
|
ResolverQueryLogConfigId?: string;
|
|
@@ -206,13 +221,15 @@ export interface AssociateResolverRuleRequest {
|
|
|
206
221
|
Name?: string;
|
|
207
222
|
VPCId: string | undefined;
|
|
208
223
|
}
|
|
209
|
-
export declare
|
|
210
|
-
Complete
|
|
211
|
-
Creating
|
|
212
|
-
Deleting
|
|
213
|
-
Failed
|
|
214
|
-
Overridden
|
|
215
|
-
}
|
|
224
|
+
export declare const ResolverRuleAssociationStatus: {
|
|
225
|
+
readonly Complete: "COMPLETE";
|
|
226
|
+
readonly Creating: "CREATING";
|
|
227
|
+
readonly Deleting: "DELETING";
|
|
228
|
+
readonly Failed: "FAILED";
|
|
229
|
+
readonly Overridden: "OVERRIDDEN";
|
|
230
|
+
};
|
|
231
|
+
export type ResolverRuleAssociationStatus =
|
|
232
|
+
(typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
|
|
216
233
|
export interface ResolverRuleAssociation {
|
|
217
234
|
Id?: string;
|
|
218
235
|
ResolverRuleId?: string;
|
|
@@ -233,31 +250,38 @@ export declare class ResourceUnavailableException extends __BaseException {
|
|
|
233
250
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
234
251
|
);
|
|
235
252
|
}
|
|
236
|
-
export declare
|
|
237
|
-
DISABLE
|
|
238
|
-
ENABLE
|
|
239
|
-
USE_LOCAL_RESOURCE_SETTING
|
|
240
|
-
}
|
|
241
|
-
export
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
253
|
+
export declare const AutodefinedReverseFlag: {
|
|
254
|
+
readonly DISABLE: "DISABLE";
|
|
255
|
+
readonly ENABLE: "ENABLE";
|
|
256
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
257
|
+
};
|
|
258
|
+
export type AutodefinedReverseFlag =
|
|
259
|
+
(typeof AutodefinedReverseFlag)[keyof typeof AutodefinedReverseFlag];
|
|
260
|
+
export declare const BlockOverrideDnsType: {
|
|
261
|
+
readonly CNAME: "CNAME";
|
|
262
|
+
};
|
|
263
|
+
export type BlockOverrideDnsType =
|
|
264
|
+
(typeof BlockOverrideDnsType)[keyof typeof BlockOverrideDnsType];
|
|
265
|
+
export declare const BlockResponse: {
|
|
266
|
+
readonly NODATA: "NODATA";
|
|
267
|
+
readonly NXDOMAIN: "NXDOMAIN";
|
|
268
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
269
|
+
};
|
|
270
|
+
export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
|
|
249
271
|
export interface CreateFirewallDomainListRequest {
|
|
250
272
|
CreatorRequestId?: string;
|
|
251
273
|
Name: string | undefined;
|
|
252
274
|
Tags?: Tag[];
|
|
253
275
|
}
|
|
254
|
-
export declare
|
|
255
|
-
COMPLETE
|
|
256
|
-
COMPLETE_IMPORT_FAILED
|
|
257
|
-
DELETING
|
|
258
|
-
IMPORTING
|
|
259
|
-
UPDATING
|
|
260
|
-
}
|
|
276
|
+
export declare const FirewallDomainListStatus: {
|
|
277
|
+
readonly COMPLETE: "COMPLETE";
|
|
278
|
+
readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
|
|
279
|
+
readonly DELETING: "DELETING";
|
|
280
|
+
readonly IMPORTING: "IMPORTING";
|
|
281
|
+
readonly UPDATING: "UPDATING";
|
|
282
|
+
};
|
|
283
|
+
export type FirewallDomainListStatus =
|
|
284
|
+
(typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
261
285
|
export interface FirewallDomainList {
|
|
262
286
|
Id?: string;
|
|
263
287
|
Arn?: string;
|
|
@@ -307,16 +331,19 @@ export interface CreateFirewallRuleGroupRequest {
|
|
|
307
331
|
Name: string | undefined;
|
|
308
332
|
Tags?: Tag[];
|
|
309
333
|
}
|
|
310
|
-
export declare
|
|
311
|
-
NotShared
|
|
312
|
-
SharedByMe
|
|
313
|
-
SharedWithMe
|
|
314
|
-
}
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
334
|
+
export declare const ShareStatus: {
|
|
335
|
+
readonly NotShared: "NOT_SHARED";
|
|
336
|
+
readonly SharedByMe: "SHARED_BY_ME";
|
|
337
|
+
readonly SharedWithMe: "SHARED_WITH_ME";
|
|
338
|
+
};
|
|
339
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
340
|
+
export declare const FirewallRuleGroupStatus: {
|
|
341
|
+
readonly COMPLETE: "COMPLETE";
|
|
342
|
+
readonly DELETING: "DELETING";
|
|
343
|
+
readonly UPDATING: "UPDATING";
|
|
344
|
+
};
|
|
345
|
+
export type FirewallRuleGroupStatus =
|
|
346
|
+
(typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
|
|
320
347
|
export interface FirewallRuleGroup {
|
|
321
348
|
Id?: string;
|
|
322
349
|
Arn?: string;
|
|
@@ -356,12 +383,14 @@ export interface CreateResolverQueryLogConfigRequest {
|
|
|
356
383
|
CreatorRequestId?: string;
|
|
357
384
|
Tags?: Tag[];
|
|
358
385
|
}
|
|
359
|
-
export declare
|
|
360
|
-
Created
|
|
361
|
-
Creating
|
|
362
|
-
Deleting
|
|
363
|
-
Failed
|
|
364
|
-
}
|
|
386
|
+
export declare const ResolverQueryLogConfigStatus: {
|
|
387
|
+
readonly Created: "CREATED";
|
|
388
|
+
readonly Creating: "CREATING";
|
|
389
|
+
readonly Deleting: "DELETING";
|
|
390
|
+
readonly Failed: "FAILED";
|
|
391
|
+
};
|
|
392
|
+
export type ResolverQueryLogConfigStatus =
|
|
393
|
+
(typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
|
|
365
394
|
export interface ResolverQueryLogConfig {
|
|
366
395
|
Id?: string;
|
|
367
396
|
OwnerId?: string;
|
|
@@ -377,11 +406,13 @@ export interface ResolverQueryLogConfig {
|
|
|
377
406
|
export interface CreateResolverQueryLogConfigResponse {
|
|
378
407
|
ResolverQueryLogConfig?: ResolverQueryLogConfig;
|
|
379
408
|
}
|
|
380
|
-
export declare
|
|
381
|
-
Forward
|
|
382
|
-
Recursive
|
|
383
|
-
System
|
|
384
|
-
}
|
|
409
|
+
export declare const RuleTypeOption: {
|
|
410
|
+
readonly Forward: "FORWARD";
|
|
411
|
+
readonly Recursive: "RECURSIVE";
|
|
412
|
+
readonly System: "SYSTEM";
|
|
413
|
+
};
|
|
414
|
+
export type RuleTypeOption =
|
|
415
|
+
(typeof RuleTypeOption)[keyof typeof RuleTypeOption];
|
|
385
416
|
export interface TargetAddress {
|
|
386
417
|
Ip?: string;
|
|
387
418
|
Port?: number;
|
|
@@ -396,12 +427,14 @@ export interface CreateResolverRuleRequest {
|
|
|
396
427
|
ResolverEndpointId?: string;
|
|
397
428
|
Tags?: Tag[];
|
|
398
429
|
}
|
|
399
|
-
export declare
|
|
400
|
-
Complete
|
|
401
|
-
Deleting
|
|
402
|
-
Failed
|
|
403
|
-
Updating
|
|
404
|
-
}
|
|
430
|
+
export declare const ResolverRuleStatus: {
|
|
431
|
+
readonly Complete: "COMPLETE";
|
|
432
|
+
readonly Deleting: "DELETING";
|
|
433
|
+
readonly Failed: "FAILED";
|
|
434
|
+
readonly Updating: "UPDATING";
|
|
435
|
+
};
|
|
436
|
+
export type ResolverRuleStatus =
|
|
437
|
+
(typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
|
|
405
438
|
export interface ResolverRule {
|
|
406
439
|
Id?: string;
|
|
407
440
|
CreatorRequestId?: string;
|
|
@@ -498,20 +531,24 @@ export interface Filter {
|
|
|
498
531
|
Name?: string;
|
|
499
532
|
Values?: string[];
|
|
500
533
|
}
|
|
501
|
-
export declare
|
|
502
|
-
DISABLED
|
|
503
|
-
ENABLED
|
|
504
|
-
USE_LOCAL_RESOURCE_SETTING
|
|
505
|
-
}
|
|
534
|
+
export declare const FirewallFailOpenStatus: {
|
|
535
|
+
readonly DISABLED: "DISABLED";
|
|
536
|
+
readonly ENABLED: "ENABLED";
|
|
537
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
538
|
+
};
|
|
539
|
+
export type FirewallFailOpenStatus =
|
|
540
|
+
(typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
|
|
506
541
|
export interface FirewallConfig {
|
|
507
542
|
Id?: string;
|
|
508
543
|
ResourceId?: string;
|
|
509
544
|
OwnerId?: string;
|
|
510
545
|
FirewallFailOpen?: FirewallFailOpenStatus | string;
|
|
511
546
|
}
|
|
512
|
-
export declare
|
|
513
|
-
REPLACE
|
|
514
|
-
}
|
|
547
|
+
export declare const FirewallDomainImportOperation: {
|
|
548
|
+
readonly REPLACE: "REPLACE";
|
|
549
|
+
};
|
|
550
|
+
export type FirewallDomainImportOperation =
|
|
551
|
+
(typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
|
|
515
552
|
export interface FirewallDomainListMetadata {
|
|
516
553
|
Id?: string;
|
|
517
554
|
Arn?: string;
|
|
@@ -519,11 +556,13 @@ export interface FirewallDomainListMetadata {
|
|
|
519
556
|
CreatorRequestId?: string;
|
|
520
557
|
ManagedOwnerName?: string;
|
|
521
558
|
}
|
|
522
|
-
export declare
|
|
523
|
-
ADD
|
|
524
|
-
REMOVE
|
|
525
|
-
REPLACE
|
|
526
|
-
}
|
|
559
|
+
export declare const FirewallDomainUpdateOperation: {
|
|
560
|
+
readonly ADD: "ADD";
|
|
561
|
+
readonly REMOVE: "REMOVE";
|
|
562
|
+
readonly REPLACE: "REPLACE";
|
|
563
|
+
};
|
|
564
|
+
export type FirewallDomainUpdateOperation =
|
|
565
|
+
(typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
|
|
527
566
|
export interface FirewallRuleGroupMetadata {
|
|
528
567
|
Id?: string;
|
|
529
568
|
Arn?: string;
|
|
@@ -565,14 +604,16 @@ export interface GetFirewallRuleGroupPolicyResponse {
|
|
|
565
604
|
export interface GetResolverConfigRequest {
|
|
566
605
|
ResourceId: string | undefined;
|
|
567
606
|
}
|
|
568
|
-
export declare
|
|
569
|
-
Disabled
|
|
570
|
-
Disabling
|
|
571
|
-
Enabled
|
|
572
|
-
Enabling
|
|
573
|
-
UpdatingToUseLocalResourceSetting
|
|
574
|
-
UseLocalResourceSetting
|
|
575
|
-
}
|
|
607
|
+
export declare const ResolverAutodefinedReverseStatus: {
|
|
608
|
+
readonly Disabled: "DISABLED";
|
|
609
|
+
readonly Disabling: "DISABLING";
|
|
610
|
+
readonly Enabled: "ENABLED";
|
|
611
|
+
readonly Enabling: "ENABLING";
|
|
612
|
+
readonly UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
613
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
614
|
+
};
|
|
615
|
+
export type ResolverAutodefinedReverseStatus =
|
|
616
|
+
(typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
|
|
576
617
|
export interface ResolverConfig {
|
|
577
618
|
Id?: string;
|
|
578
619
|
ResourceId?: string;
|
|
@@ -585,14 +626,16 @@ export interface GetResolverConfigResponse {
|
|
|
585
626
|
export interface GetResolverDnssecConfigRequest {
|
|
586
627
|
ResourceId: string | undefined;
|
|
587
628
|
}
|
|
588
|
-
export declare
|
|
589
|
-
Disabled
|
|
590
|
-
Disabling
|
|
591
|
-
Enabled
|
|
592
|
-
Enabling
|
|
593
|
-
UpdateToUseLocalResourceSetting
|
|
594
|
-
UseLocalResourceSetting
|
|
595
|
-
}
|
|
629
|
+
export declare const ResolverDNSSECValidationStatus: {
|
|
630
|
+
readonly Disabled: "DISABLED";
|
|
631
|
+
readonly Disabling: "DISABLING";
|
|
632
|
+
readonly Enabled: "ENABLED";
|
|
633
|
+
readonly Enabling: "ENABLING";
|
|
634
|
+
readonly UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
635
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
636
|
+
};
|
|
637
|
+
export type ResolverDNSSECValidationStatus =
|
|
638
|
+
(typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
|
|
596
639
|
export interface ResolverDnssecConfig {
|
|
597
640
|
Id?: string;
|
|
598
641
|
OwnerId?: string;
|
|
@@ -687,19 +730,21 @@ export declare class InvalidTagException extends __BaseException {
|
|
|
687
730
|
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
688
731
|
);
|
|
689
732
|
}
|
|
690
|
-
export declare
|
|
691
|
-
Attached
|
|
692
|
-
Attaching
|
|
693
|
-
Creating
|
|
694
|
-
DeleteFailedFasExpired
|
|
695
|
-
Deleting
|
|
696
|
-
Detaching
|
|
697
|
-
FailedCreation
|
|
698
|
-
FailedResourceGone
|
|
699
|
-
RemapAttaching
|
|
700
|
-
RemapDetaching
|
|
701
|
-
Updating
|
|
702
|
-
}
|
|
733
|
+
export declare const IpAddressStatus: {
|
|
734
|
+
readonly Attached: "ATTACHED";
|
|
735
|
+
readonly Attaching: "ATTACHING";
|
|
736
|
+
readonly Creating: "CREATING";
|
|
737
|
+
readonly DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED";
|
|
738
|
+
readonly Deleting: "DELETING";
|
|
739
|
+
readonly Detaching: "DETACHING";
|
|
740
|
+
readonly FailedCreation: "FAILED_CREATION";
|
|
741
|
+
readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
|
|
742
|
+
readonly RemapAttaching: "REMAP_ATTACHING";
|
|
743
|
+
readonly RemapDetaching: "REMAP_DETACHING";
|
|
744
|
+
readonly Updating: "UPDATING";
|
|
745
|
+
};
|
|
746
|
+
export type IpAddressStatus =
|
|
747
|
+
(typeof IpAddressStatus)[keyof typeof IpAddressStatus];
|
|
703
748
|
export interface IpAddressResponse {
|
|
704
749
|
IpId?: string;
|
|
705
750
|
SubnetId?: string;
|
|
@@ -803,10 +848,11 @@ export interface ListResolverEndpointsResponse {
|
|
|
803
848
|
MaxResults?: number;
|
|
804
849
|
ResolverEndpoints?: ResolverEndpoint[];
|
|
805
850
|
}
|
|
806
|
-
export declare
|
|
807
|
-
Ascending
|
|
808
|
-
Descending
|
|
809
|
-
}
|
|
851
|
+
export declare const SortOrder: {
|
|
852
|
+
readonly Ascending: "ASCENDING";
|
|
853
|
+
readonly Descending: "DESCENDING";
|
|
854
|
+
};
|
|
855
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
810
856
|
export interface ListResolverQueryLogConfigAssociationsRequest {
|
|
811
857
|
MaxResults?: number;
|
|
812
858
|
NextToken?: string;
|
|
@@ -946,11 +992,12 @@ export interface UpdateResolverConfigRequest {
|
|
|
946
992
|
export interface UpdateResolverConfigResponse {
|
|
947
993
|
ResolverConfig?: ResolverConfig;
|
|
948
994
|
}
|
|
949
|
-
export declare
|
|
950
|
-
DISABLE
|
|
951
|
-
ENABLE
|
|
952
|
-
USE_LOCAL_RESOURCE_SETTING
|
|
953
|
-
}
|
|
995
|
+
export declare const Validation: {
|
|
996
|
+
readonly DISABLE: "DISABLE";
|
|
997
|
+
readonly ENABLE: "ENABLE";
|
|
998
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
999
|
+
};
|
|
1000
|
+
export type Validation = (typeof Validation)[keyof typeof Validation];
|
|
954
1001
|
export interface UpdateResolverDnssecConfigRequest {
|
|
955
1002
|
ResourceId: string | undefined;
|
|
956
1003
|
Validation: Validation | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53resolver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53resolver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.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-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|