@aws-sdk/client-devops-guru 3.687.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.
@@ -9,12 +9,12 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  );
10
10
  }
11
11
  export interface AccountInsightHealth {
12
- OpenProactiveInsights?: number;
13
- OpenReactiveInsights?: number;
12
+ OpenProactiveInsights?: number | undefined;
13
+ OpenReactiveInsights?: number | undefined;
14
14
  }
15
15
  export interface AccountHealth {
16
- AccountId?: string;
17
- Insight?: AccountInsightHealth;
16
+ AccountId?: string | undefined;
17
+ Insight?: AccountInsightHealth | undefined;
18
18
  }
19
19
  export declare const NotificationMessageType: {
20
20
  readonly CLOSED_INSIGHT: "CLOSED_INSIGHT";
@@ -33,15 +33,15 @@ export declare const InsightSeverity: {
33
33
  export type InsightSeverity =
34
34
  (typeof InsightSeverity)[keyof typeof InsightSeverity];
35
35
  export interface NotificationFilterConfig {
36
- Severities?: InsightSeverity[];
37
- MessageTypes?: NotificationMessageType[];
36
+ Severities?: InsightSeverity[] | undefined;
37
+ MessageTypes?: NotificationMessageType[] | undefined;
38
38
  }
39
39
  export interface SnsChannelConfig {
40
- TopicArn?: string;
40
+ TopicArn?: string | undefined;
41
41
  }
42
42
  export interface NotificationChannelConfig {
43
43
  Sns: SnsChannelConfig | undefined;
44
- Filters?: NotificationFilterConfig;
44
+ Filters?: NotificationFilterConfig | undefined;
45
45
  }
46
46
  export interface AddNotificationChannelRequest {
47
47
  Config: NotificationChannelConfig | undefined;
@@ -61,7 +61,7 @@ export declare class InternalServerException extends __BaseException {
61
61
  readonly name: "InternalServerException";
62
62
  readonly $fault: "server";
63
63
  Message: string | undefined;
64
- RetryAfterSeconds?: number;
64
+ RetryAfterSeconds?: number | undefined;
65
65
  constructor(
66
66
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
67
67
  );
@@ -79,7 +79,7 @@ export declare class ResourceNotFoundException extends __BaseException {
79
79
  export declare class ServiceQuotaExceededException extends __BaseException {
80
80
  readonly name: "ServiceQuotaExceededException";
81
81
  readonly $fault: "client";
82
- Message?: string;
82
+ Message?: string | undefined;
83
83
  constructor(
84
84
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
85
85
  );
@@ -88,9 +88,9 @@ export declare class ThrottlingException extends __BaseException {
88
88
  readonly name: "ThrottlingException";
89
89
  readonly $fault: "client";
90
90
  Message: string | undefined;
91
- QuotaCode?: string;
92
- ServiceCode?: string;
93
- RetryAfterSeconds?: number;
91
+ QuotaCode?: string | undefined;
92
+ ServiceCode?: string | undefined;
93
+ RetryAfterSeconds?: number | undefined;
94
94
  constructor(
95
95
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
96
96
  );
@@ -113,8 +113,8 @@ export declare class ValidationException extends __BaseException {
113
113
  readonly name: "ValidationException";
114
114
  readonly $fault: "client";
115
115
  Message: string | undefined;
116
- Reason?: ValidationExceptionReason;
117
- Fields?: ValidationExceptionField[];
116
+ Reason?: ValidationExceptionReason | undefined;
117
+ Fields?: ValidationExceptionField[] | undefined;
118
118
  constructor(
119
119
  opts: __ExceptionOptionType<ValidationException, __BaseException>
120
120
  );
@@ -126,7 +126,7 @@ export declare const EventSourceOptInStatus: {
126
126
  export type EventSourceOptInStatus =
127
127
  (typeof EventSourceOptInStatus)[keyof typeof EventSourceOptInStatus];
128
128
  export interface AmazonCodeGuruProfilerIntegration {
129
- Status?: EventSourceOptInStatus;
129
+ Status?: EventSourceOptInStatus | undefined;
130
130
  }
131
131
  export declare const LogAnomalyType: {
132
132
  readonly BLOCK_FORMAT: "BLOCK_FORMAT";
@@ -141,31 +141,31 @@ export declare const LogAnomalyType: {
141
141
  export type LogAnomalyType =
142
142
  (typeof LogAnomalyType)[keyof typeof LogAnomalyType];
143
143
  export interface LogAnomalyClass {
144
- LogStreamName?: string;
145
- LogAnomalyType?: LogAnomalyType;
146
- LogAnomalyToken?: string;
147
- LogEventId?: string;
148
- Explanation?: string;
149
- NumberOfLogLinesOccurrences?: number;
150
- LogEventTimestamp?: Date;
144
+ LogStreamName?: string | undefined;
145
+ LogAnomalyType?: LogAnomalyType | undefined;
146
+ LogAnomalyToken?: string | undefined;
147
+ LogEventId?: string | undefined;
148
+ Explanation?: string | undefined;
149
+ NumberOfLogLinesOccurrences?: number | undefined;
150
+ LogEventTimestamp?: Date | undefined;
151
151
  }
152
152
  export interface LogAnomalyShowcase {
153
- LogAnomalyClasses?: LogAnomalyClass[];
153
+ LogAnomalyClasses?: LogAnomalyClass[] | undefined;
154
154
  }
155
155
  export interface AnomalousLogGroup {
156
- LogGroupName?: string;
157
- ImpactStartTime?: Date;
158
- ImpactEndTime?: Date;
159
- NumberOfLogLinesScanned?: number;
160
- LogAnomalyShowcases?: LogAnomalyShowcase[];
156
+ LogGroupName?: string | undefined;
157
+ ImpactStartTime?: Date | undefined;
158
+ ImpactEndTime?: Date | undefined;
159
+ NumberOfLogLinesScanned?: number | undefined;
160
+ LogAnomalyShowcases?: LogAnomalyShowcase[] | undefined;
161
161
  }
162
162
  export interface AnomalyReportedTimeRange {
163
163
  OpenTime: Date | undefined;
164
- CloseTime?: Date;
164
+ CloseTime?: Date | undefined;
165
165
  }
166
166
  export interface AnomalyResource {
167
- Name?: string;
168
- Type?: string;
167
+ Name?: string | undefined;
168
+ Type?: string | undefined;
169
169
  }
170
170
  export declare const AnomalySeverity: {
171
171
  readonly HIGH: "HIGH";
@@ -175,8 +175,8 @@ export declare const AnomalySeverity: {
175
175
  export type AnomalySeverity =
176
176
  (typeof AnomalySeverity)[keyof typeof AnomalySeverity];
177
177
  export interface CloudWatchMetricsDimension {
178
- Name?: string;
179
- Value?: string;
178
+ Name?: string | undefined;
179
+ Value?: string | undefined;
180
180
  }
181
181
  export declare const CloudWatchMetricDataStatusCode: {
182
182
  readonly COMPLETE: "Complete";
@@ -186,12 +186,12 @@ export declare const CloudWatchMetricDataStatusCode: {
186
186
  export type CloudWatchMetricDataStatusCode =
187
187
  (typeof CloudWatchMetricDataStatusCode)[keyof typeof CloudWatchMetricDataStatusCode];
188
188
  export interface TimestampMetricValuePair {
189
- Timestamp?: Date;
190
- MetricValue?: number;
189
+ Timestamp?: Date | undefined;
190
+ MetricValue?: number | undefined;
191
191
  }
192
192
  export interface CloudWatchMetricsDataSummary {
193
- TimestampMetricValuePairList?: TimestampMetricValuePair[];
194
- StatusCode?: CloudWatchMetricDataStatusCode;
193
+ TimestampMetricValuePairList?: TimestampMetricValuePair[] | undefined;
194
+ StatusCode?: CloudWatchMetricDataStatusCode | undefined;
195
195
  }
196
196
  export declare const CloudWatchMetricsStat: {
197
197
  readonly AVERAGE: "Average";
@@ -206,58 +206,58 @@ export declare const CloudWatchMetricsStat: {
206
206
  export type CloudWatchMetricsStat =
207
207
  (typeof CloudWatchMetricsStat)[keyof typeof CloudWatchMetricsStat];
208
208
  export interface CloudWatchMetricsDetail {
209
- MetricName?: string;
210
- Namespace?: string;
211
- Dimensions?: CloudWatchMetricsDimension[];
212
- Stat?: CloudWatchMetricsStat;
213
- Unit?: string;
214
- Period?: number;
215
- MetricDataSummary?: CloudWatchMetricsDataSummary;
209
+ MetricName?: string | undefined;
210
+ Namespace?: string | undefined;
211
+ Dimensions?: CloudWatchMetricsDimension[] | undefined;
212
+ Stat?: CloudWatchMetricsStat | undefined;
213
+ Unit?: string | undefined;
214
+ Period?: number | undefined;
215
+ MetricDataSummary?: CloudWatchMetricsDataSummary | undefined;
216
216
  }
217
217
  export interface PerformanceInsightsMetricDimensionGroup {
218
- Group?: string;
219
- Dimensions?: string[];
220
- Limit?: number;
218
+ Group?: string | undefined;
219
+ Dimensions?: string[] | undefined;
220
+ Limit?: number | undefined;
221
221
  }
222
222
  export interface PerformanceInsightsMetricQuery {
223
- Metric?: string;
224
- GroupBy?: PerformanceInsightsMetricDimensionGroup;
225
- Filter?: Record<string, string>;
223
+ Metric?: string | undefined;
224
+ GroupBy?: PerformanceInsightsMetricDimensionGroup | undefined;
225
+ Filter?: Record<string, string> | undefined;
226
226
  }
227
227
  export interface PerformanceInsightsReferenceMetric {
228
- MetricQuery?: PerformanceInsightsMetricQuery;
228
+ MetricQuery?: PerformanceInsightsMetricQuery | undefined;
229
229
  }
230
230
  export interface PerformanceInsightsReferenceScalar {
231
- Value?: number;
231
+ Value?: number | undefined;
232
232
  }
233
233
  export interface PerformanceInsightsReferenceComparisonValues {
234
- ReferenceScalar?: PerformanceInsightsReferenceScalar;
235
- ReferenceMetric?: PerformanceInsightsReferenceMetric;
234
+ ReferenceScalar?: PerformanceInsightsReferenceScalar | undefined;
235
+ ReferenceMetric?: PerformanceInsightsReferenceMetric | undefined;
236
236
  }
237
237
  export interface PerformanceInsightsReferenceData {
238
- Name?: string;
239
- ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
238
+ Name?: string | undefined;
239
+ ComparisonValues?: PerformanceInsightsReferenceComparisonValues | undefined;
240
240
  }
241
241
  export interface PerformanceInsightsStat {
242
- Type?: string;
243
- Value?: number;
242
+ Type?: string | undefined;
243
+ Value?: number | undefined;
244
244
  }
245
245
  export interface PerformanceInsightsMetricsDetail {
246
- MetricDisplayName?: string;
247
- Unit?: string;
248
- MetricQuery?: PerformanceInsightsMetricQuery;
249
- ReferenceData?: PerformanceInsightsReferenceData[];
250
- StatsAtAnomaly?: PerformanceInsightsStat[];
251
- StatsAtBaseline?: PerformanceInsightsStat[];
246
+ MetricDisplayName?: string | undefined;
247
+ Unit?: string | undefined;
248
+ MetricQuery?: PerformanceInsightsMetricQuery | undefined;
249
+ ReferenceData?: PerformanceInsightsReferenceData[] | undefined;
250
+ StatsAtAnomaly?: PerformanceInsightsStat[] | undefined;
251
+ StatsAtBaseline?: PerformanceInsightsStat[] | undefined;
252
252
  }
253
253
  export interface AnomalySourceDetails {
254
- CloudWatchMetrics?: CloudWatchMetricsDetail[];
255
- PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
254
+ CloudWatchMetrics?: CloudWatchMetricsDetail[] | undefined;
255
+ PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[] | undefined;
256
256
  }
257
257
  export interface AnomalySourceMetadata {
258
- Source?: string;
259
- SourceResourceName?: string;
260
- SourceResourceType?: string;
258
+ Source?: string | undefined;
259
+ SourceResourceName?: string | undefined;
260
+ SourceResourceType?: string | undefined;
261
261
  }
262
262
  export declare const AnomalyStatus: {
263
263
  readonly CLOSED: "CLOSED";
@@ -266,7 +266,7 @@ export declare const AnomalyStatus: {
266
266
  export type AnomalyStatus = (typeof AnomalyStatus)[keyof typeof AnomalyStatus];
267
267
  export interface AnomalyTimeRange {
268
268
  StartTime: Date | undefined;
269
- EndTime?: Date;
269
+ EndTime?: Date | undefined;
270
270
  }
271
271
  export declare const AnomalyType: {
272
272
  readonly CAUSAL: "CAUSAL";
@@ -283,11 +283,11 @@ export interface DescribeAccountHealthResponse {
283
283
  OpenProactiveInsights: number | undefined;
284
284
  MetricsAnalyzed: number | undefined;
285
285
  ResourceHours: number | undefined;
286
- AnalyzedResourceCount?: number;
286
+ AnalyzedResourceCount?: number | undefined;
287
287
  }
288
288
  export interface DescribeAccountOverviewRequest {
289
289
  FromTime: Date | undefined;
290
- ToTime?: Date;
290
+ ToTime?: Date | undefined;
291
291
  }
292
292
  export interface DescribeAccountOverviewResponse {
293
293
  ReactiveInsights: number | undefined;
@@ -296,67 +296,67 @@ export interface DescribeAccountOverviewResponse {
296
296
  }
297
297
  export interface DescribeAnomalyRequest {
298
298
  Id: string | undefined;
299
- AccountId?: string;
299
+ AccountId?: string | undefined;
300
300
  }
301
301
  export interface PredictionTimeRange {
302
302
  StartTime: Date | undefined;
303
- EndTime?: Date;
303
+ EndTime?: Date | undefined;
304
304
  }
305
305
  export interface CloudFormationCollection {
306
- StackNames?: string[];
306
+ StackNames?: string[] | undefined;
307
307
  }
308
308
  export interface TagCollection {
309
309
  AppBoundaryKey: string | undefined;
310
310
  TagValues: string[] | undefined;
311
311
  }
312
312
  export interface ResourceCollection {
313
- CloudFormation?: CloudFormationCollection;
314
- Tags?: TagCollection[];
313
+ CloudFormation?: CloudFormationCollection | undefined;
314
+ Tags?: TagCollection[] | undefined;
315
315
  }
316
316
  export interface ProactiveAnomaly {
317
- Id?: string;
318
- Severity?: AnomalySeverity;
319
- Status?: AnomalyStatus;
320
- UpdateTime?: Date;
321
- AnomalyTimeRange?: AnomalyTimeRange;
322
- AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
323
- PredictionTimeRange?: PredictionTimeRange;
324
- SourceDetails?: AnomalySourceDetails;
325
- AssociatedInsightId?: string;
326
- ResourceCollection?: ResourceCollection;
327
- Limit?: number;
328
- SourceMetadata?: AnomalySourceMetadata;
329
- AnomalyResources?: AnomalyResource[];
330
- Description?: string;
317
+ Id?: string | undefined;
318
+ Severity?: AnomalySeverity | undefined;
319
+ Status?: AnomalyStatus | undefined;
320
+ UpdateTime?: Date | undefined;
321
+ AnomalyTimeRange?: AnomalyTimeRange | undefined;
322
+ AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
323
+ PredictionTimeRange?: PredictionTimeRange | undefined;
324
+ SourceDetails?: AnomalySourceDetails | undefined;
325
+ AssociatedInsightId?: string | undefined;
326
+ ResourceCollection?: ResourceCollection | undefined;
327
+ Limit?: number | undefined;
328
+ SourceMetadata?: AnomalySourceMetadata | undefined;
329
+ AnomalyResources?: AnomalyResource[] | undefined;
330
+ Description?: string | undefined;
331
331
  }
332
332
  export interface ReactiveAnomaly {
333
- Id?: string;
334
- Severity?: AnomalySeverity;
335
- Status?: AnomalyStatus;
336
- AnomalyTimeRange?: AnomalyTimeRange;
337
- AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
338
- SourceDetails?: AnomalySourceDetails;
339
- AssociatedInsightId?: string;
340
- ResourceCollection?: ResourceCollection;
341
- Type?: AnomalyType;
342
- Name?: string;
343
- Description?: string;
344
- CausalAnomalyId?: string;
345
- AnomalyResources?: AnomalyResource[];
333
+ Id?: string | undefined;
334
+ Severity?: AnomalySeverity | undefined;
335
+ Status?: AnomalyStatus | undefined;
336
+ AnomalyTimeRange?: AnomalyTimeRange | undefined;
337
+ AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
338
+ SourceDetails?: AnomalySourceDetails | undefined;
339
+ AssociatedInsightId?: string | undefined;
340
+ ResourceCollection?: ResourceCollection | undefined;
341
+ Type?: AnomalyType | undefined;
342
+ Name?: string | undefined;
343
+ Description?: string | undefined;
344
+ CausalAnomalyId?: string | undefined;
345
+ AnomalyResources?: AnomalyResource[] | undefined;
346
346
  }
347
347
  export interface DescribeAnomalyResponse {
348
- ProactiveAnomaly?: ProactiveAnomaly;
349
- ReactiveAnomaly?: ReactiveAnomaly;
348
+ ProactiveAnomaly?: ProactiveAnomaly | undefined;
349
+ ReactiveAnomaly?: ReactiveAnomaly | undefined;
350
350
  }
351
351
  export interface DescribeEventSourcesConfigRequest {}
352
352
  export interface EventSourcesConfig {
353
- AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
353
+ AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration | undefined;
354
354
  }
355
355
  export interface DescribeEventSourcesConfigResponse {
356
- EventSources?: EventSourcesConfig;
356
+ EventSources?: EventSourcesConfig | undefined;
357
357
  }
358
358
  export interface DescribeFeedbackRequest {
359
- InsightId?: string;
359
+ InsightId?: string | undefined;
360
360
  }
361
361
  export declare const InsightFeedbackOption: {
362
362
  readonly ALERT_TOO_SENSITIVE: "ALERT_TOO_SENSITIVE";
@@ -368,19 +368,19 @@ export declare const InsightFeedbackOption: {
368
368
  export type InsightFeedbackOption =
369
369
  (typeof InsightFeedbackOption)[keyof typeof InsightFeedbackOption];
370
370
  export interface InsightFeedback {
371
- Id?: string;
372
- Feedback?: InsightFeedbackOption;
371
+ Id?: string | undefined;
372
+ Feedback?: InsightFeedbackOption | undefined;
373
373
  }
374
374
  export interface DescribeFeedbackResponse {
375
- InsightFeedback?: InsightFeedback;
375
+ InsightFeedback?: InsightFeedback | undefined;
376
376
  }
377
377
  export interface DescribeInsightRequest {
378
378
  Id: string | undefined;
379
- AccountId?: string;
379
+ AccountId?: string | undefined;
380
380
  }
381
381
  export interface InsightTimeRange {
382
382
  StartTime: Date | undefined;
383
- EndTime?: Date;
383
+ EndTime?: Date | undefined;
384
384
  }
385
385
  export declare const InsightStatus: {
386
386
  readonly CLOSED: "CLOSED";
@@ -388,33 +388,33 @@ export declare const InsightStatus: {
388
388
  };
389
389
  export type InsightStatus = (typeof InsightStatus)[keyof typeof InsightStatus];
390
390
  export interface ProactiveInsight {
391
- Id?: string;
392
- Name?: string;
393
- Severity?: InsightSeverity;
394
- Status?: InsightStatus;
395
- InsightTimeRange?: InsightTimeRange;
396
- PredictionTimeRange?: PredictionTimeRange;
397
- ResourceCollection?: ResourceCollection;
398
- SsmOpsItemId?: string;
399
- Description?: string;
391
+ Id?: string | undefined;
392
+ Name?: string | undefined;
393
+ Severity?: InsightSeverity | undefined;
394
+ Status?: InsightStatus | undefined;
395
+ InsightTimeRange?: InsightTimeRange | undefined;
396
+ PredictionTimeRange?: PredictionTimeRange | undefined;
397
+ ResourceCollection?: ResourceCollection | undefined;
398
+ SsmOpsItemId?: string | undefined;
399
+ Description?: string | undefined;
400
400
  }
401
401
  export interface ReactiveInsight {
402
- Id?: string;
403
- Name?: string;
404
- Severity?: InsightSeverity;
405
- Status?: InsightStatus;
406
- InsightTimeRange?: InsightTimeRange;
407
- ResourceCollection?: ResourceCollection;
408
- SsmOpsItemId?: string;
409
- Description?: string;
402
+ Id?: string | undefined;
403
+ Name?: string | undefined;
404
+ Severity?: InsightSeverity | undefined;
405
+ Status?: InsightStatus | undefined;
406
+ InsightTimeRange?: InsightTimeRange | undefined;
407
+ ResourceCollection?: ResourceCollection | undefined;
408
+ SsmOpsItemId?: string | undefined;
409
+ Description?: string | undefined;
410
410
  }
411
411
  export interface DescribeInsightResponse {
412
- ProactiveInsight?: ProactiveInsight;
413
- ReactiveInsight?: ReactiveInsight;
412
+ ProactiveInsight?: ProactiveInsight | undefined;
413
+ ReactiveInsight?: ReactiveInsight | undefined;
414
414
  }
415
415
  export interface DescribeOrganizationHealthRequest {
416
- AccountIds?: string[];
417
- OrganizationalUnitIds?: string[];
416
+ AccountIds?: string[] | undefined;
417
+ OrganizationalUnitIds?: string[] | undefined;
418
418
  }
419
419
  export interface DescribeOrganizationHealthResponse {
420
420
  OpenReactiveInsights: number | undefined;
@@ -424,9 +424,9 @@ export interface DescribeOrganizationHealthResponse {
424
424
  }
425
425
  export interface DescribeOrganizationOverviewRequest {
426
426
  FromTime: Date | undefined;
427
- ToTime?: Date;
428
- AccountIds?: string[];
429
- OrganizationalUnitIds?: string[];
427
+ ToTime?: Date | undefined;
428
+ AccountIds?: string[] | undefined;
429
+ OrganizationalUnitIds?: string[] | undefined;
430
430
  }
431
431
  export interface DescribeOrganizationOverviewResponse {
432
432
  ReactiveInsights: number | undefined;
@@ -444,24 +444,24 @@ export interface DescribeOrganizationResourceCollectionHealthRequest {
444
444
  OrganizationResourceCollectionType:
445
445
  | OrganizationResourceCollectionType
446
446
  | undefined;
447
- AccountIds?: string[];
448
- OrganizationalUnitIds?: string[];
449
- NextToken?: string;
450
- MaxResults?: number;
447
+ AccountIds?: string[] | undefined;
448
+ OrganizationalUnitIds?: string[] | undefined;
449
+ NextToken?: string | undefined;
450
+ MaxResults?: number | undefined;
451
451
  }
452
452
  export interface InsightHealth {
453
- OpenProactiveInsights?: number;
454
- OpenReactiveInsights?: number;
455
- MeanTimeToRecoverInMilliseconds?: number;
453
+ OpenProactiveInsights?: number | undefined;
454
+ OpenReactiveInsights?: number | undefined;
455
+ MeanTimeToRecoverInMilliseconds?: number | undefined;
456
456
  }
457
457
  export interface CloudFormationHealth {
458
- StackName?: string;
459
- Insight?: InsightHealth;
460
- AnalyzedResourceCount?: number;
458
+ StackName?: string | undefined;
459
+ Insight?: InsightHealth | undefined;
460
+ AnalyzedResourceCount?: number | undefined;
461
461
  }
462
462
  export interface ServiceInsightHealth {
463
- OpenProactiveInsights?: number;
464
- OpenReactiveInsights?: number;
463
+ OpenProactiveInsights?: number | undefined;
464
+ OpenReactiveInsights?: number | undefined;
465
465
  }
466
466
  export declare const ServiceName: {
467
467
  readonly API_GATEWAY: "API_GATEWAY";
@@ -492,22 +492,22 @@ export declare const ServiceName: {
492
492
  };
493
493
  export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
494
494
  export interface ServiceHealth {
495
- ServiceName?: ServiceName;
496
- Insight?: ServiceInsightHealth;
497
- AnalyzedResourceCount?: number;
495
+ ServiceName?: ServiceName | undefined;
496
+ Insight?: ServiceInsightHealth | undefined;
497
+ AnalyzedResourceCount?: number | undefined;
498
498
  }
499
499
  export interface TagHealth {
500
- AppBoundaryKey?: string;
501
- TagValue?: string;
502
- Insight?: InsightHealth;
503
- AnalyzedResourceCount?: number;
500
+ AppBoundaryKey?: string | undefined;
501
+ TagValue?: string | undefined;
502
+ Insight?: InsightHealth | undefined;
503
+ AnalyzedResourceCount?: number | undefined;
504
504
  }
505
505
  export interface DescribeOrganizationResourceCollectionHealthResponse {
506
- CloudFormation?: CloudFormationHealth[];
507
- Service?: ServiceHealth[];
508
- Account?: AccountHealth[];
509
- NextToken?: string;
510
- Tags?: TagHealth[];
506
+ CloudFormation?: CloudFormationHealth[] | undefined;
507
+ Service?: ServiceHealth[] | undefined;
508
+ Account?: AccountHealth[] | undefined;
509
+ NextToken?: string | undefined;
510
+ Tags?: TagHealth[] | undefined;
511
511
  }
512
512
  export declare const ResourceCollectionType: {
513
513
  readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
@@ -518,13 +518,13 @@ export type ResourceCollectionType =
518
518
  (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
519
519
  export interface DescribeResourceCollectionHealthRequest {
520
520
  ResourceCollectionType: ResourceCollectionType | undefined;
521
- NextToken?: string;
521
+ NextToken?: string | undefined;
522
522
  }
523
523
  export interface DescribeResourceCollectionHealthResponse {
524
- CloudFormation?: CloudFormationHealth[];
525
- Service?: ServiceHealth[];
526
- NextToken?: string;
527
- Tags?: TagHealth[];
524
+ CloudFormation?: CloudFormationHealth[] | undefined;
525
+ Service?: ServiceHealth[] | undefined;
526
+ NextToken?: string | undefined;
527
+ Tags?: TagHealth[] | undefined;
528
528
  }
529
529
  export interface DescribeServiceIntegrationRequest {}
530
530
  export declare const OptInStatus: {
@@ -539,26 +539,26 @@ export declare const ServerSideEncryptionType: {
539
539
  export type ServerSideEncryptionType =
540
540
  (typeof ServerSideEncryptionType)[keyof typeof ServerSideEncryptionType];
541
541
  export interface KMSServerSideEncryptionIntegration {
542
- KMSKeyId?: string;
543
- OptInStatus?: OptInStatus;
544
- Type?: ServerSideEncryptionType;
542
+ KMSKeyId?: string | undefined;
543
+ OptInStatus?: OptInStatus | undefined;
544
+ Type?: ServerSideEncryptionType | undefined;
545
545
  }
546
546
  export interface LogsAnomalyDetectionIntegration {
547
- OptInStatus?: OptInStatus;
547
+ OptInStatus?: OptInStatus | undefined;
548
548
  }
549
549
  export interface OpsCenterIntegration {
550
- OptInStatus?: OptInStatus;
550
+ OptInStatus?: OptInStatus | undefined;
551
551
  }
552
552
  export interface ServiceIntegrationConfig {
553
- OpsCenter?: OpsCenterIntegration;
554
- LogsAnomalyDetection?: LogsAnomalyDetectionIntegration;
555
- KMSServerSideEncryption?: KMSServerSideEncryptionIntegration;
553
+ OpsCenter?: OpsCenterIntegration | undefined;
554
+ LogsAnomalyDetection?: LogsAnomalyDetectionIntegration | undefined;
555
+ KMSServerSideEncryption?: KMSServerSideEncryptionIntegration | undefined;
556
556
  }
557
557
  export interface DescribeServiceIntegrationResponse {
558
- ServiceIntegration?: ServiceIntegrationConfig;
558
+ ServiceIntegration?: ServiceIntegrationConfig | undefined;
559
559
  }
560
560
  export interface GetCostEstimationRequest {
561
- NextToken?: string;
561
+ NextToken?: string | undefined;
562
562
  }
563
563
  export declare const CostEstimationServiceResourceState: {
564
564
  readonly ACTIVE: "ACTIVE";
@@ -567,22 +567,24 @@ export declare const CostEstimationServiceResourceState: {
567
567
  export type CostEstimationServiceResourceState =
568
568
  (typeof CostEstimationServiceResourceState)[keyof typeof CostEstimationServiceResourceState];
569
569
  export interface ServiceResourceCost {
570
- Type?: string;
571
- State?: CostEstimationServiceResourceState;
572
- Count?: number;
573
- UnitCost?: number;
574
- Cost?: number;
570
+ Type?: string | undefined;
571
+ State?: CostEstimationServiceResourceState | undefined;
572
+ Count?: number | undefined;
573
+ UnitCost?: number | undefined;
574
+ Cost?: number | undefined;
575
575
  }
576
576
  export interface CloudFormationCostEstimationResourceCollectionFilter {
577
- StackNames?: string[];
577
+ StackNames?: string[] | undefined;
578
578
  }
579
579
  export interface TagCostEstimationResourceCollectionFilter {
580
580
  AppBoundaryKey: string | undefined;
581
581
  TagValues: string[] | undefined;
582
582
  }
583
583
  export interface CostEstimationResourceCollectionFilter {
584
- CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
585
- Tags?: TagCostEstimationResourceCollectionFilter[];
584
+ CloudFormation?:
585
+ | CloudFormationCostEstimationResourceCollectionFilter
586
+ | undefined;
587
+ Tags?: TagCostEstimationResourceCollectionFilter[] | undefined;
586
588
  }
587
589
  export declare const CostEstimationStatus: {
588
590
  readonly COMPLETED: "COMPLETED";
@@ -591,99 +593,99 @@ export declare const CostEstimationStatus: {
591
593
  export type CostEstimationStatus =
592
594
  (typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
593
595
  export interface CostEstimationTimeRange {
594
- StartTime?: Date;
595
- EndTime?: Date;
596
+ StartTime?: Date | undefined;
597
+ EndTime?: Date | undefined;
596
598
  }
597
599
  export interface GetCostEstimationResponse {
598
- ResourceCollection?: CostEstimationResourceCollectionFilter;
599
- Status?: CostEstimationStatus;
600
- Costs?: ServiceResourceCost[];
601
- TimeRange?: CostEstimationTimeRange;
602
- TotalCost?: number;
603
- NextToken?: string;
600
+ ResourceCollection?: CostEstimationResourceCollectionFilter | undefined;
601
+ Status?: CostEstimationStatus | undefined;
602
+ Costs?: ServiceResourceCost[] | undefined;
603
+ TimeRange?: CostEstimationTimeRange | undefined;
604
+ TotalCost?: number | undefined;
605
+ NextToken?: string | undefined;
604
606
  }
605
607
  export interface GetResourceCollectionRequest {
606
608
  ResourceCollectionType: ResourceCollectionType | undefined;
607
- NextToken?: string;
609
+ NextToken?: string | undefined;
608
610
  }
609
611
  export interface CloudFormationCollectionFilter {
610
- StackNames?: string[];
612
+ StackNames?: string[] | undefined;
611
613
  }
612
614
  export interface TagCollectionFilter {
613
615
  AppBoundaryKey: string | undefined;
614
616
  TagValues: string[] | undefined;
615
617
  }
616
618
  export interface ResourceCollectionFilter {
617
- CloudFormation?: CloudFormationCollectionFilter;
618
- Tags?: TagCollectionFilter[];
619
+ CloudFormation?: CloudFormationCollectionFilter | undefined;
620
+ Tags?: TagCollectionFilter[] | undefined;
619
621
  }
620
622
  export interface GetResourceCollectionResponse {
621
- ResourceCollection?: ResourceCollectionFilter;
622
- NextToken?: string;
623
+ ResourceCollection?: ResourceCollectionFilter | undefined;
624
+ NextToken?: string | undefined;
623
625
  }
624
626
  export interface ServiceCollection {
625
- ServiceNames?: ServiceName[];
627
+ ServiceNames?: ServiceName[] | undefined;
626
628
  }
627
629
  export interface ListAnomaliesForInsightFilters {
628
- ServiceCollection?: ServiceCollection;
630
+ ServiceCollection?: ServiceCollection | undefined;
629
631
  }
630
632
  export interface StartTimeRange {
631
- FromTime?: Date;
632
- ToTime?: Date;
633
+ FromTime?: Date | undefined;
634
+ ToTime?: Date | undefined;
633
635
  }
634
636
  export interface ListAnomaliesForInsightRequest {
635
637
  InsightId: string | undefined;
636
- StartTimeRange?: StartTimeRange;
637
- MaxResults?: number;
638
- NextToken?: string;
639
- AccountId?: string;
640
- Filters?: ListAnomaliesForInsightFilters;
638
+ StartTimeRange?: StartTimeRange | undefined;
639
+ MaxResults?: number | undefined;
640
+ NextToken?: string | undefined;
641
+ AccountId?: string | undefined;
642
+ Filters?: ListAnomaliesForInsightFilters | undefined;
641
643
  }
642
644
  export interface ProactiveAnomalySummary {
643
- Id?: string;
644
- Severity?: AnomalySeverity;
645
- Status?: AnomalyStatus;
646
- UpdateTime?: Date;
647
- AnomalyTimeRange?: AnomalyTimeRange;
648
- AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
649
- PredictionTimeRange?: PredictionTimeRange;
650
- SourceDetails?: AnomalySourceDetails;
651
- AssociatedInsightId?: string;
652
- ResourceCollection?: ResourceCollection;
653
- Limit?: number;
654
- SourceMetadata?: AnomalySourceMetadata;
655
- AnomalyResources?: AnomalyResource[];
656
- Description?: string;
645
+ Id?: string | undefined;
646
+ Severity?: AnomalySeverity | undefined;
647
+ Status?: AnomalyStatus | undefined;
648
+ UpdateTime?: Date | undefined;
649
+ AnomalyTimeRange?: AnomalyTimeRange | undefined;
650
+ AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
651
+ PredictionTimeRange?: PredictionTimeRange | undefined;
652
+ SourceDetails?: AnomalySourceDetails | undefined;
653
+ AssociatedInsightId?: string | undefined;
654
+ ResourceCollection?: ResourceCollection | undefined;
655
+ Limit?: number | undefined;
656
+ SourceMetadata?: AnomalySourceMetadata | undefined;
657
+ AnomalyResources?: AnomalyResource[] | undefined;
658
+ Description?: string | undefined;
657
659
  }
658
660
  export interface ReactiveAnomalySummary {
659
- Id?: string;
660
- Severity?: AnomalySeverity;
661
- Status?: AnomalyStatus;
662
- AnomalyTimeRange?: AnomalyTimeRange;
663
- AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
664
- SourceDetails?: AnomalySourceDetails;
665
- AssociatedInsightId?: string;
666
- ResourceCollection?: ResourceCollection;
667
- Type?: AnomalyType;
668
- Name?: string;
669
- Description?: string;
670
- CausalAnomalyId?: string;
671
- AnomalyResources?: AnomalyResource[];
661
+ Id?: string | undefined;
662
+ Severity?: AnomalySeverity | undefined;
663
+ Status?: AnomalyStatus | undefined;
664
+ AnomalyTimeRange?: AnomalyTimeRange | undefined;
665
+ AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
666
+ SourceDetails?: AnomalySourceDetails | undefined;
667
+ AssociatedInsightId?: string | undefined;
668
+ ResourceCollection?: ResourceCollection | undefined;
669
+ Type?: AnomalyType | undefined;
670
+ Name?: string | undefined;
671
+ Description?: string | undefined;
672
+ CausalAnomalyId?: string | undefined;
673
+ AnomalyResources?: AnomalyResource[] | undefined;
672
674
  }
673
675
  export interface ListAnomaliesForInsightResponse {
674
- ProactiveAnomalies?: ProactiveAnomalySummary[];
675
- ReactiveAnomalies?: ReactiveAnomalySummary[];
676
- NextToken?: string;
676
+ ProactiveAnomalies?: ProactiveAnomalySummary[] | undefined;
677
+ ReactiveAnomalies?: ReactiveAnomalySummary[] | undefined;
678
+ NextToken?: string | undefined;
677
679
  }
678
680
  export interface ListAnomalousLogGroupsRequest {
679
681
  InsightId: string | undefined;
680
- MaxResults?: number;
681
- NextToken?: string;
682
+ MaxResults?: number | undefined;
683
+ NextToken?: string | undefined;
682
684
  }
683
685
  export interface ListAnomalousLogGroupsResponse {
684
686
  InsightId: string | undefined;
685
687
  AnomalousLogGroups: AnomalousLogGroup[] | undefined;
686
- NextToken?: string;
688
+ NextToken?: string | undefined;
687
689
  }
688
690
  export declare const EventDataSource: {
689
691
  readonly AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL";
@@ -704,37 +706,37 @@ export interface EventTimeRange {
704
706
  ToTime: Date | undefined;
705
707
  }
706
708
  export interface ListEventsFilters {
707
- InsightId?: string;
708
- EventTimeRange?: EventTimeRange;
709
- EventClass?: EventClass;
710
- EventSource?: string;
711
- DataSource?: EventDataSource;
712
- ResourceCollection?: ResourceCollection;
709
+ InsightId?: string | undefined;
710
+ EventTimeRange?: EventTimeRange | undefined;
711
+ EventClass?: EventClass | undefined;
712
+ EventSource?: string | undefined;
713
+ DataSource?: EventDataSource | undefined;
714
+ ResourceCollection?: ResourceCollection | undefined;
713
715
  }
714
716
  export interface ListEventsRequest {
715
717
  Filters: ListEventsFilters | undefined;
716
- MaxResults?: number;
717
- NextToken?: string;
718
- AccountId?: string;
718
+ MaxResults?: number | undefined;
719
+ NextToken?: string | undefined;
720
+ AccountId?: string | undefined;
719
721
  }
720
722
  export interface EventResource {
721
- Type?: string;
722
- Name?: string;
723
- Arn?: string;
723
+ Type?: string | undefined;
724
+ Name?: string | undefined;
725
+ Arn?: string | undefined;
724
726
  }
725
727
  export interface Event {
726
- ResourceCollection?: ResourceCollection;
727
- Id?: string;
728
- Time?: Date;
729
- EventSource?: string;
730
- Name?: string;
731
- DataSource?: EventDataSource;
732
- EventClass?: EventClass;
733
- Resources?: EventResource[];
728
+ ResourceCollection?: ResourceCollection | undefined;
729
+ Id?: string | undefined;
730
+ Time?: Date | undefined;
731
+ EventSource?: string | undefined;
732
+ Name?: string | undefined;
733
+ DataSource?: EventDataSource | undefined;
734
+ EventClass?: EventClass | undefined;
735
+ Resources?: EventResource[] | undefined;
734
736
  }
735
737
  export interface ListEventsResponse {
736
738
  Events: Event[] | undefined;
737
- NextToken?: string;
739
+ NextToken?: string | undefined;
738
740
  }
739
741
  export declare const InsightType: {
740
742
  readonly PROACTIVE: "PROACTIVE";
@@ -746,8 +748,8 @@ export interface ListInsightsAnyStatusFilter {
746
748
  StartTimeRange: StartTimeRange | undefined;
747
749
  }
748
750
  export interface EndTimeRange {
749
- FromTime?: Date;
750
- ToTime?: Date;
751
+ FromTime?: Date | undefined;
752
+ ToTime?: Date | undefined;
751
753
  }
752
754
  export interface ListInsightsClosedStatusFilter {
753
755
  Type: InsightType | undefined;
@@ -757,40 +759,40 @@ export interface ListInsightsOngoingStatusFilter {
757
759
  Type: InsightType | undefined;
758
760
  }
759
761
  export interface ListInsightsStatusFilter {
760
- Ongoing?: ListInsightsOngoingStatusFilter;
761
- Closed?: ListInsightsClosedStatusFilter;
762
- Any?: ListInsightsAnyStatusFilter;
762
+ Ongoing?: ListInsightsOngoingStatusFilter | undefined;
763
+ Closed?: ListInsightsClosedStatusFilter | undefined;
764
+ Any?: ListInsightsAnyStatusFilter | undefined;
763
765
  }
764
766
  export interface ListInsightsRequest {
765
767
  StatusFilter: ListInsightsStatusFilter | undefined;
766
- MaxResults?: number;
767
- NextToken?: string;
768
+ MaxResults?: number | undefined;
769
+ NextToken?: string | undefined;
768
770
  }
769
771
  export interface ProactiveInsightSummary {
770
- Id?: string;
771
- Name?: string;
772
- Severity?: InsightSeverity;
773
- Status?: InsightStatus;
774
- InsightTimeRange?: InsightTimeRange;
775
- PredictionTimeRange?: PredictionTimeRange;
776
- ResourceCollection?: ResourceCollection;
777
- ServiceCollection?: ServiceCollection;
778
- AssociatedResourceArns?: string[];
772
+ Id?: string | undefined;
773
+ Name?: string | undefined;
774
+ Severity?: InsightSeverity | undefined;
775
+ Status?: InsightStatus | undefined;
776
+ InsightTimeRange?: InsightTimeRange | undefined;
777
+ PredictionTimeRange?: PredictionTimeRange | undefined;
778
+ ResourceCollection?: ResourceCollection | undefined;
779
+ ServiceCollection?: ServiceCollection | undefined;
780
+ AssociatedResourceArns?: string[] | undefined;
779
781
  }
780
782
  export interface ReactiveInsightSummary {
781
- Id?: string;
782
- Name?: string;
783
- Severity?: InsightSeverity;
784
- Status?: InsightStatus;
785
- InsightTimeRange?: InsightTimeRange;
786
- ResourceCollection?: ResourceCollection;
787
- ServiceCollection?: ServiceCollection;
788
- AssociatedResourceArns?: string[];
783
+ Id?: string | undefined;
784
+ Name?: string | undefined;
785
+ Severity?: InsightSeverity | undefined;
786
+ Status?: InsightStatus | undefined;
787
+ InsightTimeRange?: InsightTimeRange | undefined;
788
+ ResourceCollection?: ResourceCollection | undefined;
789
+ ServiceCollection?: ServiceCollection | undefined;
790
+ AssociatedResourceArns?: string[] | undefined;
789
791
  }
790
792
  export interface ListInsightsResponse {
791
- ProactiveInsights?: ProactiveInsightSummary[];
792
- ReactiveInsights?: ReactiveInsightSummary[];
793
- NextToken?: string;
793
+ ProactiveInsights?: ProactiveInsightSummary[] | undefined;
794
+ ReactiveInsights?: ReactiveInsightSummary[] | undefined;
795
+ NextToken?: string | undefined;
794
796
  }
795
797
  export declare const ResourcePermission: {
796
798
  readonly FULL_PERMISSION: "FULL_PERMISSION";
@@ -834,66 +836,66 @@ export interface ListMonitoredResourcesFilters {
834
836
  ResourceTypeFilters: ResourceTypeFilter[] | undefined;
835
837
  }
836
838
  export interface ListMonitoredResourcesRequest {
837
- Filters?: ListMonitoredResourcesFilters;
838
- MaxResults?: number;
839
- NextToken?: string;
839
+ Filters?: ListMonitoredResourcesFilters | undefined;
840
+ MaxResults?: number | undefined;
841
+ NextToken?: string | undefined;
840
842
  }
841
843
  export interface MonitoredResourceIdentifier {
842
- MonitoredResourceName?: string;
843
- Type?: string;
844
- ResourcePermission?: ResourcePermission;
845
- LastUpdated?: Date;
846
- ResourceCollection?: ResourceCollection;
844
+ MonitoredResourceName?: string | undefined;
845
+ Type?: string | undefined;
846
+ ResourcePermission?: ResourcePermission | undefined;
847
+ LastUpdated?: Date | undefined;
848
+ ResourceCollection?: ResourceCollection | undefined;
847
849
  }
848
850
  export interface ListMonitoredResourcesResponse {
849
851
  MonitoredResourceIdentifiers: MonitoredResourceIdentifier[] | undefined;
850
- NextToken?: string;
852
+ NextToken?: string | undefined;
851
853
  }
852
854
  export interface ListNotificationChannelsRequest {
853
- NextToken?: string;
855
+ NextToken?: string | undefined;
854
856
  }
855
857
  export interface NotificationChannel {
856
- Id?: string;
857
- Config?: NotificationChannelConfig;
858
+ Id?: string | undefined;
859
+ Config?: NotificationChannelConfig | undefined;
858
860
  }
859
861
  export interface ListNotificationChannelsResponse {
860
- Channels?: NotificationChannel[];
861
- NextToken?: string;
862
+ Channels?: NotificationChannel[] | undefined;
863
+ NextToken?: string | undefined;
862
864
  }
863
865
  export interface ListOrganizationInsightsRequest {
864
866
  StatusFilter: ListInsightsStatusFilter | undefined;
865
- MaxResults?: number;
866
- AccountIds?: string[];
867
- OrganizationalUnitIds?: string[];
868
- NextToken?: string;
867
+ MaxResults?: number | undefined;
868
+ AccountIds?: string[] | undefined;
869
+ OrganizationalUnitIds?: string[] | undefined;
870
+ NextToken?: string | undefined;
869
871
  }
870
872
  export interface ProactiveOrganizationInsightSummary {
871
- Id?: string;
872
- AccountId?: string;
873
- OrganizationalUnitId?: string;
874
- Name?: string;
875
- Severity?: InsightSeverity;
876
- Status?: InsightStatus;
877
- InsightTimeRange?: InsightTimeRange;
878
- PredictionTimeRange?: PredictionTimeRange;
879
- ResourceCollection?: ResourceCollection;
880
- ServiceCollection?: ServiceCollection;
873
+ Id?: string | undefined;
874
+ AccountId?: string | undefined;
875
+ OrganizationalUnitId?: string | undefined;
876
+ Name?: string | undefined;
877
+ Severity?: InsightSeverity | undefined;
878
+ Status?: InsightStatus | undefined;
879
+ InsightTimeRange?: InsightTimeRange | undefined;
880
+ PredictionTimeRange?: PredictionTimeRange | undefined;
881
+ ResourceCollection?: ResourceCollection | undefined;
882
+ ServiceCollection?: ServiceCollection | undefined;
881
883
  }
882
884
  export interface ReactiveOrganizationInsightSummary {
883
- Id?: string;
884
- AccountId?: string;
885
- OrganizationalUnitId?: string;
886
- Name?: string;
887
- Severity?: InsightSeverity;
888
- Status?: InsightStatus;
889
- InsightTimeRange?: InsightTimeRange;
890
- ResourceCollection?: ResourceCollection;
891
- ServiceCollection?: ServiceCollection;
885
+ Id?: string | undefined;
886
+ AccountId?: string | undefined;
887
+ OrganizationalUnitId?: string | undefined;
888
+ Name?: string | undefined;
889
+ Severity?: InsightSeverity | undefined;
890
+ Status?: InsightStatus | undefined;
891
+ InsightTimeRange?: InsightTimeRange | undefined;
892
+ ResourceCollection?: ResourceCollection | undefined;
893
+ ServiceCollection?: ServiceCollection | undefined;
892
894
  }
893
895
  export interface ListOrganizationInsightsResponse {
894
- ProactiveInsights?: ProactiveOrganizationInsightSummary[];
895
- ReactiveInsights?: ReactiveOrganizationInsightSummary[];
896
- NextToken?: string;
896
+ ProactiveInsights?: ProactiveOrganizationInsightSummary[] | undefined;
897
+ ReactiveInsights?: ReactiveOrganizationInsightSummary[] | undefined;
898
+ NextToken?: string | undefined;
897
899
  }
898
900
  export declare const Locale: {
899
901
  readonly DE_DE: "DE_DE";
@@ -911,49 +913,51 @@ export declare const Locale: {
911
913
  export type Locale = (typeof Locale)[keyof typeof Locale];
912
914
  export interface ListRecommendationsRequest {
913
915
  InsightId: string | undefined;
914
- NextToken?: string;
915
- Locale?: Locale;
916
- AccountId?: string;
916
+ NextToken?: string | undefined;
917
+ Locale?: Locale | undefined;
918
+ AccountId?: string | undefined;
917
919
  }
918
920
  export interface RecommendationRelatedAnomalyResource {
919
- Name?: string;
920
- Type?: string;
921
+ Name?: string | undefined;
922
+ Type?: string | undefined;
921
923
  }
922
924
  export interface RecommendationRelatedCloudWatchMetricsSourceDetail {
923
- MetricName?: string;
924
- Namespace?: string;
925
+ MetricName?: string | undefined;
926
+ Namespace?: string | undefined;
925
927
  }
926
928
  export interface RecommendationRelatedAnomalySourceDetail {
927
- CloudWatchMetrics?: RecommendationRelatedCloudWatchMetricsSourceDetail[];
929
+ CloudWatchMetrics?:
930
+ | RecommendationRelatedCloudWatchMetricsSourceDetail[]
931
+ | undefined;
928
932
  }
929
933
  export interface RecommendationRelatedAnomaly {
930
- Resources?: RecommendationRelatedAnomalyResource[];
931
- SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
932
- AnomalyId?: string;
934
+ Resources?: RecommendationRelatedAnomalyResource[] | undefined;
935
+ SourceDetails?: RecommendationRelatedAnomalySourceDetail[] | undefined;
936
+ AnomalyId?: string | undefined;
933
937
  }
934
938
  export interface RecommendationRelatedEventResource {
935
- Name?: string;
936
- Type?: string;
939
+ Name?: string | undefined;
940
+ Type?: string | undefined;
937
941
  }
938
942
  export interface RecommendationRelatedEvent {
939
- Name?: string;
940
- Resources?: RecommendationRelatedEventResource[];
943
+ Name?: string | undefined;
944
+ Resources?: RecommendationRelatedEventResource[] | undefined;
941
945
  }
942
946
  export interface Recommendation {
943
- Description?: string;
944
- Link?: string;
945
- Name?: string;
946
- Reason?: string;
947
- RelatedEvents?: RecommendationRelatedEvent[];
948
- RelatedAnomalies?: RecommendationRelatedAnomaly[];
949
- Category?: string;
947
+ Description?: string | undefined;
948
+ Link?: string | undefined;
949
+ Name?: string | undefined;
950
+ Reason?: string | undefined;
951
+ RelatedEvents?: RecommendationRelatedEvent[] | undefined;
952
+ RelatedAnomalies?: RecommendationRelatedAnomaly[] | undefined;
953
+ Category?: string | undefined;
950
954
  }
951
955
  export interface ListRecommendationsResponse {
952
- Recommendations?: Recommendation[];
953
- NextToken?: string;
956
+ Recommendations?: Recommendation[] | undefined;
957
+ NextToken?: string | undefined;
954
958
  }
955
959
  export interface PutFeedbackRequest {
956
- InsightFeedback?: InsightFeedback;
960
+ InsightFeedback?: InsightFeedback | undefined;
957
961
  }
958
962
  export interface PutFeedbackResponse {}
959
963
  export interface RemoveNotificationChannelRequest {
@@ -961,49 +965,49 @@ export interface RemoveNotificationChannelRequest {
961
965
  }
962
966
  export interface RemoveNotificationChannelResponse {}
963
967
  export interface SearchInsightsFilters {
964
- Severities?: InsightSeverity[];
965
- Statuses?: InsightStatus[];
966
- ResourceCollection?: ResourceCollection;
967
- ServiceCollection?: ServiceCollection;
968
+ Severities?: InsightSeverity[] | undefined;
969
+ Statuses?: InsightStatus[] | undefined;
970
+ ResourceCollection?: ResourceCollection | undefined;
971
+ ServiceCollection?: ServiceCollection | undefined;
968
972
  }
969
973
  export interface SearchInsightsRequest {
970
974
  StartTimeRange: StartTimeRange | undefined;
971
- Filters?: SearchInsightsFilters;
972
- MaxResults?: number;
973
- NextToken?: string;
975
+ Filters?: SearchInsightsFilters | undefined;
976
+ MaxResults?: number | undefined;
977
+ NextToken?: string | undefined;
974
978
  Type: InsightType | undefined;
975
979
  }
976
980
  export interface SearchInsightsResponse {
977
- ProactiveInsights?: ProactiveInsightSummary[];
978
- ReactiveInsights?: ReactiveInsightSummary[];
979
- NextToken?: string;
981
+ ProactiveInsights?: ProactiveInsightSummary[] | undefined;
982
+ ReactiveInsights?: ReactiveInsightSummary[] | undefined;
983
+ NextToken?: string | undefined;
980
984
  }
981
985
  export interface SearchOrganizationInsightsFilters {
982
- Severities?: InsightSeverity[];
983
- Statuses?: InsightStatus[];
984
- ResourceCollection?: ResourceCollection;
985
- ServiceCollection?: ServiceCollection;
986
+ Severities?: InsightSeverity[] | undefined;
987
+ Statuses?: InsightStatus[] | undefined;
988
+ ResourceCollection?: ResourceCollection | undefined;
989
+ ServiceCollection?: ServiceCollection | undefined;
986
990
  }
987
991
  export interface SearchOrganizationInsightsRequest {
988
992
  AccountIds: string[] | undefined;
989
993
  StartTimeRange: StartTimeRange | undefined;
990
- Filters?: SearchOrganizationInsightsFilters;
991
- MaxResults?: number;
992
- NextToken?: string;
994
+ Filters?: SearchOrganizationInsightsFilters | undefined;
995
+ MaxResults?: number | undefined;
996
+ NextToken?: string | undefined;
993
997
  Type: InsightType | undefined;
994
998
  }
995
999
  export interface SearchOrganizationInsightsResponse {
996
- ProactiveInsights?: ProactiveInsightSummary[];
997
- ReactiveInsights?: ReactiveInsightSummary[];
998
- NextToken?: string;
1000
+ ProactiveInsights?: ProactiveInsightSummary[] | undefined;
1001
+ ReactiveInsights?: ReactiveInsightSummary[] | undefined;
1002
+ NextToken?: string | undefined;
999
1003
  }
1000
1004
  export interface StartCostEstimationRequest {
1001
1005
  ResourceCollection: CostEstimationResourceCollectionFilter | undefined;
1002
- ClientToken?: string;
1006
+ ClientToken?: string | undefined;
1003
1007
  }
1004
1008
  export interface StartCostEstimationResponse {}
1005
1009
  export interface UpdateEventSourcesConfigRequest {
1006
- EventSources?: EventSourcesConfig;
1010
+ EventSources?: EventSourcesConfig | undefined;
1007
1011
  }
1008
1012
  export interface UpdateEventSourcesConfigResponse {}
1009
1013
  export declare const UpdateResourceCollectionAction: {
@@ -1013,15 +1017,15 @@ export declare const UpdateResourceCollectionAction: {
1013
1017
  export type UpdateResourceCollectionAction =
1014
1018
  (typeof UpdateResourceCollectionAction)[keyof typeof UpdateResourceCollectionAction];
1015
1019
  export interface UpdateCloudFormationCollectionFilter {
1016
- StackNames?: string[];
1020
+ StackNames?: string[] | undefined;
1017
1021
  }
1018
1022
  export interface UpdateTagCollectionFilter {
1019
1023
  AppBoundaryKey: string | undefined;
1020
1024
  TagValues: string[] | undefined;
1021
1025
  }
1022
1026
  export interface UpdateResourceCollectionFilter {
1023
- CloudFormation?: UpdateCloudFormationCollectionFilter;
1024
- Tags?: UpdateTagCollectionFilter[];
1027
+ CloudFormation?: UpdateCloudFormationCollectionFilter | undefined;
1028
+ Tags?: UpdateTagCollectionFilter[] | undefined;
1025
1029
  }
1026
1030
  export interface UpdateResourceCollectionRequest {
1027
1031
  Action: UpdateResourceCollectionAction | undefined;
@@ -1029,20 +1033,22 @@ export interface UpdateResourceCollectionRequest {
1029
1033
  }
1030
1034
  export interface UpdateResourceCollectionResponse {}
1031
1035
  export interface KMSServerSideEncryptionIntegrationConfig {
1032
- KMSKeyId?: string;
1033
- OptInStatus?: OptInStatus;
1034
- Type?: ServerSideEncryptionType;
1036
+ KMSKeyId?: string | undefined;
1037
+ OptInStatus?: OptInStatus | undefined;
1038
+ Type?: ServerSideEncryptionType | undefined;
1035
1039
  }
1036
1040
  export interface LogsAnomalyDetectionIntegrationConfig {
1037
- OptInStatus?: OptInStatus;
1041
+ OptInStatus?: OptInStatus | undefined;
1038
1042
  }
1039
1043
  export interface OpsCenterIntegrationConfig {
1040
- OptInStatus?: OptInStatus;
1044
+ OptInStatus?: OptInStatus | undefined;
1041
1045
  }
1042
1046
  export interface UpdateServiceIntegrationConfig {
1043
- OpsCenter?: OpsCenterIntegrationConfig;
1044
- LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig;
1045
- KMSServerSideEncryption?: KMSServerSideEncryptionIntegrationConfig;
1047
+ OpsCenter?: OpsCenterIntegrationConfig | undefined;
1048
+ LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig | undefined;
1049
+ KMSServerSideEncryption?:
1050
+ | KMSServerSideEncryptionIntegrationConfig
1051
+ | undefined;
1046
1052
  }
1047
1053
  export interface UpdateServiceIntegrationRequest {
1048
1054
  ServiceIntegration: UpdateServiceIntegrationConfig | undefined;