@aws-sdk/client-application-insights 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.
@@ -7,7 +7,7 @@ import { ApplicationInsightsServiceException as __BaseException } from "./Applic
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -55,17 +55,17 @@ export interface WorkloadConfiguration {
55
55
  * <p>The name of the workload.</p>
56
56
  * @public
57
57
  */
58
- WorkloadName?: string;
58
+ WorkloadName?: string | undefined;
59
59
  /**
60
60
  * <p>The configuration of the workload tier.</p>
61
61
  * @public
62
62
  */
63
- Tier?: Tier;
63
+ Tier?: Tier | undefined;
64
64
  /**
65
65
  * <p>The configuration settings of the workload.</p>
66
66
  * @public
67
67
  */
68
- Configuration?: string;
68
+ Configuration?: string | undefined;
69
69
  }
70
70
  /**
71
71
  * @public
@@ -95,12 +95,12 @@ export interface AddWorkloadResponse {
95
95
  * <p>The ID of the workload.</p>
96
96
  * @public
97
97
  */
98
- WorkloadId?: string;
98
+ WorkloadId?: string | undefined;
99
99
  /**
100
100
  * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
101
101
  * @public
102
102
  */
103
- WorkloadConfiguration?: WorkloadConfiguration;
103
+ WorkloadConfiguration?: WorkloadConfiguration | undefined;
104
104
  }
105
105
  /**
106
106
  * <p>The server encountered an internal error and is unable to complete the request.</p>
@@ -109,7 +109,7 @@ export interface AddWorkloadResponse {
109
109
  export declare class InternalServerException extends __BaseException {
110
110
  readonly name: "InternalServerException";
111
111
  readonly $fault: "server";
112
- Message?: string;
112
+ Message?: string | undefined;
113
113
  /**
114
114
  * @internal
115
115
  */
