@aws-sdk/client-health 3.686.0 → 3.691.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.
@@ -24,17 +24,17 @@ export interface AccountEntityAggregate {
24
24
  * <p>The 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
25
25
  * @public
26
26
  */
27
- accountId?: string;
27
+ accountId?: string | undefined;
28
28
  /**
29
29
  * <p>The number of entities that match the filter criteria for the specified events.</p>
30
30
  * @public
31
31
  */
32
- count?: number;
32
+ count?: number | undefined;
33
33
  /**
34
34
  * <p>The number of affected entities aggregated by the entity status codes.</p>
35
35
  * @public
36
36
  */
37
- statuses?: Partial<Record<EntityStatusCode, number>>;
37
+ statuses?: Partial<Record<EntityStatusCode, number>> | undefined;
38
38
  }
39
39
  /**
40
40
  * <p>Information about an entity that is affected by a Health event.</p>
@@ -47,7 +47,7 @@ export interface AffectedEntity {
47
47
  * </p>
48
48
  * @public
49
49
  */
50
- entityArn?: string;
50
+ entityArn?: string | undefined;
51
51
  /**
52
52
  * <p>The unique identifier for the event. The event ARN has the
53
53
  * <code>arn:aws:health:<i>event-region</i>::event/<i>SERVICE</i>/<i>EVENT_TYPE_CODE</i>/<i>EVENT_TYPE_PLUS_ID</i>
@@ -59,33 +59,33 @@ export interface AffectedEntity {
59
59
  * </p>
60
60
  * @public
61
61
  */
62
- eventArn?: string;
62
+ eventArn?: string | undefined;
63
63
  /**
64
64
  * <p>The ID of the affected entity.</p>
65
65
  * @public
66
66
  */
67
- entityValue?: string;
67
+ entityValue?: string | undefined;
68
68
  /**
69
69
  * <p>The URL of the affected entity.</p>
70
70
  * @public
71
71
  */
72
- entityUrl?: string;
72
+ entityUrl?: string | undefined;
73
73
  /**
74
74
  * <p>The 12-digit Amazon Web Services account number that contains the affected entity.</p>
75
75
  * @public
76
76
  */
77
- awsAccountId?: string;
77
+ awsAccountId?: string | undefined;
78
78
  /**
79
79
  * <p>The most recent time that the entity was updated.</p>
80
80
  * @public
81
81
  */
82
- lastUpdatedTime?: Date;
82
+ lastUpdatedTime?: Date | undefined;
83
83
  /**
84
84
  * <p>The most recent status of the entity affected by the event. The possible values are
85
85
  * <code>IMPAIRED</code>, <code>UNIMPAIRED</code>, and <code>UNKNOWN</code>.</p>
86
86
  * @public
87
87
  */
88
- statusCode?: EntityStatusCode;
88
+ statusCode?: EntityStatusCode | undefined;
89
89
  /**
90
90
  * <p>A map of entity tags attached to the affected entity.</p>
91
91
  * <note>
@@ -93,7 +93,7 @@ export interface AffectedEntity {
93
93
  * </note>
94
94
  * @public
95
95
  */
96
- tags?: Record<string, string>;
96
+ tags?: Record<string, string> | undefined;
97
97
  }
98
98
  /**
99
99
  * @public
@@ -118,12 +118,12 @@ export interface DescribeAffectedAccountsForOrganizationRequest {
118
118
  * When all results have been returned, the response does not contain a pagination token value.</p>
119
119
  * @public
120
120
  */
121
- nextToken?: string;
121
+ nextToken?: string | undefined;
122
122
  /**
123
123
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
124
124
  * @public
125
125
  */
126
- maxResults?: number;
126
+ maxResults?: number | undefined;
127
127
  }
128
128
  /**
129
129
  * @public
@@ -146,7 +146,7 @@ export interface DescribeAffectedAccountsForOrganizationResponse {
146
146
  * <p>A JSON set of elements of the affected accounts.</p>
147
147
  * @public
148
148
  */
149
- affectedAccounts?: string[];
149
+ affectedAccounts?: string[] | undefined;
150
150
  /**
151
151
  * <p>This parameter specifies if the Health event is a public Amazon Web Service event or an account-specific event.</p>
152
152
  * <ul>
@@ -169,7 +169,7 @@ export interface DescribeAffectedAccountsForOrganizationResponse {
169
169
  * </ul>
170
170
  * @public
171
171
  */
172
- eventScopeCode?: EventScopeCode;
172
+ eventScopeCode?: EventScopeCode | undefined;
173
173
  /**
174
174
  * <p>If the results of a search are large, only a portion of the
175
175
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -177,7 +177,7 @@ export interface DescribeAffectedAccountsForOrganizationResponse {
177
177
  * When all results have been returned, the response does not contain a pagination token value.</p>
178
178
  * @public
179
179
  */
180
- nextToken?: string;
180
+ nextToken?: string | undefined;
181
181
  }
182
182
  /**
183
183
  * <p>The specified pagination token (<code>nextToken</code>) is not valid.</p>
@@ -206,12 +206,12 @@ export interface DateTimeRange {
206
206
  * <p>The starting date and time of a time range.</p>
207
207
  * @public
208
208
  */
209
- from?: Date;
209
+ from?: Date | undefined;
210
210
  /**
211
211
  * <p>The ending date and time of a time range.</p>
212
212
  * @public
213
213
  */
214
- to?: Date;
214
+ to?: Date | undefined;
215
215
  }
216
216
  /**
217
217
  * <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>
@@ -228,17 +228,17 @@ export interface EntityFilter {
228
228
  * <p>A list of entity ARNs (unique identifiers).</p>
229
229
  * @public
230
230
  */
231
- entityArns?: string[];
231
+ entityArns?: string[] | undefined;
232
232
  /**
233
233
  * <p>A list of IDs for affected entities.</p>
234
234
  * @public
235
235
  */
236
- entityValues?: string[];
236
+ entityValues?: string[] | undefined;
237
237
  /**
238
238
  * <p>A list of the most recent dates and times that the entity was updated.</p>
239
239
  * @public
240
240
  */
