@aws-sdk/client-route53resolver 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/Route53ResolverServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +235 -4
- package/dist-cjs/protocols/Aws_json1_1.js +683 -2809
- package/dist-es/index.js +1 -0
- package/dist-es/models/Route53ResolverServiceException.js +12 -0
- package/dist-es/models/models_0.js +216 -1
- package/dist-es/protocols/Aws_json1_1.js +1535 -3030
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/Route53ResolverServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -49
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/Route53ResolverServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +82 -49
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Route53Resolver service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class Route53ResolverServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export declare enum Action {
|
|
11
16
|
ALERT = "ALERT",
|
|
@@ -171,58 +176,82 @@ export declare namespace AssociateFirewallRuleGroupResponse {
|
|
|
171
176
|
/**
|
|
172
177
|
* <p></p>
|
|
173
178
|
*/
|
|
174
|
-
export
|
|
175
|
-
name: "ConflictException";
|
|
176
|
-
$fault: "client";
|
|
179
|
+
export declare class ConflictException extends __BaseException {
|
|
180
|
+
readonly name: "ConflictException";
|
|
181
|
+
readonly $fault: "client";
|
|
177
182
|
Message?: string;
|
|
183
|
+
/**
|
|
184
|
+
* @internal
|
|
185
|
+
*/
|
|
186
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
178
187
|
}
|
|
179
188
|
/**
|
|
180
189
|
* <p>We encountered an unknown error. Try again in a few minutes.</p>
|
|
181
190
|
*/
|
|
182
|
-
export
|
|
183
|
-
name: "InternalServiceErrorException";
|
|
184
|
-
$fault: "client";
|
|
191
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
192
|
+
readonly name: "InternalServiceErrorException";
|
|
193
|
+
readonly $fault: "client";
|
|
185
194
|
Message?: string;
|
|
195
|
+
/**
|
|
196
|
+
* @internal
|
|
197
|
+
*/
|
|
198
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
186
199
|
}
|
|
187
200
|
/**
|
|
188
201
|
* <p>The request caused one or more limits to be exceeded.</p>
|
|
189
202
|
*/
|
|
190
|
-
export
|
|
191
|
-
name: "LimitExceededException";
|
|
192
|
-
$fault: "client";
|
|
203
|
+
export declare class LimitExceededException extends __BaseException {
|
|
204
|
+
readonly name: "LimitExceededException";
|
|
205
|
+
readonly $fault: "client";
|
|
193
206
|
Message?: string;
|
|
194
207
|
/**
|
|
195
208
|
* <p>For a <code>LimitExceededException</code> error, the type of resource that exceeded the current limit.</p>
|
|
196
209
|
*/
|
|
197
210
|
ResourceType?: string;
|
|
211
|
+
/**
|
|
212
|
+
* @internal
|
|
213
|
+
*/
|
|
214
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
198
215
|
}
|
|
199
216
|
/**
|
|
200
217
|
* <p>The specified resource doesn't exist.</p>
|
|
201
218
|
*/
|
|
202
|
-
export
|
|
203
|
-
name: "ResourceNotFoundException";
|
|
204
|
-
$fault: "client";
|
|
219
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
220
|
+
readonly name: "ResourceNotFoundException";
|
|
221
|
+
readonly $fault: "client";
|
|
205
222
|
Message?: string;
|
|
206
223
|
/**
|
|
207
224
|
* <p>For a <code>ResourceNotFoundException</code> error, the type of resource that doesn't exist.</p>
|
|
208
225
|
*/
|
|
209
226
|
ResourceType?: string;
|
|
227
|
+
/**
|
|
228
|
+
* @internal
|
|
229
|
+
*/
|
|
230
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
210
231
|
}
|
|
211
232
|
/**
|
|
212
233
|
* <p>The request was throttled. Try again in a few minutes.</p>
|
|
213
234
|
*/
|
|
214
|
-
export
|
|
215
|
-
name: "ThrottlingException";
|
|
216
|
-
$fault: "client";
|
|
235
|
+
export declare class ThrottlingException extends __BaseException {
|
|
236
|
+
readonly name: "ThrottlingException";
|
|
237
|
+
readonly $fault: "client";
|
|
217
238
|
Message?: string;
|
|
239
|
+
/**
|
|
240
|
+
* @internal
|
|
241
|
+
*/
|
|
242
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
218
243
|
}
|
|
219
244
|
/**
|
|
220
245
|
* <p></p>
|
|
221
246
|
*/
|
|
222
|
-
export
|
|
223
|
-
name: "ValidationException";
|
|
224
|
-
$fault: "client";
|
|
247
|
+
export declare class ValidationException extends __BaseException {
|
|
248
|
+
readonly name: "ValidationException";
|
|
249
|
+
readonly $fault: "client";
|
|
225
250
|
Message?: string;
|
|
251
|
+
/**
|
|
252
|
+
* @internal
|
|
253
|
+
*/
|
|
254
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
226
255
|
}
|
|
227
256
|
/**
|
|
228
257
|
* <p>In an
|
|
@@ -422,34 +451,46 @@ export declare namespace AssociateResolverEndpointIpAddressResponse {
|
|
|
422
451
|
/**
|
|
423
452
|
* <p>One or more parameters in this request are not valid.</p>
|
|
424
453
|
*/
|
|
425
|
-
export
|
|
426
|
-
name: "InvalidParameterException";
|
|
427
|
-
$fault: "client";
|
|
454
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
455
|
+
readonly name: "InvalidParameterException";
|
|
456
|
+
readonly $fault: "client";
|
|
428
457
|
Message: string | undefined;
|
|
429
458
|
/**
|
|
430
459
|
* <p>For an <code>InvalidParameterException</code> error, the name of the parameter that's invalid.</p>
|
|
431
460
|
*/
|
|
432
461
|
FieldName?: string;
|
|
462
|
+
/**
|
|
463
|
+
* @internal
|
|
464
|
+
*/
|
|
465
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
433
466
|
}
|
|
434
467
|
/**
|
|
435
468
|
* <p>The request is invalid.</p>
|
|
436
469
|
*/
|
|
437
|
-
export
|
|
438
|
-
name: "InvalidRequestException";
|
|
439
|
-
$fault: "client";
|
|
470
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
471
|
+
readonly name: "InvalidRequestException";
|
|
472
|
+
readonly $fault: "client";
|
|
440
473
|
Message?: string;
|
|
474
|
+
/**
|
|
475
|
+
* @internal
|
|
476
|
+
*/
|
|
477
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
441
478
|
}
|
|
442
479
|
/**
|
|
443
480
|
* <p>The resource that you tried to create already exists.</p>
|
|
444
481
|
*/
|
|
445
|
-
export
|
|
446
|
-
name: "ResourceExistsException";
|
|
447
|
-
$fault: "client";
|
|
482
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
483
|
+
readonly name: "ResourceExistsException";
|
|
484
|
+
readonly $fault: "client";
|
|
448
485
|
Message?: string;
|
|
449
486
|
/**
|
|
450
487
|
* <p>For a <code>ResourceExistsException</code> error, the type of resource that the error applies to.</p>
|
|
451
488
|
*/
|
|
452
489
|
ResourceType?: string;
|
|
490
|
+
/**
|
|
491
|
+
* @internal
|
|
492
|
+
*/
|
|
493
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
453
494
|
}
|
|
454
495
|
export interface AssociateResolverQueryLogConfigRequest {
|
|
455
496
|
/**
|
|
@@ -657,14 +698,18 @@ export declare namespace AssociateResolverRuleResponse {
|
|
|
657
698
|
/**
|
|
658
699
|
* <p>The specified resource isn't available.</p>
|
|
659
700
|
*/
|
|
660
|
-
export
|
|
661
|
-
name: "ResourceUnavailableException";
|
|
662
|
-
$fault: "client";
|
|
701
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
702
|
+
readonly name: "ResourceUnavailableException";
|
|
703
|
+
readonly $fault: "client";
|
|
663
704
|
Message?: string;
|
|
664
705
|
/**
|
|
665
706
|
* <p>For a <code>ResourceUnavailableException</code> error, the type of resource that isn't available.</p>
|
|
666
707
|
*/
|
|
667
708
|
ResourceType?: string;
|
|
709
|
+
/**
|
|
710
|
+
* @internal
|
|
711
|
+
*/
|
|
712
|
+
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
668
713
|
}
|
|
669
714
|
export declare enum AutodefinedReverseFlag {
|
|
670
715
|
DISABLE = "DISABLE",
|
|
@@ -1639,14 +1684,18 @@ export declare namespace DeleteResolverRuleResponse {
|
|
|
1639
1684
|
/**
|
|
1640
1685
|
* <p>The resource that you tried to update or delete is currently in use.</p>
|
|
1641
1686
|
*/
|
|
1642
|
-
export
|
|
1643
|
-
name: "ResourceInUseException";
|
|
1644
|
-
$fault: "client";
|
|
1687
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
1688
|
+
readonly name: "ResourceInUseException";
|
|
1689
|
+
readonly $fault: "client";
|
|
1645
1690
|
Message?: string;
|
|
1646
1691
|
/**
|
|
1647
1692
|
* <p>For a <code>ResourceInUseException</code> error, the type of resource that is currently in use.</p>
|
|
1648
1693
|
*/
|
|
1649
1694
|
ResourceType?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* @internal
|
|
1697
|
+
*/
|
|
1698
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1650
1699
|
}
|
|
1651
1700
|
export interface DisassociateFirewallRuleGroupRequest {
|
|
1652
1701
|
/**
|
|
@@ -2533,10 +2582,14 @@ export declare namespace GetResolverQueryLogConfigPolicyResponse {
|
|
|
2533
2582
|
/**
|
|
2534
2583
|
* <p>The specified resource doesn't exist.</p>
|
|
2535
2584
|
*/
|
|
2536
|
-
export
|
|
2537
|
-
name: "UnknownResourceException";
|
|
2538
|
-
$fault: "client";
|
|
2585
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
2586
|
+
readonly name: "UnknownResourceException";
|
|
2587
|
+
readonly $fault: "client";
|
|
2539
2588
|
Message?: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* @internal
|
|
2591
|
+
*/
|
|
2592
|
+
constructor(opts: __ExceptionOptionType<UnknownResourceException, __BaseException>);
|
|
2540
2593
|
}
|
|
2541
2594
|
export interface GetResolverRuleRequest {
|
|
2542
2595
|
/**
|
|
@@ -2660,26 +2713,38 @@ export declare namespace ImportFirewallDomainsResponse {
|
|
|
2660
2713
|
/**
|
|
2661
2714
|
* <p>The value that you specified for <code>NextToken</code> in a <code>List</code> request isn't valid.</p>
|
|
2662
2715
|
*/
|
|
2663
|
-
export
|
|
2664
|
-
name: "InvalidNextTokenException";
|
|
2665
|
-
$fault: "client";
|
|
2716
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2717
|
+
readonly name: "InvalidNextTokenException";
|
|
2718
|
+
readonly $fault: "client";
|
|
2666
2719
|
Message?: string;
|
|
2720
|
+
/**
|
|
2721
|
+
* @internal
|
|
2722
|
+
*/
|
|
2723
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2667
2724
|
}
|
|
2668
2725
|
/**
|
|
2669
2726
|
* <p>The specified Resolver rule policy is invalid.</p>
|
|
2670
2727
|
*/
|
|
2671
|
-
export
|
|
2672
|
-
name: "InvalidPolicyDocument";
|
|
2673
|
-
$fault: "client";
|
|
2728
|
+
export declare class InvalidPolicyDocument extends __BaseException {
|
|
2729
|
+
readonly name: "InvalidPolicyDocument";
|
|
2730
|
+
readonly $fault: "client";
|
|
2674
2731
|
Message?: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* @internal
|
|
2734
|
+
*/
|
|
2735
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyDocument, __BaseException>);
|
|
2675
2736
|
}
|
|
2676
2737
|
/**
|
|
2677
2738
|
* <p>The specified tag is invalid.</p>
|
|
2678
2739
|
*/
|
|
2679
|
-
export
|
|
2680
|
-
name: "InvalidTagException";
|
|
2681
|
-
$fault: "client";
|
|
2740
|
+
export declare class InvalidTagException extends __BaseException {
|
|
2741
|
+
readonly name: "InvalidTagException";
|
|
2742
|
+
readonly $fault: "client";
|
|
2682
2743
|
Message?: string;
|
|
2744
|
+
/**
|
|
2745
|
+
* @internal
|
|
2746
|
+
*/
|
|
2747
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
2683
2748
|
}
|
|
2684
2749
|
export declare enum IpAddressStatus {
|
|
2685
2750
|
Attached = "ATTACHED",
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class Route53ResolverServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export declare enum Action {
|
|
9
12
|
ALERT = "ALERT",
|
|
@@ -92,44 +95,56 @@ export declare namespace AssociateFirewallRuleGroupResponse {
|
|
|
92
95
|
const filterSensitiveLog: (obj: AssociateFirewallRuleGroupResponse) => any;
|
|
93
96
|
}
|
|
94
97
|
|
|
95
|
-
export
|
|
96
|
-
name: "ConflictException";
|
|
97
|
-
$fault: "client";
|
|
98
|
+
export declare class ConflictException extends __BaseException {
|
|
99
|
+
readonly name: "ConflictException";
|
|
100
|
+
readonly $fault: "client";
|
|
98
101
|
Message?: string;
|
|
102
|
+
|
|
103
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
99
104
|
}
|
|
100
105
|
|
|
101
|
-
export
|
|
102
|
-
name: "InternalServiceErrorException";
|
|
103
|
-
$fault: "client";
|
|
106
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
107
|
+
readonly name: "InternalServiceErrorException";
|
|
108
|
+
readonly $fault: "client";
|
|
104
109
|
Message?: string;
|
|
110
|
+
|
|
111
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
105
112
|
}
|
|
106
113
|
|
|
107
|
-
export
|
|
108
|
-
name: "LimitExceededException";
|
|
109
|
-
$fault: "client";
|
|
114
|
+
export declare class LimitExceededException extends __BaseException {
|
|
115
|
+
readonly name: "LimitExceededException";
|
|
116
|
+
readonly $fault: "client";
|
|
110
117
|
Message?: string;
|
|
111
118
|
|
|
112
119
|
ResourceType?: string;
|
|
120
|
+
|
|
121
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
113
122
|
}
|
|
114
123
|
|
|
115
|
-
export
|
|
116
|
-
name: "ResourceNotFoundException";
|
|
117
|
-
$fault: "client";
|
|
124
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
125
|
+
readonly name: "ResourceNotFoundException";
|
|
126
|
+
readonly $fault: "client";
|
|
118
127
|
Message?: string;
|
|
119
128
|
|
|
120
129
|
ResourceType?: string;
|
|
130
|
+
|
|
131
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
121
132
|
}
|
|
122
133
|
|
|
123
|
-
export
|
|
124
|
-
name: "ThrottlingException";
|
|
125
|
-
$fault: "client";
|
|
134
|
+
export declare class ThrottlingException extends __BaseException {
|
|
135
|
+
readonly name: "ThrottlingException";
|
|
136
|
+
readonly $fault: "client";
|
|
126
137
|
Message?: string;
|
|
138
|
+
|
|
139
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
127
140
|
}
|
|
128
141
|
|
|
129
|
-
export
|
|
130
|
-
name: "ValidationException";
|
|
131
|
-
$fault: "client";
|
|
142
|
+
export declare class ValidationException extends __BaseException {
|
|
143
|
+
readonly name: "ValidationException";
|
|
144
|
+
readonly $fault: "client";
|
|
132
145
|
Message?: string;
|
|
146
|
+
|
|
147
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
133
148
|
}
|
|
134
149
|
|
|
135
150
|
export interface IpAddressUpdate {
|
|
@@ -206,26 +221,32 @@ export declare namespace AssociateResolverEndpointIpAddressResponse {
|
|
|
206
221
|
const filterSensitiveLog: (obj: AssociateResolverEndpointIpAddressResponse) => any;
|
|
207
222
|
}
|
|
208
223
|
|
|
209
|
-
export
|
|
210
|
-
name: "InvalidParameterException";
|
|
211
|
-
$fault: "client";
|
|
224
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
225
|
+
readonly name: "InvalidParameterException";
|
|
226
|
+
readonly $fault: "client";
|
|
212
227
|
Message: string | undefined;
|
|
213
228
|
|
|
214
229
|
FieldName?: string;
|
|
230
|
+
|
|
231
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
215
232
|
}
|
|
216
233
|
|
|
217
|
-
export
|
|
218
|
-
name: "InvalidRequestException";
|
|
219
|
-
$fault: "client";
|
|
234
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
235
|
+
readonly name: "InvalidRequestException";
|
|
236
|
+
readonly $fault: "client";
|
|
220
237
|
Message?: string;
|
|
238
|
+
|
|
239
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
221
240
|
}
|
|
222
241
|
|
|
223
|
-
export
|
|
224
|
-
name: "ResourceExistsException";
|
|
225
|
-
$fault: "client";
|
|
242
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
243
|
+
readonly name: "ResourceExistsException";
|
|
244
|
+
readonly $fault: "client";
|
|
226
245
|
Message?: string;
|
|
227
246
|
|
|
228
247
|
ResourceType?: string;
|
|
248
|
+
|
|
249
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
229
250
|
}
|
|
230
251
|
export interface AssociateResolverQueryLogConfigRequest {
|
|
231
252
|
|
|
@@ -326,12 +347,14 @@ export declare namespace AssociateResolverRuleResponse {
|
|
|
326
347
|
const filterSensitiveLog: (obj: AssociateResolverRuleResponse) => any;
|
|
327
348
|
}
|
|
328
349
|
|
|
329
|
-
export
|
|
330
|
-
name: "ResourceUnavailableException";
|
|
331
|
-
$fault: "client";
|
|
350
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
351
|
+
readonly name: "ResourceUnavailableException";
|
|
352
|
+
readonly $fault: "client";
|
|
332
353
|
Message?: string;
|
|
333
354
|
|
|
334
355
|
ResourceType?: string;
|
|
356
|
+
|
|
357
|
+
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
335
358
|
}
|
|
336
359
|
export declare enum AutodefinedReverseFlag {
|
|
337
360
|
DISABLE = "DISABLE",
|
|
@@ -799,12 +822,14 @@ export declare namespace DeleteResolverRuleResponse {
|
|
|
799
822
|
const filterSensitiveLog: (obj: DeleteResolverRuleResponse) => any;
|
|
800
823
|
}
|
|
801
824
|
|
|
802
|
-
export
|
|
803
|
-
name: "ResourceInUseException";
|
|
804
|
-
$fault: "client";
|
|
825
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
826
|
+
readonly name: "ResourceInUseException";
|
|
827
|
+
readonly $fault: "client";
|
|
805
828
|
Message?: string;
|
|
806
829
|
|
|
807
830
|
ResourceType?: string;
|
|
831
|
+
|
|
832
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
808
833
|
}
|
|
809
834
|
export interface DisassociateFirewallRuleGroupRequest {
|
|
810
835
|
|
|
@@ -1169,10 +1194,12 @@ export declare namespace GetResolverQueryLogConfigPolicyResponse {
|
|
|
1169
1194
|
const filterSensitiveLog: (obj: GetResolverQueryLogConfigPolicyResponse) => any;
|
|
1170
1195
|
}
|
|
1171
1196
|
|
|
1172
|
-
export
|
|
1173
|
-
name: "UnknownResourceException";
|
|
1174
|
-
$fault: "client";
|
|
1197
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
1198
|
+
readonly name: "UnknownResourceException";
|
|
1199
|
+
readonly $fault: "client";
|
|
1175
1200
|
Message?: string;
|
|
1201
|
+
|
|
1202
|
+
constructor(opts: __ExceptionOptionType<UnknownResourceException, __BaseException>);
|
|
1176
1203
|
}
|
|
1177
1204
|
export interface GetResolverRuleRequest {
|
|
1178
1205
|
|
|
@@ -1249,22 +1276,28 @@ export declare namespace ImportFirewallDomainsResponse {
|
|
|
1249
1276
|
const filterSensitiveLog: (obj: ImportFirewallDomainsResponse) => any;
|
|
1250
1277
|
}
|
|
1251
1278
|
|
|
1252
|
-
export
|
|
1253
|
-
name: "InvalidNextTokenException";
|
|
1254
|
-
$fault: "client";
|
|
1279
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
1280
|
+
readonly name: "InvalidNextTokenException";
|
|
1281
|
+
readonly $fault: "client";
|
|
1255
1282
|
Message?: string;
|
|
1283
|
+
|
|
1284
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1256
1285
|
}
|
|
1257
1286
|
|
|
1258
|
-
export
|
|
1259
|
-
name: "InvalidPolicyDocument";
|
|
1260
|
-
$fault: "client";
|
|
1287
|
+
export declare class InvalidPolicyDocument extends __BaseException {
|
|
1288
|
+
readonly name: "InvalidPolicyDocument";
|
|
1289
|
+
readonly $fault: "client";
|
|
1261
1290
|
Message?: string;
|
|
1291
|
+
|
|
1292
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyDocument, __BaseException>);
|
|
1262
1293
|
}
|
|
1263
1294
|
|
|
1264
|
-
export
|
|
1265
|
-
name: "InvalidTagException";
|
|
1266
|
-
$fault: "client";
|
|
1295
|
+
export declare class InvalidTagException extends __BaseException {
|
|
1296
|
+
readonly name: "InvalidTagException";
|
|
1297
|
+
readonly $fault: "client";
|
|
1267
1298
|
Message?: string;
|
|
1299
|
+
|
|
1300
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
1268
1301
|
}
|
|
1269
1302
|
export declare enum IpAddressStatus {
|
|
1270
1303
|
Attached = "ATTACHED",
|
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.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
|
"tslib": "^2.3.0",
|