@@ -122,7 +122,7 @@ export declare class InternalServerException extends __BaseException {
122
122
  export declare class ResourceInUseException extends __BaseException {
123
123
  readonly name: "ResourceInUseException";
124
124
  readonly $fault: "client";
125
- Message?: string;
125
+ Message?: string | undefined;
126
126
  /**
127
127
  * @internal
128
128
  */
@@ -135,7 +135,7 @@ export declare class ResourceInUseException extends __BaseException {
135
135
  export declare class ResourceNotFoundException extends __BaseException {
136
136
  readonly name: "ResourceNotFoundException";
137
137
  readonly $fault: "client";
138
- Message?: string;
138
+ Message?: string | undefined;
139
139
  /**
140
140
  * @internal
141
141
  */
@@ -148,7 +148,7 @@ export declare class ResourceNotFoundException extends __BaseException {
148
148
  export declare class ValidationException extends __BaseException {
149
149
  readonly name: "ValidationException";
150
150
  readonly $fault: "client";
151
- Message?: string;
151
+ Message?: string | undefined;
152
152
  /**
153
153
  * @internal
154
154
  */
@@ -176,39 +176,39 @@ export interface ApplicationComponent {
176
176
  * <p>The name of the component.</p>
177
177
  * @public
178
178
  */
179
- ComponentName?: string;
179
+ ComponentName?: string | undefined;
180
180
  /**
181
181
  * <p> If logging is supported for the resource type, indicates whether the component has
182
182
  * configured logs to be monitored. </p>
183
183
  * @public
184
184
  */
185
- ComponentRemarks?: string;
185
+ ComponentRemarks?: string | undefined;
186
186
  /**
187
187
  * <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group,
188
188
  * Classic ELB, Application ELB, and SQS Queue.</p>
189
189
  * @public
190
190
  */
191
- ResourceType?: string;
191
+ ResourceType?: string | undefined;
192
192
  /**
193
193
  * <p> The operating system of the component. </p>
194
194
  * @public
195
195
  */
196
- OsType?: OsType;
196
+ OsType?: OsType | undefined;
197
197
  /**
198
198
  * <p>The stack tier of the application component.</p>
199
199
  * @public
200
200
  */
201
- Tier?: Tier;
201
+ Tier?: Tier | undefined;
202
202
  /**
203
203
  * <p>Indicates whether the application component is monitored. </p>
204
204
  * @public
205
205
  */
206
- Monitor?: boolean;
206
+ Monitor?: boolean | undefined;
207
207
  /**
208
208
  * <p> Workloads detected in the application component. </p>
209
209
  * @public
210
210
  */
211
- DetectedWorkload?: Partial<Record<Tier, Record<string, string>>>;
211
+ DetectedWorkload?: Partial<Record<Tier, Record<string, string>>> | undefined;
212
212
  }
213
213
  /**
214
214
  * @public
@@ -231,43 +231,43 @@ export interface ApplicationInfo {
231
231
  * <p>The Amazon Web Services account ID for the owner of the application.</p>
232
232
  * @public
233
233
  */
234
- AccountId?: string;
234
+ AccountId?: string | undefined;
235
235
  /**
236
236
  * <p>The name of the resource group used for the application.</p>
237
237
  * @public
238
238
  */
239
- ResourceGroupName?: string;
239
+ ResourceGroupName?: string | undefined;
240
240
  /**
241
241
  * <p>The lifecycle of the application. </p>
242
242
  * @public
243
243
  */
244
- LifeCycle?: string;
244
+ LifeCycle?: string | undefined;
245
245
  /**
246
246
  * <p> The SNS topic provided to Application Insights that is associated to the created
247
247
  * opsItems to receive SNS notifications for opsItem updates. </p>
248
248
  * @public
249
249
  */
250
- OpsItemSNSTopicArn?: string;
250
+ OpsItemSNSTopicArn?: string | undefined;
251
251
  /**
252
252
  * <p>
253
253
  * The SNS topic ARN that is associated with SNS notifications for updates or issues.
254
254
  * </p>
255
255
  * @public
256
256
  */
257
- SNSNotificationArn?: string;
257
+ SNSNotificationArn?: string | undefined;
258
258
  /**
259
259
  * <p> Indicates whether Application Insights will create opsItems for any problem detected by
260
260
  * Application Insights for an application. </p>
261
261
  * @public
262
262
  */
263
- OpsCenterEnabled?: boolean;
263
+ OpsCenterEnabled?: boolean | undefined;
264
264
  /**
265
265
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
266
266
  * application resources, such as <code>instance terminated</code>, <code>failed
267
267
  * deployment</code>, and others. </p>
268
268
  * @public
269
269
  */
270
- CWEMonitorEnabled?: boolean;
270
+ CWEMonitorEnabled?: boolean | undefined;
271
271
  /**
272
272
  * <p>The issues on the user side that block Application Insights from successfully monitoring
273
273
  * an application. Example remarks include:</p>
@@ -281,22 +281,22 @@ export interface ApplicationInfo {
281
281
  * </ul>
282
282
  * @public
283
283
  */
284
- Remarks?: string;
284
+ Remarks?: string | undefined;
285
285
  /**
286
286
  * <p> Indicates whether auto-configuration is turned on for this application. </p>
287
287
  * @public
288
288
  */
289
- AutoConfigEnabled?: boolean;
289
+ AutoConfigEnabled?: boolean | undefined;
290
290
  /**
291
291
  * <p> The method used by Application Insights to onboard your resources. </p>
292
292
  * @public
293
293
  */
294
- DiscoveryType?: DiscoveryType;
294
+ DiscoveryType?: DiscoveryType | undefined;
295
295
  /**
296
296
  * <p>If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.</p>
297
297
  * @public
298
298
  */
299
- AttachMissingPermission?: boolean;
299
+ AttachMissingPermission?: boolean | undefined;
300
300
  }
301
301
  /**
302
302
  * <p>The request is not understood by the server.</p>
@@ -305,7 +305,7 @@ export interface ApplicationInfo {
305
305
  export declare class BadRequestException extends __BaseException {
306
306
  readonly name: "BadRequestException";
307
307
  readonly $fault: "client";
308
- Message?: string;
308
+ Message?: string | undefined;
309
309
  /**
310
310
  * @internal
311
311
  */
@@ -361,44 +361,44 @@ export interface ConfigurationEvent {
361
361
  * <p>The name of the resource group of the application to which the configuration event belongs.</p>
362
362
  * @public
363
363
  */
364
- ResourceGroupName?: string;
364
+ ResourceGroupName?: string | undefined;
365
365
  /**
366
366
  * <p>The Amazon Web Services account ID for the owner of the application to which the configuration event belongs.</p>
367
367
  * @public
368
368
  */
369
- AccountId?: string;
369
+ AccountId?: string | undefined;
370
370
  /**
371
371
  * <p> The resource monitored by Application Insights. </p>
372
372
  * @public
373
373
  */
374
- MonitoredResourceARN?: string;
374
+ MonitoredResourceARN?: string | undefined;
375
375
  /**
376
376
  * <p> The status of the configuration update event. Possible values include INFO, WARN, and
377
377
  * ERROR. </p>
378
378
  * @public
379
379
  */
380
- EventStatus?: ConfigurationEventStatus;
380
+ EventStatus?: ConfigurationEventStatus | undefined;
381
381
  /**
382
382
  * <p> The resource type that Application Insights attempted to configure, for example,
383
383
  * CLOUDWATCH_ALARM. </p>
384
384
  * @public
385
385
  */
386
- EventResourceType?: ConfigurationEventResourceType;
386
+ EventResourceType?: ConfigurationEventResourceType | undefined;
387
387
  /**
388
388
  * <p> The timestamp of the event. </p>
389
389
  * @public
390
390
  */
391
- EventTime?: Date;
391
+ EventTime?: Date | undefined;
392
392
  /**
393
393
  * <p> The details of the event in plain text. </p>
394
394
  * @public
395
395
  */
396
- EventDetail?: string;
396
+ EventDetail?: string | undefined;
397
397
  /**
398
398
  * <p> The name of the resource Application Insights attempted to configure. </p>
399
399
  * @public
400
400
  */
401
- EventResourceName?: string;
401
+ EventResourceName?: string | undefined;
402
402
  }
403
403
  /**
404
404
  * @public
@@ -462,64 +462,64 @@ export interface CreateApplicationRequest {
462
462
  * <p>The name of the resource group.</p>
463
463
  * @public
464
464
  */
465
- ResourceGroupName?: string;
465
+ ResourceGroupName?: string | undefined;
466
466
  /**
467
467
  * <p> When set to <code>true</code>, creates opsItems for any problems detected on an
468
468
  * application. </p>
469
469
  * @public
470
470
  */
471
- OpsCenterEnabled?: boolean;
471
+ OpsCenterEnabled?: boolean | undefined;
472
472
  /**
473
473
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
474
474
  * application resources, such as <code>instance terminated</code>, <code>failed
475
475
  * deployment</code>, and others. </p>
476
476
  * @public
477
477
  */
478
- CWEMonitorEnabled?: boolean;
478
+ CWEMonitorEnabled?: boolean | undefined;
479
479
  /**
480
480
  * <p> The SNS topic provided to Application Insights that is associated to the created
481
481
  * opsItem. Allows you to receive notifications for updates to the opsItem. </p>
482
482
  * @public
483
483
  */
484
- OpsItemSNSTopicArn?: string;
484
+ OpsItemSNSTopicArn?: string | undefined;
485
485
  /**
486
486
  * <p>
487
487
  * The SNS notification topic ARN.
488
488
  * </p>
489
489
  * @public
490
490
  */
491
- SNSNotificationArn?: string;
491
+ SNSNotificationArn?: string | undefined;
492
492
  /**
493
493
  * <p>List of tags to add to the application. tag key (<code>Key</code>) and an associated tag
494
494
  * value (<code>Value</code>). The maximum length of a tag key is 128 characters. The maximum
495
495
  * length of a tag value is 256 characters.</p>
496
496
  * @public
497
497
  */
498
- Tags?: Tag[];
498
+ Tags?: Tag[] | undefined;
499
499
  /**
500
500
  * <p> Indicates whether Application Insights automatically configures unmonitored resources
501
501
  * in the resource group. </p>
502
502
  * @public
503
503
  */
504
- AutoConfigEnabled?: boolean;
504
+ AutoConfigEnabled?: boolean | undefined;
505
505
  /**
506
506
  * <p> Configures all of the resources in the resource group by applying the recommended
507
507
  * configurations. </p>
508
508
  * @public
509
509
  */
510
- AutoCreate?: boolean;
510
+ AutoCreate?: boolean | undefined;
511
511
  /**
512
512
  * <p>Application Insights can create applications based on a resource group or on an account.
513
513
  * To create an account-based application using all of the resources in the account, set this
514
514
  * parameter to <code>ACCOUNT_BASED</code>. </p>
515
515
  * @public
516
516
  */
517
- GroupingType?: GroupingType;
517
+ GroupingType?: GroupingType | undefined;
518
518
  /**
519
519
  * <p>If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.</p>
520
520
  * @public
521
521
  */
522
- AttachMissingPermission?: boolean;
522
+ AttachMissingPermission?: boolean | undefined;
523
523
  }
524
524
  /**
525
525
  * @public
@@ -529,7 +529,7 @@ export interface CreateApplicationResponse {
529
529
  * <p>Information about the application.</p>
530
530
  * @public
531
531
  */
532
- ApplicationInfo?: ApplicationInfo;
532
+ ApplicationInfo?: ApplicationInfo | undefined;
533
533
  }
534
534
  /**
535
535
  * <p>Tags are already registered for the specified application ARN.</p>
@@ -538,7 +538,7 @@ export interface CreateApplicationResponse {
538
538
  export declare class TagsAlreadyExistException extends __BaseException {
539
539
  readonly name: "TagsAlreadyExistException";
540
540
  readonly $fault: "client";
541
- Message?: string;
541
+ Message?: string | undefined;
542
542
  /**
543
543
  * @internal
544
544
  */
@@ -621,21 +621,21 @@ export interface LogPattern {
621
621
  * following symbols: period, dash, underscore.</p>
622
622
  * @public
623
623
  */
624
- PatternSetName?: string;
624
+ PatternSetName?: string | undefined;
625
625
  /**
626
626
  * <p>The name of the log pattern. A log pattern name can contain as many as 50 characters,
627
627
  * and it cannot be empty. The characters can be Unicode letters, digits, or one of the
628
628
  * following symbols: period, dash, underscore.</p>
629
629
  * @public
630
630
  */
631
- PatternName?: string;
631
+ PatternName?: string | undefined;
632
632
  /**
633
633
  * <p>A regular expression that defines the log pattern. A log pattern can contain as many as
634
634
  * 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that
635
635
  * utilize forward lookahead or backreference constructions are not supported.</p>
636
636
  * @public
637
637
  */
638
- Pattern?: string;
638
+ Pattern?: string | undefined;
639
639
  /**
640
640
  * <p>Rank of the log pattern. Must be a value between <code>1</code> and
641
641
  * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
@@ -649,7 +649,7 @@ export interface LogPattern {
649
649
  * Amazon Web Services provided patterns. </p>
650
650
  * @public
651
651
  */
652
- Rank?: number;
652
+ Rank?: number | undefined;
653
653
  }
654
654
  /**
655
655
  * @public
@@ -659,12 +659,12 @@ export interface CreateLogPatternResponse {
659
659
  * <p>The successfully created log pattern.</p>
660
660
  * @public
661
661
  */
662
- LogPattern?: LogPattern;
662
+ LogPattern?: LogPattern | undefined;
663
663
  /**
664
664
  * <p>The name of the resource group.</p>
665
665
  * @public
666
666
  */
667
- ResourceGroupName?: string;
667
+ ResourceGroupName?: string | undefined;
668
668
  }
669
669
  /**
670
670
  * @public
@@ -739,7 +739,7 @@ export interface DescribeApplicationRequest {
739
739
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
740
740
  * @public
741
741
  */
742
- AccountId?: string;
742
+ AccountId?: string | undefined;
743
743
  }
744
744
  /**
745
745
  * @public
@@ -749,7 +749,7 @@ export interface DescribeApplicationResponse {
749
749
  * <p>Information about the application.</p>
750
750
  * @public
751
751
  */
752
- ApplicationInfo?: ApplicationInfo;
752
+ ApplicationInfo?: ApplicationInfo | undefined;
753
753
  }