241
- lastUpdatedTimes?: DateTimeRange[];
241
+ lastUpdatedTimes?: DateTimeRange[] | undefined;
242
242
  /**
243
243
  * <p>A map of entity tags attached to the affected entity.</p>
244
244
  * <note>
@@ -246,13 +246,13 @@ export interface EntityFilter {
246
246
  * </note>
247
247
  * @public
248
248
  */
249
- tags?: Record<string, string>[];
249
+ tags?: Record<string, string>[] | undefined;
250
250
  /**
251
251
  * <p>A list of entity status codes (<code>IMPAIRED</code>, <code>UNIMPAIRED</code>, or
252
252
  * <code>UNKNOWN</code>).</p>
253
253
  * @public
254
254
  */
255
- statusCodes?: EntityStatusCode[];
255
+ statusCodes?: EntityStatusCode[] | undefined;
256
256
  }
257
257
  /**
258
258
  * @public
@@ -267,7 +267,7 @@ export interface DescribeAffectedEntitiesRequest {
267
267
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
268
268
  * @public
269
269
  */
270
- locale?: string;
270
+ locale?: string | undefined;
271
271
  /**
272
272
  * <p>If the results of a search are large, only a portion of the
273
273
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -275,12 +275,12 @@ export interface DescribeAffectedEntitiesRequest {
275
275
  * When all results have been returned, the response does not contain a pagination token value.</p>
276
276
  * @public
277
277
  */
278
- nextToken?: string;
278
+ nextToken?: string | undefined;
279
279
  /**
280
280
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
281
281
  * @public
282
282
  */
283
- maxResults?: number;
283
+ maxResults?: number | undefined;
284
284
  }
285
285
  /**
286
286
  * @public
@@ -290,7 +290,7 @@ export interface DescribeAffectedEntitiesResponse {
290
290
  * <p>The entities that match the filter criteria.</p>
291
291
  * @public
292
292
  */
293
- entities?: AffectedEntity[];
293
+ entities?: AffectedEntity[] | undefined;
294
294
  /**
295
295
  * <p>If the results of a search are large, only a portion of the
296
296
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -298,7 +298,7 @@ export interface DescribeAffectedEntitiesResponse {
298
298
  * When all results have been returned, the response does not contain a pagination token value.</p>
299
299
  * @public
300
300
  */
301
- nextToken?: string;
301
+ nextToken?: string | undefined;
302
302
  }
303
303
  /**
304
304
  * <p>The specified locale is not supported.</p>
@@ -333,12 +333,12 @@ export interface EntityAccountFilter {
333
333
  * <p>The 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
334
334
  * @public
335
335
  */
336
- awsAccountId?: string;
336
+ awsAccountId?: string | undefined;
337
337
  /**
338
338
  * <p>A list of entity status codes.</p>
339
339
  * @public
340
340
  */
341
- statusCodes?: EntityStatusCode[];
341
+ statusCodes?: EntityStatusCode[] | undefined;
342
342
  }
343
343
  /**
344
344
  * <p>The values used to filter results from the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetailsForOrganization.html">DescribeEventDetailsForOrganization</a> and <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeAffectedEntitiesForOrganization.html">DescribeAffectedEntitiesForOrganization</a> operations.</p>
@@ -361,7 +361,7 @@ export interface EventAccountFilter {
361
361
  * <p>The 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
362
362
  * @public
363
363
  */
364
- awsAccountId?: string;
364
+ awsAccountId?: string | undefined;
365
365
  }
366
366
  /**
367
367
  * @public
@@ -374,12 +374,12 @@ export interface DescribeAffectedEntitiesForOrganizationRequest {
374
374
  * <code>eventArn</code>.</p>
375
375
  * @public
376
376
  */
377
- organizationEntityFilters?: EventAccountFilter[];
377
+ organizationEntityFilters?: EventAccountFilter[] | undefined;
378
378
  /**
379
379
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
380
380
  * @public
381
381
  */
382
- locale?: string;
382
+ locale?: string | undefined;
383
383
  /**
384
384
  * <p>If the results of a search are large, only a portion of the
385
385
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -387,17 +387,17 @@ export interface DescribeAffectedEntitiesForOrganizationRequest {
387
387
  * When all results have been returned, the response does not contain a pagination token value.</p>
388
388
  * @public
389
389
  */
390
- nextToken?: string;
390
+ nextToken?: string | undefined;
391
391
  /**
392
392
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
393
393
  * @public
394
394
  */
395
- maxResults?: number;
395
+ maxResults?: number | undefined;
396
396
  /**
397
397
  * <p>A JSON set of elements including the <code>awsAccountId</code>, <code>eventArn</code> and a set of <code>statusCodes</code>.</p>
398
398
  * @public
399
399
  */
400
- organizationEntityAccountFilters?: EntityAccountFilter[];
400
+ organizationEntityAccountFilters?: EntityAccountFilter[] | undefined;
401
401
  }
402
402
  /**
403
403
  * <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
@@ -409,7 +409,7 @@ export interface OrganizationAffectedEntitiesErrorItem {
409
409
  * <p>The 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
410
410
  * @public
411
411
  */
412
- awsAccountId?: string;
412
+ awsAccountId?: string | undefined;
413
413
  /**
414
414
  * <p>The unique identifier for the event. The event ARN has the
415
415
  * <code>arn:aws:health:<i>event-region</i>::event/<i>SERVICE</i>/<i>EVENT_TYPE_CODE</i>/<i>EVENT_TYPE_PLUS_ID</i>
@@ -421,12 +421,12 @@ export interface OrganizationAffectedEntitiesErrorItem {
421
421
  * </p>
422
422
  * @public
423
423
  */
424
- eventArn?: string;
424
+ eventArn?: string | undefined;
425
425
  /**
426
426
  * <p>The name of the error.</p>
427
427
  * @public
428
428
  */
