@aws-sdk/client-shield 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Shield.d.ts +0 -36
- package/dist-types/ts3.4/ShieldClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateDRTLogBucketCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AssociateDRTRoleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AssociateHealthCheckCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AssociateProactiveEngagementDetailsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateProtectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateProtectionGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteProtectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteProtectionGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSubscriptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAttackCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAttackStatisticsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeDRTAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeEmergencyContactSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeProtectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeProtectionGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSubscriptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableProactiveEngagementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateDRTLogBucketCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateDRTRoleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateHealthCheckCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableProactiveEngagementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSubscriptionStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAttacksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListProtectionGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListProtectionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResourcesInProtectionGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateEmergencyContactSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateProtectionGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSubscriptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ShieldServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -260
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ShieldServiceException as __BaseException } from "./ShieldServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export declare class AccessDeniedForDependencyException extends __BaseException {
|
|
14
11
|
readonly name: "AccessDeniedForDependencyException";
|
|
15
12
|
readonly $fault: "client";
|
|
16
|
-
|
|
17
13
|
constructor(
|
|
18
14
|
opts: __ExceptionOptionType<
|
|
19
15
|
AccessDeniedForDependencyException,
|
|
@@ -21,109 +17,82 @@ export declare class AccessDeniedForDependencyException extends __BaseException
|
|
|
21
17
|
>
|
|
22
18
|
);
|
|
23
19
|
}
|
|
24
|
-
|
|
25
20
|
export interface BlockAction {}
|
|
26
|
-
|
|
27
21
|
export interface CountAction {}
|
|
28
|
-
|
|
29
22
|
export interface ResponseAction {
|
|
30
23
|
Block?: BlockAction;
|
|
31
|
-
|
|
32
24
|
Count?: CountAction;
|
|
33
25
|
}
|
|
34
26
|
export declare enum ApplicationLayerAutomaticResponseStatus {
|
|
35
27
|
DISABLED = "DISABLED",
|
|
36
28
|
ENABLED = "ENABLED",
|
|
37
29
|
}
|
|
38
|
-
|
|
39
30
|
export interface ApplicationLayerAutomaticResponseConfiguration {
|
|
40
31
|
Status: ApplicationLayerAutomaticResponseStatus | string | undefined;
|
|
41
|
-
|
|
42
32
|
Action: ResponseAction | undefined;
|
|
43
33
|
}
|
|
44
34
|
export interface AssociateDRTLogBucketRequest {
|
|
45
35
|
LogBucket: string | undefined;
|
|
46
36
|
}
|
|
47
37
|
export interface AssociateDRTLogBucketResponse {}
|
|
48
|
-
|
|
49
38
|
export declare class InternalErrorException extends __BaseException {
|
|
50
39
|
readonly name: "InternalErrorException";
|
|
51
40
|
readonly $fault: "server";
|
|
52
|
-
|
|
53
41
|
constructor(
|
|
54
42
|
opts: __ExceptionOptionType<InternalErrorException, __BaseException>
|
|
55
43
|
);
|
|
56
44
|
}
|
|
57
|
-
|
|
58
45
|
export declare class InvalidOperationException extends __BaseException {
|
|
59
46
|
readonly name: "InvalidOperationException";
|
|
60
47
|
readonly $fault: "client";
|
|
61
|
-
|
|
62
48
|
constructor(
|
|
63
49
|
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
64
50
|
);
|
|
65
51
|
}
|
|
66
|
-
|
|
67
52
|
export interface ValidationExceptionField {
|
|
68
53
|
name: string | undefined;
|
|
69
|
-
|
|
70
54
|
message: string | undefined;
|
|
71
55
|
}
|
|
72
56
|
export declare enum ValidationExceptionReason {
|
|
73
57
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
74
58
|
OTHER = "OTHER",
|
|
75
59
|
}
|
|
76
|
-
|
|
77
60
|
export declare class InvalidParameterException extends __BaseException {
|
|
78
61
|
readonly name: "InvalidParameterException";
|
|
79
62
|
readonly $fault: "client";
|
|
80
|
-
|
|
81
63
|
reason?: ValidationExceptionReason | string;
|
|
82
|
-
|
|
83
64
|
fields?: ValidationExceptionField[];
|
|
84
|
-
|
|
85
65
|
constructor(
|
|
86
66
|
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
87
67
|
);
|
|
88
68
|
}
|
|
89
|
-
|
|
90
69
|
export declare class LimitsExceededException extends __BaseException {
|
|
91
70
|
readonly name: "LimitsExceededException";
|
|
92
71
|
readonly $fault: "client";
|
|
93
|
-
|
|
94
72
|
Type?: string;
|
|
95
|
-
|
|
96
73
|
Limit?: number;
|
|
97
|
-
|
|
98
74
|
constructor(
|
|
99
75
|
opts: __ExceptionOptionType<LimitsExceededException, __BaseException>
|
|
100
76
|
);
|
|
101
77
|
}
|
|
102
|
-
|
|
103
78
|
export declare class NoAssociatedRoleException extends __BaseException {
|
|
104
79
|
readonly name: "NoAssociatedRoleException";
|
|
105
80
|
readonly $fault: "client";
|
|
106
|
-
|
|
107
81
|
constructor(
|
|
108
82
|
opts: __ExceptionOptionType<NoAssociatedRoleException, __BaseException>
|
|
109
83
|
);
|
|
110
84
|
}
|
|
111
|
-
|
|
112
85
|
export declare class OptimisticLockException extends __BaseException {
|
|
113
86
|
readonly name: "OptimisticLockException";
|
|
114
87
|
readonly $fault: "client";
|
|
115
|
-
|
|
116
88
|
constructor(
|
|
117
89
|
opts: __ExceptionOptionType<OptimisticLockException, __BaseException>
|
|
118
90
|
);
|
|
119
91
|
}
|
|
120
|
-
|
|
121
92
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
122
93
|
readonly name: "ResourceNotFoundException";
|
|
123
94
|
readonly $fault: "client";
|
|
124
|
-
|
|
125
95
|
resourceType?: string;
|
|
126
|
-
|
|
127
96
|
constructor(
|
|
128
97
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
129
98
|
);
|
|
@@ -134,43 +103,31 @@ export interface AssociateDRTRoleRequest {
|
|
|
134
103
|
export interface AssociateDRTRoleResponse {}
|
|
135
104
|
export interface AssociateHealthCheckRequest {
|
|
136
105
|
ProtectionId: string | undefined;
|
|
137
|
-
|
|
138
106
|
HealthCheckArn: string | undefined;
|
|
139
107
|
}
|
|
140
108
|
export interface AssociateHealthCheckResponse {}
|
|
141
|
-
|
|
142
109
|
export declare class InvalidResourceException extends __BaseException {
|
|
143
110
|
readonly name: "InvalidResourceException";
|
|
144
111
|
readonly $fault: "client";
|
|
145
|
-
|
|
146
112
|
constructor(
|
|
147
113
|
opts: __ExceptionOptionType<InvalidResourceException, __BaseException>
|
|
148
114
|
);
|
|
149
115
|
}
|
|
150
|
-
|
|
151
116
|
export interface EmergencyContact {
|
|
152
117
|
EmailAddress: string | undefined;
|
|
153
|
-
|
|
154
118
|
PhoneNumber?: string;
|
|
155
|
-
|
|
156
119
|
ContactNotes?: string;
|
|
157
120
|
}
|
|
158
121
|
export interface AssociateProactiveEngagementDetailsRequest {
|
|
159
122
|
EmergencyContactList: EmergencyContact[] | undefined;
|
|
160
123
|
}
|
|
161
124
|
export interface AssociateProactiveEngagementDetailsResponse {}
|
|
162
|
-
|
|
163
125
|
export interface SummarizedCounter {
|
|
164
126
|
Name?: string;
|
|
165
|
-
|
|
166
127
|
Max?: number;
|
|
167
|
-
|
|
168
128
|
Average?: number;
|
|
169
|
-
|
|
170
129
|
Sum?: number;
|
|
171
|
-
|
|
172
130
|
N?: number;
|
|
173
|
-
|
|
174
131
|
Unit?: string;
|
|
175
132
|
}
|
|
176
133
|
export declare enum AttackLayer {
|
|
@@ -187,10 +144,8 @@ export declare enum AttackPropertyIdentifier {
|
|
|
187
144
|
WORDPRESS_PINGBACK_REFLECTOR = "WORDPRESS_PINGBACK_REFLECTOR",
|
|
188
145
|
WORDPRESS_PINGBACK_SOURCE = "WORDPRESS_PINGBACK_SOURCE",
|
|
189
146
|
}
|
|
190
|
-
|
|
191
147
|
export interface Contributor {
|
|
192
148
|
Name?: string;
|
|
193
|
-
|
|
194
149
|
Value?: number;
|
|
195
150
|
}
|
|
196
151
|
export declare enum Unit {
|
|
@@ -199,121 +154,82 @@ export declare enum Unit {
|
|
|
199
154
|
PACKETS = "PACKETS",
|
|
200
155
|
REQUESTS = "REQUESTS",
|
|
201
156
|
}
|
|
202
|
-
|
|
203
157
|
export interface AttackProperty {
|
|
204
158
|
AttackLayer?: AttackLayer | string;
|
|
205
|
-
|
|
206
159
|
AttackPropertyIdentifier?: AttackPropertyIdentifier | string;
|
|
207
|
-
|
|
208
160
|
TopContributors?: Contributor[];
|
|
209
|
-
|
|
210
161
|
Unit?: Unit | string;
|
|
211
|
-
|
|
212
162
|
Total?: number;
|
|
213
163
|
}
|
|
214
|
-
|
|
215
164
|
export interface Mitigation {
|
|
216
165
|
MitigationName?: string;
|
|
217
166
|
}
|
|
218
|
-
|
|
219
167
|
export interface SummarizedAttackVector {
|
|
220
168
|
VectorType: string | undefined;
|
|
221
|
-
|
|
222
169
|
VectorCounters?: SummarizedCounter[];
|
|
223
170
|
}
|
|
224
171
|
export declare enum SubResourceType {
|
|
225
172
|
IP = "IP",
|
|
226
173
|
URL = "URL",
|
|
227
174
|
}
|
|
228
|
-
|
|
229
175
|
export interface SubResourceSummary {
|
|
230
176
|
Type?: SubResourceType | string;
|
|
231
|
-
|
|
232
177
|
Id?: string;
|
|
233
|
-
|
|
234
178
|
AttackVectors?: SummarizedAttackVector[];
|
|
235
|
-
|
|
236
179
|
Counters?: SummarizedCounter[];
|
|
237
180
|
}
|
|
238
|
-
|
|
239
181
|
export interface AttackDetail {
|
|
240
182
|
AttackId?: string;
|
|
241
|
-
|
|
242
183
|
ResourceArn?: string;
|
|
243
|
-
|
|
244
184
|
SubResources?: SubResourceSummary[];
|
|
245
|
-
|
|
246
185
|
StartTime?: Date;
|
|
247
|
-
|
|
248
186
|
EndTime?: Date;
|
|
249
|
-
|
|
250
187
|
AttackCounters?: SummarizedCounter[];
|
|
251
|
-
|
|
252
188
|
AttackProperties?: AttackProperty[];
|
|
253
|
-
|
|
254
189
|
Mitigations?: Mitigation[];
|
|
255
190
|
}
|
|
256
|
-
|
|
257
191
|
export interface AttackVolumeStatistics {
|
|
258
192
|
Max: number | undefined;
|
|
259
193
|
}
|
|
260
|
-
|
|
261
194
|
export interface AttackVolume {
|
|
262
195
|
BitsPerSecond?: AttackVolumeStatistics;
|
|
263
|
-
|
|
264
196
|
PacketsPerSecond?: AttackVolumeStatistics;
|
|
265
|
-
|
|
266
197
|
RequestsPerSecond?: AttackVolumeStatistics;
|
|
267
198
|
}
|
|
268
|
-
|
|
269
199
|
export interface AttackStatisticsDataItem {
|
|
270
200
|
AttackVolume?: AttackVolume;
|
|
271
|
-
|
|
272
201
|
AttackCount: number | undefined;
|
|
273
202
|
}
|
|
274
|
-
|
|
275
203
|
export interface AttackVectorDescription {
|
|
276
204
|
VectorType: string | undefined;
|
|
277
205
|
}
|
|
278
|
-
|
|
279
206
|
export interface AttackSummary {
|
|
280
207
|
AttackId?: string;
|
|
281
|
-
|
|
282
208
|
ResourceArn?: string;
|
|
283
|
-
|
|
284
209
|
StartTime?: Date;
|
|
285
|
-
|
|
286
210
|
EndTime?: Date;
|
|
287
|
-
|
|
288
211
|
AttackVectors?: AttackVectorDescription[];
|
|
289
212
|
}
|
|
290
213
|
export declare enum AutoRenew {
|
|
291
214
|
DISABLED = "DISABLED",
|
|
292
215
|
ENABLED = "ENABLED",
|
|
293
216
|
}
|
|
294
|
-
|
|
295
217
|
export interface Tag {
|
|
296
218
|
Key?: string;
|
|
297
|
-
|
|
298
219
|
Value?: string;
|
|
299
220
|
}
|
|
300
221
|
export interface CreateProtectionRequest {
|
|
301
222
|
Name: string | undefined;
|
|
302
|
-
|
|
303
223
|
ResourceArn: string | undefined;
|
|
304
|
-
|
|
305
224
|
Tags?: Tag[];
|
|
306
225
|
}
|
|
307
226
|
export interface CreateProtectionResponse {
|
|
308
227
|
ProtectionId?: string;
|
|
309
228
|
}
|
|
310
|
-
|
|
311
229
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
312
230
|
readonly name: "ResourceAlreadyExistsException";
|
|
313
231
|
readonly $fault: "client";
|
|
314
|
-
|
|
315
232
|
resourceType?: string;
|
|
316
|
-
|
|
317
233
|
constructor(
|
|
318
234
|
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
319
235
|
);
|
|
@@ -338,15 +254,10 @@ export declare enum ProtectedResourceType {
|
|
|
338
254
|
}
|
|
339
255
|
export interface CreateProtectionGroupRequest {
|
|
340
256
|
ProtectionGroupId: string | undefined;
|
|
341
|
-
|
|
342
257
|
Aggregation: ProtectionGroupAggregation | string | undefined;
|
|
343
|
-
|
|
344
258
|
Pattern: ProtectionGroupPattern | string | undefined;
|
|
345
|
-
|
|
346
259
|
ResourceType?: ProtectedResourceType | string;
|
|
347
|
-
|
|
348
260
|
Members?: string[];
|
|
349
|
-
|
|
350
261
|
Tags?: Tag[];
|
|
351
262
|
}
|
|
352
263
|
export interface CreateProtectionGroupResponse {}
|
|
@@ -362,11 +273,9 @@ export interface DeleteProtectionGroupRequest {
|
|
|
362
273
|
export interface DeleteProtectionGroupResponse {}
|
|
363
274
|
export interface DeleteSubscriptionRequest {}
|
|
364
275
|
export interface DeleteSubscriptionResponse {}
|
|
365
|
-
|
|
366
276
|
export declare class LockedSubscriptionException extends __BaseException {
|
|
367
277
|
readonly name: "LockedSubscriptionException";
|
|
368
278
|
readonly $fault: "client";
|
|
369
|
-
|
|
370
279
|
constructor(
|
|
371
280
|
opts: __ExceptionOptionType<LockedSubscriptionException, __BaseException>
|
|
372
281
|
);
|
|
@@ -378,21 +287,17 @@ export interface DescribeAttackResponse {
|
|
|
378
287
|
Attack?: AttackDetail;
|
|
379
288
|
}
|
|
380
289
|
export interface DescribeAttackStatisticsRequest {}
|
|
381
|
-
|
|
382
290
|
export interface TimeRange {
|
|
383
291
|
FromInclusive?: Date;
|
|
384
|
-
|
|
385
292
|
ToExclusive?: Date;
|
|
386
293
|
}
|
|
387
294
|
export interface DescribeAttackStatisticsResponse {
|
|
388
295
|
TimeRange: TimeRange | undefined;
|
|
389
|
-
|
|
390
296
|
DataItems: AttackStatisticsDataItem[] | undefined;
|
|
391
297
|
}
|
|
392
298
|
export interface DescribeDRTAccessRequest {}
|
|
393
299
|
export interface DescribeDRTAccessResponse {
|
|
394
300
|
RoleArn?: string;
|
|
395
|
-
|
|
396
301
|
LogBucketList?: string[];
|
|
397
302
|
}
|
|
398
303
|
export interface DescribeEmergencyContactSettingsRequest {}
|
|
@@ -401,21 +306,14 @@ export interface DescribeEmergencyContactSettingsResponse {
|
|
|
401
306
|
}
|
|
402
307
|
export interface DescribeProtectionRequest {
|
|
403
308
|
ProtectionId?: string;
|
|
404
|
-
|
|
405
309
|
ResourceArn?: string;
|
|
406
310
|
}
|
|
407
|
-
|
|
408
311
|
export interface Protection {
|
|
409
312
|
Id?: string;
|
|
410
|
-
|
|
411
313
|
Name?: string;
|
|
412
|
-
|
|
413
314
|
ResourceArn?: string;
|
|
414
|
-
|
|
415
315
|
HealthCheckIds?: string[];
|
|
416
|
-
|
|
417
316
|
ProtectionArn?: string;
|
|
418
|
-
|
|
419
317
|
ApplicationLayerAutomaticResponseConfiguration?: ApplicationLayerAutomaticResponseConfiguration;
|
|
420
318
|
}
|
|
421
319
|
export interface DescribeProtectionResponse {
|
|
@@ -424,28 +322,20 @@ export interface DescribeProtectionResponse {
|
|
|
424
322
|
export interface DescribeProtectionGroupRequest {
|
|
425
323
|
ProtectionGroupId: string | undefined;
|
|
426
324
|
}
|
|
427
|
-
|
|
428
325
|
export interface ProtectionGroup {
|
|
429
326
|
ProtectionGroupId: string | undefined;
|
|
430
|
-
|
|
431
327
|
Aggregation: ProtectionGroupAggregation | string | undefined;
|
|
432
|
-
|
|
433
328
|
Pattern: ProtectionGroupPattern | string | undefined;
|
|
434
|
-
|
|
435
329
|
ResourceType?: ProtectedResourceType | string;
|
|
436
|
-
|
|
437
330
|
Members: string[] | undefined;
|
|
438
|
-
|
|
439
331
|
ProtectionGroupArn?: string;
|
|
440
332
|
}
|
|
441
333
|
export interface DescribeProtectionGroupResponse {
|
|
442
334
|
ProtectionGroup: ProtectionGroup | undefined;
|
|
443
335
|
}
|
|
444
336
|
export interface DescribeSubscriptionRequest {}
|
|
445
|
-
|
|
446
337
|
export interface Limit {
|
|
447
338
|
Type?: string;
|
|
448
|
-
|
|
449
339
|
Max?: number;
|
|
450
340
|
}
|
|
451
341
|
export declare enum ProactiveEngagementStatus {
|
|
@@ -453,46 +343,31 @@ export declare enum ProactiveEngagementStatus {
|
|
|
453
343
|
ENABLED = "ENABLED",
|
|
454
344
|
PENDING = "PENDING",
|
|
455
345
|
}
|
|
456
|
-
|
|
457
346
|
export interface ProtectionGroupArbitraryPatternLimits {
|
|
458
347
|
MaxMembers: number | undefined;
|
|
459
348
|
}
|
|
460
|
-
|
|
461
349
|
export interface ProtectionGroupPatternTypeLimits {
|
|
462
350
|
ArbitraryPatternLimits: ProtectionGroupArbitraryPatternLimits | undefined;
|
|
463
351
|
}
|
|
464
|
-
|
|
465
352
|
export interface ProtectionGroupLimits {
|
|
466
353
|
MaxProtectionGroups: number | undefined;
|
|
467
|
-
|
|
468
354
|
PatternTypeLimits: ProtectionGroupPatternTypeLimits | undefined;
|
|
469
355
|
}
|
|
470
|
-
|
|
471
356
|
export interface ProtectionLimits {
|
|
472
357
|
ProtectedResourceTypeLimits: Limit[] | undefined;
|
|
473
358
|
}
|
|
474
|
-
|
|
475
359
|
export interface SubscriptionLimits {
|
|
476
360
|
ProtectionLimits: ProtectionLimits | undefined;
|
|
477
|
-
|
|
478
361
|
ProtectionGroupLimits: ProtectionGroupLimits | undefined;
|
|
479
362
|
}
|
|
480
|
-
|
|
481
363
|
export interface Subscription {
|
|
482
364
|
StartTime?: Date;
|
|
483
|
-
|
|
484
365
|
EndTime?: Date;
|
|
485
|
-
|
|
486
366
|
TimeCommitmentInSeconds?: number;
|
|
487
|
-
|
|
488
367
|
AutoRenew?: AutoRenew | string;
|
|
489
|
-
|
|
490
368
|
Limits?: Limit[];
|
|
491
|
-
|
|
492
369
|
ProactiveEngagementStatus?: ProactiveEngagementStatus | string;
|
|
493
|
-
|
|
494
370
|
SubscriptionLimits: SubscriptionLimits | undefined;
|
|
495
|
-
|
|
496
371
|
SubscriptionArn?: string;
|
|
497
372
|
}
|
|
498
373
|
export interface DescribeSubscriptionResponse {
|
|
@@ -512,13 +387,11 @@ export interface DisassociateDRTRoleRequest {}
|
|
|
512
387
|
export interface DisassociateDRTRoleResponse {}
|
|
513
388
|
export interface DisassociateHealthCheckRequest {
|
|
514
389
|
ProtectionId: string | undefined;
|
|
515
|
-
|
|
516
390
|
HealthCheckArn: string | undefined;
|
|
517
391
|
}
|
|
518
392
|
export interface DisassociateHealthCheckResponse {}
|
|
519
393
|
export interface EnableApplicationLayerAutomaticResponseRequest {
|
|
520
394
|
ResourceArn: string | undefined;
|
|
521
|
-
|
|
522
395
|
Action: ResponseAction | undefined;
|
|
523
396
|
}
|
|
524
397
|
export interface EnableApplicationLayerAutomaticResponseResponse {}
|
|
@@ -534,25 +407,18 @@ export interface GetSubscriptionStateResponse {
|
|
|
534
407
|
}
|
|
535
408
|
export interface ListAttacksRequest {
|
|
536
409
|
ResourceArns?: string[];
|
|
537
|
-
|
|
538
410
|
StartTime?: TimeRange;
|
|
539
|
-
|
|
540
411
|
EndTime?: TimeRange;
|
|
541
|
-
|
|
542
412
|
NextToken?: string;
|
|
543
|
-
|
|
544
413
|
MaxResults?: number;
|
|
545
414
|
}
|
|
546
415
|
export interface ListAttacksResponse {
|
|
547
416
|
AttackSummaries?: AttackSummary[];
|
|
548
|
-
|
|
549
417
|
NextToken?: string;
|
|
550
418
|
}
|
|
551
|
-
|
|
552
419
|
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
553
420
|
readonly name: "InvalidPaginationTokenException";
|
|
554
421
|
readonly $fault: "client";
|
|
555
|
-
|
|
556
422
|
constructor(
|
|
557
423
|
opts: __ExceptionOptionType<
|
|
558
424
|
InvalidPaginationTokenException,
|
|
@@ -560,58 +426,42 @@ export declare class InvalidPaginationTokenException extends __BaseException {
|
|
|
560
426
|
>
|
|
561
427
|
);
|
|
562
428
|
}
|
|
563
|
-
|
|
564
429
|
export interface InclusionProtectionGroupFilters {
|
|
565
430
|
ProtectionGroupIds?: string[];
|
|
566
|
-
|
|
567
431
|
Patterns?: (ProtectionGroupPattern | string)[];
|
|
568
|
-
|
|
569
432
|
ResourceTypes?: (ProtectedResourceType | string)[];
|
|
570
|
-
|
|
571
433
|
Aggregations?: (ProtectionGroupAggregation | string)[];
|
|
572
434
|
}
|
|
573
435
|
export interface ListProtectionGroupsRequest {
|
|
574
436
|
NextToken?: string;
|
|
575
|
-
|
|
576
437
|
MaxResults?: number;
|
|
577
|
-
|
|
578
438
|
InclusionFilters?: InclusionProtectionGroupFilters;
|
|
579
439
|
}
|
|
580
440
|
export interface ListProtectionGroupsResponse {
|
|
581
441
|
ProtectionGroups: ProtectionGroup[] | undefined;
|
|
582
|
-
|
|
583
442
|
NextToken?: string;
|
|
584
443
|
}
|
|
585
|
-
|
|
586
444
|
export interface InclusionProtectionFilters {
|
|
587
445
|
ResourceArns?: string[];
|
|
588
|
-
|
|
589
446
|
ProtectionNames?: string[];
|
|
590
|
-
|
|
591
447
|
ResourceTypes?: (ProtectedResourceType | string)[];
|
|
592
448
|
}
|
|
593
449
|
export interface ListProtectionsRequest {
|
|
594
450
|
NextToken?: string;
|
|
595
|
-
|
|
596
451
|
MaxResults?: number;
|
|
597
|
-
|
|
598
452
|
InclusionFilters?: InclusionProtectionFilters;
|
|
599
453
|
}
|
|
600
454
|
export interface ListProtectionsResponse {
|
|
601
455
|
Protections?: Protection[];
|
|
602
|
-
|
|
603
456
|
NextToken?: string;
|
|
604
457
|
}
|
|
605
458
|
export interface ListResourcesInProtectionGroupRequest {
|
|
606
459
|
ProtectionGroupId: string | undefined;
|
|
607
|
-
|
|
608
460
|
NextToken?: string;
|
|
609
|
-
|
|
610
461
|
MaxResults?: number;
|
|
611
462
|
}
|
|
612
463
|
export interface ListResourcesInProtectionGroupResponse {
|
|
613
464
|
ResourceArns: string[] | undefined;
|
|
614
|
-
|
|
615
465
|
NextToken?: string;
|
|
616
466
|
}
|
|
617
467
|
export interface ListTagsForResourceRequest {
|
|
@@ -622,19 +472,16 @@ export interface ListTagsForResourceResponse {
|
|
|
622
472
|
}
|
|
623
473
|
export interface TagResourceRequest {
|
|
624
474
|
ResourceARN: string | undefined;
|
|
625
|
-
|
|
626
475
|
Tags: Tag[] | undefined;
|
|
627
476
|
}
|
|
628
477
|
export interface TagResourceResponse {}
|
|
629
478
|
export interface UntagResourceRequest {
|
|
630
479
|
ResourceARN: string | undefined;
|
|
631
|
-
|
|
632
480
|
TagKeys: string[] | undefined;
|
|
633
481
|
}
|
|
634
482
|
export interface UntagResourceResponse {}
|
|
635
483
|
export interface UpdateApplicationLayerAutomaticResponseRequest {
|
|
636
484
|
ResourceArn: string | undefined;
|
|
637
|
-
|
|
638
485
|
Action: ResponseAction | undefined;
|
|
639
486
|
}
|
|
640
487
|
export interface UpdateApplicationLayerAutomaticResponseResponse {}
|
|
@@ -644,13 +491,9 @@ export interface UpdateEmergencyContactSettingsRequest {
|
|
|
644
491
|
export interface UpdateEmergencyContactSettingsResponse {}
|
|
645
492
|
export interface UpdateProtectionGroupRequest {
|
|
646
493
|
ProtectionGroupId: string | undefined;
|
|
647
|
-
|
|
648
494
|
Aggregation: ProtectionGroupAggregation | string | undefined;
|
|
649
|
-
|
|
650
495
|
Pattern: ProtectionGroupPattern | string | undefined;
|
|
651
|
-
|
|
652
496
|
ResourceType?: ProtectedResourceType | string;
|
|
653
|
-
|
|
654
497
|
Members?: string[];
|
|
655
498
|
}
|
|
656
499
|
export interface UpdateProtectionGroupResponse {}
|
|
@@ -658,393 +501,290 @@ export interface UpdateSubscriptionRequest {
|
|
|
658
501
|
AutoRenew?: AutoRenew | string;
|
|
659
502
|
}
|
|
660
503
|
export interface UpdateSubscriptionResponse {}
|
|
661
|
-
|
|
662
504
|
export declare const BlockActionFilterSensitiveLog: (obj: BlockAction) => any;
|
|
663
|
-
|
|
664
505
|
export declare const CountActionFilterSensitiveLog: (obj: CountAction) => any;
|
|
665
|
-
|
|
666
506
|
export declare const ResponseActionFilterSensitiveLog: (
|
|
667
507
|
obj: ResponseAction
|
|
668
508
|
) => any;
|
|
669
|
-
|
|
670
509
|
export declare const ApplicationLayerAutomaticResponseConfigurationFilterSensitiveLog: (
|
|
671
510
|
obj: ApplicationLayerAutomaticResponseConfiguration
|
|
672
511
|
) => any;
|
|
673
|
-
|
|
674
512
|
export declare const AssociateDRTLogBucketRequestFilterSensitiveLog: (
|
|
675
513
|
obj: AssociateDRTLogBucketRequest
|
|
676
514
|
) => any;
|
|
677
|
-
|
|
678
515
|
export declare const AssociateDRTLogBucketResponseFilterSensitiveLog: (
|
|
679
516
|
obj: AssociateDRTLogBucketResponse
|
|
680
517
|
) => any;
|
|
681
|
-
|
|
682
518
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
683
519
|
obj: ValidationExceptionField
|
|
684
520
|
) => any;
|
|
685
|
-
|
|
686
521
|
export declare const AssociateDRTRoleRequestFilterSensitiveLog: (
|
|
687
522
|
obj: AssociateDRTRoleRequest
|
|
688
523
|
) => any;
|
|
689
|
-
|
|
690
524
|
export declare const AssociateDRTRoleResponseFilterSensitiveLog: (
|
|
691
525
|
obj: AssociateDRTRoleResponse
|
|
692
526
|
) => any;
|
|
693
|
-
|
|
694
527
|
export declare const AssociateHealthCheckRequestFilterSensitiveLog: (
|
|
695
528
|
obj: AssociateHealthCheckRequest
|
|
696
529
|
) => any;
|
|
697
|
-
|
|
698
530
|
export declare const AssociateHealthCheckResponseFilterSensitiveLog: (
|
|
699
531
|
obj: AssociateHealthCheckResponse
|
|
700
532
|
) => any;
|
|
701
|
-
|
|
702
533
|
export declare const EmergencyContactFilterSensitiveLog: (
|
|
703
534
|
obj: EmergencyContact
|
|
704
535
|
) => any;
|
|
705
|
-
|
|
706
536
|
export declare const AssociateProactiveEngagementDetailsRequestFilterSensitiveLog: (
|
|
707
537
|
obj: AssociateProactiveEngagementDetailsRequest
|
|
708
538
|
) => any;
|
|
709
|
-
|
|
710
539
|
export declare const AssociateProactiveEngagementDetailsResponseFilterSensitiveLog: (
|
|
711
540
|
obj: AssociateProactiveEngagementDetailsResponse
|
|
712
541
|
) => any;
|
|
713
|
-
|
|
714
542
|
export declare const SummarizedCounterFilterSensitiveLog: (
|
|
715
543
|
obj: SummarizedCounter
|
|
716
544
|
) => any;
|
|
717
|
-
|
|
718
545
|
export declare const ContributorFilterSensitiveLog: (obj: Contributor) => any;
|
|
719
|
-
|
|
720
546
|
export declare const AttackPropertyFilterSensitiveLog: (
|
|
721
547
|
obj: AttackProperty
|
|
722
548
|
) => any;
|
|
723
|
-
|
|
724
549
|
export declare const MitigationFilterSensitiveLog: (obj: Mitigation) => any;
|
|
725
|
-
|
|
726
550
|
export declare const SummarizedAttackVectorFilterSensitiveLog: (
|
|
727
551
|
obj: SummarizedAttackVector
|
|
728
552
|
) => any;
|
|
729
|
-
|
|
730
553
|
export declare const SubResourceSummaryFilterSensitiveLog: (
|
|
731
554
|
obj: SubResourceSummary
|
|
732
555
|
) => any;
|
|
733
|
-
|
|
734
556
|
export declare const AttackDetailFilterSensitiveLog: (obj: AttackDetail) => any;
|
|
735
|
-
|
|
736
557
|
export declare const AttackVolumeStatisticsFilterSensitiveLog: (
|
|
737
558
|
obj: AttackVolumeStatistics
|
|
738
559
|
) => any;
|
|
739
|
-
|
|
740
560
|
export declare const AttackVolumeFilterSensitiveLog: (obj: AttackVolume) => any;
|
|
741
|
-
|
|
742
561
|
export declare const AttackStatisticsDataItemFilterSensitiveLog: (
|
|
743
562
|
obj: AttackStatisticsDataItem
|
|
744
563
|
) => any;
|
|
745
|
-
|
|
746
564
|
export declare const AttackVectorDescriptionFilterSensitiveLog: (
|
|
747
565
|
obj: AttackVectorDescription
|
|
748
566
|
) => any;
|
|
749
|
-
|
|
750
567
|
export declare const AttackSummaryFilterSensitiveLog: (
|
|
751
568
|
obj: AttackSummary
|
|
752
569
|
) => any;
|
|
753
|
-
|
|
754
570
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
755
|
-
|
|
756
571
|
export declare const CreateProtectionRequestFilterSensitiveLog: (
|
|
757
572
|
obj: CreateProtectionRequest
|
|
758
573
|
) => any;
|
|
759
|
-
|
|
760
574
|
export declare const CreateProtectionResponseFilterSensitiveLog: (
|
|
761
575
|
obj: CreateProtectionResponse
|
|
762
576
|
) => any;
|
|
763
|
-
|
|
764
577
|
export declare const CreateProtectionGroupRequestFilterSensitiveLog: (
|
|
765
578
|
obj: CreateProtectionGroupRequest
|
|
766
579
|
) => any;
|
|
767
|
-
|
|
768
580
|
export declare const CreateProtectionGroupResponseFilterSensitiveLog: (
|
|
769
581
|
obj: CreateProtectionGroupResponse
|
|
770
582
|
) => any;
|
|
771
|
-
|
|
772
583
|
export declare const CreateSubscriptionRequestFilterSensitiveLog: (
|
|
773
584
|
obj: CreateSubscriptionRequest
|
|
774
585
|
) => any;
|
|
775
|
-
|
|
776
586
|
export declare const CreateSubscriptionResponseFilterSensitiveLog: (
|
|
777
587
|
obj: CreateSubscriptionResponse
|
|
778
588
|
) => any;
|
|
779
|
-
|
|
780
589
|
export declare const DeleteProtectionRequestFilterSensitiveLog: (
|
|
781
590
|
obj: DeleteProtectionRequest
|
|
782
591
|
) => any;
|
|
783
|
-
|
|
784
592
|
export declare const DeleteProtectionResponseFilterSensitiveLog: (
|
|
785
593
|
obj: DeleteProtectionResponse
|
|
786
594
|
) => any;
|
|
787
|
-
|
|
788
595
|
export declare const DeleteProtectionGroupRequestFilterSensitiveLog: (
|
|
789
596
|
obj: DeleteProtectionGroupRequest
|
|
790
597
|
) => any;
|
|
791
|
-
|
|
792
598
|
export declare const DeleteProtectionGroupResponseFilterSensitiveLog: (
|
|
793
599
|
obj: DeleteProtectionGroupResponse
|
|
794
600
|
) => any;
|
|
795
|
-
|
|
796
601
|
export declare const DeleteSubscriptionRequestFilterSensitiveLog: (
|
|
797
602
|
obj: DeleteSubscriptionRequest
|
|
798
603
|
) => any;
|
|
799
|
-
|
|
800
604
|
export declare const DeleteSubscriptionResponseFilterSensitiveLog: (
|
|
801
605
|
obj: DeleteSubscriptionResponse
|
|
802
606
|
) => any;
|
|
803
|
-
|
|
804
607
|
export declare const DescribeAttackRequestFilterSensitiveLog: (
|
|
805
608
|
obj: DescribeAttackRequest
|
|
806
609
|
) => any;
|
|
807
|
-
|
|
808
610
|
export declare const DescribeAttackResponseFilterSensitiveLog: (
|
|
809
611
|
obj: DescribeAttackResponse
|
|
810
612
|
) => any;
|
|
811
|
-
|
|
812
613
|
export declare const DescribeAttackStatisticsRequestFilterSensitiveLog: (
|
|
813
614
|
obj: DescribeAttackStatisticsRequest
|
|
814
615
|
) => any;
|
|
815
|
-
|
|
816
616
|
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
817
|
-
|
|
818
617
|
export declare const DescribeAttackStatisticsResponseFilterSensitiveLog: (
|
|
819
618
|
obj: DescribeAttackStatisticsResponse
|
|
820
619
|
) => any;
|
|
821
|
-
|
|
822
620
|
export declare const DescribeDRTAccessRequestFilterSensitiveLog: (
|
|
823
621
|
obj: DescribeDRTAccessRequest
|
|
824
622
|
) => any;
|
|
825
|
-
|
|
826
623
|
export declare const DescribeDRTAccessResponseFilterSensitiveLog: (
|
|
827
624
|
obj: DescribeDRTAccessResponse
|
|
828
625
|
) => any;
|
|
829
|
-
|
|
830
626
|
export declare const DescribeEmergencyContactSettingsRequestFilterSensitiveLog: (
|
|
831
627
|
obj: DescribeEmergencyContactSettingsRequest
|
|
832
628
|
) => any;
|
|
833
|
-
|
|
834
629
|
export declare const DescribeEmergencyContactSettingsResponseFilterSensitiveLog: (
|
|
835
630
|
obj: DescribeEmergencyContactSettingsResponse
|
|
836
631
|
) => any;
|
|
837
|
-
|
|
838
632
|
export declare const DescribeProtectionRequestFilterSensitiveLog: (
|
|
839
633
|
obj: DescribeProtectionRequest
|
|
840
634
|
) => any;
|
|
841
|
-
|
|
842
635
|
export declare const ProtectionFilterSensitiveLog: (obj: Protection) => any;
|
|
843
|
-
|
|
844
636
|
export declare const DescribeProtectionResponseFilterSensitiveLog: (
|
|
845
637
|
obj: DescribeProtectionResponse
|
|
846
638
|
) => any;
|
|
847
|
-
|
|
848
639
|
export declare const DescribeProtectionGroupRequestFilterSensitiveLog: (
|
|
849
640
|
obj: DescribeProtectionGroupRequest
|
|
850
641
|
) => any;
|
|
851
|
-
|
|
852
642
|
export declare const ProtectionGroupFilterSensitiveLog: (
|
|
853
643
|
obj: ProtectionGroup
|
|
854
644
|
) => any;
|
|
855
|
-
|
|
856
645
|
export declare const DescribeProtectionGroupResponseFilterSensitiveLog: (
|
|
857
646
|
obj: DescribeProtectionGroupResponse
|
|
858
647
|
) => any;
|
|
859
|
-
|
|
860
648
|
export declare const DescribeSubscriptionRequestFilterSensitiveLog: (
|
|
861
649
|
obj: DescribeSubscriptionRequest
|
|
862
650
|
) => any;
|
|
863
|
-
|
|
864
651
|
export declare const LimitFilterSensitiveLog: (obj: Limit) => any;
|
|
865
|
-
|
|
866
652
|
export declare const ProtectionGroupArbitraryPatternLimitsFilterSensitiveLog: (
|
|
867
653
|
obj: ProtectionGroupArbitraryPatternLimits
|
|
868
654
|
) => any;
|
|
869
|
-
|
|
870
655
|
export declare const ProtectionGroupPatternTypeLimitsFilterSensitiveLog: (
|
|
871
656
|
obj: ProtectionGroupPatternTypeLimits
|
|
872
657
|
) => any;
|
|
873
|
-
|
|
874
658
|
export declare const ProtectionGroupLimitsFilterSensitiveLog: (
|
|
875
659
|
obj: ProtectionGroupLimits
|
|
876
660
|
) => any;
|
|
877
|
-
|
|
878
661
|
export declare const ProtectionLimitsFilterSensitiveLog: (
|
|
879
662
|
obj: ProtectionLimits
|
|
880
663
|
) => any;
|
|
881
|
-
|
|
882
664
|
export declare const SubscriptionLimitsFilterSensitiveLog: (
|
|
883
665
|
obj: SubscriptionLimits
|
|
884
666
|
) => any;
|
|
885
|
-
|
|
886
667
|
export declare const SubscriptionFilterSensitiveLog: (obj: Subscription) => any;
|
|
887
|
-
|
|
888
668
|
export declare const DescribeSubscriptionResponseFilterSensitiveLog: (
|
|
889
669
|
obj: DescribeSubscriptionResponse
|
|
890
670
|
) => any;
|
|
891
|
-
|
|
892
671
|
export declare const DisableApplicationLayerAutomaticResponseRequestFilterSensitiveLog: (
|
|
893
672
|
obj: DisableApplicationLayerAutomaticResponseRequest
|
|
894
673
|
) => any;
|
|
895
|
-
|
|
896
674
|
export declare const DisableApplicationLayerAutomaticResponseResponseFilterSensitiveLog: (
|
|
897
675
|
obj: DisableApplicationLayerAutomaticResponseResponse
|
|
898
676
|
) => any;
|
|
899
|
-
|
|
900
677
|
export declare const DisableProactiveEngagementRequestFilterSensitiveLog: (
|
|
901
678
|
obj: DisableProactiveEngagementRequest
|
|
902
679
|
) => any;
|
|
903
|
-
|
|
904
680
|
export declare const DisableProactiveEngagementResponseFilterSensitiveLog: (
|
|
905
681
|
obj: DisableProactiveEngagementResponse
|
|
906
682
|
) => any;
|
|
907
|
-
|
|
908
683
|
export declare const DisassociateDRTLogBucketRequestFilterSensitiveLog: (
|
|
909
684
|
obj: DisassociateDRTLogBucketRequest
|
|
910
685
|
) => any;
|
|
911
|
-
|
|
912
686
|
export declare const DisassociateDRTLogBucketResponseFilterSensitiveLog: (
|
|
913
687
|
obj: DisassociateDRTLogBucketResponse
|
|
914
688
|
) => any;
|
|
915
|
-
|
|
916
689
|
export declare const DisassociateDRTRoleRequestFilterSensitiveLog: (
|
|
917
690
|
obj: DisassociateDRTRoleRequest
|
|
918
691
|
) => any;
|
|
919
|
-
|
|
920
692
|
export declare const DisassociateDRTRoleResponseFilterSensitiveLog: (
|
|
921
693
|
obj: DisassociateDRTRoleResponse
|
|
922
694
|
) => any;
|
|
923
|
-
|
|
924
695
|
export declare const DisassociateHealthCheckRequestFilterSensitiveLog: (
|
|
925
696
|
obj: DisassociateHealthCheckRequest
|
|
926
697
|
) => any;
|
|
927
|
-
|
|
928
698
|
export declare const DisassociateHealthCheckResponseFilterSensitiveLog: (
|
|
929
699
|
obj: DisassociateHealthCheckResponse
|
|
930
700
|
) => any;
|
|
931
|
-
|
|
932
701
|
export declare const EnableApplicationLayerAutomaticResponseRequestFilterSensitiveLog: (
|
|
933
702
|
obj: EnableApplicationLayerAutomaticResponseRequest
|
|
934
703
|
) => any;
|
|
935
|
-
|
|
936
704
|
export declare const EnableApplicationLayerAutomaticResponseResponseFilterSensitiveLog: (
|
|
937
705
|
obj: EnableApplicationLayerAutomaticResponseResponse
|
|
938
706
|
) => any;
|
|
939
|
-
|
|
940
707
|
export declare const EnableProactiveEngagementRequestFilterSensitiveLog: (
|
|
941
708
|
obj: EnableProactiveEngagementRequest
|
|
942
709
|
) => any;
|
|
943
|
-
|
|
944
710
|
export declare const EnableProactiveEngagementResponseFilterSensitiveLog: (
|
|
945
711
|
obj: EnableProactiveEngagementResponse
|
|
946
712
|
) => any;
|
|
947
|
-
|
|
948
713
|
export declare const GetSubscriptionStateRequestFilterSensitiveLog: (
|
|
949
714
|
obj: GetSubscriptionStateRequest
|
|
950
715
|
) => any;
|
|
951
|
-
|
|
952
716
|
export declare const GetSubscriptionStateResponseFilterSensitiveLog: (
|
|
953
717
|
obj: GetSubscriptionStateResponse
|
|
954
718
|
) => any;
|
|
955
|
-
|
|
956
719
|
export declare const ListAttacksRequestFilterSensitiveLog: (
|
|
957
720
|
obj: ListAttacksRequest
|
|
958
721
|
) => any;
|
|
959
|
-
|
|
960
722
|
export declare const ListAttacksResponseFilterSensitiveLog: (
|
|
961
723
|
obj: ListAttacksResponse
|
|
962
724
|
) => any;
|
|
963
|
-
|
|
964
725
|
export declare const InclusionProtectionGroupFiltersFilterSensitiveLog: (
|
|
965
726
|
obj: InclusionProtectionGroupFilters
|
|
966
727
|
) => any;
|
|
967
|
-
|
|
968
728
|
export declare const ListProtectionGroupsRequestFilterSensitiveLog: (
|
|
969
729
|
obj: ListProtectionGroupsRequest
|
|
970
730
|
) => any;
|
|
971
|
-
|
|
972
731
|
export declare const ListProtectionGroupsResponseFilterSensitiveLog: (
|
|
973
732
|
obj: ListProtectionGroupsResponse
|
|
974
733
|
) => any;
|
|
975
|
-
|
|
976
734
|
export declare const InclusionProtectionFiltersFilterSensitiveLog: (
|
|
977
735
|
obj: InclusionProtectionFilters
|
|
978
736
|
) => any;
|
|
979
|
-
|
|
980
737
|
export declare const ListProtectionsRequestFilterSensitiveLog: (
|
|
981
738
|
obj: ListProtectionsRequest
|
|
982
739
|
) => any;
|
|
983
|
-
|
|
984
740
|
export declare const ListProtectionsResponseFilterSensitiveLog: (
|
|
985
741
|
obj: ListProtectionsResponse
|
|
986
742
|
) => any;
|
|
987
|
-
|
|
988
743
|
export declare const ListResourcesInProtectionGroupRequestFilterSensitiveLog: (
|
|
989
744
|
obj: ListResourcesInProtectionGroupRequest
|
|
990
745
|
) => any;
|
|
991
|
-
|
|
992
746
|
export declare const ListResourcesInProtectionGroupResponseFilterSensitiveLog: (
|
|
993
747
|
obj: ListResourcesInProtectionGroupResponse
|
|
994
748
|
) => any;
|
|
995
|
-
|
|
996
749
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
997
750
|
obj: ListTagsForResourceRequest
|
|
998
751
|
) => any;
|
|
999
|
-
|
|
1000
752
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1001
753
|
obj: ListTagsForResourceResponse
|
|
1002
754
|
) => any;
|
|
1003
|
-
|
|
1004
755
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1005
756
|
obj: TagResourceRequest
|
|
1006
757
|
) => any;
|
|
1007
|
-
|
|
1008
758
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1009
759
|
obj: TagResourceResponse
|
|
1010
760
|
) => any;
|
|
1011
|
-
|
|
1012
761
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1013
762
|
obj: UntagResourceRequest
|
|
1014
763
|
) => any;
|
|
1015
|
-
|
|
1016
764
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1017
765
|
obj: UntagResourceResponse
|
|
1018
766
|
) => any;
|
|
1019
|
-
|
|
1020
767
|
export declare const UpdateApplicationLayerAutomaticResponseRequestFilterSensitiveLog: (
|
|
1021
768
|
obj: UpdateApplicationLayerAutomaticResponseRequest
|
|
1022
769
|
) => any;
|
|
1023
|
-
|
|
1024
770
|
export declare const UpdateApplicationLayerAutomaticResponseResponseFilterSensitiveLog: (
|
|
1025
771
|
obj: UpdateApplicationLayerAutomaticResponseResponse
|
|
1026
772
|
) => any;
|
|
1027
|
-
|
|
1028
773
|
export declare const UpdateEmergencyContactSettingsRequestFilterSensitiveLog: (
|
|
1029
774
|
obj: UpdateEmergencyContactSettingsRequest
|
|
1030
775
|
) => any;
|
|
1031
|
-
|
|
1032
776
|
export declare const UpdateEmergencyContactSettingsResponseFilterSensitiveLog: (
|
|
1033
777
|
obj: UpdateEmergencyContactSettingsResponse
|
|
1034
778
|
) => any;
|
|
1035
|
-
|
|
1036
779
|
export declare const UpdateProtectionGroupRequestFilterSensitiveLog: (
|
|
1037
780
|
obj: UpdateProtectionGroupRequest
|
|
1038
781
|
) => any;
|
|
1039
|
-
|
|
1040
782
|
export declare const UpdateProtectionGroupResponseFilterSensitiveLog: (
|
|
1041
783
|
obj: UpdateProtectionGroupResponse
|
|
1042
784
|
) => any;
|
|
1043
|
-
|
|
1044
785
|
export declare const UpdateSubscriptionRequestFilterSensitiveLog: (
|
|
1045
786
|
obj: UpdateSubscriptionRequest
|
|
1046
787
|
) => any;
|
|
1047
|
-
|
|
1048
788
|
export declare const UpdateSubscriptionResponseFilterSensitiveLog: (
|
|
1049
789
|
obj: UpdateSubscriptionResponse
|
|
1050
790
|
) => any;
|