754
754
  /**
755
755
  * @public
@@ -769,7 +769,7 @@ export interface DescribeComponentRequest {
769
769
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
770
770
  * @public
771
771
  */
772
- AccountId?: string;
772
+ AccountId?: string | undefined;
773
773
  }
774
774
  /**
775
775
  * @public
@@ -780,12 +780,12 @@ export interface DescribeComponentResponse {
780
780
  * made up of.</p>
781
781
  * @public
782
782
  */
783
- ApplicationComponent?: ApplicationComponent;
783
+ ApplicationComponent?: ApplicationComponent | undefined;
784
784
  /**
785
785
  * <p>The list of resource ARNs that belong to the component.</p>
786
786
  * @public
787
787
  */
788
- ResourceList?: string[];
788
+ ResourceList?: string[] | undefined;
789
789
  }
790
790
  /**
791
791
  * @public
@@ -805,7 +805,7 @@ export interface DescribeComponentConfigurationRequest {
805
805
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
806
806
  * @public
807
807
  */
808
- AccountId?: string;
808
+ AccountId?: string | undefined;
809
809
  }
810
810
  /**
811
811
  * @public
@@ -815,7 +815,7 @@ export interface DescribeComponentConfigurationResponse {
815
815
  * <p>Indicates whether the application component is monitored.</p>
816
816
  * @public
817
817
  */
818
- Monitor?: boolean;
818
+ Monitor?: boolean | undefined;
819
819
  /**
820
820
  * <p>The tier of the application component. Supported tiers include
821
821
  * <code>DOT_NET_CORE</code>, <code>DOT_NET_WORKER</code>, <code>DOT_NET_WEB</code>,
@@ -823,13 +823,13 @@ export interface DescribeComponentConfigurationResponse {
823
823
  * </p>
824
824
  * @public
825
825
  */
826
- Tier?: Tier;
826
+ Tier?: Tier | undefined;
827
827
  /**
828
828
  * <p>The configuration settings of the component. The value is the escaped JSON of the
829
829
  * configuration.</p>
830
830
  * @public
831
831
  */
832
- ComponentConfiguration?: string;
832
+ ComponentConfiguration?: string | undefined;
833
833
  }
834
834
  /**
835
835
  * @public
@@ -868,12 +868,12 @@ export interface DescribeComponentConfigurationRecommendationRequest {
868
868
  * <code>SAP_ASE_SINGLE_NODE</code> or <code>SAP_ASE_HIGH_AVAILABILITY</code>.</p>
869
869
  * @public
870
870
  */
871
- WorkloadName?: string;
871
+ WorkloadName?: string | undefined;
872
872
  /**
873
873
  * <p>The recommended configuration type.</p>
874
874
  * @public
875
875
  */
876
- RecommendationType?: RecommendationType;
876
+ RecommendationType?: RecommendationType | undefined;
877
877
  }
878
878
  /**
879
879
  * @public
@@ -884,7 +884,7 @@ export interface DescribeComponentConfigurationRecommendationResponse {
884
884
  * of the configuration.</p>
885
885
  * @public
886
886
  */
887
- ComponentConfiguration?: string;
887
+ ComponentConfiguration?: string | undefined;
888
888
  }
889
889
  /**
890
890
  * @public
@@ -909,7 +909,7 @@ export interface DescribeLogPatternRequest {
909
909
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
910
910
  * @public
911
911
  */
912
- AccountId?: string;
912
+ AccountId?: string | undefined;
913
913
  }
914
914
  /**
915
915
  * @public
@@ -919,17 +919,17 @@ export interface DescribeLogPatternResponse {
919
919
  * <p>The name of the resource group.</p>
920
920
  * @public
921
921
  */
922
- ResourceGroupName?: string;
922
+ ResourceGroupName?: string | undefined;
923
923
  /**
924
924
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
925
925
  * @public
926
926
  */
927
- AccountId?: string;
927
+ AccountId?: string | undefined;
928
928
  /**
929
929
  * <p>The successfully created log pattern.</p>
930
930
  * @public
931
931
  */
932
- LogPattern?: LogPattern;
932
+ LogPattern?: LogPattern | undefined;
933
933
  }
934
934
  /**
935
935
  * @public
@@ -944,7 +944,7 @@ export interface DescribeObservationRequest {
944
944
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
945
945
  * @public
946
946
  */
947
- AccountId?: string;
947
+ AccountId?: string | undefined;
948
948
  }
949
949
  /**
950
950
  * @public
@@ -968,238 +968,238 @@ export interface Observation {
968
968
  * <p>The ID of the observation type.</p>
969
969
  * @public
970
970
  */
971
- Id?: string;
971
+ Id?: string | undefined;
972
972
  /**
973
973
  * <p>The time when the observation was first detected, in epoch seconds.</p>
974
974
  * @public
975
975
  */
976
- StartTime?: Date;
976
+ StartTime?: Date | undefined;
977
977
  /**
978
978
  * <p>The time when the observation ended, in epoch seconds.</p>
979
979
  * @public
980
980
  */
981
- EndTime?: Date;
981
+ EndTime?: Date | undefined;
982
982
  /**
983
983
  * <p>The source type of the observation.</p>
984
984
  * @public
985
985
  */
986
- SourceType?: string;
986
+ SourceType?: string | undefined;
987
987
  /**
988
988
  * <p>The source resource ARN of the observation.</p>
989
989
  * @public
990
990
  */
991
- SourceARN?: string;
991
+ SourceARN?: string | undefined;
992
992
  /**
993
993
  * <p>The log group name.</p>
994
994
  * @public
995
995
  */
996
- LogGroup?: string;
996
+ LogGroup?: string | undefined;
997
997
  /**
998
998
  * <p>The timestamp in the CloudWatch Logs that specifies when the matched line
999
999
  * occurred.</p>
1000
1000
  * @public
1001
1001
  */
1002
- LineTime?: Date;
1002
+ LineTime?: Date | undefined;
1003
1003
  /**
1004
1004
  * <p>The log text of the observation.</p>
1005
1005
  * @public
1006
1006
  */
1007
- LogText?: string;
1007
+ LogText?: string | undefined;
1008
1008
  /**
1009
1009
  * <p>The log filter of the observation.</p>
1010
1010
  * @public
1011
1011
  */
1012
- LogFilter?: LogFilter;
1012
+ LogFilter?: LogFilter | undefined;
1013
1013
  /**
1014
1014
  * <p>The namespace of the observation metric.</p>
1015
1015
  * @public
1016
1016
  */
1017
- MetricNamespace?: string;
1017
+ MetricNamespace?: string | undefined;
1018
1018
  /**
1019
1019
  * <p>The name of the observation metric.</p>
1020
1020
  * @public
1021
1021
  */
1022
- MetricName?: string;
1022
+ MetricName?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>The unit of the source observation metric.</p>
1025
1025
  * @public
1026
1026
  */
1027
- Unit?: string;
1027
+ Unit?: string | undefined;
1028
1028
  /**
1029
1029
  * <p>The value of the source observation metric.</p>
1030
1030
  * @public
1031
1031
  */
1032
- Value?: number;
1032
+ Value?: number | undefined;
1033
1033
  /**
1034
1034
  * <p> The ID of the CloudWatch Event-based observation related to the detected problem.
1035
1035
  * </p>
1036
1036
  * @public
1037
1037
  */
1038
- CloudWatchEventId?: string;
1038
+ CloudWatchEventId?: string | undefined;
1039
1039
  /**
1040
1040
  * <p> The source of the CloudWatch Event. </p>
1041
1041
  * @public
1042
1042
  */
1043
- CloudWatchEventSource?: CloudWatchEventSource;
1043
+ CloudWatchEventSource?: CloudWatchEventSource | undefined;
1044
1044
  /**
1045
1045
  * <p> The detail type of the CloudWatch Event-based observation, for example, <code>EC2
1046
1046
  * Instance State-change Notification</code>. </p>
1047
1047
  * @public
1048
1048
  */