429
- errorName?: string;
429
+ errorName?: string | undefined;
430
430
  /**
431
431
  * <p>A message that describes the error. Follow the error message and retry your request.</p>
432
432
  * <p>For example, the <code>InvalidAccountInputError</code> error message appears if
@@ -435,7 +435,7 @@ export interface OrganizationAffectedEntitiesErrorItem {
435
435
  * don't specify an Amazon Web Services account.</p>
436
436
  * @public
437
437
  */
438
- errorMessage?: string;
438
+ errorMessage?: string | undefined;
439
439
  }
440
440
  /**
441
441
  * @public
@@ -447,13 +447,13 @@ export interface DescribeAffectedEntitiesForOrganizationResponse {
447
447
  * <code>lastUpdatedTime</code>, and <code>statusCode</code>.</p>
448
448
  * @public
449
449
  */
450
- entities?: AffectedEntity[];
450
+ entities?: AffectedEntity[] | undefined;
451
451
  /**
452
452
  * <p>A JSON set of elements of the failed response, including the <code>awsAccountId</code>,
453
453
  * <code>errorMessage</code>, <code>errorName</code>, and <code>eventArn</code>.</p>
454
454
  * @public
455
455
  */
456
- failedSet?: OrganizationAffectedEntitiesErrorItem[];
456
+ failedSet?: OrganizationAffectedEntitiesErrorItem[] | undefined;
457
457
  /**
458
458
  * <p>If the results of a search are large, only a portion of the
459
459
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -461,7 +461,7 @@ export interface DescribeAffectedEntitiesForOrganizationResponse {
461
461
  * When all results have been returned, the response does not contain a pagination token value.</p>
462
462
  * @public
463
463
  */
464
- nextToken?: string;
464
+ nextToken?: string | undefined;
465
465
  }
466
466
  /**
467
467
  * @public
@@ -472,7 +472,7 @@ export interface DescribeEntityAggregatesRequest {
472
472
  * </p>
473
473
  * @public
474
474
  */
475
- eventArns?: string[];
475
+ eventArns?: string[] | undefined;
476
476
  }
477
477
  /**
478
478
  * <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>
@@ -490,17 +490,17 @@ export interface EntityAggregate {
490
490
  * </p>
491
491
  * @public
492
492
  */
493
- eventArn?: string;
493
+ eventArn?: string | undefined;
494
494
  /**
495
495
  * <p>The number of entities that match the criteria for the specified events.</p>
496
496
  * @public
497
497
  */
498
- count?: number;
498
+ count?: number | undefined;
499
499
  /**
500
500
  * <p>The number of affected entities aggregated by the entity status codes.</p>
501
501
  * @public
502
502
  */
503
- statuses?: Partial<Record<EntityStatusCode, number>>;
503
+ statuses?: Partial<Record<EntityStatusCode, number>> | undefined;
504
504
  }
505
505
  /**
506
506
  * @public
@@ -510,7 +510,7 @@ export interface DescribeEntityAggregatesResponse {
510
510
  * <p>The number of entities that are affected by each of the specified events.</p>
511
511
  * @public
512
512
  */
513
- entityAggregates?: EntityAggregate[];
513
+ entityAggregates?: EntityAggregate[] | undefined;
514
514
  }
515
515
  /**
516
516
  * @public
@@ -526,7 +526,7 @@ export interface DescribeEntityAggregatesForOrganizationRequest {
526
526
  * <p>A list of 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
527
527
  * @public
528
528
  */
529
- awsAccountIds?: string[];
529
+ awsAccountIds?: string[] | undefined;
530
530
  }
531
531
  /**
532
532
  * <p>The aggregate results of entities affected by the specified event in your organization.
@@ -539,23 +539,23 @@ export interface OrganizationEntityAggregate {
539
539
  * </p>
540
540
  * @public
541
541
  */
542
- eventArn?: string;
542
+ eventArn?: string | undefined;
543
543
  /**
544
544
  * <p>The number of entities for the organization that match the filter criteria for the specified events.</p>
545
545
  * @public
546
546
  */
547
- count?: number;
547
+ count?: number | undefined;
548
548
  /**
549
549
  * <p>The number of affected entities aggregated by the entitiy status codes.</p>
550
550
  * @public
551
551
  */
552
- statuses?: Partial<Record<EntityStatusCode, number>>;
552
+ statuses?: Partial<Record<EntityStatusCode, number>> | undefined;
553
553
  /**
554
554
  * <p>A list of entity aggregates for each of the specified accounts in your organization that are affected by
555
555
  * a specific event. If there are no <code>awsAccountIds</code> provided in the request, this field will be empty in the response.</p>
556
556
  * @public
557
557
  */
558
- accounts?: AccountEntityAggregate[];
558
+ accounts?: AccountEntityAggregate[] | undefined;
559
559
  }
560
560
  /**
561
561
  * @public
@@ -565,7 +565,7 @@ export interface DescribeEntityAggregatesForOrganizationResponse {
565
565
  * <p>The list of entity aggregates for each of the specified accounts that are affected by each of the specified events.</p>
566
566
  * @public
567
567
  */
568
- organizationEntityAggregates?: OrganizationEntityAggregate[];
568
+ organizationEntityAggregates?: OrganizationEntityAggregate[] | undefined;
569
569
  }
570
570
  /**
571
571
  * @public
@@ -616,61 +616,61 @@ export interface EventFilter {
616
616
  * </p>
617
617
  * @public
618
618
  */
619
- eventArns?: string[];
619
+ eventArns?: string[] | undefined;
620
620
  /**
621
621
  * <p>A list of unique identifiers for event types. For example, <code>"AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".</code>
622
622
  * </p>
623
623
  * @public
624
624
  */
625
- eventTypeCodes?: string[];
625
+ eventTypeCodes?: string[] | undefined;
626
626
  /**
627
627
  * <p>The Amazon Web Services associated with the event. For example, <code>EC2</code>, <code>RDS</code>.</p>
628
628
  * @public
629
629
  */
630
- services?: string[];
630
+ services?: string[] | undefined;
631
631
  /**
632
632
  * <p>A list of Amazon Web Services Regions.</p>
633
633
  * @public
634
634
  */
635
- regions?: string[];
635
+ regions?: string[] | undefined;
636
636
  /**
637
637
  * <p>A list of Amazon Web Services Availability Zones.</p>
638
638
  * @public
639
639
  */
