@aws-sdk/client-application-insights 3.99.0 → 3.105.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.
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException";
3
3
  /**
4
- * <p>
5
- * User does not have permissions to perform this action.
6
- * </p>
4
+ * <p> User does not have permissions to perform this action. </p>
7
5
  */
8
6
  export declare class AccessDeniedException extends __BaseException {
9
7
  readonly name: "AccessDeniedException";
@@ -17,8 +15,8 @@ export declare class AccessDeniedException extends __BaseException {
17
15
  export declare type Tier = "ACTIVE_DIRECTORY" | "CUSTOM" | "DEFAULT" | "DOT_NET_CORE" | "DOT_NET_WEB" | "DOT_NET_WEB_TIER" | "DOT_NET_WORKER" | "JAVA_JMX" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "SAP_HANA_HIGH_AVAILABILITY" | "SAP_HANA_MULTI_NODE" | "SAP_HANA_SINGLE_NODE" | "SHAREPOINT" | "SQL_SERVER" | "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" | "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
18
16
  export declare type OsType = "LINUX" | "WINDOWS";
19
17
  /**
20
- * <p>Describes a standalone resource or similarly grouped resources that the application is made
21
- * up of.</p>
18
+ * <p>Describes a standalone resource or similarly grouped resources that the application is
19
+ * made up of.</p>
22
20
  */
23
21
  export interface ApplicationComponent {
24
22
  /**
@@ -26,19 +24,17 @@ export interface ApplicationComponent {
26
24
  */
27
25
  ComponentName?: string;
28
26
  /**
29
- * <p>
30
- * If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.
31
- * </p>
27
+ * <p> If logging is supported for the resource type, indicates whether the component has
28
+ * configured logs to be monitored. </p>
32
29
  */
33
30
  ComponentRemarks?: string;
34
31
  /**
35
- * <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.</p>
32
+ * <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group,
33
+ * Classic ELB, Application ELB, and SQS Queue.</p>
36
34
  */
37
35
  ResourceType?: string;
38
36
  /**
39
- * <p>
40
- * The operating system of the component.
41
- * </p>
37
+ * <p> The operating system of the component. </p>
42
38
  */
43
39
  OsType?: OsType | string;
44
40
  /**
@@ -50,15 +46,9 @@ export interface ApplicationComponent {
50
46
  */
51
47
  Monitor?: boolean;
52
48
  /**
53
- * <p>
54
- * Workloads detected in the application component.
55
- * </p>
49
+ * <p> Workloads detected in the application component. </p>
56
50
  */
57
- DetectedWorkload?: {
58
- [key: string]: {
59
- [key: string]: string;
60
- };
61
- };
51
+ DetectedWorkload?: Record<string, Record<string, string>>;
62
52
  }
63
53
  export declare namespace ApplicationComponent {
64
54
  /**
@@ -83,23 +73,19 @@ export interface ApplicationInfo {
83
73
  */
84
74
  LifeCycle?: string;
85
75
  /**
86
- * <p>
87
- * The SNS topic provided to Application Insights that is associated to the created opsItems to receive SNS notifications
88
- * for opsItem updates.
89
- * </p>
76
+ * <p> The SNS topic provided to Application Insights that is associated to the created
77
+ * opsItems to receive SNS notifications for opsItem updates. </p>
90
78
  */
91
79
  OpsItemSNSTopicArn?: string;
92
80
  /**
93
- * <p>
94
- * Indicates whether Application Insights will create opsItems for any problem detected by Application
95
- * Insights for an application.
96
- * </p>
81
+ * <p> Indicates whether Application Insights will create opsItems for any problem detected by
82
+ * Application Insights for an application. </p>
97
83
  */
98
84
  OpsCenterEnabled?: boolean;
99
85
  /**
100
- * <p>
101
- * Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as <code>instance terminated</code>, <code>failed deployment</code>, and others.
102
- * </p>
86
+ * <p> Indicates whether Application Insights can listen to CloudWatch events for the
87
+ * application resources, such as <code>instance terminated</code>, <code>failed
88
+ * deployment</code>, and others. </p>
103
89
  */
104
90
  CWEMonitorEnabled?: boolean;
105
91
  /**
@@ -115,7 +101,15 @@ export interface ApplicationInfo {
115
101
  * </ul>
116
102
  */
117
103
  Remarks?: string;
104
+ /**
105
+ * <p> Indicates whether auto-configuration is turned on for this application. </p>
106
+ */
118
107
  AutoConfigEnabled?: boolean;
108
+ /**
109
+ * <p>
110
+ * The method used by Application Insights to onboard your resources.
111
+ * </p>
112
+ */
119
113
  DiscoveryType?: DiscoveryType | string;
120
114
  }
121
115
  export declare namespace ApplicationInfo {
@@ -140,45 +134,33 @@ export declare type CloudWatchEventSource = "CODE_DEPLOY" | "EC2" | "HEALTH" | "
140
134
  export declare type ConfigurationEventResourceType = "CLOUDFORMATION" | "CLOUDWATCH_ALARM" | "CLOUDWATCH_LOG" | "SSM_ASSOCIATION";
141
135
  export declare type ConfigurationEventStatus = "ERROR" | "INFO" | "WARN";
142
136
  /**
143
- * <p>
144
- * The event information.
145
- * </p>
137
+ * <p> The event information. </p>
146
138
  */
147
139
  export interface ConfigurationEvent {
148
140
  /**
149
- * <p>
150
- * The resource monitored by Application Insights.
151
- * </p>
141
+ * <p> The resource monitored by Application Insights. </p>
152
142
  */
153
143
  MonitoredResourceARN?: string;
154
144
  /**
155
- * <p>
156
- * The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
157
- * </p>
145
+ * <p> The status of the configuration update event. Possible values include INFO, WARN, and
146
+ * ERROR. </p>
158
147
  */
159
148
  EventStatus?: ConfigurationEventStatus | string;
160
149
  /**
161
- * <p>
162
- * The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.
163
- * </p>
150
+ * <p> The resource type that Application Insights attempted to configure, for example,
151
+ * CLOUDWATCH_ALARM. </p>
164
152
  */
165
153
  EventResourceType?: ConfigurationEventResourceType | string;
166
154
  /**
167
- * <p>
168
- * The timestamp of the event.
169
- * </p>
155
+ * <p> The timestamp of the event. </p>
170
156
  */
171
157
  EventTime?: Date;
172
158
  /**
173
- * <p>
174
- * The details of the event in plain text.
175
- * </p>
159
+ * <p> The details of the event in plain text. </p>
176
160
  */
177
161
  EventDetail?: string;
178
162
  /**
179
- * <p>
180
- * The name of the resource Application Insights attempted to configure.
181
- * </p>
163
+ * <p> The name of the resource Application Insights attempted to configure. </p>
182
164
  */
183
165
  EventResourceName?: string;
184
166
  }
@@ -188,37 +170,40 @@ export declare namespace ConfigurationEvent {
188
170
  */
189
171
  const filterSensitiveLog: (obj: ConfigurationEvent) => any;
190
172
  }
173
+ export declare enum GroupingType {
174
+ ACCOUNT_BASED = "ACCOUNT_BASED"
175
+ }
191
176
  /**
192
- * <p>An object that defines the tags associated with an application.
193
- * A <i>tag</i> is a label that you optionally define and associate with
194
- * an application. Tags can help you categorize and manage resources in different ways, such as
177
+ * <p>An object that defines the tags associated with an application. A
178
+ * <i>tag</i> is a label that you optionally define and associate with an
179
+ * application. Tags can help you categorize and manage resources in different ways, such as
195
180
  * by purpose, owner, environment, or other criteria.</p>
196
- * <p>Each tag consists of a required <i>tag key</i> and an
197
- * associated <i>tag value</i>, both of which you define. A tag key is a
198
- * general label that acts as a category for a more specific tag value. A tag value acts as
199
- * a descriptor within a tag key. A tag key can contain as many as 128 characters. A tag
200
- * value can contain as many as 256 characters. The characters can be Unicode letters,
201
- * digits, white space, or one of the following symbols: _ . : / = + -. The following
202
- * additional restrictions apply to tags:</p>
181
+ * <p>Each tag consists of a required <i>tag key</i> and an associated
182
+ * <i>tag value</i>, both of which you define. A tag key is a general label
183
+ * that acts as a category for a more specific tag value. A tag value acts as a descriptor
184
+ * within a tag key. A tag key can contain as many as 128 characters. A tag value can contain
185
+ * as many as 256 characters. The characters can be Unicode letters, digits, white space, or
186
+ * one of the following symbols: _ . : / = + -. The following additional restrictions apply to
187
+ * tags:</p>
203
188
  * <ul>
204
189
  * <li>
205
190
  * <p>Tag keys and values are case sensitive.</p>
206
191
  * </li>
207
192
  * <li>
208
- * <p>For each associated resource, each tag key must be unique and it can have only
209
- * one value.</p>
193
+ * <p>For each associated resource, each tag key must be unique and it can have only one
194
+ * value.</p>
210
195
  * </li>
211
196
  * <li>
212
- * <p>The <code>aws:</code> prefix is reserved for use by AWS; you can’t use it in
213
- * any tag keys or values that you define. In addition, you can't edit or remove
214
- * tag keys or values that use this prefix. </p>
197
+ * <p>The <code>aws:</code> prefix is reserved for use by AWS; you can’t use it in any
198
+ * tag keys or values that you define. In addition, you can't edit or remove tag keys or
199
+ * values that use this prefix. </p>
215
200
  * </li>
216
201
  * </ul>
217
202
  */
218
203
  export interface Tag {
219
204
  /**
220
- * <p>One part of a key-value pair that defines a tag. The maximum length of a tag key is
221
- * 128 characters. The minimum length is 1 character.</p>
205
+ * <p>One part of a key-value pair that defines a tag. The maximum length of a tag key is 128
206
+ * characters. The minimum length is 1 character.</p>
222
207
  */
223
208
  Key: string | undefined;
224
209
  /**
@@ -240,33 +225,43 @@ export interface CreateApplicationRequest {
240
225
  */
241
226
  ResourceGroupName?: string;
242
227
  /**
243
- * <p>
244
- * When set to <code>true</code>, creates opsItems for any problems detected on an application.
245
- * </p>
228
+ * <p> When set to <code>true</code>, creates opsItems for any problems detected on an
229
+ * application. </p>
246
230
  */
247
231
  OpsCenterEnabled?: boolean;
248
232
  /**
249
- * <p>
250
- * Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as <code>instance terminated</code>, <code>failed deployment</code>, and others.
251
- * </p>
233
+ * <p> Indicates whether Application Insights can listen to CloudWatch events for the
234
+ * application resources, such as <code>instance terminated</code>, <code>failed
235
+ * deployment</code>, and others. </p>
252
236
  */
253
237
  CWEMonitorEnabled?: boolean;
254
238
  /**
255
- * <p>
256
- * The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to
257
- * receive notifications for updates to the opsItem.
258
- * </p>
239
+ * <p> The SNS topic provided to Application Insights that is associated to the created
240
+ * opsItem. Allows you to receive notifications for updates to the opsItem. </p>
259
241
  */
260
242
  OpsItemSNSTopicArn?: string;
261
243
  /**
262
- * <p>List of tags to add to the application.
263
- * tag key (<code>Key</code>) and an associated tag value (<code>Value</code>). The maximum
264
- * length of a tag key is 128 characters. The maximum length of a tag value is 256
265
- * characters.</p>
244
+ * <p>List of tags to add to the application. tag key (<code>Key</code>) and an associated tag
245
+ * value (<code>Value</code>). The maximum length of a tag key is 128 characters. The maximum
246
+ * length of a tag value is 256 characters.</p>
266
247
  */
267
248
  Tags?: Tag[];
249
+ /**
250
+ * <p> Indicates whether Application Insights automatically configures unmonitored resources
251
+ * in the resource group. </p>
252
+ */
268
253
  AutoConfigEnabled?: boolean;
254
+ /**
255
+ * <p> Configures all of the resources in the resource group by applying the recommended
256
+ * configurations. </p>
257
+ */
269
258
  AutoCreate?: boolean;
259
+ /**
260
+ * <p>Application Insights can create applications based on a resource group or on an account.
261
+ * To create an account-based application using all of the resources in the account, set this parameter to <code>ACCOUNT_BASED</code>.
262
+ * </p>
263
+ */
264
+ GroupingType?: GroupingType | string;
270
265
  }
271
266
  export declare namespace CreateApplicationRequest {
272
267
  /**
@@ -388,13 +383,21 @@ export interface CreateLogPatternRequest {
388
383
  */
389
384
  PatternName: string | undefined;
390
385
  /**
391
- * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.</p>
386
+ * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward
387
+ * lookahead or backreference constructions are not supported.</p>
392
388
  */
393
389
  Pattern: string | undefined;
394
390
  /**
395
- * <p>Rank of the log pattern. Must be a value between <code>1</code> and <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be last to get matched. When you configure custom log patterns from the console, a <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a <code>High</code> severity pattern translates to a <code>250,000</code> rank.
396
- * Rank values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for AWS-provided patterns.
397
- * </p>
391
+ * <p>Rank of the log pattern. Must be a value between <code>1</code> and
392
+ * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
393
+ * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
394
+ * be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be
395
+ * last to get matched. When you configure custom log patterns from the console, a
396
+ * <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A
397
+ * <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a
398
+ * <code>High</code> severity pattern translates to a <code>250,000</code> rank. Rank
399
+ * values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for
400
+ * AWS-provided patterns. </p>
398
401
  */
399
402
  Rank: number | undefined;
400
403
  }
@@ -405,28 +408,39 @@ export declare namespace CreateLogPatternRequest {
405
408
  const filterSensitiveLog: (obj: CreateLogPatternRequest) => any;
406
409
  }
407
410
  /**
408
- * <p>An object that defines the log patterns that belongs to a <code>LogPatternSet</code>.</p>
411
+ * <p>An object that defines the log patterns that belongs to a
412
+ * <code>LogPatternSet</code>.</p>
409
413
  */
410
414
  export interface LogPattern {
411
415
  /**
412
- * <p>The name of the log pattern. A log pattern name can contain as many as 30 characters, and it cannot
413
- * be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.</p>
416
+ * <p>The name of the log pattern. A log pattern name can contain as many as 30 characters,
417
+ * and it cannot be empty. The characters can be Unicode letters, digits, or one of the
418
+ * following symbols: period, dash, underscore.</p>
414
419
  */
415
420
  PatternSetName?: string;
416
421
  /**
417
- * <p>The name of the log pattern. A log pattern name can contain as many as 50 characters, and it cannot
418
- * be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.</p>
422
+ * <p>The name of the log pattern. A log pattern name can contain as many as 50 characters,
423
+ * and it cannot be empty. The characters can be Unicode letters, digits, or one of the
424
+ * following symbols: period, dash, underscore.</p>
419
425
  */
420
426
  PatternName?: string;
421
427
  /**
422
- * <p>A regular expression that defines the log pattern. A log pattern can contain as many as 50 characters, and it cannot
423
- * be empty. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.</p>
428
+ * <p>A regular expression that defines the log pattern. A log pattern can contain as many as
429
+ * 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that
430
+ * utilize forward lookahead or backreference constructions are not supported.</p>
424
431
  */
425
432
  Pattern?: string;
426
433
  /**
427
- * <p>Rank of the log pattern. Must be a value between <code>1</code> and <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be last to get matched. When you configure custom log patterns from the console, a <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a <code>High</code> severity pattern translates to a <code>250,000</code> rank.
428
- * Rank values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for AWS-provided patterns.
429
- * </p>
434
+ * <p>Rank of the log pattern. Must be a value between <code>1</code> and
435
+ * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
436
+ * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
437
+ * be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be
438
+ * last to get matched. When you configure custom log patterns from the console, a
439
+ * <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A
440
+ * <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a
441
+ * <code>High</code> severity pattern translates to a <code>250,000</code> rank. Rank
442
+ * values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for
443
+ * AWS-provided patterns. </p>
430
444
  */
431
445
  Rank?: number;
432
446
  }
@@ -566,8 +580,8 @@ export declare namespace DescribeComponentRequest {
566
580
  }
567
581
  export interface DescribeComponentResponse {
568
582
  /**
569
- * <p>Describes a standalone resource or similarly grouped resources that the application is made
570
- * up of.</p>
583
+ * <p>Describes a standalone resource or similarly grouped resources that the application is
584
+ * made up of.</p>
571
585
  */
572
586
  ApplicationComponent?: ApplicationComponent;
573
587
  /**
@@ -605,12 +619,13 @@ export interface DescribeComponentConfigurationResponse {
605
619
  /**
606
620
  * <p>The tier of the application component. Supported tiers include
607
621
  * <code>DOT_NET_CORE</code>, <code>DOT_NET_WORKER</code>, <code>DOT_NET_WEB</code>,
608
- * <code>SQL_SERVER</code>, and <code>DEFAULT</code>
622
+ * <code>SQL_SERVER</code>, and <code>DEFAULT</code>
609
623
  * </p>
610
624
  */
611
625
  Tier?: Tier | string;
612
626
  /**
613
- * <p>The configuration settings of the component. The value is the escaped JSON of the configuration.</p>
627
+ * <p>The configuration settings of the component. The value is the escaped JSON of the
628
+ * configuration.</p>
614
629
  */
615
630
  ComponentConfiguration?: string;
616
631
  }
@@ -630,9 +645,7 @@ export interface DescribeComponentConfigurationRecommendationRequest {
630
645
  */
631
646
  ComponentName: string | undefined;
632
647
  /**
633
- * <p>The tier of the application component. Supported tiers include
634
- * <code>DOT_NET_CORE</code>, <code>DOT_NET_WORKER</code>, <code>DOT_NET_WEB</code>, <code>SQL_SERVER</code>,
635
- * and <code>DEFAULT</code>.</p>
648
+ * <p>The tier of the application component.</p>
636
649
  */
637
650
  Tier: Tier | string | undefined;
638
651
  }
@@ -644,7 +657,8 @@ export declare namespace DescribeComponentConfigurationRecommendationRequest {
644
657
  }
645
658
  export interface DescribeComponentConfigurationRecommendationResponse {
646
659
  /**
647
- * <p>The recommended configuration settings of the component. The value is the escaped JSON of the configuration.</p>
660
+ * <p>The recommended configuration settings of the component. The value is the escaped JSON
661
+ * of the configuration.</p>
648
662
  */
649
663
  ComponentConfiguration?: string;
650
664
  }
@@ -712,7 +726,7 @@ export interface Observation {
712
726
  */
713
727
  Id?: string;
714
728
  /**
715
- * <p>The time when the observation was first detected, in epoch seconds.</p>
729
+ * <p>The time when the observation was first detected, in epoch seconds.</p>
716
730
  */
717
731
  StartTime?: Date;
718
732
  /**
@@ -732,7 +746,8 @@ export interface Observation {
732
746
  */
733
747
  LogGroup?: string;
734
748
  /**
735
- * <p>The timestamp in the CloudWatch Logs that specifies when the matched line occurred.</p>
749
+ * <p>The timestamp in the CloudWatch Logs that specifies when the matched line
750
+ * occurred.</p>
736
751
  */
737
752
  LineTime?: Date;
738
753
  /**
@@ -760,7 +775,8 @@ export interface Observation {
760
775
  */
761
776
  Value?: number;
762
777
  /**
763
- * <p> The ID of the CloudWatch Event-based observation related to the detected problem. </p>
778
+ * <p> The ID of the CloudWatch Event-based observation related to the detected problem.
779
+ * </p>
764
780
  */
765
781
  CloudWatchEventId?: string;
766
782
  /**
@@ -790,148 +806,110 @@ export interface Observation {
790
806
  */
791
807
  HealthEventTypeCategory?: string;
792
808
  /**
793
- * <p> The description of the AWS Health event provided by the service, such as Amazon EC2. </p>
809
+ * <p> The description of the AWS Health event provided by the service, such as Amazon EC2.
810
+ * </p>
794
811
  */
795
812
  HealthEventDescription?: string;
796
813
  /**
797
- * <p> The deployment ID of the CodeDeploy-based observation related to the detected problem. </p>
814
+ * <p> The deployment ID of the CodeDeploy-based observation related to the detected problem.
815
+ * </p>
798
816
  */
799
817
  CodeDeployDeploymentId?: string;
800
818
  /**
801
- * <p>
802
- * The deployment group to which the CodeDeploy deployment belongs.
803
- * </p>
819
+ * <p> The deployment group to which the CodeDeploy deployment belongs. </p>
804
820
  */
805
821
  CodeDeployDeploymentGroup?: string;
806
822
  /**
807
- * <p>
808
- * The status of the CodeDeploy deployment, for example <code>SUCCESS</code> or <code> FAILURE</code>.
809
- * </p>
823
+ * <p> The status of the CodeDeploy deployment, for example <code>SUCCESS</code> or <code>
824
+ * FAILURE</code>. </p>
810
825
  */
811
826
  CodeDeployState?: string;
812
827
  /**
813
- * <p>
814
- * The CodeDeploy application to which the deployment belongs.
815
- * </p>
828
+ * <p> The CodeDeploy application to which the deployment belongs. </p>
816
829
  */
817
830
  CodeDeployApplication?: string;
818
831
  /**
819
- * <p>
820
- * The instance group to which the CodeDeploy instance belongs.
821
- * </p>
832
+ * <p> The instance group to which the CodeDeploy instance belongs. </p>
822
833
  */
823
834
  CodeDeployInstanceGroupId?: string;
824
835
  /**
825
- * <p>
826
- * The state of the instance, such as <code>STOPPING</code> or <code>TERMINATING</code>.
836
+ * <p> The state of the instance, such as <code>STOPPING</code> or <code>TERMINATING</code>.
827
837
  * </p>
828
838
  */
829
839
  Ec2State?: string;
830
840
  /**
831
- * <p>
832
- * The category of an RDS event.
833
- * </p>
841
+ * <p> The category of an RDS event. </p>
834
842
  */
835
843
  RdsEventCategories?: string;
836
844
  /**
837
- * <p>
838
- * The message of an RDS event.
839
- * </p>
845
+ * <p> The message of an RDS event. </p>
840
846
  */
841
847
  RdsEventMessage?: string;
842
848
  /**
843
- * <p>
844
- * The name of the S3 CloudWatch Event-based observation.
845
- * </p>
849
+ * <p> The name of the S3 CloudWatch Event-based observation. </p>
846
850
  */
847
851
  S3EventName?: string;
848
852
  /**
849
- * <p>
850
- * The Amazon Resource Name (ARN) of the step function execution-based observation.
853
+ * <p> The Amazon Resource Name (ARN) of the step function execution-based observation.
851
854
  * </p>
852
855
  */
853
856
  StatesExecutionArn?: string;
854
857
  /**
855
- * <p>
856
- * The Amazon Resource Name (ARN) of the step function-based observation.
857
- * </p>
858
+ * <p> The Amazon Resource Name (ARN) of the step function-based observation. </p>
858
859
  */
859
860
  StatesArn?: string;
860
861
  /**
861
- * <p>
862
- * The status of the step function-related observation.
863
- * </p>
862
+ * <p> The status of the step function-related observation. </p>
864
863
  */
865
864
  StatesStatus?: string;
866
865
  /**
867
- * <p>
868
- * The input to the step function-based observation.
869
- * </p>
866
+ * <p> The input to the step function-based observation. </p>
870
867
  */
871
868
  StatesInput?: string;
872
869
  /**
873
- * <p>
874
- * The type of EBS CloudWatch event, such as <code>createVolume</code>, <code>deleteVolume</code> or <code>attachVolume</code>.
875
- * </p>
870
+ * <p> The type of EBS CloudWatch event, such as <code>createVolume</code>,
871
+ * <code>deleteVolume</code> or <code>attachVolume</code>. </p>
876
872
  */
877
873
  EbsEvent?: string;
878
874
  /**
879
- * <p>
880
- * The result of an EBS CloudWatch event, such as <code>failed</code> or <code>succeeded</code>.
881
- * </p>
875
+ * <p> The result of an EBS CloudWatch event, such as <code>failed</code> or
876
+ * <code>succeeded</code>. </p>
882
877
  */
883
878
  EbsResult?: string;
884
879
  /**
885
- * <p>
886
- * The cause of an EBS CloudWatch event.
887
- * </p>
880
+ * <p> The cause of an EBS CloudWatch event. </p>
888
881
  */
889
882
  EbsCause?: string;
890
883
  /**
891
- * <p>
892
- * The request ID of an EBS CloudWatch event.
893
- * </p>
884
+ * <p> The request ID of an EBS CloudWatch event. </p>
894
885
  */
895
886
  EbsRequestId?: string;
896
887
  /**
897
- * <p>
898
- * The X-Ray request fault percentage for this node.
899
- * </p>
888
+ * <p> The X-Ray request fault percentage for this node. </p>
900
889
  */
901
890
  XRayFaultPercent?: number;
902
891
  /**
903
- * <p>
904
- * The X-Ray request throttle percentage for this node.
905
- * </p>
892
+ * <p> The X-Ray request throttle percentage for this node. </p>
906
893
  */
907
894
  XRayThrottlePercent?: number;
908
895
  /**
909
- * <p>
910
- * The X-Ray request error percentage for this node.
911
- * </p>
896
+ * <p> The X-Ray request error percentage for this node. </p>
912
897
  */
913
898
  XRayErrorPercent?: number;
914
899
  /**
915
- * <p>
916
- * The X-Ray request count for this node.
917
- * </p>
900
+ * <p> The X-Ray request count for this node. </p>
918
901
  */
919
902
  XRayRequestCount?: number;
920
903
  /**
921
- * <p>
922
- * The X-Ray node request average latency for this node.
923
- * </p>
904
+ * <p> The X-Ray node request average latency for this node. </p>
924
905
  */
925
906
  XRayRequestAverageLatency?: number;
926
907
  /**
927
- * <p>
928
- * The name of the X-Ray node.
929
- * </p>
908
+ * <p> The name of the X-Ray node. </p>
930
909
  */
931
910
  XRayNodeName?: string;
932
911
  /**
933
- * <p>
934
- * The type of the X-Ray node. </p>
912
+ * <p> The type of the X-Ray node. </p>
935
913
  */
936
914
  XRayNodeType?: string;
937
915
  }
@@ -967,7 +945,7 @@ export declare namespace DescribeProblemRequest {
967
945
  }
968
946
  export declare type FeedbackKey = "INSIGHTS_FEEDBACK";
969
947
  export declare type FeedbackValue = "NOT_SPECIFIED" | "NOT_USEFUL" | "USEFUL";
970
- export declare type SeverityLevel = "High" | "Low" | "Medium";
948
+ export declare type SeverityLevel = "High" | "Informative" | "Low" | "Medium";
971
949
  export declare type Status = "IGNORE" | "PENDING" | "RECURRING" | "RESOLVED";
972
950
  /**
973
951
  * <p>Describes a problem that is detected by correlating observations.</p>
@@ -1012,10 +990,15 @@ export interface Problem {
1012
990
  /**
1013
991
  * <p>Feedback provided by the user about the problem.</p>
1014
992
  */
1015
- Feedback?: {
1016
- [key: string]: FeedbackValue | string;
1017
- };
993
+ Feedback?: Record<string, FeedbackValue | string>;
994
+ /**
995
+ * <p> The number of times that the same problem reoccurred after the first time it was
996
+ * resolved. </p>
997
+ */
1018
998
  RecurringCount?: number;
999
+ /**
1000
+ * <p> The last time that the problem reoccurred after its last resolution. </p>
1001
+ */
1019
1002
  LastRecurrenceTime?: Date;
1020
1003
  }
1021
1004
  export declare namespace Problem {
@@ -1160,7 +1143,8 @@ export interface ListConfigurationHistoryRequest {
1160
1143
  */
1161
1144
  EndTime?: Date;
1162
1145
  /**
1163
- * <p>The status of the configuration update event. Possible values include INFO, WARN, and ERROR.</p>
1146
+ * <p>The status of the configuration update event. Possible values include INFO, WARN, and
1147
+ * ERROR.</p>
1164
1148
  */
1165
1149
  EventStatus?: ConfigurationEventStatus | string;
1166
1150
  /**
@@ -1174,10 +1158,11 @@ export interface ListConfigurationHistoryRequest {
1174
1158
  */
1175
1159
  MaxResults?: number;
1176
1160
  /**
1177
- * <p>The <code>NextToken</code> value returned from a previous paginated <code>ListConfigurationHistory</code> request where
1178
- * <code>MaxResults</code> was used and the results exceeded the value of that parameter. Pagination
1179
- * continues from the end of the previous results that returned the <code>NextToken</code> value. This
1180
- * value is <code>null</code> when there are no more results to return.</p>
1161
+ * <p>The <code>NextToken</code> value returned from a previous paginated
1162
+ * <code>ListConfigurationHistory</code> request where <code>MaxResults</code> was used and
1163
+ * the results exceeded the value of that parameter. Pagination continues from the end of the
1164
+ * previous results that returned the <code>NextToken</code> value. This value is
1165
+ * <code>null</code> when there are no more results to return.</p>
1181
1166
  */
1182
1167
  NextToken?: string;
1183
1168
  }
@@ -1301,8 +1286,8 @@ export interface ListProblemsRequest {
1301
1286
  */
1302
1287
  ResourceGroupName?: string;
1303
1288
  /**
1304
- * <p>The time when the problem was detected, in epoch
1305
- * seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.</p>
1289
+ * <p>The time when the problem was detected, in epoch seconds. If you don't specify a time
1290
+ * frame for the request, problems within the past seven days are returned.</p>
1306
1291
  */
1307
1292
  StartTime?: Date;
1308
1293
  /**
@@ -1319,6 +1304,9 @@ export interface ListProblemsRequest {
1319
1304
  * <p>The token to request the next page of results.</p>
1320
1305
  */
1321
1306
  NextToken?: string;
1307
+ /**
1308
+ * <p> The name of the component. </p>
1309
+ */
1322
1310
  ComponentName?: string;
1323
1311
  }
1324
1312
  export declare namespace ListProblemsRequest {
@@ -1337,6 +1325,9 @@ export interface ListProblemsResponse {
1337
1325
  * when there are no more results to return. </p>
1338
1326
  */
1339
1327
  NextToken?: string;
1328
+ /**
1329
+ * <p> The name of the resource group. </p>
1330
+ */
1340
1331
  ResourceGroupName?: string;
1341
1332
  }
1342
1333
  export declare namespace ListProblemsResponse {
@@ -1362,7 +1353,7 @@ export interface ListTagsForResourceResponse {
1362
1353
  /**
1363
1354
  * <p>An array that lists all the tags that are associated with the application. Each tag
1364
1355
  * consists of a required tag key (<code>Key</code>) and an associated tag value
1365
- * (<code>Value</code>).</p>
1356
+ * (<code>Value</code>).</p>
1366
1357
  */
1367
1358
  Tags?: Tag[];
1368
1359
  }
@@ -1374,14 +1365,14 @@ export declare namespace ListTagsForResourceResponse {
1374
1365
  }
1375
1366
  export interface TagResourceRequest {
1376
1367
  /**
1377
- * <p>The Amazon Resource Name (ARN) of the application that you want to add one or more tags to.</p>
1368
+ * <p>The Amazon Resource Name (ARN) of the application that you want to add one or more tags
1369
+ * to.</p>
1378
1370
  */
1379
1371
  ResourceARN: string | undefined;
1380
1372
  /**
1381
- * <p>A list of tags that to add to the application. A tag consists of a required
1382
- * tag key (<code>Key</code>) and an associated tag value (<code>Value</code>). The maximum
1383
- * length of a tag key is 128 characters. The maximum length of a tag value is 256
1384
- * characters.</p>
1373
+ * <p>A list of tags that to add to the application. A tag consists of a required tag key
1374
+ * (<code>Key</code>) and an associated tag value (<code>Value</code>). The maximum length
1375
+ * of a tag key is 128 characters. The maximum length of a tag value is 256 characters.</p>
1385
1376
  */
1386
1377
  Tags: Tag[] | undefined;
1387
1378
  }
@@ -1400,8 +1391,8 @@ export declare namespace TagResourceResponse {
1400
1391
  const filterSensitiveLog: (obj: TagResourceResponse) => any;
1401
1392
  }
1402
1393
  /**
1403
- * <p>The number of the provided tags is beyond the limit, or
1404
- * the number of total tags you are trying to attach to the specified resource exceeds the limit.</p>
1394
+ * <p>The number of the provided tags is beyond the limit, or the number of total tags you are
1395
+ * trying to attach to the specified resource exceeds the limit.</p>
1405
1396
  */
1406
1397
  export declare class TooManyTagsException extends __BaseException {
1407
1398
  readonly name: "TooManyTagsException";
@@ -1418,7 +1409,8 @@ export declare class TooManyTagsException extends __BaseException {
1418
1409
  }
1419
1410
  export interface UntagResourceRequest {
1420
1411
  /**
1421
- * <p>The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.</p>
1412
+ * <p>The Amazon Resource Name (ARN) of the application that you want to remove one or more
1413
+ * tags from.</p>
1422
1414
  */
1423
1415
  ResourceARN: string | undefined;
1424
1416
  /**
@@ -1450,28 +1442,28 @@ export interface UpdateApplicationRequest {
1450
1442
  */
1451
1443
  ResourceGroupName: string | undefined;
1452
1444
  /**
1453
- * <p>
1454
- * When set to <code>true</code>, creates opsItems for any problems detected on an application.
1455
- * </p>
1445
+ * <p> When set to <code>true</code>, creates opsItems for any problems detected on an
1446
+ * application. </p>
1456
1447
  */
1457
1448
  OpsCenterEnabled?: boolean;
1458
1449
  /**
1459
- * <p>
1460
- * Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as <code>instance terminated</code>, <code>failed deployment</code>, and others.
1461
- * </p>
1450
+ * <p> Indicates whether Application Insights can listen to CloudWatch events for the
1451
+ * application resources, such as <code>instance terminated</code>, <code>failed
1452
+ * deployment</code>, and others. </p>
1462
1453
  */
1463
1454
  CWEMonitorEnabled?: boolean;
1464
1455
  /**
1465
- * <p>
1466
- * The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to
1467
- * receive notifications for updates to the opsItem.</p>
1456
+ * <p> The SNS topic provided to Application Insights that is associated to the created
1457
+ * opsItem. Allows you to receive notifications for updates to the opsItem.</p>
1468
1458
  */
1469
1459
  OpsItemSNSTopicArn?: string;
1470
1460
  /**
1471
- * <p>
1472
- * Disassociates the SNS topic from the opsItem created for detected problems.</p>
1461
+ * <p> Disassociates the SNS topic from the opsItem created for detected problems.</p>
1473
1462
  */
1474
1463
  RemoveSNSTopic?: boolean;
1464
+ /**
1465
+ * <p> Turns auto-configuration on or off. </p>
1466
+ */
1475
1467
  AutoConfigEnabled?: boolean;
1476
1468
  }
1477
1469
  export declare namespace UpdateApplicationRequest {
@@ -1538,17 +1530,21 @@ export interface UpdateComponentConfigurationRequest {
1538
1530
  */
1539
1531
  Monitor?: boolean;
1540
1532
  /**
1541
- * <p>The tier of the application component. Supported tiers include <code>DOT_NET_WORKER</code>,
1542
- * <code>DOT_NET_WEB</code>, <code>DOT_NET_CORE</code>, <code>SQL_SERVER</code>, and <code>DEFAULT</code>.</p>
1533
+ * <p>The tier of the application component.</p>
1543
1534
  */
1544
1535
  Tier?: Tier | string;
1545
1536
  /**
1546
- * <p>The configuration settings of the component. The value is the escaped JSON of the configuration. For
1547
- * 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>.
1548
- * You can send a request to <code>DescribeComponentConfigurationRecommendation</code> to see the recommended configuration for a component. For the complete
1549
- * format of the component configuration file, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html">Component Configuration</a>.</p>
1537
+ * <p>The configuration settings of the component. The value is the escaped JSON of the
1538
+ * 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
1539
+ * <code>DescribeComponentConfigurationRecommendation</code> to see the recommended
1540
+ * configuration for a component. For the complete format of the component configuration file,
1541
+ * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html">Component Configuration</a>.</p>
1550
1542
  */
1551
1543
  ComponentConfiguration?: string;
1544
+ /**
1545
+ * <p> Automatically configures the component by applying the recommended configurations.
1546
+ * </p>
1547
+ */
1552
1548
  AutoConfigEnabled?: boolean;
1553
1549
  }
1554
1550
  export declare namespace UpdateComponentConfigurationRequest {
@@ -1579,13 +1575,21 @@ export interface UpdateLogPatternRequest {
1579
1575
  */
1580
1576
  PatternName: string | undefined;
1581
1577
  /**
1582
- * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.</p>
1578
+ * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward
1579
+ * lookahead or backreference constructions are not supported.</p>
1583
1580
  */
1584
1581
  Pattern?: string;
1585
1582
  /**
1586
- * <p>Rank of the log pattern. Must be a value between <code>1</code> and <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be last to get matched. When you configure custom log patterns from the console, a <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a <code>High</code> severity pattern translates to a <code>250,000</code> rank.
1587
- * Rank values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for AWS-provided patterns.
1588
- * </p>
1583
+ * <p>Rank of the log pattern. Must be a value between <code>1</code> and
1584
+ * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
1585
+ * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
1586
+ * be the first to get matched to a log line. A pattern of rank <code>1,000,000</code> will be
1587
+ * last to get matched. When you configure custom log patterns from the console, a
1588
+ * <code>Low</code> severity pattern translates to a <code>750,000</code> rank. A
1589
+ * <code>Medium</code> severity pattern translates to a <code>500,000</code> rank. And a
1590
+ * <code>High</code> severity pattern translates to a <code>250,000</code> rank. Rank
1591
+ * values less than <code>1</code> or greater than <code>1,000,000</code> are reserved for
1592
+ * AWS-provided patterns. </p>
1589
1593
  */
1590
1594
  Rank?: number;
1591
1595
  }