1049
- CloudWatchEventDetailType?: string;
1049
+ CloudWatchEventDetailType?: string | undefined;
1050
1050
  /**
1051
1051
  * <p> The Amazon Resource Name (ARN) of the Health Event-based observation.</p>
1052
1052
  * @public
1053
1053
  */
1054
- HealthEventArn?: string;
1054
+ HealthEventArn?: string | undefined;
1055
1055
  /**
1056
1056
  * <p> The service to which the Health Event belongs, such as EC2. </p>
1057
1057
  * @public
1058
1058
  */
1059
- HealthService?: string;
1059
+ HealthService?: string | undefined;
1060
1060
  /**
1061
1061
  * <p> The type of the Health event, for example,
1062
1062
  * <code>AWS_EC2_POWER_CONNECTIVITY_ISSUE</code>. </p>
1063
1063
  * @public
1064
1064
  */
1065
- HealthEventTypeCode?: string;
1065
+ HealthEventTypeCode?: string | undefined;
1066
1066
  /**
1067
1067
  * <p> The category of the Health event, such as <code>issue</code>. </p>
1068
1068
  * @public
1069
1069
  */
1070
- HealthEventTypeCategory?: string;
1070
+ HealthEventTypeCategory?: string | undefined;
1071
1071
  /**
1072
1072
  * <p> The description of the Health event provided by the service, such as Amazon EC2.
1073
1073
  * </p>
1074
1074
  * @public
1075
1075
  */
1076
- HealthEventDescription?: string;
1076
+ HealthEventDescription?: string | undefined;
1077
1077
  /**
1078
1078
  * <p> The deployment ID of the CodeDeploy-based observation related to the detected problem.
1079
1079
  * </p>
1080
1080
  * @public
1081
1081
  */
1082
- CodeDeployDeploymentId?: string;
1082
+ CodeDeployDeploymentId?: string | undefined;
1083
1083
  /**
1084
1084
  * <p> The deployment group to which the CodeDeploy deployment belongs. </p>
1085
1085
  * @public
1086
1086
  */
1087
- CodeDeployDeploymentGroup?: string;
1087
+ CodeDeployDeploymentGroup?: string | undefined;
1088
1088
  /**
1089
1089
  * <p> The status of the CodeDeploy deployment, for example <code>SUCCESS</code> or <code>
1090
1090
  * FAILURE</code>. </p>
1091
1091
  * @public
1092
1092
  */
1093
- CodeDeployState?: string;
1093
+ CodeDeployState?: string | undefined;
1094
1094
  /**
1095
1095
  * <p> The CodeDeploy application to which the deployment belongs. </p>
1096
1096
  * @public
1097
1097
  */
1098
- CodeDeployApplication?: string;
1098
+ CodeDeployApplication?: string | undefined;
1099
1099
  /**
1100
1100
  * <p> The instance group to which the CodeDeploy instance belongs. </p>
1101
1101
  * @public
1102
1102
  */
1103
- CodeDeployInstanceGroupId?: string;
1103
+ CodeDeployInstanceGroupId?: string | undefined;
1104
1104
  /**
1105
1105
  * <p> The state of the instance, such as <code>STOPPING</code> or <code>TERMINATING</code>.
1106
1106
  * </p>
1107
1107
  * @public
1108
1108
  */
1109
- Ec2State?: string;
1109
+ Ec2State?: string | undefined;
1110
1110
  /**
1111
1111
  * <p> The category of an RDS event. </p>
1112
1112
  * @public
1113
1113
  */
1114
- RdsEventCategories?: string;
1114
+ RdsEventCategories?: string | undefined;
1115
1115
  /**
1116
1116
  * <p> The message of an RDS event. </p>
1117
1117
  * @public
1118
1118
  */
1119
- RdsEventMessage?: string;
1119
+ RdsEventMessage?: string | undefined;
1120
1120
  /**
1121
1121
  * <p> The name of the S3 CloudWatch Event-based observation. </p>
1122
1122
  * @public
1123
1123
  */
1124
- S3EventName?: string;
1124
+ S3EventName?: string | undefined;
1125
1125
  /**
1126
1126
  * <p> The Amazon Resource Name (ARN) of the step function execution-based observation.
1127
1127
  * </p>
1128
1128
  * @public
1129
1129
  */
1130
- StatesExecutionArn?: string;
1130
+ StatesExecutionArn?: string | undefined;
1131
1131
  /**
1132
1132
  * <p> The Amazon Resource Name (ARN) of the step function-based observation. </p>
1133
1133
  * @public
1134
1134
  */
1135
- StatesArn?: string;
1135
+ StatesArn?: string | undefined;
1136
1136
  /**
1137
1137
  * <p> The status of the step function-related observation. </p>
1138
1138
  * @public
1139
1139
  */
1140
- StatesStatus?: string;
1140
+ StatesStatus?: string | undefined;
1141
1141
  /**
1142
1142
  * <p> The input to the step function-based observation. </p>
1143
1143
  * @public
1144
1144
  */
1145
- StatesInput?: string;
1145
+ StatesInput?: string | undefined;
1146
1146
  /**
1147
1147
  * <p> The type of EBS CloudWatch event, such as <code>createVolume</code>,
1148
1148
  * <code>deleteVolume</code> or <code>attachVolume</code>. </p>
1149
1149
  * @public
1150
1150
  */
1151
- EbsEvent?: string;
1151
+ EbsEvent?: string | undefined;
1152
1152
  /**
1153
1153
  * <p> The result of an EBS CloudWatch event, such as <code>failed</code> or
1154
1154
  * <code>succeeded</code>. </p>
1155
1155
  * @public
1156
1156
  */
1157
- EbsResult?: string;
1157
+ EbsResult?: string | undefined;
1158
1158
  /**
1159
1159
  * <p> The cause of an EBS CloudWatch event. </p>
1160
1160
  * @public
1161
1161
  */
1162
- EbsCause?: string;
1162
+ EbsCause?: string | undefined;
1163
1163
  /**
1164
1164
  * <p> The request ID of an EBS CloudWatch event. </p>
1165
1165
  * @public
1166
1166
  */
1167
- EbsRequestId?: string;
1167
+ EbsRequestId?: string | undefined;
1168
1168
  /**
1169
1169
  * <p> The X-Ray request fault percentage for this node. </p>
1170
1170
  * @public
1171
1171
  */
1172
- XRayFaultPercent?: number;
1172
+ XRayFaultPercent?: number | undefined;
1173
1173
  /**
1174
1174
  * <p> The X-Ray request throttle percentage for this node. </p>
1175
1175
  * @public
1176
1176
  */
1177
- XRayThrottlePercent?: number;
1177
+ XRayThrottlePercent?: number | undefined;
1178
1178
  /**
1179
1179
  * <p> The X-Ray request error percentage for this node. </p>
1180
1180
  * @public
1181
1181
  */
1182
- XRayErrorPercent?: number;
1182
+ XRayErrorPercent?: number | undefined;
1183
1183
  /**
1184
1184
  * <p> The X-Ray request count for this node. </p>
1185
1185
  * @public
1186
1186
  */
1187
- XRayRequestCount?: number;
1187
+ XRayRequestCount?: number | undefined;
1188
1188
  /**
1189
1189
  * <p> The X-Ray node request average latency for this node. </p>
1190
1190
  * @public
1191
1191
  */
1192
- XRayRequestAverageLatency?: number;
1192
+ XRayRequestAverageLatency?: number | undefined;
1193
1193
  /**
1194
1194
  * <p> The name of the X-Ray node. </p>
1195
1195
  * @public
1196
1196
  */
1197
- XRayNodeName?: string;
1197
+ XRayNodeName?: string | undefined;
1198
1198
  /**
1199
1199
  * <p> The type of the X-Ray node. </p>
1200
1200
  * @public
1201
1201
  */
1202
- XRayNodeType?: string;
1202
+ XRayNodeType?: string | undefined;
1203
1203
  }
1204
1204
  /**
1205
1205
  * @public
@@ -1209,7 +1209,7 @@ export interface DescribeObservationResponse {
1209
1209
  * <p>Information about the observation.</p>
1210
1210
  * @public
1211
1211
  */