640
- availabilityZones?: string[];
640
+ availabilityZones?: string[] | undefined;
641
641
  /**
642
642
  * <p>A list of dates and times that the event began.</p>
643
643
  * @public
644
644
  */
645
- startTimes?: DateTimeRange[];
645
+ startTimes?: DateTimeRange[] | undefined;
646
646
  /**
647
647
  * <p>A list of dates and times that the event ended.</p>
648
648
  * @public
649
649
  */
650
- endTimes?: DateTimeRange[];
650
+ endTimes?: DateTimeRange[] | undefined;
651
651
  /**
652
652
  * <p>A list of dates and times that the event was last updated.</p>
653
653
  * @public
654
654
  */
655
- lastUpdatedTimes?: DateTimeRange[];
655
+ lastUpdatedTimes?: DateTimeRange[] | undefined;
656
656
  /**
657
657
  * <p>A list of entity ARNs (unique identifiers).</p>
658
658
  * @public
659
659
  */
660
- entityArns?: string[];
660
+ entityArns?: string[] | undefined;
661
661
  /**
662
662
  * <p>A list of entity identifiers, such as EC2 instance IDs (<code>i-34ab692e</code>) or EBS
663
663
  * volumes (<code>vol-426ab23e</code>).</p>
664
664
  * @public
665
665
  */
666
- entityValues?: string[];
666
+ entityValues?: string[] | undefined;
667
667
  /**
668
668
  * <p>A list of event type category codes. Possible values are
669
669
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
670
670
  * the <code>investigation</code> value isn't supported at this time.</p>
671
671
  * @public
672
672
  */
673
- eventTypeCategories?: EventTypeCategory[];
673
+ eventTypeCategories?: EventTypeCategory[] | undefined;
674
674
  /**
675
675
  * <p>A map of entity tags attached to the affected entity.</p>
676
676
  * <note>
@@ -678,12 +678,12 @@ export interface EventFilter {
678
678
  * </note>
679
679
  * @public
680
680
  */
681
- tags?: Record<string, string>[];
681
+ tags?: Record<string, string>[] | undefined;
682
682
  /**
683
683
  * <p>A list of event status codes.</p>
684
684
  * @public
685
685
  */
686
- eventStatusCodes?: EventStatusCode[];
686
+ eventStatusCodes?: EventStatusCode[] | undefined;
687
687
  }
688
688
  /**
689
689
  * @public
@@ -693,7 +693,7 @@ export interface DescribeEventAggregatesRequest {
693
693
  * <p>Values to narrow the results returned.</p>
694
694
  * @public
695
695
  */
696
- filter?: EventFilter;
696
+ filter?: EventFilter | undefined;
697
697
  /**
698
698
  * <p>The only currently supported value is <code>eventTypeCategory</code>.</p>
699
699
  * @public
@@ -703,7 +703,7 @@ export interface DescribeEventAggregatesRequest {
703
703
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
704
704
  * @public
705
705
  */
706
- maxResults?: number;
706
+ maxResults?: number | undefined;
707
707
  /**
708
708
  * <p>If the results of a search are large, only a portion of the
709
709
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -711,7 +711,7 @@ export interface DescribeEventAggregatesRequest {
711
711
  * When all results have been returned, the response does not contain a pagination token value.</p>
712
712
  * @public
713
713
  */
714
- nextToken?: string;
714
+ nextToken?: string | undefined;
715
715
  }
716
716
  /**
717
717
  * <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>
@@ -722,12 +722,12 @@ export interface EventAggregate {
722
722
  * <p>The issue type for the associated count.</p>
723
723
  * @public
724
724
  */
725
- aggregateValue?: string;
725
+ aggregateValue?: string | undefined;
726
726
  /**
727
727
  * <p>The number of events of the associated issue type.</p>
728
728
  * @public
729
729
  */
730
- count?: number;
730
+ count?: number | undefined;
731
731
  }
732
732
  /**
733
733
  * @public
@@ -737,7 +737,7 @@ export interface DescribeEventAggregatesResponse {
737
737
  * <p>The number of events in each category that meet the optional filter criteria.</p>
738
738
  * @public
739
739
  */
740
- eventAggregates?: EventAggregate[];
740
+ eventAggregates?: EventAggregate[] | undefined;
741
741
  /**
742
742
  * <p>If the results of a search are large, only a portion of the
743
743
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -745,7 +745,7 @@ export interface DescribeEventAggregatesResponse {
745
745
  * When all results have been returned, the response does not contain a pagination token value.</p>
746
746
  * @public
747
747
  */
748
- nextToken?: string;
748
+ nextToken?: string | undefined;
749
749
  }
750
750
  /**
751
751
  * @public
@@ -761,7 +761,7 @@ export interface DescribeEventDetailsRequest {
761
761
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
762
762
  * @public
763
763
  */
764
- locale?: string;
764
+ locale?: string | undefined;
765
765
  }
766
766
  /**
767
767
  * <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>
@@ -779,17 +779,17 @@ export interface EventDetailsErrorItem {
779
779
  * </p>
780
780
  * @public
781
781
  */
782
- eventArn?: string;
782
+ eventArn?: string | undefined;
783
783
  /**
784
784
  * <p>The name of the error.</p>
785
785
  * @public
786
786
  */
787
- errorName?: string;
787
+ errorName?: string | undefined;
788
788
  /**
789
789
  * <p>A message that describes the error.</p>
790
790
  * @public
791
791
  */
792
- errorMessage?: string;
792
+ errorMessage?: string | undefined;
793
793
  }
794
794
  /**
795
795
  * <p>Summary information about an Health event.</p>
@@ -826,56 +826,56 @@ export interface Event {
826
826
  * </p>
827
827
  * @public
828
828
  */
829
- arn?: string;
829
+ arn?: string | undefined;
830
830
  /**
831
831
  * <p>The Amazon Web Service that is affected by the event. For example, <code>EC2</code>, <code>RDS</code>.</p>
832
832
  * @public
833
833
  */
