@aws-sdk/client-health 3.130.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/DescribeAffectedAccountsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeAffectedEntitiesCommand.js +2 -2
- package/dist-cjs/commands/DescribeAffectedEntitiesForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeEntityAggregatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventAggregatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventDetailsCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventDetailsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventTypesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventsCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeHealthServiceStatusForOrganizationCommand.js +1 -1
- package/dist-cjs/endpoints.js +24 -2
- package/dist-cjs/models/models_0.js +157 -235
- package/dist-es/commands/DescribeAffectedAccountsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeAffectedEntitiesCommand.js +3 -3
- package/dist-es/commands/DescribeAffectedEntitiesForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeEntityAggregatesCommand.js +3 -3
- package/dist-es/commands/DescribeEventAggregatesCommand.js +3 -3
- package/dist-es/commands/DescribeEventDetailsCommand.js +3 -3
- package/dist-es/commands/DescribeEventDetailsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeEventTypesCommand.js +3 -3
- package/dist-es/commands/DescribeEventsCommand.js +3 -3
- package/dist-es/commands/DescribeEventsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeHealthServiceStatusForOrganizationCommand.js +2 -2
- package/dist-es/endpoints.js +24 -2
- package/dist-es/models/models_0.js +39 -156
- package/dist-types/models/models_0.d.ts +156 -234
- package/dist-types/ts3.4/models/models_0.d.ts +78 -156
- package/package.json +7 -7
|
@@ -55,12 +55,6 @@ export interface AffectedEntity {
|
|
|
55
55
|
*/
|
|
56
56
|
tags?: Record<string, string>;
|
|
57
57
|
}
|
|
58
|
-
export declare namespace AffectedEntity {
|
|
59
|
-
/**
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
const filterSensitiveLog: (obj: AffectedEntity) => any;
|
|
63
|
-
}
|
|
64
58
|
export interface DescribeAffectedAccountsForOrganizationRequest {
|
|
65
59
|
/**
|
|
66
60
|
* <p>The unique identifier for the event. The event ARN has the
|
|
@@ -85,12 +79,6 @@ export interface DescribeAffectedAccountsForOrganizationRequest {
|
|
|
85
79
|
*/
|
|
86
80
|
maxResults?: number;
|
|
87
81
|
}
|
|
88
|
-
export declare namespace DescribeAffectedAccountsForOrganizationRequest {
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
|
|
93
|
-
}
|
|
94
82
|
export declare enum EventScopeCode {
|
|
95
83
|
ACCOUNT_SPECIFIC = "ACCOUNT_SPECIFIC",
|
|
96
84
|
NONE = "NONE",
|
|
@@ -131,12 +119,6 @@ export interface DescribeAffectedAccountsForOrganizationResponse {
|
|
|
131
119
|
*/
|
|
132
120
|
nextToken?: string;
|
|
133
121
|
}
|
|
134
|
-
export declare namespace DescribeAffectedAccountsForOrganizationResponse {
|
|
135
|
-
/**
|
|
136
|
-
* @internal
|
|
137
|
-
*/
|
|
138
|
-
const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
|
|
139
|
-
}
|
|
140
122
|
/**
|
|
141
123
|
* <p>The specified pagination token (<code>nextToken</code>) is not valid.</p>
|
|
142
124
|
*/
|
|
@@ -167,12 +149,6 @@ export interface DateTimeRange {
|
|
|
167
149
|
*/
|
|
168
150
|
to?: Date;
|
|
169
151
|
}
|
|
170
|
-
export declare namespace DateTimeRange {
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
const filterSensitiveLog: (obj: DateTimeRange) => any;
|
|
175
|
-
}
|
|
176
152
|
/**
|
|
177
153
|
* <p>The values to use to filter results from the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeAffectedEntities.html">DescribeAffectedEntities</a> operation.</p>
|
|
178
154
|
*/
|
|
@@ -207,12 +183,6 @@ export interface EntityFilter {
|
|
|
207
183
|
*/
|
|
208
184
|
statusCodes?: (EntityStatusCode | string)[];
|
|
209
185
|
}
|
|
210
|
-
export declare namespace EntityFilter {
|
|
211
|
-
/**
|
|
212
|
-
* @internal
|
|
213
|
-
*/
|
|
214
|
-
const filterSensitiveLog: (obj: EntityFilter) => any;
|
|
215
|
-
}
|
|
216
186
|
export interface DescribeAffectedEntitiesRequest {
|
|
217
187
|
/**
|
|
218
188
|
* <p>Values to narrow the results returned. At least one event ARN is required.</p>
|
|
@@ -234,12 +204,6 @@ export interface DescribeAffectedEntitiesRequest {
|
|
|
234
204
|
*/
|
|
235
205
|
maxResults?: number;
|
|
236
206
|
}
|
|
237
|
-
export declare namespace DescribeAffectedEntitiesRequest {
|
|
238
|
-
/**
|
|
239
|
-
* @internal
|
|
240
|
-
*/
|
|
241
|
-
const filterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
|
|
242
|
-
}
|
|
243
207
|
export interface DescribeAffectedEntitiesResponse {
|
|
244
208
|
/**
|
|
245
209
|
* <p>The entities that match the filter criteria.</p>
|
|
@@ -253,12 +217,6 @@ export interface DescribeAffectedEntitiesResponse {
|
|
|
253
217
|
*/
|
|
254
218
|
nextToken?: string;
|
|
255
219
|
}
|
|
256
|
-
export declare namespace DescribeAffectedEntitiesResponse {
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
const filterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
|
|
261
|
-
}
|
|
262
220
|
/**
|
|
263
221
|
* <p>The specified locale is not supported.</p>
|
|
264
222
|
*/
|
|
@@ -290,12 +248,6 @@ export interface EventAccountFilter {
|
|
|
290
248
|
*/
|
|
291
249
|
awsAccountId?: string;
|
|
292
250
|
}
|
|
293
|
-
export declare namespace EventAccountFilter {
|
|
294
|
-
/**
|
|
295
|
-
* @internal
|
|
296
|
-
*/
|
|
297
|
-
const filterSensitiveLog: (obj: EventAccountFilter) => any;
|
|
298
|
-
}
|
|
299
251
|
export interface DescribeAffectedEntitiesForOrganizationRequest {
|
|
300
252
|
/**
|
|
301
253
|
* <p>A JSON set of elements including the <code>awsAccountId</code> and the
|
|
@@ -318,12 +270,6 @@ export interface DescribeAffectedEntitiesForOrganizationRequest {
|
|
|
318
270
|
*/
|
|
319
271
|
maxResults?: number;
|
|
320
272
|
}
|
|
321
|
-
export declare namespace DescribeAffectedEntitiesForOrganizationRequest {
|
|
322
|
-
/**
|
|
323
|
-
* @internal
|
|
324
|
-
*/
|
|
325
|
-
const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
|
|
326
|
-
}
|
|
327
273
|
/**
|
|
328
274
|
* <p>Error information returned when a <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeAffectedEntitiesForOrganization.html">DescribeAffectedEntitiesForOrganization</a> operation can't find or process a
|
|
329
275
|
* specific entity.</p>
|
|
@@ -355,12 +301,6 @@ export interface OrganizationAffectedEntitiesErrorItem {
|
|
|
355
301
|
*/
|
|
356
302
|
errorMessage?: string;
|
|
357
303
|
}
|
|
358
|
-
export declare namespace OrganizationAffectedEntitiesErrorItem {
|
|
359
|
-
/**
|
|
360
|
-
* @internal
|
|
361
|
-
*/
|
|
362
|
-
const filterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
|
|
363
|
-
}
|
|
364
304
|
export interface DescribeAffectedEntitiesForOrganizationResponse {
|
|
365
305
|
/**
|
|
366
306
|
* <p>A JSON set of elements including the <code>awsAccountId</code> and its
|
|
@@ -381,12 +321,6 @@ export interface DescribeAffectedEntitiesForOrganizationResponse {
|
|
|
381
321
|
*/
|
|
382
322
|
nextToken?: string;
|
|
383
323
|
}
|
|
384
|
-
export declare namespace DescribeAffectedEntitiesForOrganizationResponse {
|
|
385
|
-
/**
|
|
386
|
-
* @internal
|
|
387
|
-
*/
|
|
388
|
-
const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
|
|
389
|
-
}
|
|
390
324
|
export interface DescribeEntityAggregatesRequest {
|
|
391
325
|
/**
|
|
392
326
|
* <p>A list of event ARNs (unique identifiers). For example: <code>"arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"</code>
|
|
@@ -394,12 +328,6 @@ export interface DescribeEntityAggregatesRequest {
|
|
|
394
328
|
*/
|
|
395
329
|
eventArns?: string[];
|
|
396
330
|
}
|
|
397
|
-
export declare namespace DescribeEntityAggregatesRequest {
|
|
398
|
-
/**
|
|
399
|
-
* @internal
|
|
400
|
-
*/
|
|
401
|
-
const filterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
|
|
402
|
-
}
|
|
403
331
|
/**
|
|
404
332
|
* <p>The number of entities that are affected by one or more events. Returned by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEntityAggregates.html">DescribeEntityAggregates</a> operation.</p>
|
|
405
333
|
*/
|
|
@@ -420,24 +348,12 @@ export interface EntityAggregate {
|
|
|
420
348
|
*/
|
|
421
349
|
count?: number;
|
|
422
350
|
}
|
|
423
|
-
export declare namespace EntityAggregate {
|
|
424
|
-
/**
|
|
425
|
-
* @internal
|
|
426
|
-
*/
|
|
427
|
-
const filterSensitiveLog: (obj: EntityAggregate) => any;
|
|
428
|
-
}
|
|
429
351
|
export interface DescribeEntityAggregatesResponse {
|
|
430
352
|
/**
|
|
431
353
|
* <p>The number of entities that are affected by each of the specified events.</p>
|
|
432
354
|
*/
|
|
433
355
|
entityAggregates?: EntityAggregate[];
|
|
434
356
|
}
|
|
435
|
-
export declare namespace DescribeEntityAggregatesResponse {
|
|
436
|
-
/**
|
|
437
|
-
* @internal
|
|
438
|
-
*/
|
|
439
|
-
const filterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
|
|
440
|
-
}
|
|
441
357
|
export declare enum EventAggregateField {
|
|
442
358
|
EventTypeCategory = "eventTypeCategory"
|
|
443
359
|
}
|
|
@@ -518,12 +434,6 @@ export interface EventFilter {
|
|
|
518
434
|
*/
|
|
519
435
|
eventStatusCodes?: (EventStatusCode | string)[];
|
|
520
436
|
}
|
|
521
|
-
export declare namespace EventFilter {
|
|
522
|
-
/**
|
|
523
|
-
* @internal
|
|
524
|
-
*/
|
|
525
|
-
const filterSensitiveLog: (obj: EventFilter) => any;
|
|
526
|
-
}
|
|
527
437
|
export interface DescribeEventAggregatesRequest {
|
|
528
438
|
/**
|
|
529
439
|
* <p>Values to narrow the results returned.</p>
|
|
@@ -545,12 +455,6 @@ export interface DescribeEventAggregatesRequest {
|
|
|
545
455
|
*/
|
|
546
456
|
nextToken?: string;
|
|
547
457
|
}
|
|
548
|
-
export declare namespace DescribeEventAggregatesRequest {
|
|
549
|
-
/**
|
|
550
|
-
* @internal
|
|
551
|
-
*/
|
|
552
|
-
const filterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
|
|
553
|
-
}
|
|
554
458
|
/**
|
|
555
459
|
* <p>The number of events of each issue type. Returned by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventAggregates.html">DescribeEventAggregates</a> operation.</p>
|
|
556
460
|
*/
|
|
@@ -564,12 +468,6 @@ export interface EventAggregate {
|
|
|
564
468
|
*/
|
|
565
469
|
count?: number;
|
|
566
470
|
}
|
|
567
|
-
export declare namespace EventAggregate {
|
|
568
|
-
/**
|
|
569
|
-
* @internal
|
|
570
|
-
*/
|
|
571
|
-
const filterSensitiveLog: (obj: EventAggregate) => any;
|
|
572
|
-
}
|
|
573
471
|
export interface DescribeEventAggregatesResponse {
|
|
574
472
|
/**
|
|
575
473
|
* <p>The number of events in each category that meet the optional filter criteria.</p>
|
|
@@ -583,12 +481,6 @@ export interface DescribeEventAggregatesResponse {
|
|
|
583
481
|
*/
|
|
584
482
|
nextToken?: string;
|
|
585
483
|
}
|
|
586
|
-
export declare namespace DescribeEventAggregatesResponse {
|
|
587
|
-
/**
|
|
588
|
-
* @internal
|
|
589
|
-
*/
|
|
590
|
-
const filterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
|
|
591
|
-
}
|
|
592
484
|
export interface DescribeEventDetailsRequest {
|
|
593
485
|
/**
|
|
594
486
|
* <p>A list of event ARNs (unique identifiers). For example: <code>"arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"</code>
|
|
@@ -600,12 +492,6 @@ export interface DescribeEventDetailsRequest {
|
|
|
600
492
|
*/
|
|
601
493
|
locale?: string;
|
|
602
494
|
}
|
|
603
|
-
export declare namespace DescribeEventDetailsRequest {
|
|
604
|
-
/**
|
|
605
|
-
* @internal
|
|
606
|
-
*/
|
|
607
|
-
const filterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
|
|
608
|
-
}
|
|
609
495
|
/**
|
|
610
496
|
* <p>Error information returned when a <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetails.html">DescribeEventDetails</a> operation can't find a specified event.</p>
|
|
611
497
|
*/
|
|
@@ -630,12 +516,6 @@ export interface EventDetailsErrorItem {
|
|
|
630
516
|
*/
|
|
631
517
|
errorMessage?: string;
|
|
632
518
|
}
|
|
633
|
-
export declare namespace EventDetailsErrorItem {
|
|
634
|
-
/**
|
|
635
|
-
* @internal
|
|
636
|
-
*/
|
|
637
|
-
const filterSensitiveLog: (obj: EventDetailsErrorItem) => any;
|
|
638
|
-
}
|
|
639
519
|
/**
|
|
640
520
|
* <p>Summary information about an Health event.</p>
|
|
641
521
|
* <p>Health events can be public or account-specific:</p>
|
|
@@ -733,12 +613,6 @@ export interface Event {
|
|
|
733
613
|
*/
|
|
734
614
|
eventScopeCode?: EventScopeCode | string;
|
|
735
615
|
}
|
|
736
|
-
export declare namespace Event {
|
|
737
|
-
/**
|
|
738
|
-
* @internal
|
|
739
|
-
*/
|
|
740
|
-
const filterSensitiveLog: (obj: Event) => any;
|
|
741
|
-
}
|
|
742
616
|
/**
|
|
743
617
|
* <p>The detailed description of the event. Included in the information returned by the
|
|
744
618
|
* <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetails.html">DescribeEventDetails</a> operation.</p>
|
|
@@ -749,12 +623,6 @@ export interface EventDescription {
|
|
|
749
623
|
*/
|
|
750
624
|
latestDescription?: string;
|
|
751
625
|
}
|
|
752
|
-
export declare namespace EventDescription {
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
*/
|
|
756
|
-
const filterSensitiveLog: (obj: EventDescription) => any;
|
|
757
|
-
}
|
|
758
626
|
/**
|
|
759
627
|
* <p>Detailed information about an event. A combination of an <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html">Event</a> object, an <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EventDescription.html">EventDescription</a> object, and additional metadata about the event. Returned by
|
|
760
628
|
* the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetails.html">DescribeEventDetails</a> operation.</p>
|
|
@@ -773,12 +641,6 @@ export interface EventDetails {
|
|
|
773
641
|
*/
|
|
774
642
|
eventMetadata?: Record<string, string>;
|
|
775
643
|
}
|
|
776
|
-
export declare namespace EventDetails {
|
|
777
|
-
/**
|
|
778
|
-
* @internal
|
|
779
|
-
*/
|
|
780
|
-
const filterSensitiveLog: (obj: EventDetails) => any;
|
|
781
|
-
}
|
|
782
644
|
export interface DescribeEventDetailsResponse {
|
|
783
645
|
/**
|
|
784
646
|
* <p>Information about the events that could be retrieved.</p>
|
|
@@ -789,12 +651,6 @@ export interface DescribeEventDetailsResponse {
|
|
|
789
651
|
*/
|
|
790
652
|
failedSet?: EventDetailsErrorItem[];
|
|
791
653
|
}
|
|
792
|
-
export declare namespace DescribeEventDetailsResponse {
|
|
793
|
-
/**
|
|
794
|
-
* @internal
|
|
795
|
-
*/
|
|
796
|
-
const filterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
|
|
797
|
-
}
|
|
798
654
|
export interface DescribeEventDetailsForOrganizationRequest {
|
|
799
655
|
/**
|
|
800
656
|
* <p>A set of JSON elements that includes the <code>awsAccountId</code> and the
|
|
@@ -806,12 +662,6 @@ export interface DescribeEventDetailsForOrganizationRequest {
|
|
|
806
662
|
*/
|
|
807
663
|
locale?: string;
|
|
808
664
|
}
|
|
809
|
-
export declare namespace DescribeEventDetailsForOrganizationRequest {
|
|
810
|
-
/**
|
|
811
|
-
* @internal
|
|
812
|
-
*/
|
|
813
|
-
const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
|
|
814
|
-
}
|
|
815
665
|
/**
|
|
816
666
|
* <p>Error information returned when a <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetailsForOrganization.html">DescribeEventDetailsForOrganization</a> operation can't find a specified
|
|
817
667
|
* event.</p>
|
|
@@ -855,12 +705,6 @@ export interface OrganizationEventDetailsErrorItem {
|
|
|
855
705
|
*/
|
|
856
706
|
errorMessage?: string;
|
|
857
707
|
}
|
|
858
|
-
export declare namespace OrganizationEventDetailsErrorItem {
|
|
859
|
-
/**
|
|
860
|
-
* @internal
|
|
861
|
-
*/
|
|
862
|
-
const filterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
|
|
863
|
-
}
|
|
864
708
|
/**
|
|
865
709
|
* <p>Detailed information about an event. A combination of an <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html">Event</a> object, an <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EventDescription.html">EventDescription</a> object, and additional metadata about the event. Returned by
|
|
866
710
|
* the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetailsForOrganization.html">DescribeEventDetailsForOrganization</a> operation.</p>
|
|
@@ -903,12 +747,6 @@ export interface OrganizationEventDetails {
|
|
|
903
747
|
*/
|
|
904
748
|
eventMetadata?: Record<string, string>;
|
|
905
749
|
}
|
|
906
|
-
export declare namespace OrganizationEventDetails {
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
*/
|
|
910
|
-
const filterSensitiveLog: (obj: OrganizationEventDetails) => any;
|
|
911
|
-
}
|
|
912
750
|
export interface DescribeEventDetailsForOrganizationResponse {
|
|
913
751
|
/**
|
|
914
752
|
* <p>Information about the events that could be retrieved.</p>
|
|
@@ -919,12 +757,6 @@ export interface DescribeEventDetailsForOrganizationResponse {
|
|
|
919
757
|
*/
|
|
920
758
|
failedSet?: OrganizationEventDetailsErrorItem[];
|
|
921
759
|
}
|
|
922
|
-
export declare namespace DescribeEventDetailsForOrganizationResponse {
|
|
923
|
-
/**
|
|
924
|
-
* @internal
|
|
925
|
-
*/
|
|
926
|
-
const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
|
|
927
|
-
}
|
|
928
760
|
export interface DescribeEventsRequest {
|
|
929
761
|
/**
|
|
930
762
|
* <p>Values to narrow the results returned.</p>
|
|
@@ -946,12 +778,6 @@ export interface DescribeEventsRequest {
|
|
|
946
778
|
*/
|
|
947
779
|
locale?: string;
|
|
948
780
|
}
|
|
949
|
-
export declare namespace DescribeEventsRequest {
|
|
950
|
-
/**
|
|
951
|
-
* @internal
|
|
952
|
-
*/
|
|
953
|
-
const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
|
|
954
|
-
}
|
|
955
781
|
export interface DescribeEventsResponse {
|
|
956
782
|
/**
|
|
957
783
|
* <p>The events that match the specified filter criteria.</p>
|
|
@@ -965,12 +791,6 @@ export interface DescribeEventsResponse {
|
|
|
965
791
|
*/
|
|
966
792
|
nextToken?: string;
|
|
967
793
|
}
|
|
968
|
-
export declare namespace DescribeEventsResponse {
|
|
969
|
-
/**
|
|
970
|
-
* @internal
|
|
971
|
-
*/
|
|
972
|
-
const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
|
|
973
|
-
}
|
|
974
794
|
/**
|
|
975
795
|
* <p>The values to filter results from the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventsForOrganization.html">DescribeEventsForOrganization</a> operation.</p>
|
|
976
796
|
*/
|
|
@@ -1041,12 +861,6 @@ export interface OrganizationEventFilter {
|
|
|
1041
861
|
*/
|
|
1042
862
|
eventStatusCodes?: (EventStatusCode | string)[];
|
|
1043
863
|
}
|
|
1044
|
-
export declare namespace OrganizationEventFilter {
|
|
1045
|
-
/**
|
|
1046
|
-
* @internal
|
|
1047
|
-
*/
|
|
1048
|
-
const filterSensitiveLog: (obj: OrganizationEventFilter) => any;
|
|
1049
|
-
}
|
|
1050
864
|
export interface DescribeEventsForOrganizationRequest {
|
|
1051
865
|
/**
|
|
1052
866
|
* <p>Values to narrow the results returned.</p>
|
|
@@ -1068,12 +882,6 @@ export interface DescribeEventsForOrganizationRequest {
|
|
|
1068
882
|
*/
|
|
1069
883
|
locale?: string;
|
|
1070
884
|
}
|
|
1071
|
-
export declare namespace DescribeEventsForOrganizationRequest {
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
const filterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
|
|
1076
|
-
}
|
|
1077
885
|
/**
|
|
1078
886
|
* <p>Summary information about an event, returned by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventsForOrganization.html">DescribeEventsForOrganization</a> operation.</p>
|
|
1079
887
|
*/
|
|
@@ -1149,12 +957,6 @@ export interface OrganizationEvent {
|
|
|
1149
957
|
*/
|
|
1150
958
|
statusCode?: EventStatusCode | string;
|
|
1151
959
|
}
|
|
1152
|
-
export declare namespace OrganizationEvent {
|
|
1153
|
-
/**
|
|
1154
|
-
* @internal
|
|
1155
|
-
*/
|
|
1156
|
-
const filterSensitiveLog: (obj: OrganizationEvent) => any;
|
|
1157
|
-
}
|
|
1158
960
|
export interface DescribeEventsForOrganizationResponse {
|
|
1159
961
|
/**
|
|
1160
962
|
* <p>The events that match the specified filter criteria.</p>
|
|
@@ -1168,12 +970,6 @@ export interface DescribeEventsForOrganizationResponse {
|
|
|
1168
970
|
*/
|
|
1169
971
|
nextToken?: string;
|
|
1170
972
|
}
|
|
1171
|
-
export declare namespace DescribeEventsForOrganizationResponse {
|
|
1172
|
-
/**
|
|
1173
|
-
* @internal
|
|
1174
|
-
*/
|
|
1175
|
-
const filterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
|
|
1176
|
-
}
|
|
1177
973
|
/**
|
|
1178
974
|
* <p>The values to use to filter results from the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventTypes.html">DescribeEventTypes</a>
|
|
1179
975
|
* operation.</p>
|
|
@@ -1194,12 +990,6 @@ export interface EventTypeFilter {
|
|
|
1194
990
|
*/
|
|
1195
991
|
eventTypeCategories?: (EventTypeCategory | string)[];
|
|
1196
992
|
}
|
|
1197
|
-
export declare namespace EventTypeFilter {
|
|
1198
|
-
/**
|
|
1199
|
-
* @internal
|
|
1200
|
-
*/
|
|
1201
|
-
const filterSensitiveLog: (obj: EventTypeFilter) => any;
|
|
1202
|
-
}
|
|
1203
993
|
export interface DescribeEventTypesRequest {
|
|
1204
994
|
/**
|
|
1205
995
|
* <p>Values to narrow the results returned.</p>
|
|
@@ -1221,12 +1011,6 @@ export interface DescribeEventTypesRequest {
|
|
|
1221
1011
|
*/
|
|
1222
1012
|
maxResults?: number;
|
|
1223
1013
|
}
|
|
1224
|
-
export declare namespace DescribeEventTypesRequest {
|
|
1225
|
-
/**
|
|
1226
|
-
* @internal
|
|
1227
|
-
*/
|
|
1228
|
-
const filterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
|
|
1229
|
-
}
|
|
1230
1014
|
/**
|
|
1231
1015
|
* <p>Contains the metadata about a type of event that is reported by Health. The
|
|
1232
1016
|
* <code>EventType</code> shows the category, service, and the event type code of the
|
|
@@ -1256,12 +1040,6 @@ export interface EventType {
|
|
|
1256
1040
|
*/
|
|
1257
1041
|
category?: EventTypeCategory | string;
|
|
1258
1042
|
}
|
|
1259
|
-
export declare namespace EventType {
|
|
1260
|
-
/**
|
|
1261
|
-
* @internal
|
|
1262
|
-
*/
|
|
1263
|
-
const filterSensitiveLog: (obj: EventType) => any;
|
|
1264
|
-
}
|
|
1265
1043
|
export interface DescribeEventTypesResponse {
|
|
1266
1044
|
/**
|
|
1267
1045
|
* <p>A list of event types that match the filter criteria. Event types have a category
|
|
@@ -1281,12 +1059,6 @@ export interface DescribeEventTypesResponse {
|
|
|
1281
1059
|
*/
|
|
1282
1060
|
nextToken?: string;
|
|
1283
1061
|
}
|
|
1284
|
-
export declare namespace DescribeEventTypesResponse {
|
|
1285
|
-
/**
|
|
1286
|
-
* @internal
|
|
1287
|
-
*/
|
|
1288
|
-
const filterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
|
|
1289
|
-
}
|
|
1290
1062
|
export interface DescribeHealthServiceStatusForOrganizationResponse {
|
|
1291
1063
|
/**
|
|
1292
1064
|
* <p>Information about the status of enabling or disabling the Health organizational
|
|
@@ -1295,12 +1067,6 @@ export interface DescribeHealthServiceStatusForOrganizationResponse {
|
|
|
1295
1067
|
*/
|
|
1296
1068
|
healthServiceAccessStatusForOrganization?: string;
|
|
1297
1069
|
}
|
|
1298
|
-
export declare namespace DescribeHealthServiceStatusForOrganizationResponse {
|
|
1299
|
-
/**
|
|
1300
|
-
* @internal
|
|
1301
|
-
*/
|
|
1302
|
-
const filterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
|
|
1303
|
-
}
|
|
1304
1070
|
/**
|
|
1305
1071
|
* <p>
|
|
1306
1072
|
* <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EnableHealthServiceAccessForOrganization.html">EnableHealthServiceAccessForOrganization</a> is already in progress. Wait for the
|
|
@@ -1314,3 +1080,159 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
1314
1080
|
*/
|
|
1315
1081
|
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
1316
1082
|
}
|
|
1083
|
+
/**
|
|
1084
|
+
* @internal
|
|
1085
|
+
*/
|
|
1086
|
+
export declare const AffectedEntityFilterSensitiveLog: (obj: AffectedEntity) => any;
|
|
1087
|
+
/**
|
|
1088
|
+
* @internal
|
|
1089
|
+
*/
|
|
1090
|
+
export declare const DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
|
|
1091
|
+
/**
|
|
1092
|
+
* @internal
|
|
1093
|
+
*/
|
|
1094
|
+
export declare const DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
|
|
1095
|
+
/**
|
|
1096
|
+
* @internal
|
|
1097
|
+
*/
|
|
1098
|
+
export declare const DateTimeRangeFilterSensitiveLog: (obj: DateTimeRange) => any;
|
|
1099
|
+
/**
|
|
1100
|
+
* @internal
|
|
1101
|
+
*/
|
|
1102
|
+
export declare const EntityFilterFilterSensitiveLog: (obj: EntityFilter) => any;
|
|
1103
|
+
/**
|
|
1104
|
+
* @internal
|
|
1105
|
+
*/
|
|
1106
|
+
export declare const DescribeAffectedEntitiesRequestFilterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
|
|
1107
|
+
/**
|
|
1108
|
+
* @internal
|
|
1109
|
+
*/
|
|
1110
|
+
export declare const DescribeAffectedEntitiesResponseFilterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
|
|
1111
|
+
/**
|
|
1112
|
+
* @internal
|
|
1113
|
+
*/
|
|
1114
|
+
export declare const EventAccountFilterFilterSensitiveLog: (obj: EventAccountFilter) => any;
|
|
1115
|
+
/**
|
|
1116
|
+
* @internal
|
|
1117
|
+
*/
|
|
1118
|
+
export declare const DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
|
|
1119
|
+
/**
|
|
1120
|
+
* @internal
|
|
1121
|
+
*/
|
|
1122
|
+
export declare const OrganizationAffectedEntitiesErrorItemFilterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
|
|
1123
|
+
/**
|
|
1124
|
+
* @internal
|
|
1125
|
+
*/
|
|
1126
|
+
export declare const DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
|
|
1127
|
+
/**
|
|
1128
|
+
* @internal
|
|
1129
|
+
*/
|
|
1130
|
+
export declare const DescribeEntityAggregatesRequestFilterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
|
|
1131
|
+
/**
|
|
1132
|
+
* @internal
|
|
1133
|
+
*/
|
|
1134
|
+
export declare const EntityAggregateFilterSensitiveLog: (obj: EntityAggregate) => any;
|
|
1135
|
+
/**
|
|
1136
|
+
* @internal
|
|
1137
|
+
*/
|
|
1138
|
+
export declare const DescribeEntityAggregatesResponseFilterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
|
|
1139
|
+
/**
|
|
1140
|
+
* @internal
|
|
1141
|
+
*/
|
|
1142
|
+
export declare const EventFilterFilterSensitiveLog: (obj: EventFilter) => any;
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal
|
|
1145
|
+
*/
|
|
1146
|
+
export declare const DescribeEventAggregatesRequestFilterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
|
|
1147
|
+
/**
|
|
1148
|
+
* @internal
|
|
1149
|
+
*/
|
|
1150
|
+
export declare const EventAggregateFilterSensitiveLog: (obj: EventAggregate) => any;
|
|
1151
|
+
/**
|
|
1152
|
+
* @internal
|
|
1153
|
+
*/
|
|
1154
|
+
export declare const DescribeEventAggregatesResponseFilterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
|
|
1155
|
+
/**
|
|
1156
|
+
* @internal
|
|
1157
|
+
*/
|
|
1158
|
+
export declare const DescribeEventDetailsRequestFilterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
|
|
1159
|
+
/**
|
|
1160
|
+
* @internal
|
|
1161
|
+
*/
|
|
1162
|
+
export declare const EventDetailsErrorItemFilterSensitiveLog: (obj: EventDetailsErrorItem) => any;
|
|
1163
|
+
/**
|
|
1164
|
+
* @internal
|
|
1165
|
+
*/
|
|
1166
|
+
export declare const EventFilterSensitiveLog: (obj: Event) => any;
|
|
1167
|
+
/**
|
|
1168
|
+
* @internal
|
|
1169
|
+
*/
|
|
1170
|
+
export declare const EventDescriptionFilterSensitiveLog: (obj: EventDescription) => any;
|
|
1171
|
+
/**
|
|
1172
|
+
* @internal
|
|
1173
|
+
*/
|
|
1174
|
+
export declare const EventDetailsFilterSensitiveLog: (obj: EventDetails) => any;
|
|
1175
|
+
/**
|
|
1176
|
+
* @internal
|
|
1177
|
+
*/
|
|
1178
|
+
export declare const DescribeEventDetailsResponseFilterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
|
|
1179
|
+
/**
|
|
1180
|
+
* @internal
|
|
1181
|
+
*/
|
|
1182
|
+
export declare const DescribeEventDetailsForOrganizationRequestFilterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
|
|
1183
|
+
/**
|
|
1184
|
+
* @internal
|
|
1185
|
+
*/
|
|
1186
|
+
export declare const OrganizationEventDetailsErrorItemFilterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
|
|
1187
|
+
/**
|
|
1188
|
+
* @internal
|
|
1189
|
+
*/
|
|
1190
|
+
export declare const OrganizationEventDetailsFilterSensitiveLog: (obj: OrganizationEventDetails) => any;
|
|
1191
|
+
/**
|
|
1192
|
+
* @internal
|
|
1193
|
+
*/
|
|
1194
|
+
export declare const DescribeEventDetailsForOrganizationResponseFilterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
|
|
1195
|
+
/**
|
|
1196
|
+
* @internal
|
|
1197
|
+
*/
|
|
1198
|
+
export declare const DescribeEventsRequestFilterSensitiveLog: (obj: DescribeEventsRequest) => any;
|
|
1199
|
+
/**
|
|
1200
|
+
* @internal
|
|
1201
|
+
*/
|
|
1202
|
+
export declare const DescribeEventsResponseFilterSensitiveLog: (obj: DescribeEventsResponse) => any;
|
|
1203
|
+
/**
|
|
1204
|
+
* @internal
|
|
1205
|
+
*/
|
|
1206
|
+
export declare const OrganizationEventFilterFilterSensitiveLog: (obj: OrganizationEventFilter) => any;
|
|
1207
|
+
/**
|
|
1208
|
+
* @internal
|
|
1209
|
+
*/
|
|
1210
|
+
export declare const DescribeEventsForOrganizationRequestFilterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
|
|
1211
|
+
/**
|
|
1212
|
+
* @internal
|
|
1213
|
+
*/
|
|
1214
|
+
export declare const OrganizationEventFilterSensitiveLog: (obj: OrganizationEvent) => any;
|
|
1215
|
+
/**
|
|
1216
|
+
* @internal
|
|
1217
|
+
*/
|
|
1218
|
+
export declare const DescribeEventsForOrganizationResponseFilterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
|
|
1219
|
+
/**
|
|
1220
|
+
* @internal
|
|
1221
|
+
*/
|
|
1222
|
+
export declare const EventTypeFilterFilterSensitiveLog: (obj: EventTypeFilter) => any;
|
|
1223
|
+
/**
|
|
1224
|
+
* @internal
|
|
1225
|
+
*/
|
|
1226
|
+
export declare const DescribeEventTypesRequestFilterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
|
|
1227
|
+
/**
|
|
1228
|
+
* @internal
|
|
1229
|
+
*/
|
|
1230
|
+
export declare const EventTypeFilterSensitiveLog: (obj: EventType) => any;
|
|
1231
|
+
/**
|
|
1232
|
+
* @internal
|
|
1233
|
+
*/
|
|
1234
|
+
export declare const DescribeEventTypesResponseFilterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
|
|
1235
|
+
/**
|
|
1236
|
+
* @internal
|
|
1237
|
+
*/
|
|
1238
|
+
export declare const DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
|