1212
- Observation?: Observation;
1212
+ Observation?: Observation | undefined;
1213
1213
  }
1214
1214
  /**
1215
1215
  * @public
@@ -1224,7 +1224,7 @@ export interface DescribeProblemRequest {
1224
1224
  * <p>The Amazon Web Services account ID for the owner of the resource group affected by the problem.</p>
1225
1225
  * @public
1226
1226
  */
1227
- AccountId?: string;
1227
+ AccountId?: string | undefined;
1228
1228
  }
1229
1229
  /**
1230
1230
  * @public
@@ -1313,88 +1313,88 @@ export interface Problem {
1313
1313
  * <p>The ID of the problem.</p>
1314
1314
  * @public
1315
1315
  */
1316
- Id?: string;
1316
+ Id?: string | undefined;
1317
1317
  /**
1318
1318
  * <p>The name of the problem.</p>
1319
1319
  * @public
1320
1320
  */
1321
- Title?: string;
1321
+ Title?: string | undefined;
1322
1322
  /**
1323
1323
  * <p>
1324
1324
  * The short name of the problem associated with the SNS notification.
1325
1325
  * </p>
1326
1326
  * @public
1327
1327
  */
1328
- ShortName?: string;
1328
+ ShortName?: string | undefined;
1329
1329
  /**
1330
1330
  * <p>A detailed analysis of the problem using machine learning.</p>
1331
1331
  * @public
1332
1332
  */
1333
- Insights?: string;
1333
+ Insights?: string | undefined;
1334
1334
  /**
1335
1335
  * <p>The status of the problem.</p>
1336
1336
  * @public
1337
1337
  */
1338
- Status?: Status;
1338
+ Status?: Status | undefined;
1339
1339
  /**
1340
1340
  * <p>The resource affected by the problem.</p>
1341
1341
  * @public
1342
1342
  */
1343
- AffectedResource?: string;
1343
+ AffectedResource?: string | undefined;
1344
1344
  /**
1345
1345
  * <p>The time when the problem started, in epoch seconds.</p>
1346
1346
  * @public
1347
1347
  */
1348
- StartTime?: Date;
1348
+ StartTime?: Date | undefined;
1349
1349
  /**
1350
1350
  * <p>The time when the problem ended, in epoch seconds.</p>
1351
1351
  * @public
1352
1352
  */
1353
- EndTime?: Date;
1353
+ EndTime?: Date | undefined;
1354
1354
  /**
1355
1355
  * <p>A measure of the level of impact of the problem.</p>
1356
1356
  * @public
1357
1357
  */
1358
- SeverityLevel?: SeverityLevel;
1358
+ SeverityLevel?: SeverityLevel | undefined;
1359
1359
  /**
1360
1360
  * <p>The Amazon Web Services account ID for the owner of the resource group affected by the problem.</p>
1361
1361
  * @public
1362
1362
  */
1363
- AccountId?: string;
1363
+ AccountId?: string | undefined;
1364
1364
  /**
1365
1365
  * <p>The name of the resource group affected by the problem.</p>
1366
1366
  * @public
1367
1367
  */
1368
- ResourceGroupName?: string;
1368
+ ResourceGroupName?: string | undefined;
1369
1369
  /**
1370
1370
  * <p>Feedback provided by the user about the problem.</p>
1371
1371
  * @public
1372
1372
  */
1373
- Feedback?: Partial<Record<FeedbackKey, FeedbackValue>>;
1373
+ Feedback?: Partial<Record<FeedbackKey, FeedbackValue>> | undefined;
1374
1374
  /**
1375
1375
  * <p> The number of times that the same problem reoccurred after the first time it was
1376
1376
  * resolved. </p>
1377
1377
  * @public
1378
1378
  */
1379
- RecurringCount?: number;
1379
+ RecurringCount?: number | undefined;
1380
1380
  /**
1381
1381
  * <p> The last time that the problem reoccurred after its last resolution. </p>
1382
1382
  * @public
1383
1383
  */
1384
- LastRecurrenceTime?: Date;
1384
+ LastRecurrenceTime?: Date | undefined;
1385
1385
  /**
1386
1386
  * <p>Specifies whether or not you can view the problem. Updates to ignored problems do not
1387
1387
  * generate notifications.</p>
1388
1388
  * @public
1389
1389
  */
1390
- Visibility?: Visibility;
1390
+ Visibility?: Visibility | undefined;
1391
1391
  /**
1392
1392
  * <p>Specifies how the problem was resolved. If the value is <code>AUTOMATIC</code>, the
1393
1393
  * system resolved the problem. If the value is <code>MANUAL</code>, the user resolved the
1394
1394
  * problem. If the value is <code>UNRESOLVED</code>, then the problem is not resolved.</p>
1395
1395
  * @public
1396
1396
  */
1397
- ResolutionMethod?: ResolutionMethod;
1397
+ ResolutionMethod?: ResolutionMethod | undefined;
1398
1398
  }
1399
1399
  /**
1400
1400
  * @public
@@ -1404,14 +1404,14 @@ export interface DescribeProblemResponse {
1404
1404
  * <p>Information about the problem. </p>
1405
1405
  * @public
1406
1406
  */
1407
- Problem?: Problem;
1407
+ Problem?: Problem | undefined;
1408
1408
  /**
1409
1409
  * <p>
1410
1410
  * The SNS notification topic ARN of the problem.
1411
1411
  * </p>
1412
1412
  * @public
1413
1413
  */
1414
- SNSNotificationArn?: string;
1414
+ SNSNotificationArn?: string | undefined;
1415
1415
  }
1416
1416
  /**
1417
1417
  * @public
@@ -1426,7 +1426,7 @@ export interface DescribeProblemObservationsRequest {
1426
1426
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1427
1427
  * @public
1428
1428
  */
1429
- AccountId?: string;
1429
+ AccountId?: string | undefined;
1430
1430
  }
1431
1431
  /**
1432
1432
  * <p>Describes observations related to the problem.</p>
@@ -1437,7 +1437,7 @@ export interface RelatedObservations {
1437
1437
  * <p>The list of observations related to the problem.</p>
1438
1438
  * @public
1439
1439
  */
1440
- ObservationList?: Observation[];
1440
+ ObservationList?: Observation[] | undefined;
1441
1441
  }
1442
1442
  /**
1443
1443
  * @public
@@ -1447,7 +1447,7 @@ export interface DescribeProblemObservationsResponse {
1447
1447
  * <p>Observations related to the problem.</p>
1448
1448
  * @public
1449
1449
  */
1450
- RelatedObservations?: RelatedObservations;
1450
+ RelatedObservations?: RelatedObservations | undefined;
1451
1451
  }
1452
1452
  /**
1453
1453
  * @public
@@ -1472,7 +1472,7 @@ export interface DescribeWorkloadRequest {
1472
1472
  * <p>The Amazon Web Services account ID for the workload owner.</p>
1473
1473
  * @public
1474
1474
  */
1475
- AccountId?: string;
1475
+ AccountId?: string | undefined;
1476
1476
  }
1477
1477
  /**
1478
1478
  * @public
@@ -1482,17 +1482,17 @@ export interface DescribeWorkloadResponse {
1482
1482
  * <p>The ID of the workload.</p>
1483
1483
  * @public
1484
1484
  */
1485
- WorkloadId?: string;
1485
+ WorkloadId?: string | undefined;
1486
1486
  /**
1487
1487
  * <p>If logging is supported for the resource type, shows whether the component has configured logs to be monitored.</p>
1488
1488
  * @public
1489
1489
  */
1490
- WorkloadRemarks?: string;
1490
+ WorkloadRemarks?: string | undefined;
1491
1491
  /**
1492
1492
  * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
1493
1493
  * @public
1494
1494
  */
1495
- WorkloadConfiguration?: WorkloadConfiguration;
1495
+ WorkloadConfiguration?: WorkloadConfiguration | undefined;
1496
1496
  }