834
- service?: string;
834
+ service?: string | undefined;
835
835
  /**
836
836
  * <p>The unique identifier for the event type. The format is <code>AWS_<i>SERVICE</i>_<i>DESCRIPTION</i>
837
837
  * </code>; for example, <code>AWS_EC2_SYSTEM_MAINTENANCE_EVENT</code>.</p>
838
838
  * @public
839
839
  */
840
- eventTypeCode?: string;
840
+ eventTypeCode?: string | undefined;
841
841
  /**
842
842
  * <p>A list of event type category codes. Possible values are
843
843
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
844
844
  * the <code>investigation</code> value isn't supported at this time.</p>
845
845
  * @public
846
846
  */
847
- eventTypeCategory?: EventTypeCategory;
847
+ eventTypeCategory?: EventTypeCategory | undefined;
848
848
  /**
849
849
  * <p>The Amazon Web Services Region name of the event.</p>
850
850
  * @public
851
851
  */
852
- region?: string;
852
+ region?: string | undefined;
853
853
  /**
854
854
  * <p>The Amazon Web Services Availability Zone of the event. For example, us-east-1a.</p>
855
855
  * @public
856
856
  */
857
- availabilityZone?: string;
857
+ availabilityZone?: string | undefined;
858
858
  /**
859
859
  * <p>The date and time that the event began.</p>
860
860
  * @public
861
861
  */
862
- startTime?: Date;
862
+ startTime?: Date | undefined;
863
863
  /**
864
864
  * <p>The date and time that the event ended.</p>
865
865
  * @public
866
866
  */
867
- endTime?: Date;
867
+ endTime?: Date | undefined;
868
868
  /**
869
869
  * <p>The most recent date and time that the event was updated.</p>
870
870
  * @public
871
871
  */
872
- lastUpdatedTime?: Date;
872
+ lastUpdatedTime?: Date | undefined;
873
873
  /**
874
874
  * <p>The most recent status of the event. Possible values are <code>open</code>,
875
875
  * <code>closed</code>, and <code>upcoming</code>.</p>
876
876
  * @public
877
877
  */
878
- statusCode?: EventStatusCode;
878
+ statusCode?: EventStatusCode | undefined;
879
879
  /**
880
880
  * <p>This parameter specifies if the Health event is a public Amazon Web Service event or an account-specific event.</p>
881
881
  * <ul>
@@ -898,7 +898,7 @@ export interface Event {
898
898
  * </ul>
899
899
  * @public
900
900
  */
901
- eventScopeCode?: EventScopeCode;
901
+ eventScopeCode?: EventScopeCode | undefined;
902
902
  }
903
903
  /**
904
904
  * <p>The detailed description of the event. Included in the information returned by the
@@ -910,7 +910,7 @@ export interface EventDescription {
910
910
  * <p>The most recent description of the event.</p>
911
911
  * @public
912
912
  */
913
- latestDescription?: string;
913
+ latestDescription?: string | undefined;
914
914
  }
915
915
  /**
916
916
  * <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
@@ -922,17 +922,17 @@ export interface EventDetails {
922
922
  * <p>Summary information about the event.</p>
923
923
  * @public
924
924
  */
925
- event?: Event;
925
+ event?: Event | undefined;
926
926
  /**
927
927
  * <p>The most recent description of the event.</p>
928
928
  * @public
929
929
  */
930
- eventDescription?: EventDescription;
930
+ eventDescription?: EventDescription | undefined;
931
931
  /**
932
932
  * <p>Additional metadata about the event.</p>
933
933
  * @public
934
934
  */
935
- eventMetadata?: Record<string, string>;
935
+ eventMetadata?: Record<string, string> | undefined;
936
936
  }
937
937
  /**
938
938
  * @public
@@ -942,12 +942,12 @@ export interface DescribeEventDetailsResponse {
942
942
  * <p>Information about the events that could be retrieved.</p>
943
943
  * @public
944
944
  */
945
- successfulSet?: EventDetails[];
945
+ successfulSet?: EventDetails[] | undefined;
946
946
  /**
947
947
  * <p>Error messages for any events that could not be retrieved.</p>
948
948
  * @public
949
949
  */
950
- failedSet?: EventDetailsErrorItem[];
950
+ failedSet?: EventDetailsErrorItem[] | undefined;
951
951
  }
952
952
  /**
953
953
  * @public
@@ -963,7 +963,7 @@ export interface DescribeEventDetailsForOrganizationRequest {
963
963
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
964
964
  * @public
965
965
  */
966
- locale?: string;
966
+ locale?: string | undefined;
967
967
  }
968
968
  /**
969
969
  * <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
@@ -976,7 +976,7 @@ export interface OrganizationEventDetailsErrorItem {
976
976
  * event.</p>
977
977
  * @public
978
978
  */
979
- awsAccountId?: string;
979
+ awsAccountId?: string | undefined;
980
980
  /**
981
981
  * <p>The unique identifier for the event. The event ARN has the
982
982
  * <code>arn:aws:health:<i>event-region</i>::event/<i>SERVICE</i>/<i>EVENT_TYPE_CODE</i>/<i>EVENT_TYPE_PLUS_ID</i>
@@ -988,12 +988,12 @@ export interface OrganizationEventDetailsErrorItem {
988
988
  * </p>
989
989
  * @public
990
990
  */
991
- eventArn?: string;
991
+ eventArn?: string | undefined;
992
992
  /**
993
993
  * <p>The name of the error.</p>
994
994
  * @public
995
995
  */
996
- errorName?: string;
996
+ errorName?: string | undefined;
997
997
  /**
998
998
  * <p>A message that describes the error.</p>
999
999
  * <p>If you call the <code>DescribeEventDetailsForOrganization</code> operation and receive one of the following errors, follow the recommendations in the message:</p>
@@ -1011,7 +1011,7 @@ export interface OrganizationEventDetailsErrorItem {
1011
1011
  * </ul>
1012
1012
  * @public
1013
1013
  */
1014
- errorMessage?: string;
1014
+ errorMessage?: string | undefined;
1015
1015
  }
