@aws-sdk/client-health 3.47.1 → 3.50.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +39 -33
  3. package/dist-types/ts3.4/Health.d.ts +0 -70
  4. package/dist-types/ts3.4/HealthClient.d.ts +0 -86
  5. package/dist-types/ts3.4/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +0 -17
  6. package/dist-types/ts3.4/commands/DescribeAffectedEntitiesCommand.d.ts +0 -17
  7. package/dist-types/ts3.4/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +0 -17
  8. package/dist-types/ts3.4/commands/DescribeEntityAggregatesCommand.d.ts +0 -17
  9. package/dist-types/ts3.4/commands/DescribeEventAggregatesCommand.d.ts +0 -17
  10. package/dist-types/ts3.4/commands/DescribeEventDetailsCommand.d.ts +0 -17
  11. package/dist-types/ts3.4/commands/DescribeEventDetailsForOrganizationCommand.d.ts +0 -17
  12. package/dist-types/ts3.4/commands/DescribeEventTypesCommand.d.ts +0 -17
  13. package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +0 -17
  14. package/dist-types/ts3.4/commands/DescribeEventsForOrganizationCommand.d.ts +0 -17
  15. package/dist-types/ts3.4/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +0 -17
  16. package/dist-types/ts3.4/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +0 -16
  17. package/dist-types/ts3.4/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +0 -16
  18. package/dist-types/ts3.4/commands/index.d.ts +0 -13
  19. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  20. package/dist-types/ts3.4/index.d.ts +0 -5
  21. package/dist-types/ts3.4/models/index.d.ts +0 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +0 -597
  23. package/dist-types/ts3.4/pagination/DescribeAffectedAccountsForOrganizationPaginator.d.ts +0 -4
  24. package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesForOrganizationPaginator.d.ts +0 -4
  25. package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesPaginator.d.ts +0 -4
  26. package/dist-types/ts3.4/pagination/DescribeEventAggregatesPaginator.d.ts +0 -4
  27. package/dist-types/ts3.4/pagination/DescribeEventTypesPaginator.d.ts +0 -4
  28. package/dist-types/ts3.4/pagination/DescribeEventsForOrganizationPaginator.d.ts +0 -4
  29. package/dist-types/ts3.4/pagination/DescribeEventsPaginator.d.ts +0 -4
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  31. package/dist-types/ts3.4/pagination/index.d.ts +0 -8
  32. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -41
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
@@ -1,597 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- export declare enum EntityStatusCode {
3
- IMPAIRED = "IMPAIRED",
4
- UNIMPAIRED = "UNIMPAIRED",
5
- UNKNOWN = "UNKNOWN"
6
- }
7
-
8
- export interface AffectedEntity {
9
-
10
- entityArn?: string;
11
-
12
- eventArn?: string;
13
-
14
- entityValue?: string;
15
-
16
- entityUrl?: string;
17
-
18
- awsAccountId?: string;
19
-
20
- lastUpdatedTime?: Date;
21
-
22
- statusCode?: EntityStatusCode | string;
23
-
24
- tags?: {
25
- [key: string]: string;
26
- };
27
- }
28
- export declare namespace AffectedEntity {
29
-
30
- const filterSensitiveLog: (obj: AffectedEntity) => any;
31
- }
32
- export interface DescribeAffectedAccountsForOrganizationRequest {
33
-
34
- eventArn: string | undefined;
35
-
36
- nextToken?: string;
37
-
38
- maxResults?: number;
39
- }
40
- export declare namespace DescribeAffectedAccountsForOrganizationRequest {
41
-
42
- const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
43
- }
44
- export declare enum EventScopeCode {
45
- ACCOUNT_SPECIFIC = "ACCOUNT_SPECIFIC",
46
- NONE = "NONE",
47
- PUBLIC = "PUBLIC"
48
- }
49
- export interface DescribeAffectedAccountsForOrganizationResponse {
50
-
51
- affectedAccounts?: string[];
52
-
53
- eventScopeCode?: EventScopeCode | string;
54
-
55
- nextToken?: string;
56
- }
57
- export declare namespace DescribeAffectedAccountsForOrganizationResponse {
58
-
59
- const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
60
- }
61
-
62
- export interface InvalidPaginationToken extends __SmithyException, $MetadataBearer {
63
- name: "InvalidPaginationToken";
64
- $fault: "client";
65
- message?: string;
66
- }
67
-
68
- export interface DateTimeRange {
69
-
70
- from?: Date;
71
-
72
- to?: Date;
73
- }
74
- export declare namespace DateTimeRange {
75
-
76
- const filterSensitiveLog: (obj: DateTimeRange) => any;
77
- }
78
-
79
- export interface EntityFilter {
80
-
81
- eventArns: string[] | undefined;
82
-
83
- entityArns?: string[];
84
-
85
- entityValues?: string[];
86
-
87
- lastUpdatedTimes?: DateTimeRange[];
88
-
89
- tags?: {
90
- [key: string]: string;
91
- }[];
92
-
93
- statusCodes?: (EntityStatusCode | string)[];
94
- }
95
- export declare namespace EntityFilter {
96
-
97
- const filterSensitiveLog: (obj: EntityFilter) => any;
98
- }
99
- export interface DescribeAffectedEntitiesRequest {
100
-
101
- filter: EntityFilter | undefined;
102
-
103
- locale?: string;
104
-
105
- nextToken?: string;
106
-
107
- maxResults?: number;
108
- }
109
- export declare namespace DescribeAffectedEntitiesRequest {
110
-
111
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
112
- }
113
- export interface DescribeAffectedEntitiesResponse {
114
-
115
- entities?: AffectedEntity[];
116
-
117
- nextToken?: string;
118
- }
119
- export declare namespace DescribeAffectedEntitiesResponse {
120
-
121
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
122
- }
123
-
124
- export interface UnsupportedLocale extends __SmithyException, $MetadataBearer {
125
- name: "UnsupportedLocale";
126
- $fault: "client";
127
- message?: string;
128
- }
129
-
130
- export interface EventAccountFilter {
131
-
132
- eventArn: string | undefined;
133
-
134
- awsAccountId?: string;
135
- }
136
- export declare namespace EventAccountFilter {
137
-
138
- const filterSensitiveLog: (obj: EventAccountFilter) => any;
139
- }
140
- export interface DescribeAffectedEntitiesForOrganizationRequest {
141
-
142
- organizationEntityFilters: EventAccountFilter[] | undefined;
143
-
144
- locale?: string;
145
-
146
- nextToken?: string;
147
-
148
- maxResults?: number;
149
- }
150
- export declare namespace DescribeAffectedEntitiesForOrganizationRequest {
151
-
152
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
153
- }
154
-
155
- export interface OrganizationAffectedEntitiesErrorItem {
156
-
157
- awsAccountId?: string;
158
-
159
- eventArn?: string;
160
-
161
- errorName?: string;
162
-
163
- errorMessage?: string;
164
- }
165
- export declare namespace OrganizationAffectedEntitiesErrorItem {
166
-
167
- const filterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
168
- }
169
- export interface DescribeAffectedEntitiesForOrganizationResponse {
170
-
171
- entities?: AffectedEntity[];
172
-
173
- failedSet?: OrganizationAffectedEntitiesErrorItem[];
174
-
175
- nextToken?: string;
176
- }
177
- export declare namespace DescribeAffectedEntitiesForOrganizationResponse {
178
-
179
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
180
- }
181
- export interface DescribeEntityAggregatesRequest {
182
-
183
- eventArns?: string[];
184
- }
185
- export declare namespace DescribeEntityAggregatesRequest {
186
-
187
- const filterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
188
- }
189
-
190
- export interface EntityAggregate {
191
-
192
- eventArn?: string;
193
-
194
- count?: number;
195
- }
196
- export declare namespace EntityAggregate {
197
-
198
- const filterSensitiveLog: (obj: EntityAggregate) => any;
199
- }
200
- export interface DescribeEntityAggregatesResponse {
201
-
202
- entityAggregates?: EntityAggregate[];
203
- }
204
- export declare namespace DescribeEntityAggregatesResponse {
205
-
206
- const filterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
207
- }
208
- export declare enum EventAggregateField {
209
- EventTypeCategory = "eventTypeCategory"
210
- }
211
- export declare enum EventStatusCode {
212
- CLOSED = "closed",
213
- OPEN = "open",
214
- UPCOMING = "upcoming"
215
- }
216
- export declare enum EventTypeCategory {
217
- ACCOUNT_NOTIFICATION = "accountNotification",
218
- INVESTIGATION = "investigation",
219
- ISSUE = "issue",
220
- SCHEDULED_CHANGE = "scheduledChange"
221
- }
222
-
223
- export interface EventFilter {
224
-
225
- eventArns?: string[];
226
-
227
- eventTypeCodes?: string[];
228
-
229
- services?: string[];
230
-
231
- regions?: string[];
232
-
233
- availabilityZones?: string[];
234
-
235
- startTimes?: DateTimeRange[];
236
-
237
- endTimes?: DateTimeRange[];
238
-
239
- lastUpdatedTimes?: DateTimeRange[];
240
-
241
- entityArns?: string[];
242
-
243
- entityValues?: string[];
244
-
245
- eventTypeCategories?: (EventTypeCategory | string)[];
246
-
247
- tags?: {
248
- [key: string]: string;
249
- }[];
250
-
251
- eventStatusCodes?: (EventStatusCode | string)[];
252
- }
253
- export declare namespace EventFilter {
254
-
255
- const filterSensitiveLog: (obj: EventFilter) => any;
256
- }
257
- export interface DescribeEventAggregatesRequest {
258
-
259
- filter?: EventFilter;
260
-
261
- aggregateField: EventAggregateField | string | undefined;
262
-
263
- maxResults?: number;
264
-
265
- nextToken?: string;
266
- }
267
- export declare namespace DescribeEventAggregatesRequest {
268
-
269
- const filterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
270
- }
271
-
272
- export interface EventAggregate {
273
-
274
- aggregateValue?: string;
275
-
276
- count?: number;
277
- }
278
- export declare namespace EventAggregate {
279
-
280
- const filterSensitiveLog: (obj: EventAggregate) => any;
281
- }
282
- export interface DescribeEventAggregatesResponse {
283
-
284
- eventAggregates?: EventAggregate[];
285
-
286
- nextToken?: string;
287
- }
288
- export declare namespace DescribeEventAggregatesResponse {
289
-
290
- const filterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
291
- }
292
- export interface DescribeEventDetailsRequest {
293
-
294
- eventArns: string[] | undefined;
295
-
296
- locale?: string;
297
- }
298
- export declare namespace DescribeEventDetailsRequest {
299
-
300
- const filterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
301
- }
302
-
303
- export interface EventDetailsErrorItem {
304
-
305
- eventArn?: string;
306
-
307
- errorName?: string;
308
-
309
- errorMessage?: string;
310
- }
311
- export declare namespace EventDetailsErrorItem {
312
-
313
- const filterSensitiveLog: (obj: EventDetailsErrorItem) => any;
314
- }
315
-
316
- export interface Event {
317
-
318
- arn?: string;
319
-
320
- service?: string;
321
-
322
- eventTypeCode?: string;
323
-
324
- eventTypeCategory?: EventTypeCategory | string;
325
-
326
- region?: string;
327
-
328
- availabilityZone?: string;
329
-
330
- startTime?: Date;
331
-
332
- endTime?: Date;
333
-
334
- lastUpdatedTime?: Date;
335
-
336
- statusCode?: EventStatusCode | string;
337
-
338
- eventScopeCode?: EventScopeCode | string;
339
- }
340
- export declare namespace Event {
341
-
342
- const filterSensitiveLog: (obj: Event) => any;
343
- }
344
-
345
- export interface EventDescription {
346
-
347
- latestDescription?: string;
348
- }
349
- export declare namespace EventDescription {
350
-
351
- const filterSensitiveLog: (obj: EventDescription) => any;
352
- }
353
-
354
- export interface EventDetails {
355
-
356
- event?: Event;
357
-
358
- eventDescription?: EventDescription;
359
-
360
- eventMetadata?: {
361
- [key: string]: string;
362
- };
363
- }
364
- export declare namespace EventDetails {
365
-
366
- const filterSensitiveLog: (obj: EventDetails) => any;
367
- }
368
- export interface DescribeEventDetailsResponse {
369
-
370
- successfulSet?: EventDetails[];
371
-
372
- failedSet?: EventDetailsErrorItem[];
373
- }
374
- export declare namespace DescribeEventDetailsResponse {
375
-
376
- const filterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
377
- }
378
- export interface DescribeEventDetailsForOrganizationRequest {
379
-
380
- organizationEventDetailFilters: EventAccountFilter[] | undefined;
381
-
382
- locale?: string;
383
- }
384
- export declare namespace DescribeEventDetailsForOrganizationRequest {
385
-
386
- const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
387
- }
388
-
389
- export interface OrganizationEventDetailsErrorItem {
390
-
391
- awsAccountId?: string;
392
-
393
- eventArn?: string;
394
-
395
- errorName?: string;
396
-
397
- errorMessage?: string;
398
- }
399
- export declare namespace OrganizationEventDetailsErrorItem {
400
-
401
- const filterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
402
- }
403
-
404
- export interface OrganizationEventDetails {
405
-
406
- awsAccountId?: string;
407
-
408
- event?: Event;
409
-
410
- eventDescription?: EventDescription;
411
-
412
- eventMetadata?: {
413
- [key: string]: string;
414
- };
415
- }
416
- export declare namespace OrganizationEventDetails {
417
-
418
- const filterSensitiveLog: (obj: OrganizationEventDetails) => any;
419
- }
420
- export interface DescribeEventDetailsForOrganizationResponse {
421
-
422
- successfulSet?: OrganizationEventDetails[];
423
-
424
- failedSet?: OrganizationEventDetailsErrorItem[];
425
- }
426
- export declare namespace DescribeEventDetailsForOrganizationResponse {
427
-
428
- const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
429
- }
430
- export interface DescribeEventsRequest {
431
-
432
- filter?: EventFilter;
433
-
434
- nextToken?: string;
435
-
436
- maxResults?: number;
437
-
438
- locale?: string;
439
- }
440
- export declare namespace DescribeEventsRequest {
441
-
442
- const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
443
- }
444
- export interface DescribeEventsResponse {
445
-
446
- events?: Event[];
447
-
448
- nextToken?: string;
449
- }
450
- export declare namespace DescribeEventsResponse {
451
-
452
- const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
453
- }
454
-
455
- export interface OrganizationEventFilter {
456
-
457
- eventTypeCodes?: string[];
458
-
459
- awsAccountIds?: string[];
460
-
461
- services?: string[];
462
-
463
- regions?: string[];
464
-
465
- startTime?: DateTimeRange;
466
-
467
- endTime?: DateTimeRange;
468
-
469
- lastUpdatedTime?: DateTimeRange;
470
-
471
- entityArns?: string[];
472
-
473
- entityValues?: string[];
474
-
475
- eventTypeCategories?: (EventTypeCategory | string)[];
476
-
477
- eventStatusCodes?: (EventStatusCode | string)[];
478
- }
479
- export declare namespace OrganizationEventFilter {
480
-
481
- const filterSensitiveLog: (obj: OrganizationEventFilter) => any;
482
- }
483
- export interface DescribeEventsForOrganizationRequest {
484
-
485
- filter?: OrganizationEventFilter;
486
-
487
- nextToken?: string;
488
-
489
- maxResults?: number;
490
-
491
- locale?: string;
492
- }
493
- export declare namespace DescribeEventsForOrganizationRequest {
494
-
495
- const filterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
496
- }
497
-
498
- export interface OrganizationEvent {
499
-
500
- arn?: string;
501
-
502
- service?: string;
503
-
504
- eventTypeCode?: string;
505
-
506
- eventTypeCategory?: EventTypeCategory | string;
507
-
508
- eventScopeCode?: EventScopeCode | string;
509
-
510
- region?: string;
511
-
512
- startTime?: Date;
513
-
514
- endTime?: Date;
515
-
516
- lastUpdatedTime?: Date;
517
-
518
- statusCode?: EventStatusCode | string;
519
- }
520
- export declare namespace OrganizationEvent {
521
-
522
- const filterSensitiveLog: (obj: OrganizationEvent) => any;
523
- }
524
- export interface DescribeEventsForOrganizationResponse {
525
-
526
- events?: OrganizationEvent[];
527
-
528
- nextToken?: string;
529
- }
530
- export declare namespace DescribeEventsForOrganizationResponse {
531
-
532
- const filterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
533
- }
534
-
535
- export interface EventTypeFilter {
536
-
537
- eventTypeCodes?: string[];
538
-
539
- services?: string[];
540
-
541
- eventTypeCategories?: (EventTypeCategory | string)[];
542
- }
543
- export declare namespace EventTypeFilter {
544
-
545
- const filterSensitiveLog: (obj: EventTypeFilter) => any;
546
- }
547
- export interface DescribeEventTypesRequest {
548
-
549
- filter?: EventTypeFilter;
550
-
551
- locale?: string;
552
-
553
- nextToken?: string;
554
-
555
- maxResults?: number;
556
- }
557
- export declare namespace DescribeEventTypesRequest {
558
-
559
- const filterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
560
- }
561
-
562
- export interface EventType {
563
-
564
- service?: string;
565
-
566
- code?: string;
567
-
568
- category?: EventTypeCategory | string;
569
- }
570
- export declare namespace EventType {
571
-
572
- const filterSensitiveLog: (obj: EventType) => any;
573
- }
574
- export interface DescribeEventTypesResponse {
575
-
576
- eventTypes?: EventType[];
577
-
578
- nextToken?: string;
579
- }
580
- export declare namespace DescribeEventTypesResponse {
581
-
582
- const filterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
583
- }
584
- export interface DescribeHealthServiceStatusForOrganizationResponse {
585
-
586
- healthServiceAccessStatusForOrganization?: string;
587
- }
588
- export declare namespace DescribeHealthServiceStatusForOrganizationResponse {
589
-
590
- const filterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
591
- }
592
-
593
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
594
- name: "ConcurrentModificationException";
595
- $fault: "client";
596
- message?: string;
597
- }
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeAffectedAccountsForOrganizationCommandInput, DescribeAffectedAccountsForOrganizationCommandOutput } from "../commands/DescribeAffectedAccountsForOrganizationCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeAffectedAccountsForOrganization(config: HealthPaginationConfiguration, input: DescribeAffectedAccountsForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedAccountsForOrganizationCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeAffectedEntitiesForOrganizationCommandInput, DescribeAffectedEntitiesForOrganizationCommandOutput } from "../commands/DescribeAffectedEntitiesForOrganizationCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeAffectedEntitiesForOrganization(config: HealthPaginationConfiguration, input: DescribeAffectedEntitiesForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedEntitiesForOrganizationCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeAffectedEntitiesCommandInput, DescribeAffectedEntitiesCommandOutput } from "../commands/DescribeAffectedEntitiesCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeAffectedEntities(config: HealthPaginationConfiguration, input: DescribeAffectedEntitiesCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedEntitiesCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeEventAggregatesCommandInput, DescribeEventAggregatesCommandOutput } from "../commands/DescribeEventAggregatesCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeEventAggregates(config: HealthPaginationConfiguration, input: DescribeEventAggregatesCommandInput, ...additionalArguments: any): Paginator<DescribeEventAggregatesCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeEventTypesCommandInput, DescribeEventTypesCommandOutput } from "../commands/DescribeEventTypesCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeEventTypes(config: HealthPaginationConfiguration, input: DescribeEventTypesCommandInput, ...additionalArguments: any): Paginator<DescribeEventTypesCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeEventsForOrganizationCommandInput, DescribeEventsForOrganizationCommandOutput } from "../commands/DescribeEventsForOrganizationCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeEventsForOrganization(config: HealthPaginationConfiguration, input: DescribeEventsForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeEventsForOrganizationCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "../commands/DescribeEventsCommand";
3
- import { HealthPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeEvents(config: HealthPaginationConfiguration, input: DescribeEventsCommandInput, ...additionalArguments: any): Paginator<DescribeEventsCommandOutput>;
@@ -1,6 +0,0 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Health } from "../Health";
3
- import { HealthClient } from "../HealthClient";
4
- export interface HealthPaginationConfiguration extends PaginationConfiguration {
5
- client: Health | HealthClient;
6
- }
@@ -1,8 +0,0 @@
1
- export * from "./DescribeAffectedAccountsForOrganizationPaginator";
2
- export * from "./DescribeAffectedEntitiesForOrganizationPaginator";
3
- export * from "./DescribeAffectedEntitiesPaginator";
4
- export * from "./DescribeEventAggregatesPaginator";
5
- export * from "./DescribeEventTypesPaginator";
6
- export * from "./DescribeEventsForOrganizationPaginator";
7
- export * from "./DescribeEventsPaginator";
8
- export * from "./Interfaces";
@@ -1,41 +0,0 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DescribeAffectedAccountsForOrganizationCommandInput, DescribeAffectedAccountsForOrganizationCommandOutput } from "../commands/DescribeAffectedAccountsForOrganizationCommand";
4
- import { DescribeAffectedEntitiesCommandInput, DescribeAffectedEntitiesCommandOutput } from "../commands/DescribeAffectedEntitiesCommand";
5
- import { DescribeAffectedEntitiesForOrganizationCommandInput, DescribeAffectedEntitiesForOrganizationCommandOutput } from "../commands/DescribeAffectedEntitiesForOrganizationCommand";
6
- import { DescribeEntityAggregatesCommandInput, DescribeEntityAggregatesCommandOutput } from "../commands/DescribeEntityAggregatesCommand";
7
- import { DescribeEventAggregatesCommandInput, DescribeEventAggregatesCommandOutput } from "../commands/DescribeEventAggregatesCommand";
8
- import { DescribeEventDetailsCommandInput, DescribeEventDetailsCommandOutput } from "../commands/DescribeEventDetailsCommand";
9
- import { DescribeEventDetailsForOrganizationCommandInput, DescribeEventDetailsForOrganizationCommandOutput } from "../commands/DescribeEventDetailsForOrganizationCommand";
10
- import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "../commands/DescribeEventsCommand";
11
- import { DescribeEventsForOrganizationCommandInput, DescribeEventsForOrganizationCommandOutput } from "../commands/DescribeEventsForOrganizationCommand";
12
- import { DescribeEventTypesCommandInput, DescribeEventTypesCommandOutput } from "../commands/DescribeEventTypesCommand";
13
- import { DescribeHealthServiceStatusForOrganizationCommandInput, DescribeHealthServiceStatusForOrganizationCommandOutput } from "../commands/DescribeHealthServiceStatusForOrganizationCommand";
14
- import { DisableHealthServiceAccessForOrganizationCommandInput, DisableHealthServiceAccessForOrganizationCommandOutput } from "../commands/DisableHealthServiceAccessForOrganizationCommand";
15
- import { EnableHealthServiceAccessForOrganizationCommandInput, EnableHealthServiceAccessForOrganizationCommandOutput } from "../commands/EnableHealthServiceAccessForOrganizationCommand";
16
- export declare const serializeAws_json1_1DescribeAffectedAccountsForOrganizationCommand: (input: DescribeAffectedAccountsForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_json1_1DescribeAffectedEntitiesCommand: (input: DescribeAffectedEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_1DescribeAffectedEntitiesForOrganizationCommand: (input: DescribeAffectedEntitiesForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_1DescribeEntityAggregatesCommand: (input: DescribeEntityAggregatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_1DescribeEventAggregatesCommand: (input: DescribeEventAggregatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_1DescribeEventDetailsCommand: (input: DescribeEventDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_1DescribeEventDetailsForOrganizationCommand: (input: DescribeEventDetailsForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_json1_1DescribeEventsCommand: (input: DescribeEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_json1_1DescribeEventsForOrganizationCommand: (input: DescribeEventsForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_1DescribeEventTypesCommand: (input: DescribeEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_1DescribeHealthServiceStatusForOrganizationCommand: (input: DescribeHealthServiceStatusForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_1DisableHealthServiceAccessForOrganizationCommand: (input: DisableHealthServiceAccessForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_1EnableHealthServiceAccessForOrganizationCommand: (input: EnableHealthServiceAccessForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_json1_1DescribeAffectedAccountsForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAffectedAccountsForOrganizationCommandOutput>;
30
- export declare const deserializeAws_json1_1DescribeAffectedEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAffectedEntitiesCommandOutput>;
31
- export declare const deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAffectedEntitiesForOrganizationCommandOutput>;
32
- export declare const deserializeAws_json1_1DescribeEntityAggregatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEntityAggregatesCommandOutput>;
33
- export declare const deserializeAws_json1_1DescribeEventAggregatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventAggregatesCommandOutput>;
34
- export declare const deserializeAws_json1_1DescribeEventDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventDetailsCommandOutput>;
35
- export declare const deserializeAws_json1_1DescribeEventDetailsForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventDetailsForOrganizationCommandOutput>;
36
- export declare const deserializeAws_json1_1DescribeEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventsCommandOutput>;
37
- export declare const deserializeAws_json1_1DescribeEventsForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventsForOrganizationCommandOutput>;
38
- export declare const deserializeAws_json1_1DescribeEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventTypesCommandOutput>;
39
- export declare const deserializeAws_json1_1DescribeHealthServiceStatusForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHealthServiceStatusForOrganizationCommandOutput>;
40
- export declare const deserializeAws_json1_1DisableHealthServiceAccessForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableHealthServiceAccessForOrganizationCommandOutput>;
41
- export declare const deserializeAws_json1_1EnableHealthServiceAccessForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableHealthServiceAccessForOrganizationCommandOutput>;