1497
1497
  /**
1498
1498
  * @public
@@ -1503,17 +1503,17 @@ export interface ListApplicationsRequest {
1503
1503
  * results, make another call with the returned <code>NextToken</code> value.</p>
1504
1504
  * @public
1505
1505
  */
1506
- MaxResults?: number;
1506
+ MaxResults?: number | undefined;
1507
1507
  /**
1508
1508
  * <p>The token to request the next page of results.</p>
1509
1509
  * @public
1510
1510
  */
1511
- NextToken?: string;
1511
+ NextToken?: string | undefined;
1512
1512
  /**
1513
1513
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1514
1514
  * @public
1515
1515
  */
1516
- AccountId?: string;
1516
+ AccountId?: string | undefined;
1517
1517
  }
1518
1518
  /**
1519
1519
  * @public
@@ -1523,13 +1523,13 @@ export interface ListApplicationsResponse {
1523
1523
  * <p>The list of applications.</p>
1524
1524
  * @public
1525
1525
  */
1526
- ApplicationInfoList?: ApplicationInfo[];
1526
+ ApplicationInfoList?: ApplicationInfo[] | undefined;
1527
1527
  /**
1528
1528
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1529
1529
  * when there are no more results to return. </p>
1530
1530
  * @public
1531
1531
  */
1532
- NextToken?: string;
1532
+ NextToken?: string | undefined;
1533
1533
  }
1534
1534
  /**
1535
1535
  * @public
@@ -1545,17 +1545,17 @@ export interface ListComponentsRequest {
1545
1545
  * results, make another call with the returned <code>NextToken</code> value.</p>
1546
1546
  * @public
1547
1547
  */
1548
- MaxResults?: number;
1548
+ MaxResults?: number | undefined;
1549
1549
  /**
1550
1550
  * <p>The token to request the next page of results.</p>
1551
1551
  * @public
1552
1552
  */
1553
- NextToken?: string;
1553
+ NextToken?: string | undefined;
1554
1554
  /**
1555
1555
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1556
1556
  * @public
1557
1557
  */
1558
- AccountId?: string;
1558
+ AccountId?: string | undefined;
1559
1559
  }
1560
1560
  /**
1561
1561
  * @public
@@ -1565,12 +1565,12 @@ export interface ListComponentsResponse {
1565
1565
  * <p>The list of application components.</p>
1566
1566
  * @public
1567
1567
  */
1568
- ApplicationComponentList?: ApplicationComponent[];
1568
+ ApplicationComponentList?: ApplicationComponent[] | undefined;
1569
1569
  /**
1570
1570
  * <p>The token to request the next page of results.</p>
1571
1571
  * @public
1572
1572
  */
1573
- NextToken?: string;
1573
+ NextToken?: string | undefined;
1574
1574
  }
1575
1575
  /**
1576
1576
  * @public
@@ -1580,23 +1580,23 @@ export interface ListConfigurationHistoryRequest {
1580
1580
  * <p>Resource group to which the application belongs. </p>
1581
1581
  * @public
1582
1582
  */
1583
- ResourceGroupName?: string;
1583
+ ResourceGroupName?: string | undefined;
1584
1584
  /**
1585
1585
  * <p>The start time of the event. </p>
1586
1586
  * @public
1587
1587
  */
1588
- StartTime?: Date;
1588
+ StartTime?: Date | undefined;
1589
1589
  /**
1590
1590
  * <p>The end time of the event.</p>
1591
1591
  * @public
1592
1592
  */
1593
- EndTime?: Date;
1593
+ EndTime?: Date | undefined;
1594
1594
  /**
1595
1595
  * <p>The status of the configuration update event. Possible values include INFO, WARN, and
1596
1596
  * ERROR.</p>
1597
1597
  * @public
1598
1598
  */
1599
- EventStatus?: ConfigurationEventStatus;
1599
+ EventStatus?: ConfigurationEventStatus | undefined;
1600
1600
  /**
1601
1601
  * <p> The maximum number of results returned by <code>ListConfigurationHistory</code> in
1602
1602
  * paginated output. When this parameter is used, <code>ListConfigurationHistory</code>
@@ -1607,7 +1607,7 @@ export interface ListConfigurationHistoryRequest {
1607
1607
  * <code>ListConfigurationHistory</code> returns all results. </p>
1608
1608
  * @public
1609
1609
  */
1610
- MaxResults?: number;
1610
+ MaxResults?: number | undefined;
1611
1611
  /**
1612
1612
  * <p>The <code>NextToken</code> value returned from a previous paginated
1613
1613
  * <code>ListConfigurationHistory</code> request where <code>MaxResults</code> was used and
@@ -1616,12 +1616,12 @@ export interface ListConfigurationHistoryRequest {
1616
1616
  * <code>null</code> when there are no more results to return.</p>
1617
1617
  * @public
1618
1618
  */
1619
- NextToken?: string;
1619
+ NextToken?: string | undefined;
1620
1620
  /**
1621
1621
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1622
1622
  * @public
1623
1623
  */
1624
- AccountId?: string;
1624
+ AccountId?: string | undefined;
1625
1625
  }
1626
1626
  /**
1627
1627
  * @public
@@ -1631,7 +1631,7 @@ export interface ListConfigurationHistoryResponse {
1631
1631
  * <p> The list of configuration events and their corresponding details. </p>
1632
1632
  * @public
1633
1633
  */
1634
- EventList?: ConfigurationEvent[];
1634
+ EventList?: ConfigurationEvent[] | undefined;
1635
1635
  /**
1636
1636
  * <p>The <code>NextToken</code> value to include in a future
1637
1637
  * <code>ListConfigurationHistory</code> request. When the results of a
@@ -1640,7 +1640,7 @@ export interface ListConfigurationHistoryResponse {
1640
1640
  * there are no more results to return.</p>
1641
1641
  * @public
1642
1642
  */
1643
- NextToken?: string;
1643
+ NextToken?: string | undefined;
1644
1644
  }
1645
1645
  /**
1646
1646
  * @public
@@ -1655,23 +1655,23 @@ export interface ListLogPatternsRequest {
1655
1655
  * <p>The name of the log pattern set.</p>
1656
1656
  * @public
1657
1657
  */
1658
- PatternSetName?: string;
1658
+ PatternSetName?: string | undefined;
1659
1659
  /**
1660
1660
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1661
1661
  * results, make another call with the returned <code>NextToken</code> value.</p>
1662
1662
  * @public
1663
1663
  */
1664
- MaxResults?: number;
1664
+ MaxResults?: number | undefined;
1665
1665
  /**
1666
1666
  * <p>The token to request the next page of results.</p>
1667
1667
  * @public
1668
1668
  */
1669
- NextToken?: string;
1669
+ NextToken?: string | undefined;
1670
1670
  /**
1671
1671
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1672
1672
  * @public
1673
1673
  */
1674
- AccountId?: string;
1674
+ AccountId?: string | undefined;
1675
1675
  }
1676
1676
  /**
1677
1677
  * @public
@@ -1681,23 +1681,23 @@ export interface ListLogPatternsResponse {
1681
1681
  * <p>The name of the resource group.</p>
1682
1682
  * @public
1683
1683
  */
1684
- ResourceGroupName?: string;
1684
+ ResourceGroupName?: string | undefined;
1685
1685
  /**
1686
1686
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1687
1687
  * @public
1688
1688
  */
1689
- AccountId?: string;
1689
+ AccountId?: string | undefined;
1690
1690
  /**
1691
1691
  * <p>The list of log patterns.</p>
1692
1692
  * @public
1693
1693
  */
1694
- LogPatterns?: LogPattern[];
1694
+ LogPatterns?: LogPattern[] | undefined;
1695
1695
  /**
1696
1696
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1697
1697
  * when there are no more results to return. </p>
1698
1698
  * @public
1699
1699
  */
1700
- NextToken?: string;
1700
+ NextToken?: string | undefined;
1701
1701
  }
1702
1702
  /**
1703
1703
  * @public
@@ -1713,17 +1713,17 @@ export interface ListLogPatternSetsRequest {
1713
1713
  * results, make another call with the returned <code>NextToken</code> value.</p>
1714
1714
  * @public
1715
1715
  */