1016
1016
  /**
1017
1017
  * <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
@@ -1023,7 +1023,7 @@ export interface OrganizationEventDetails {
1023
1023
  * <p>The 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
1024
1024
  * @public
1025
1025
  */
1026
- awsAccountId?: string;
1026
+ awsAccountId?: string | undefined;
1027
1027
  /**
1028
1028
  * <p>Summary information about an Health event.</p>
1029
1029
  * <p>Health events can be public or account-specific:</p>
@@ -1047,18 +1047,18 @@ export interface OrganizationEventDetails {
1047
1047
  * <code>eventScopeCode</code> parameter. For more information, see <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html#AWSHealth-Type-Event-eventScopeCode">eventScopeCode</a>.</p>
1048
1048
  * @public
1049
1049
  */
1050
- event?: Event;
1050
+ event?: Event | undefined;
1051
1051
  /**
1052
1052
  * <p>The detailed description of the event. Included in the information returned by the
1053
1053
  * <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetails.html">DescribeEventDetails</a> operation.</p>
1054
1054
  * @public
1055
1055
  */
1056
- eventDescription?: EventDescription;
1056
+ eventDescription?: EventDescription | undefined;
1057
1057
  /**
1058
1058
  * <p>Additional metadata about the event.</p>
1059
1059
  * @public
1060
1060
  */
1061
- eventMetadata?: Record<string, string>;
1061
+ eventMetadata?: Record<string, string> | undefined;
1062
1062
  }
1063
1063
  /**
1064
1064
  * @public
@@ -1068,12 +1068,12 @@ export interface DescribeEventDetailsForOrganizationResponse {
1068
1068
  * <p>Information about the events that could be retrieved.</p>
1069
1069
  * @public
1070
1070
  */
1071
- successfulSet?: OrganizationEventDetails[];
1071
+ successfulSet?: OrganizationEventDetails[] | undefined;
1072
1072
  /**
1073
1073
  * <p>Error messages for any events that could not be retrieved.</p>
1074
1074
  * @public
1075
1075
  */
1076
- failedSet?: OrganizationEventDetailsErrorItem[];
1076
+ failedSet?: OrganizationEventDetailsErrorItem[] | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * @public
@@ -1083,7 +1083,7 @@ export interface DescribeEventsRequest {
1083
1083
  * <p>Values to narrow the results returned.</p>
1084
1084
  * @public
1085
1085
  */
1086
- filter?: EventFilter;
1086
+ filter?: EventFilter | undefined;
1087
1087
  /**
1088
1088
  * <p>If the results of a search are large, only a portion of the
1089
1089
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1091,17 +1091,17 @@ export interface DescribeEventsRequest {
1091
1091
  * When all results have been returned, the response does not contain a pagination token value.</p>
1092
1092
  * @public
1093
1093
  */
1094
- nextToken?: string;
1094
+ nextToken?: string | undefined;
1095
1095
  /**
1096
1096
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
1097
1097
  * @public
1098
1098
  */
1099
- maxResults?: number;
1099
+ maxResults?: number | undefined;
1100
1100
  /**
1101
1101
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
1102
1102
  * @public
1103
1103
  */
1104
- locale?: string;
1104
+ locale?: string | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * @public
@@ -1111,7 +1111,7 @@ export interface DescribeEventsResponse {
1111
1111
  * <p>The events that match the specified filter criteria.</p>
1112
1112
  * @public
1113
1113
  */
1114
- events?: Event[];
1114
+ events?: Event[] | undefined;
1115
1115
  /**
1116
1116
  * <p>If the results of a search are large, only a portion of the
1117
1117
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1119,7 +1119,7 @@ export interface DescribeEventsResponse {
1119
1119
  * When all results have been returned, the response does not contain a pagination token value.</p>
1120
1120
  * @public
1121
1121
  */
1122
- nextToken?: string;
1122
+ nextToken?: string | undefined;
1123
1123
  }
1124
1124
  /**
1125
1125
  * <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>
@@ -1131,22 +1131,22 @@ export interface OrganizationEventFilter {
1131
1131
  * </p>
1132
1132
  * @public
1133
1133
  */
1134
- eventTypeCodes?: string[];
1134
+ eventTypeCodes?: string[] | undefined;
1135
1135
  /**
1136
1136
  * <p>A list of 12-digit Amazon Web Services account numbers that contains the affected entities.</p>
1137
1137
  * @public
1138
1138
  */
1139
- awsAccountIds?: string[];
1139
+ awsAccountIds?: string[] | undefined;
1140
1140
  /**
1141
1141
  * <p>The Amazon Web Services associated with the event. For example, <code>EC2</code>, <code>RDS</code>.</p>
1142
1142
  * @public
1143
1143
  */
1144
- services?: string[];
1144
+ services?: string[] | undefined;
1145
1145
  /**
1146
1146
  * <p>A list of Amazon Web Services Regions.</p>
1147
1147
  * @public
1148
1148
  */
1149
- regions?: string[];
1149
+ regions?: string[] | undefined;
1150
1150
  /**
1151
1151
  * <p>A range of dates and times that is used by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EventFilter.html">EventFilter</a> and <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EntityFilter.html">EntityFilter</a> objects. If <code>from</code> is set and <code>to</code> is set:
1152
1152
  * match items where the timestamp (<code>startTime</code>, <code>endTime</code>, or
@@ -1157,7 +1157,7 @@ export interface OrganizationEventFilter {
1157
1157
  * <code>to</code>.</p>
1158
1158
  * @public
1159
1159
  */
1160
- startTime?: DateTimeRange;
1160
+ startTime?: DateTimeRange | undefined;
1161
1161
  /**
1162
1162
  * <p>A range of dates and times that is used by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EventFilter.html">EventFilter</a> and <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EntityFilter.html">EntityFilter</a> objects. If <code>from</code> is set and <code>to</code> is set:
1163
1163
  * match items where the timestamp (<code>startTime</code>, <code>endTime</code>, or
@@ -1168,7 +1168,7 @@ export interface OrganizationEventFilter {
1168
1168
  * <code>to</code>.</p>
1169
1169
  * @public
1170
1170
  */
1171
- endTime?: DateTimeRange;
1171
+ endTime?: DateTimeRange | undefined;
1172
1172
  /**
1173
1173
  * <p>A range of dates and times that is used by the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EventFilter.html">EventFilter</a> and <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_EntityFilter.html">EntityFilter</a> objects. If <code>from</code> is set and <code>to</code> is set:
1174
1174
  * match items where the timestamp (<code>startTime</code>, <code>endTime</code>, or
@@ -1179,29 +1179,29 @@ export interface OrganizationEventFilter {
1179
1179
  * <code>to</code>.</p>
1180
1180
  * @public
1181
1181
  */
1182
- lastUpdatedTime?: DateTimeRange;
1182
+ lastUpdatedTime?: DateTimeRange | undefined;
1183
1183
  /**
1184
1184
  * <p>A list of entity ARNs (unique identifiers).</p>
1185
1185
  * @public
1186
1186
  */
1187
- entityArns?: string[];
1187
+ entityArns?: string[] | undefined;
1188
1188
  /**
1189
1189
  * <p>A list of entity identifiers, such as EC2 instance IDs (i-34ab692e) or EBS volumes (vol-426ab23e).</p>
1190
1190
  * @public
1191
1191
  */
1192
- entityValues?: string[];
1192
+ entityValues?: string[] | undefined;
1193
1193
  /**
1194
1194
  * <p>A list of event type category codes. Possible values are
1195
1195
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
1196
1196
  * the <code>investigation</code> value isn't supported at this time.</p>
1197
1197
  * @public
1198
1198
  */
1199
- eventTypeCategories?: EventTypeCategory[];
1199
+ eventTypeCategories?: EventTypeCategory[] | undefined;
1200
1200
  /**
1201
1201
  * <p>A list of event status codes.</p>
1202
1202
  * @public
1203
1203
  */
1204
- eventStatusCodes?: EventStatusCode[];
1204
+ eventStatusCodes?: EventStatusCode[] | undefined;
1205
1205
  }
