@aws-sdk/client-shield 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/ShieldServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +179 -3
- package/dist-cjs/protocols/Aws_json1_1.js +365 -1296
- package/dist-es/index.js +1 -0
- package/dist-es/models/ShieldServiceException.js +12 -0
- package/dist-es/models/models_0.js +164 -1
- package/dist-es/protocols/Aws_json1_1.js +796 -1415
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ShieldServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +93 -53
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ShieldServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -53
- 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 Shield service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ShieldServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,19 +1,26 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ShieldServiceException as __BaseException } from "./ShieldServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Exception that indicates the specified <code>AttackId</code> does not exist, or the requester does not have the appropriate permissions to access the <code>AttackId</code>.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
/**
|
|
11
15
|
* <p>In order to grant the necessary access to the Shield Response Team (SRT) the user submitting the request must have the <code>iam:PassRole</code> permission. This error indicates the user did not have the appropriate permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_passrole.html">Granting a User Permissions to Pass a Role to an Amazon Web Services Service</a>. </p>
|
|
12
16
|
*/
|
|
13
|
-
export
|
|
14
|
-
name: "AccessDeniedForDependencyException";
|
|
15
|
-
$fault: "client";
|
|
16
|
-
|
|
17
|
+
export declare class AccessDeniedForDependencyException extends __BaseException {
|
|
18
|
+
readonly name: "AccessDeniedForDependencyException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedForDependencyException, __BaseException>);
|
|
17
24
|
}
|
|
18
25
|
/**
|
|
19
26
|
* <p>Specifies that Shield Advanced should configure its WAF rules with the WAF <code>Block</code> action. </p>
|
|
@@ -116,18 +123,24 @@ export declare namespace AssociateDRTLogBucketResponse {
|
|
|
116
123
|
/**
|
|
117
124
|
* <p>Exception that indicates that a problem occurred with the service infrastructure. You can retry the request.</p>
|
|
118
125
|
*/
|
|
119
|
-
export
|
|
120
|
-
name: "InternalErrorException";
|
|
121
|
-
$fault: "server";
|
|
122
|
-
|
|
126
|
+
export declare class InternalErrorException extends __BaseException {
|
|
127
|
+
readonly name: "InternalErrorException";
|
|
128
|
+
readonly $fault: "server";
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
constructor(opts: __ExceptionOptionType<InternalErrorException, __BaseException>);
|
|
123
133
|
}
|
|
124
134
|
/**
|
|
125
135
|
* <p>Exception that indicates that the operation would not cause any change to occur.</p>
|
|
126
136
|
*/
|
|
127
|
-
export
|
|
128
|
-
name: "InvalidOperationException";
|
|
129
|
-
$fault: "client";
|
|
130
|
-
|
|
137
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
138
|
+
readonly name: "InvalidOperationException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
131
144
|
}
|
|
132
145
|
/**
|
|
133
146
|
* <p>Provides information about a particular parameter passed inside a request that resulted in an exception.</p>
|
|
@@ -155,10 +168,9 @@ export declare enum ValidationExceptionReason {
|
|
|
155
168
|
/**
|
|
156
169
|
* <p>Exception that indicates that the parameters passed to the API are invalid. If available, this exception includes details in additional properties. </p>
|
|
157
170
|
*/
|
|
158
|
-
export
|
|
159
|
-
name: "InvalidParameterException";
|
|
160
|
-
$fault: "client";
|
|
161
|
-
message?: string;
|
|
171
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
172
|
+
readonly name: "InvalidParameterException";
|
|
173
|
+
readonly $fault: "client";
|
|
162
174
|
/**
|
|
163
175
|
* <p>Additional information about the exception.</p>
|
|
164
176
|
*/
|
|
@@ -167,14 +179,17 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
167
179
|
* <p>Fields that caused the exception.</p>
|
|
168
180
|
*/
|
|
169
181
|
fields?: ValidationExceptionField[];
|
|
182
|
+
/**
|
|
183
|
+
* @internal
|
|
184
|
+
*/
|
|
185
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
170
186
|
}
|
|
171
187
|
/**
|
|
172
188
|
* <p>Exception that indicates that the operation would exceed a limit.</p>
|
|
173
189
|
*/
|
|
174
|
-
export
|
|
175
|
-
name: "LimitsExceededException";
|
|
176
|
-
$fault: "client";
|
|
177
|
-
message?: string;
|
|
190
|
+
export declare class LimitsExceededException extends __BaseException {
|
|
191
|
+
readonly name: "LimitsExceededException";
|
|
192
|
+
readonly $fault: "client";
|
|
178
193
|
/**
|
|
179
194
|
* <p>The type of limit that would be exceeded.</p>
|
|
180
195
|
*/
|
|
@@ -183,35 +198,48 @@ export interface LimitsExceededException extends __SmithyException, $MetadataBea
|
|
|
183
198
|
* <p>The threshold that would be exceeded.</p>
|
|
184
199
|
*/
|
|
185
200
|
Limit?: number;
|
|
201
|
+
/**
|
|
202
|
+
* @internal
|
|
203
|
+
*/
|
|
204
|
+
constructor(opts: __ExceptionOptionType<LimitsExceededException, __BaseException>);
|
|
186
205
|
}
|
|
187
206
|
/**
|
|
188
207
|
* <p>The ARN of the role that you specifed does not exist.</p>
|
|
189
208
|
*/
|
|
190
|
-
export
|
|
191
|
-
name: "NoAssociatedRoleException";
|
|
192
|
-
$fault: "client";
|
|
193
|
-
|
|
209
|
+
export declare class NoAssociatedRoleException extends __BaseException {
|
|
210
|
+
readonly name: "NoAssociatedRoleException";
|
|
211
|
+
readonly $fault: "client";
|
|
212
|
+
/**
|
|
213
|
+
* @internal
|
|
214
|
+
*/
|
|
215
|
+
constructor(opts: __ExceptionOptionType<NoAssociatedRoleException, __BaseException>);
|
|
194
216
|
}
|
|
195
217
|
/**
|
|
196
218
|
* <p>Exception that indicates that the resource state has been modified by another
|
|
197
219
|
* client. Retrieve the resource and then retry your request.</p>
|
|
198
220
|
*/
|
|
199
|
-
export
|
|
200
|
-
name: "OptimisticLockException";
|
|
201
|
-
$fault: "client";
|
|
202
|
-
|
|
221
|
+
export declare class OptimisticLockException extends __BaseException {
|
|
222
|
+
readonly name: "OptimisticLockException";
|
|
223
|
+
readonly $fault: "client";
|
|
224
|
+
/**
|
|
225
|
+
* @internal
|
|
226
|
+
*/
|
|
227
|
+
constructor(opts: __ExceptionOptionType<OptimisticLockException, __BaseException>);
|
|
203
228
|
}
|
|
204
229
|
/**
|
|
205
230
|
* <p>Exception indicating the specified resource does not exist. If available, this exception includes details in additional properties. </p>
|
|
206
231
|
*/
|
|
207
|
-
export
|
|
208
|
-
name: "ResourceNotFoundException";
|
|
209
|
-
$fault: "client";
|
|
210
|
-
message?: string;
|
|
232
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
233
|
+
readonly name: "ResourceNotFoundException";
|
|
234
|
+
readonly $fault: "client";
|
|
211
235
|
/**
|
|
212
236
|
* <p>Type of resource.</p>
|
|
213
237
|
*/
|
|
214
238
|
resourceType?: string;
|
|
239
|
+
/**
|
|
240
|
+
* @internal
|
|
241
|
+
*/
|
|
242
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
215
243
|
}
|
|
216
244
|
export interface AssociateDRTRoleRequest {
|
|
217
245
|
/**
|
|
@@ -261,10 +289,13 @@ export declare namespace AssociateHealthCheckResponse {
|
|
|
261
289
|
/**
|
|
262
290
|
* <p>Exception that indicates that the resource is invalid. You might not have access to the resource, or the resource might not exist.</p>
|
|
263
291
|
*/
|
|
264
|
-
export
|
|
265
|
-
name: "InvalidResourceException";
|
|
266
|
-
$fault: "client";
|
|
267
|
-
|
|
292
|
+
export declare class InvalidResourceException extends __BaseException {
|
|
293
|
+
readonly name: "InvalidResourceException";
|
|
294
|
+
readonly $fault: "client";
|
|
295
|
+
/**
|
|
296
|
+
* @internal
|
|
297
|
+
*/
|
|
298
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceException, __BaseException>);
|
|
268
299
|
}
|
|
269
300
|
/**
|
|
270
301
|
* <p>Contact information that the SRT can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support.</p>
|
|
@@ -788,14 +819,17 @@ export declare namespace CreateProtectionResponse {
|
|
|
788
819
|
/**
|
|
789
820
|
* <p>Exception indicating the specified resource already exists. If available, this exception includes details in additional properties. </p>
|
|
790
821
|
*/
|
|
791
|
-
export
|
|
792
|
-
name: "ResourceAlreadyExistsException";
|
|
793
|
-
$fault: "client";
|
|
794
|
-
message?: string;
|
|
822
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
823
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
824
|
+
readonly $fault: "client";
|
|
795
825
|
/**
|
|
796
826
|
* <p>The type of resource that already exists.</p>
|
|
797
827
|
*/
|
|
798
828
|
resourceType?: string;
|
|
829
|
+
/**
|
|
830
|
+
* @internal
|
|
831
|
+
*/
|
|
832
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
799
833
|
}
|
|
800
834
|
export declare enum ProtectionGroupAggregation {
|
|
801
835
|
MAX = "MAX",
|
|
@@ -943,10 +977,13 @@ export declare namespace DeleteSubscriptionResponse {
|
|
|
943
977
|
/**
|
|
944
978
|
* <p>You are trying to update a subscription that has not yet completed the 1-year commitment. You can change the <code>AutoRenew</code> parameter during the last 30 days of your subscription. This exception indicates that you are attempting to change <code>AutoRenew</code> prior to that period.</p>
|
|
945
979
|
*/
|
|
946
|
-
export
|
|
947
|
-
name: "LockedSubscriptionException";
|
|
948
|
-
$fault: "client";
|
|
949
|
-
|
|
980
|
+
export declare class LockedSubscriptionException extends __BaseException {
|
|
981
|
+
readonly name: "LockedSubscriptionException";
|
|
982
|
+
readonly $fault: "client";
|
|
983
|
+
/**
|
|
984
|
+
* @internal
|
|
985
|
+
*/
|
|
986
|
+
constructor(opts: __ExceptionOptionType<LockedSubscriptionException, __BaseException>);
|
|
950
987
|
}
|
|
951
988
|
export interface DescribeAttackRequest {
|
|
952
989
|
/**
|
|
@@ -1596,10 +1633,13 @@ export declare namespace ListAttacksResponse {
|
|
|
1596
1633
|
/**
|
|
1597
1634
|
* <p>Exception that indicates that the <code>NextToken</code> specified in the request is invalid. Submit the request using the <code>NextToken</code> value that was returned in the prior response.</p>
|
|
1598
1635
|
*/
|
|
1599
|
-
export
|
|
1600
|
-
name: "InvalidPaginationTokenException";
|
|
1601
|
-
$fault: "client";
|
|
1602
|
-
|
|
1636
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
1637
|
+
readonly name: "InvalidPaginationTokenException";
|
|
1638
|
+
readonly $fault: "client";
|
|
1639
|
+
/**
|
|
1640
|
+
* @internal
|
|
1641
|
+
*/
|
|
1642
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
1603
1643
|
}
|
|
1604
1644
|
export interface ListProtectionGroupsRequest {
|
|
1605
1645
|
/**
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ShieldServiceException as __BaseException } from "./ShieldServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
export
|
|
10
|
-
name: "AccessDeniedForDependencyException";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
|
|
11
|
+
export declare class AccessDeniedForDependencyException extends __BaseException {
|
|
12
|
+
readonly name: "AccessDeniedForDependencyException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedForDependencyException, __BaseException>);
|
|
13
16
|
}
|
|
14
17
|
|
|
15
18
|
export interface BlockAction {
|
|
@@ -66,16 +69,18 @@ export declare namespace AssociateDRTLogBucketResponse {
|
|
|
66
69
|
const filterSensitiveLog: (obj: AssociateDRTLogBucketResponse) => any;
|
|
67
70
|
}
|
|
68
71
|
|
|
69
|
-
export
|
|
70
|
-
name: "InternalErrorException";
|
|
71
|
-
$fault: "server";
|
|
72
|
-
|
|
72
|
+
export declare class InternalErrorException extends __BaseException {
|
|
73
|
+
readonly name: "InternalErrorException";
|
|
74
|
+
readonly $fault: "server";
|
|
75
|
+
|
|
76
|
+
constructor(opts: __ExceptionOptionType<InternalErrorException, __BaseException>);
|
|
73
77
|
}
|
|
74
78
|
|
|
75
|
-
export
|
|
76
|
-
name: "InvalidOperationException";
|
|
77
|
-
$fault: "client";
|
|
78
|
-
|
|
79
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
80
|
+
readonly name: "InvalidOperationException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
|
|
83
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
79
84
|
}
|
|
80
85
|
|
|
81
86
|
export interface ValidationExceptionField {
|
|
@@ -93,44 +98,49 @@ export declare enum ValidationExceptionReason {
|
|
|
93
98
|
OTHER = "OTHER"
|
|
94
99
|
}
|
|
95
100
|
|
|
96
|
-
export
|
|
97
|
-
name: "InvalidParameterException";
|
|
98
|
-
$fault: "client";
|
|
99
|
-
message?: string;
|
|
101
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
102
|
+
readonly name: "InvalidParameterException";
|
|
103
|
+
readonly $fault: "client";
|
|
100
104
|
|
|
101
105
|
reason?: ValidationExceptionReason | string;
|
|
102
106
|
|
|
103
107
|
fields?: ValidationExceptionField[];
|
|
108
|
+
|
|
109
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
104
110
|
}
|
|
105
111
|
|
|
106
|
-
export
|
|
107
|
-
name: "LimitsExceededException";
|
|
108
|
-
$fault: "client";
|
|
109
|
-
message?: string;
|
|
112
|
+
export declare class LimitsExceededException extends __BaseException {
|
|
113
|
+
readonly name: "LimitsExceededException";
|
|
114
|
+
readonly $fault: "client";
|
|
110
115
|
|
|
111
116
|
Type?: string;
|
|
112
117
|
|
|
113
118
|
Limit?: number;
|
|
119
|
+
|
|
120
|
+
constructor(opts: __ExceptionOptionType<LimitsExceededException, __BaseException>);
|
|
114
121
|
}
|
|
115
122
|
|
|
116
|
-
export
|
|
117
|
-
name: "NoAssociatedRoleException";
|
|
118
|
-
$fault: "client";
|
|
119
|
-
|
|
123
|
+
export declare class NoAssociatedRoleException extends __BaseException {
|
|
124
|
+
readonly name: "NoAssociatedRoleException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
|
|
127
|
+
constructor(opts: __ExceptionOptionType<NoAssociatedRoleException, __BaseException>);
|
|
120
128
|
}
|
|
121
129
|
|
|
122
|
-
export
|
|
123
|
-
name: "OptimisticLockException";
|
|
124
|
-
$fault: "client";
|
|
125
|
-
|
|
130
|
+
export declare class OptimisticLockException extends __BaseException {
|
|
131
|
+
readonly name: "OptimisticLockException";
|
|
132
|
+
readonly $fault: "client";
|
|
133
|
+
|
|
134
|
+
constructor(opts: __ExceptionOptionType<OptimisticLockException, __BaseException>);
|
|
126
135
|
}
|
|
127
136
|
|
|
128
|
-
export
|
|
129
|
-
name: "ResourceNotFoundException";
|
|
130
|
-
$fault: "client";
|
|
131
|
-
message?: string;
|
|
137
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
138
|
+
readonly name: "ResourceNotFoundException";
|
|
139
|
+
readonly $fault: "client";
|
|
132
140
|
|
|
133
141
|
resourceType?: string;
|
|
142
|
+
|
|
143
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
134
144
|
}
|
|
135
145
|
export interface AssociateDRTRoleRequest {
|
|
136
146
|
|
|
@@ -163,10 +173,11 @@ export declare namespace AssociateHealthCheckResponse {
|
|
|
163
173
|
const filterSensitiveLog: (obj: AssociateHealthCheckResponse) => any;
|
|
164
174
|
}
|
|
165
175
|
|
|
166
|
-
export
|
|
167
|
-
name: "InvalidResourceException";
|
|
168
|
-
$fault: "client";
|
|
169
|
-
|
|
176
|
+
export declare class InvalidResourceException extends __BaseException {
|
|
177
|
+
readonly name: "InvalidResourceException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
|
|
180
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceException, __BaseException>);
|
|
170
181
|
}
|
|
171
182
|
|
|
172
183
|
export interface EmergencyContact {
|
|
@@ -419,12 +430,13 @@ export declare namespace CreateProtectionResponse {
|
|
|
419
430
|
const filterSensitiveLog: (obj: CreateProtectionResponse) => any;
|
|
420
431
|
}
|
|
421
432
|
|
|
422
|
-
export
|
|
423
|
-
name: "ResourceAlreadyExistsException";
|
|
424
|
-
$fault: "client";
|
|
425
|
-
message?: string;
|
|
433
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
434
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
435
|
+
readonly $fault: "client";
|
|
426
436
|
|
|
427
437
|
resourceType?: string;
|
|
438
|
+
|
|
439
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
428
440
|
}
|
|
429
441
|
export declare enum ProtectionGroupAggregation {
|
|
430
442
|
MAX = "MAX",
|
|
@@ -521,10 +533,11 @@ export declare namespace DeleteSubscriptionResponse {
|
|
|
521
533
|
const filterSensitiveLog: (obj: DeleteSubscriptionResponse) => any;
|
|
522
534
|
}
|
|
523
535
|
|
|
524
|
-
export
|
|
525
|
-
name: "LockedSubscriptionException";
|
|
526
|
-
$fault: "client";
|
|
527
|
-
|
|
536
|
+
export declare class LockedSubscriptionException extends __BaseException {
|
|
537
|
+
readonly name: "LockedSubscriptionException";
|
|
538
|
+
readonly $fault: "client";
|
|
539
|
+
|
|
540
|
+
constructor(opts: __ExceptionOptionType<LockedSubscriptionException, __BaseException>);
|
|
528
541
|
}
|
|
529
542
|
export interface DescribeAttackRequest {
|
|
530
543
|
|
|
@@ -914,10 +927,11 @@ export declare namespace ListAttacksResponse {
|
|
|
914
927
|
const filterSensitiveLog: (obj: ListAttacksResponse) => any;
|
|
915
928
|
}
|
|
916
929
|
|
|
917
|
-
export
|
|
918
|
-
name: "InvalidPaginationTokenException";
|
|
919
|
-
$fault: "client";
|
|
920
|
-
|
|
930
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
931
|
+
readonly name: "InvalidPaginationTokenException";
|
|
932
|
+
readonly $fault: "client";
|
|
933
|
+
|
|
934
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
921
935
|
}
|
|
922
936
|
export interface ListProtectionGroupsRequest {
|
|
923
937
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-shield",
|
|
3
3
|
"description": "AWS SDK for JavaScript Shield 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"
|