1716
- MaxResults?: number;
1716
+ MaxResults?: number | undefined;
1717
1717
  /**
1718
1718
  * <p>The token to request the next page of results.</p>
1719
1719
  * @public
1720
1720
  */
1721
- NextToken?: string;
1721
+ NextToken?: string | undefined;
1722
1722
  /**
1723
1723
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1724
1724
  * @public
1725
1725
  */
1726
- AccountId?: string;
1726
+ AccountId?: string | undefined;
1727
1727
  }
1728
1728
  /**
1729
1729
  * @public
@@ -1733,23 +1733,23 @@ export interface ListLogPatternSetsResponse {
1733
1733
  * <p>The name of the resource group.</p>
1734
1734
  * @public
1735
1735
  */
1736
- ResourceGroupName?: string;
1736
+ ResourceGroupName?: string | undefined;
1737
1737
  /**
1738
1738
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1739
1739
  * @public
1740
1740
  */
1741
- AccountId?: string;
1741
+ AccountId?: string | undefined;
1742
1742
  /**
1743
1743
  * <p>The list of log pattern sets.</p>
1744
1744
  * @public
1745
1745
  */
1746
- LogPatternSets?: string[];
1746
+ LogPatternSets?: string[] | undefined;
1747
1747
  /**
1748
1748
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1749
1749
  * when there are no more results to return. </p>
1750
1750
  * @public
1751
1751
  */
1752
- NextToken?: string;
1752
+ NextToken?: string | undefined;
1753
1753
  }
1754
1754
  /**
1755
1755
  * @public
@@ -1759,46 +1759,46 @@ export interface ListProblemsRequest {
1759
1759
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1760
1760
  * @public
1761
1761
  */
1762
- AccountId?: string;
1762
+ AccountId?: string | undefined;
1763
1763
  /**
1764
1764
  * <p>The name of the resource group.</p>
1765
1765
  * @public
1766
1766
  */
1767
- ResourceGroupName?: string;
1767
+ ResourceGroupName?: string | undefined;
1768
1768
  /**
1769
1769
  * <p>The time when the problem was detected, in epoch seconds. If you don't specify a time
1770
1770
  * frame for the request, problems within the past seven days are returned.</p>
1771
1771
  * @public
1772
1772
  */
1773
- StartTime?: Date;
1773
+ StartTime?: Date | undefined;
1774
1774
  /**
1775
1775
  * <p>The time when the problem ended, in epoch seconds. If not specified, problems within the
1776
1776
  * past seven days are returned.</p>
1777
1777
  * @public
1778
1778
  */
1779
- EndTime?: Date;
1779
+ EndTime?: Date | undefined;
1780
1780
  /**
1781
1781
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1782
1782
  * results, make another call with the returned <code>NextToken</code> value.</p>
1783
1783
  * @public
1784
1784
  */
1785
- MaxResults?: number;
1785
+ MaxResults?: number | undefined;
1786
1786
  /**
1787
1787
  * <p>The token to request the next page of results.</p>
1788
1788
  * @public
1789
1789
  */
1790
- NextToken?: string;
1790
+ NextToken?: string | undefined;
1791
1791
  /**
1792
1792
  * <p> The name of the component. </p>
1793
1793
  * @public
1794
1794
  */
1795
- ComponentName?: string;
1795
+ ComponentName?: string | undefined;
1796
1796
  /**
1797
1797
  * <p>Specifies whether or not you can view the problem. If not specified, visible and
1798
1798
  * ignored problems are returned.</p>
1799
1799
  * @public
1800
1800
  */
1801
- Visibility?: Visibility;
1801
+ Visibility?: Visibility | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * @public
@@ -1808,23 +1808,23 @@ export interface ListProblemsResponse {
1808
1808
  * <p>The list of problems. </p>
1809
1809
  * @public
1810
1810
  */
1811
- ProblemList?: Problem[];
1811
+ ProblemList?: Problem[] | undefined;
1812
1812
  /**
1813
1813
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1814
1814
  * when there are no more results to return. </p>
1815
1815
  * @public
1816
1816
  */
1817
- NextToken?: string;
1817
+ NextToken?: string | undefined;
1818
1818
  /**
1819
1819
  * <p> The name of the resource group. </p>
1820
1820
  * @public
1821
1821
  */
1822
- ResourceGroupName?: string;
1822
+ ResourceGroupName?: string | undefined;
1823
1823
  /**
1824
1824
  * <p>The Amazon Web Services account ID for the resource group owner.</p>
1825
1825
  * @public
1826
1826
  */
1827
- AccountId?: string;
1827
+ AccountId?: string | undefined;
1828
1828
  }
1829
1829
  /**
1830
1830
  * @public
@@ -1847,7 +1847,7 @@ export interface ListTagsForResourceResponse {
1847
1847
  * (<code>Value</code>).</p>
1848
1848
  * @public
1849
1849
  */
1850
- Tags?: Tag[];
1850
+ Tags?: Tag[] | undefined;
1851
1851
  }
1852
1852
  /**
1853
1853
  * @public
@@ -1868,17 +1868,17 @@ export interface ListWorkloadsRequest {
1868
1868
  * results, make another call with the returned <code>NextToken</code> value.</p>
1869
1869
  * @public
1870
1870
  */
1871
- MaxResults?: number;
1871
+ MaxResults?: number | undefined;
1872
1872
  /**
1873
1873
  * <p>The token to request the next page of results.</p>
1874
1874
  * @public
1875
1875
  */
1876
- NextToken?: string;
1876
+ NextToken?: string | undefined;
1877
1877
  /**
1878
1878
  * <p>The Amazon Web Services account ID of the owner of the workload.</p>
1879
1879
  * @public
1880
1880
  */
1881
- AccountId?: string;
1881
+ AccountId?: string | undefined;
1882
1882
  }
1883
1883
  /**
1884
1884
  * <p>Describes the workloads on a component.</p>
@@ -1889,32 +1889,32 @@ export interface Workload {
1889
1889
  * <p>The ID of the workload.</p>
1890
1890
  * @public
1891
1891
  */
1892
- WorkloadId?: string;
1892
+ WorkloadId?: string | undefined;
1893
1893
  /**
1894
1894
  * <p>The name of the component.</p>
1895
1895
  * @public
1896
1896
  */
1897
- ComponentName?: string;
1897
+ ComponentName?: string | undefined;
1898
1898
  /**
1899
1899
  * <p>The name of the workload.</p>
1900
1900
  * @public
1901
1901
  */
1902
- WorkloadName?: string;
1902
+ WorkloadName?: string | undefined;
1903
1903
  /**
1904
1904
  * <p>The tier of the workload.</p>
1905
1905
  * @public
1906
1906
  */
1907
- Tier?: Tier;
1907
+ Tier?: Tier | undefined;
1908
1908
  /**
1909
1909
  * <p>If logging is supported for the resource type, shows whether the component has configured logs to be monitored.</p>
1910
1910
  * @public
1911
1911
  */
1912
- WorkloadRemarks?: string;
1912
+ WorkloadRemarks?: string | undefined;
1913
1913
  /**
1914
1914
  * <p>Indicates whether all of the component configurations required to monitor a workload were provided.</p>
1915
1915
  * @public
1916
1916
  */
1917
- MissingWorkloadConfig?: boolean;
1917
+ MissingWorkloadConfig?: boolean | undefined;
1918
1918
  }
1919
1919
  /**
1920
1920
  * @public
@@ -1924,12 +1924,12 @@ export interface ListWorkloadsResponse {
1924
1924
  * <p>The list of workloads.</p>
1925
1925
  * @public
1926
1926
  */
1927
- WorkloadList?: Workload[];
1927
+ WorkloadList?: Workload[] | undefined;
1928
1928
  /**
1929
1929
  * <p>The token to request the next page of results.</p>
1930
1930
  * @public
1931
1931
  */