1206
1206
  /**
1207
1207
  * @public
@@ -1211,7 +1211,7 @@ export interface DescribeEventsForOrganizationRequest {
1211
1211
  * <p>Values to narrow the results returned.</p>
1212
1212
  * @public
1213
1213
  */
1214
- filter?: OrganizationEventFilter;
1214
+ filter?: OrganizationEventFilter | undefined;
1215
1215
  /**
1216
1216
  * <p>If the results of a search are large, only a portion of the
1217
1217
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1219,17 +1219,17 @@ export interface DescribeEventsForOrganizationRequest {
1219
1219
  * When all results have been returned, the response does not contain a pagination token value.</p>
1220
1220
  * @public
1221
1221
  */
1222
- nextToken?: string;
1222
+ nextToken?: string | undefined;
1223
1223
  /**
1224
1224
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
1225
1225
  * @public
1226
1226
  */
1227
- maxResults?: number;
1227
+ maxResults?: number | undefined;
1228
1228
  /**
1229
1229
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
1230
1230
  * @public
1231
1231
  */
1232
- locale?: string;
1232
+ locale?: string | undefined;
1233
1233
  }
1234
1234
  /**
1235
1235
  * <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>
@@ -1247,26 +1247,26 @@ export interface OrganizationEvent {
1247
1247
  * </p>
1248
1248
  * @public
1249
1249
  */
1250
- arn?: string;
1250
+ arn?: string | undefined;
1251
1251
  /**
1252
1252
  * <p>The Amazon Web Service that is affected by the event, such as EC2 and RDS.</p>
1253
1253
  * @public
1254
1254
  */
1255
- service?: string;
1255
+ service?: string | undefined;
1256
1256
  /**
1257
1257
  * <p>The unique identifier for the event type. The format is
1258
1258
  * <code>AWS_SERVICE_DESCRIPTION</code>. For example,
1259
1259
  * <code>AWS_EC2_SYSTEM_MAINTENANCE_EVENT</code>.</p>
1260
1260
  * @public
1261
1261
  */
1262
- eventTypeCode?: string;
1262
+ eventTypeCode?: string | undefined;
1263
1263
  /**
1264
1264
  * <p>A list of event type category codes. Possible values are
1265
1265
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
1266
1266
  * the <code>investigation</code> value isn't supported at this time.</p>
1267
1267
  * @public
1268
1268
  */
1269
- eventTypeCategory?: EventTypeCategory;
1269
+ eventTypeCategory?: EventTypeCategory | undefined;
1270
1270
  /**
1271
1271
  * <p>This parameter specifies if the Health event is a public Amazon Web Service event or an account-specific event.</p>
1272
1272
  * <ul>
@@ -1289,33 +1289,33 @@ export interface OrganizationEvent {
1289
1289
  * </ul>
1290
1290
  * @public
1291
1291
  */
1292
- eventScopeCode?: EventScopeCode;
1292
+ eventScopeCode?: EventScopeCode | undefined;
1293
1293
  /**
1294
1294
  * <p>The Amazon Web Services Region name of the event.</p>
1295
1295
  * @public
1296
1296
  */
1297
- region?: string;
1297
+ region?: string | undefined;
1298
1298
  /**
1299
1299
  * <p>The date and time that the event began.</p>
1300
1300
  * @public
1301
1301
  */
1302
- startTime?: Date;
1302
+ startTime?: Date | undefined;
1303
1303
  /**
1304
1304
  * <p>The date and time that the event ended.</p>
1305
1305
  * @public
1306
1306
  */
1307
- endTime?: Date;
1307
+ endTime?: Date | undefined;
1308
1308
  /**
1309
1309
  * <p>The most recent date and time that the event was updated.</p>
1310
1310
  * @public
1311
1311
  */
1312
- lastUpdatedTime?: Date;
1312
+ lastUpdatedTime?: Date | undefined;
1313
1313
  /**
1314
1314
  * <p>The most recent status of the event. Possible values are <code>open</code>,
1315
1315
  * <code>closed</code>, and <code>upcoming</code>.</p>
1316
1316
  * @public
1317
1317
  */