1932
- NextToken?: string;
1932
+ NextToken?: string | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * @public
@@ -1987,12 +1987,12 @@ export interface TagResourceResponse {
1987
1987
  export declare class TooManyTagsException extends __BaseException {
1988
1988
  readonly name: "TooManyTagsException";
1989
1989
  readonly $fault: "client";
1990
- Message?: string;
1990
+ Message?: string | undefined;
1991
1991
  /**
1992
1992
  * <p>The name of the resource with too many tags.</p>
1993
1993
  * @public
1994
1994
  */
1995
- ResourceName?: string;
1995
+ ResourceName?: string | undefined;
1996
1996
  /**
1997
1997
  * @internal
1998
1998
  */
@@ -2037,42 +2037,42 @@ export interface UpdateApplicationRequest {
2037
2037
  * application. </p>
2038
2038
  * @public
2039
2039
  */
2040
- OpsCenterEnabled?: boolean;
2040
+ OpsCenterEnabled?: boolean | undefined;
2041
2041
  /**
2042
2042
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
2043
2043
  * application resources, such as <code>instance terminated</code>, <code>failed
2044
2044
  * deployment</code>, and others. </p>
2045
2045
  * @public
2046
2046
  */
2047
- CWEMonitorEnabled?: boolean;
2047
+ CWEMonitorEnabled?: boolean | undefined;
2048
2048
  /**
2049
2049
  * <p> The SNS topic provided to Application Insights that is associated to the created
2050
2050
  * opsItem. Allows you to receive notifications for updates to the opsItem.</p>
2051
2051
  * @public
2052
2052
  */
2053
- OpsItemSNSTopicArn?: string;
2053
+ OpsItemSNSTopicArn?: string | undefined;
2054
2054
  /**
2055
2055
  * <p>
2056
2056
  * The SNS topic ARN. Allows you to receive SNS notifications for updates and issues with an application.
2057
2057
  * </p>
2058
2058
  * @public
2059
2059
  */
2060
- SNSNotificationArn?: string;
2060
+ SNSNotificationArn?: string | undefined;
2061
2061
  /**
2062
2062
  * <p> Disassociates the SNS topic from the opsItem created for detected problems.</p>
2063
2063
  * @public
2064
2064
  */
2065
- RemoveSNSTopic?: boolean;
2065
+ RemoveSNSTopic?: boolean | undefined;
2066
2066
  /**
2067
2067
  * <p> Turns auto-configuration on or off. </p>
2068
2068
  * @public
2069
2069
  */
2070
- AutoConfigEnabled?: boolean;
2070
+ AutoConfigEnabled?: boolean | undefined;
2071
2071
  /**
2072
2072
  * <p>If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.</p>
2073
2073
  * @public
2074
2074
  */
2075
- AttachMissingPermission?: boolean;
2075
+ AttachMissingPermission?: boolean | undefined;
2076
2076
  }
2077
2077
  /**
2078
2078
  * @public
@@ -2082,7 +2082,7 @@ export interface UpdateApplicationResponse {
2082
2082
  * <p>Information about the application. </p>
2083
2083
  * @public
2084
2084
  */
2085
- ApplicationInfo?: ApplicationInfo;
2085
+ ApplicationInfo?: ApplicationInfo | undefined;
2086
2086
  }
2087
2087
  /**
2088
2088
  * @public
@@ -2102,12 +2102,12 @@ export interface UpdateComponentRequest {
2102
2102
  * <p>The new name of the component.</p>
2103
2103
  * @public
2104
2104
  */
2105
- NewComponentName?: string;
2105
+ NewComponentName?: string | undefined;
2106
2106
  /**
2107
2107
  * <p>The list of resource ARNs that belong to the component.</p>
2108
2108
  * @public
2109
2109
  */
2110
- ResourceList?: string[];
2110
+ ResourceList?: string[] | undefined;
2111
2111
  }
2112
2112
  /**
2113
2113
  * @public
@@ -2132,12 +2132,12 @@ export interface UpdateComponentConfigurationRequest {
2132
2132
  * <p>Indicates whether the application component is monitored.</p>
2133
2133
  * @public
2134
2134
  */
2135
- Monitor?: boolean;
2135
+ Monitor?: boolean | undefined;
2136
2136
  /**
2137
2137
  * <p>The tier of the application component.</p>
2138
2138
  * @public
2139
2139
  */
2140
- Tier?: Tier;
2140
+ Tier?: Tier | undefined;
2141
2141
  /**
2142
2142
  * <p>The configuration settings of the component. The value is the escaped JSON of the
2143
2143
  * configuration. For more information about the JSON format, see <a href="https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html">Working with JSON</a>. You can send a request to
@@ -2146,13 +2146,13 @@ export interface UpdateComponentConfigurationRequest {
2146
2146
  * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html">Component Configuration</a>.</p>
2147
2147
  * @public
2148
2148
  */
2149
- ComponentConfiguration?: string;
2149
+ ComponentConfiguration?: string | undefined;
2150
2150
  /**
2151
2151
  * <p> Automatically configures the component by applying the recommended configurations.
2152
2152
  * </p>
2153
2153
  * @public
2154
2154
  */
2155
- AutoConfigEnabled?: boolean;
2155
+ AutoConfigEnabled?: boolean | undefined;
2156
2156
  }
2157
2157
  /**
2158
2158
  * @public
@@ -2183,7 +2183,7 @@ export interface UpdateLogPatternRequest {
2183
2183
  * lookahead or backreference constructions are not supported.</p>
2184
2184
  * @public
2185
2185
  */
2186
- Pattern?: string;
2186
+ Pattern?: string | undefined;
2187
2187
  /**
2188
2188
  * <p>Rank of the log pattern. Must be a value between <code>1</code> and
2189
2189
  * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
@@ -2197,7 +2197,7 @@ export interface UpdateLogPatternRequest {
2197
2197
  * Amazon Web Services provided patterns. </p>
2198
2198
  * @public
2199
2199
  */
2200
- Rank?: number;
2200
+ Rank?: number | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * @public
@@ -2207,12 +2207,12 @@ export interface UpdateLogPatternResponse {
2207
2207
  * <p>The name of the resource group.</p>
2208
2208
  * @public
2209
2209
  */
2210
- ResourceGroupName?: string;
2210
+ ResourceGroupName?: string | undefined;
2211
2211
  /**
2212
2212
  * <p>The successfully created log pattern.</p>
2213
2213
  * @public
2214
2214
  */
2215
- LogPattern?: LogPattern;
2215
+ LogPattern?: LogPattern | undefined;
2216
2216
  }
2217
2217
  /**
2218
2218
  * @public
@@ -2239,14 +2239,14 @@ export interface UpdateProblemRequest {
2239
2239
  * of <code>RECOVERING</code>.</p>
2240
2240
  * @public
2241
2241
  */
2242
- UpdateStatus?: UpdateStatus;
2242
+ UpdateStatus?: UpdateStatus | undefined;
2243
2243
  /**
2244
2244
  * <p>The visibility of a problem. When you pass a value of <code>IGNORED</code>, the problem
2245
2245
  * is removed from the default view, and all notifications for the problem are suspended. When
2246
2246
  * <code>VISIBLE</code> is passed, the <code>IGNORED</code> action is reversed.</p>
2247
2247
  * @public
2248
2248
  */
2249
- Visibility?: Visibility;
2249
+ Visibility?: Visibility | undefined;
2250
2250
  }
2251
2251
  /**
2252
2252
  * @public
@@ -2271,7 +2271,7 @@ export interface UpdateWorkloadRequest {
2271
2271
  * <p>The ID of the workload.</p>
2272
2272
  * @public
2273
2273
  */
2274
- WorkloadId?: string;
2274
+ WorkloadId?: string | undefined;
2275
2275
  /**
2276
2276
  * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
2277
2277
  * @public
@@ -2286,10 +2286,10 @@ export interface UpdateWorkloadResponse {
2286
2286
  * <p>The ID of the workload.</p>
2287
2287
  * @public
2288
2288
  */
2289
- WorkloadId?: string;
2289
+ WorkloadId?: string | undefined;
2290
2290
  /**
2291
2291
  * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
2292
2292
  * @public
2293
2293
  */
2294
- WorkloadConfiguration?: WorkloadConfiguration;
2294
+ WorkloadConfiguration?: WorkloadConfiguration | undefined;
2295
2295
  }