1318
- statusCode?: EventStatusCode;
1318
+ statusCode?: EventStatusCode | undefined;
1319
1319
  }
1320
1320
  /**
1321
1321
  * @public
@@ -1325,7 +1325,7 @@ export interface DescribeEventsForOrganizationResponse {
1325
1325
  * <p>The events that match the specified filter criteria.</p>
1326
1326
  * @public
1327
1327
  */
1328
- events?: OrganizationEvent[];
1328
+ events?: OrganizationEvent[] | undefined;
1329
1329
  /**
1330
1330
  * <p>If the results of a search are large, only a portion of the
1331
1331
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1333,7 +1333,7 @@ export interface DescribeEventsForOrganizationResponse {
1333
1333
  * When all results have been returned, the response does not contain a pagination token value.</p>
1334
1334
  * @public
1335
1335
  */
1336
- nextToken?: string;
1336
+ nextToken?: string | undefined;
1337
1337
  }
1338
1338
  /**
1339
1339
  * <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>
@@ -1345,19 +1345,19 @@ export interface EventTypeFilter {
1345
1345
  * <p>A list of event type codes.</p>
1346
1346
  * @public
1347
1347
  */
1348
- eventTypeCodes?: string[];
1348
+ eventTypeCodes?: string[] | undefined;
1349
1349
  /**
1350
1350
  * <p>The Amazon Web Services associated with the event. For example, <code>EC2</code>, <code>RDS</code>.</p>
1351
1351
  * @public
1352
1352
  */
1353
- services?: string[];
1353
+ services?: string[] | undefined;
1354
1354
  /**
1355
1355
  * <p>A list of event type category codes. Possible values are
1356
1356
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
1357
1357
  * the <code>investigation</code> value isn't supported at this time.</p>
1358
1358
  * @public
1359
1359
  */
1360
- eventTypeCategories?: EventTypeCategory[];
1360
+ eventTypeCategories?: EventTypeCategory[] | undefined;
1361
1361
  }
1362
1362
  /**
1363
1363
  * @public
@@ -1367,12 +1367,12 @@ export interface DescribeEventTypesRequest {
1367
1367
  * <p>Values to narrow the results returned.</p>
1368
1368
  * @public
1369
1369
  */
1370
- filter?: EventTypeFilter;
1370
+ filter?: EventTypeFilter | undefined;
1371
1371
  /**
1372
1372
  * <p>The locale (language) to return information in. English (en) is the default and the only supported value at this time.</p>
1373
1373
  * @public
1374
1374
  */
1375
- locale?: string;
1375
+ locale?: string | undefined;
1376
1376
  /**
1377
1377
  * <p>If the results of a search are large, only a portion of the
1378
1378
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1380,7 +1380,7 @@ export interface DescribeEventTypesRequest {
1380
1380
  * When all results have been returned, the response does not contain a pagination token value.</p>
1381
1381
  * @public
1382
1382
  */
1383
- nextToken?: string;
1383
+ nextToken?: string | undefined;
1384
1384
  /**
1385
1385
  * <p>The maximum number of items to return in one batch, between 10 and 100, inclusive.</p>
1386
1386
  * <note>
@@ -1389,7 +1389,7 @@ export interface DescribeEventTypesRequest {
1389
1389
  * </note>
1390
1390
  * @public
1391
1391
  */
1392
- maxResults?: number;
1392
+ maxResults?: number | undefined;
1393
1393
  }
1394
1394
  /**
1395
1395
  * <p>Contains the metadata about a type of event that is reported by Health. The
@@ -1409,20 +1409,20 @@ export interface EventType {
1409
1409
  * <p>The Amazon Web Service that is affected by the event. For example, <code>EC2</code>, <code>RDS</code>.</p>
1410
1410
  * @public
1411
1411
  */
1412
- service?: string;
1412
+ service?: string | undefined;
1413
1413
  /**
1414
1414
  * <p>The unique identifier for the event type. The format is <code>AWS_<i>SERVICE</i>_<i>DESCRIPTION</i>
1415
1415
  * </code>; for example, <code>AWS_EC2_SYSTEM_MAINTENANCE_EVENT</code>.</p>
1416
1416
  * @public
1417
1417
  */
1418
- code?: string;
1418
+ code?: string | undefined;
1419
1419
  /**
1420
1420
  * <p>A list of event type category codes. Possible values are
1421
1421
  * <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently,
1422
1422
  * the <code>investigation</code> value isn't supported at this time.</p>
1423
1423
  * @public
1424
1424
  */
1425
- category?: EventTypeCategory;
1425
+ category?: EventTypeCategory | undefined;
1426
1426
  }
1427
1427
  /**
1428
1428
  * @public
@@ -1438,7 +1438,7 @@ export interface DescribeEventTypesResponse {
1438
1438
  * example, <code>AWS_EC2_SYSTEM_MAINTENANCE_EVENT</code>).</p>
1439
1439
  * @public
1440
1440
  */
1441
- eventTypes?: EventType[];
1441
+ eventTypes?: EventType[] | undefined;
1442
1442
  /**
1443
1443
  * <p>If the results of a search are large, only a portion of the
1444
1444
  * results are returned, and a <code>nextToken</code> pagination token is returned in the response. To
@@ -1446,7 +1446,7 @@ export interface DescribeEventTypesResponse {
1446
1446
  * When all results have been returned, the response does not contain a pagination token value.</p>
1447
1447
  * @public
1448
1448
  */
1449
- nextToken?: string;
1449
+ nextToken?: string | undefined;
1450
1450
  }
1451
1451
  /**
1452
1452
  * @public
@@ -1458,7 +1458,7 @@ export interface DescribeHealthServiceStatusForOrganizationResponse {
1458
1458
  * <p>Valid values are <code>ENABLED | DISABLED | PENDING</code>. </p>
1459
1459
  * @public
1460
1460
  */
1461
- healthServiceAccessStatusForOrganization?: string;
1461
+ healthServiceAccessStatusForOrganization?: string | undefined;
1462
1462
  }
1463
1463
  /**
1464
1464
  * <p>