@aws-sdk/client-devops-guru 3.43.0 → 3.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +96 -45
- package/dist-cjs/protocols/Aws_restJson1.js +379 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +65 -28
- package/dist-es/protocols/Aws_restJson1.js +372 -6
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/DevOpsGuru.d.ts +13 -10
- package/dist-types/DevOpsGuruClient.d.ts +5 -1
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +3 -2
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +3 -2
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +1093 -111
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +217 -31
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -10,12 +10,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
10
10
|
$fault: "client";
|
|
11
11
|
Message: string | undefined;
|
|
12
12
|
}
|
|
13
|
-
export declare namespace AccessDeniedException {
|
|
14
|
-
/**
|
|
15
|
-
* @internal
|
|
16
|
-
*/
|
|
17
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
18
|
-
}
|
|
19
13
|
/**
|
|
20
14
|
* <p> Information about the number of open reactive and proactive insights that can be used
|
|
21
15
|
* to gauge the health of your system. </p>
|
|
@@ -150,12 +144,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
150
144
|
*/
|
|
151
145
|
ResourceType: string | undefined;
|
|
152
146
|
}
|
|
153
|
-
export declare namespace ConflictException {
|
|
154
|
-
/**
|
|
155
|
-
* @internal
|
|
156
|
-
*/
|
|
157
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
158
|
-
}
|
|
159
147
|
/**
|
|
160
148
|
* <p>An internal failure in an Amazon service occurred.</p>
|
|
161
149
|
*/
|
|
@@ -169,12 +157,6 @@ export interface InternalServerException extends __SmithyException, $MetadataBea
|
|
|
169
157
|
*/
|
|
170
158
|
RetryAfterSeconds?: number;
|
|
171
159
|
}
|
|
172
|
-
export declare namespace InternalServerException {
|
|
173
|
-
/**
|
|
174
|
-
* @internal
|
|
175
|
-
*/
|
|
176
|
-
const filterSensitiveLog: (obj: InternalServerException) => any;
|
|
177
|
-
}
|
|
178
160
|
/**
|
|
179
161
|
* <p>A requested resource could not be found</p>
|
|
180
162
|
*/
|
|
@@ -191,12 +173,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
191
173
|
*/
|
|
192
174
|
ResourceType: string | undefined;
|
|
193
175
|
}
|
|
194
|
-
export declare namespace ResourceNotFoundException {
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
199
|
-
}
|
|
200
176
|
/**
|
|
201
177
|
* <p>The request contains a value that exceeds a maximum quota.</p>
|
|
202
178
|
*/
|
|
@@ -205,12 +181,6 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
205
181
|
$fault: "client";
|
|
206
182
|
Message?: string;
|
|
207
183
|
}
|
|
208
|
-
export declare namespace ServiceQuotaExceededException {
|
|
209
|
-
/**
|
|
210
|
-
* @internal
|
|
211
|
-
*/
|
|
212
|
-
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
213
|
-
}
|
|
214
184
|
/**
|
|
215
185
|
* <p>The request was denied due to a request throttling.</p>
|
|
216
186
|
*/
|
|
@@ -232,12 +202,6 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
232
202
|
*/
|
|
233
203
|
RetryAfterSeconds?: number;
|
|
234
204
|
}
|
|
235
|
-
export declare namespace ThrottlingException {
|
|
236
|
-
/**
|
|
237
|
-
* @internal
|
|
238
|
-
*/
|
|
239
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
240
|
-
}
|
|
241
205
|
/**
|
|
242
206
|
* <p> The field associated with the validation exception. </p>
|
|
243
207
|
*/
|
|
@@ -261,7 +225,9 @@ export declare namespace ValidationExceptionField {
|
|
|
261
225
|
export declare enum ValidationExceptionReason {
|
|
262
226
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
263
227
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
228
|
+
INVALID_PARAMETER_COMBINATION = "INVALID_PARAMETER_COMBINATION",
|
|
264
229
|
OTHER = "OTHER",
|
|
230
|
+
PARAMETER_INCONSISTENT_WITH_SERVICE_STATE = "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
|
|
265
231
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
|
|
266
232
|
}
|
|
267
233
|
/**
|
|
@@ -284,12 +250,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
284
250
|
*/
|
|
285
251
|
Fields?: ValidationExceptionField[];
|
|
286
252
|
}
|
|
287
|
-
export declare namespace ValidationException {
|
|
288
|
-
/**
|
|
289
|
-
* @internal
|
|
290
|
-
*/
|
|
291
|
-
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
292
|
-
}
|
|
293
253
|
/**
|
|
294
254
|
* <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
|
|
295
255
|
* is different from <code>AnomalyTimeRange</code>, which specifies the time range when
|
|
@@ -311,13 +271,35 @@ export declare namespace AnomalyReportedTimeRange {
|
|
|
311
271
|
*/
|
|
312
272
|
const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
|
|
313
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in
|
|
276
|
+
* the generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates
|
|
277
|
+
* and insight with details about the anomalous behavior and suggestions about how to correct the
|
|
278
|
+
* problem.</p>
|
|
279
|
+
*/
|
|
280
|
+
export interface AnomalyResource {
|
|
281
|
+
/**
|
|
282
|
+
* <p>The name of the Amazon Web Services resource.</p>
|
|
283
|
+
*/
|
|
284
|
+
Name?: string;
|
|
285
|
+
/**
|
|
286
|
+
* <p>The type of the Amazon Web Services resource.</p>
|
|
287
|
+
*/
|
|
288
|
+
Type?: string;
|
|
289
|
+
}
|
|
290
|
+
export declare namespace AnomalyResource {
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
294
|
+
const filterSensitiveLog: (obj: AnomalyResource) => any;
|
|
295
|
+
}
|
|
314
296
|
export declare enum AnomalySeverity {
|
|
315
297
|
HIGH = "HIGH",
|
|
316
298
|
LOW = "LOW",
|
|
317
299
|
MEDIUM = "MEDIUM"
|
|
318
300
|
}
|
|
319
301
|
/**
|
|
320
|
-
* <p> The dimension of
|
|
302
|
+
* <p> The dimension of am Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
|
|
321
303
|
* your account for operational problems and anomalous behavior. A dimension is a
|
|
322
304
|
* name/value pair that is part of the identity of a metric. A metric can have up to 10
|
|
323
305
|
* dimensions. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension">Dimensions</a> in the <i>Amazon CloudWatch User Guide</i>. </p>
|
|
@@ -368,12 +350,12 @@ export declare namespace TimestampMetricValuePair {
|
|
|
368
350
|
*/
|
|
369
351
|
export interface CloudWatchMetricsDataSummary {
|
|
370
352
|
/**
|
|
371
|
-
* <p>This is a list of
|
|
353
|
+
* <p>This is a list of Amazon CloudWatch metric values at given timestamp.</p>
|
|
372
354
|
*/
|
|
373
355
|
TimestampMetricValuePairList?: TimestampMetricValuePair[];
|
|
374
356
|
/**
|
|
375
|
-
* <p>This is enum of the status showing whether the metric value pair list has
|
|
376
|
-
*
|
|
357
|
+
* <p>This is an enum of the status showing whether the metric value pair list has partial or
|
|
358
|
+
* complete data, or if there was an error.</p>
|
|
377
359
|
*/
|
|
378
360
|
StatusCode?: CloudWatchMetricDataStatusCode | string;
|
|
379
361
|
}
|
|
@@ -435,16 +417,429 @@ export declare namespace CloudWatchMetricsDetail {
|
|
|
435
417
|
*/
|
|
436
418
|
const filterSensitiveLog: (obj: CloudWatchMetricsDetail) => any;
|
|
437
419
|
}
|
|
420
|
+
/**
|
|
421
|
+
* <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
|
|
422
|
+
* <code>db.sql</code> dimension group consists of the following dimensions:
|
|
423
|
+
* <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>, and
|
|
424
|
+
* <code>db.sql.tokenized_id</code>.</p>
|
|
425
|
+
* <note>
|
|
426
|
+
* <p>Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements,
|
|
427
|
+
* only the first 500 bytes are returned.</p>
|
|
428
|
+
* </note>
|
|
429
|
+
*
|
|
430
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
431
|
+
* dimensions of database load based on data captured from a running DB instance.
|
|
432
|
+
* DB load is measured as average active sessions. Performance Insights provides the
|
|
433
|
+
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
434
|
+
* provides DB load data for each time point in the queried time range. Each time point
|
|
435
|
+
* decomposes overall load in relation to the requested dimensions, measured at that
|
|
436
|
+
* time point. Examples include SQL, Wait event, User, and Host. </p>
|
|
437
|
+
*
|
|
438
|
+
* <ul>
|
|
439
|
+
* <li>
|
|
440
|
+
* <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
|
|
441
|
+
* </p>
|
|
442
|
+
* </li>
|
|
443
|
+
* <li>
|
|
444
|
+
* <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
|
|
445
|
+
* </p>
|
|
446
|
+
* </li>
|
|
447
|
+
* </ul>
|
|
448
|
+
*/
|
|
449
|
+
export interface PerformanceInsightsMetricDimensionGroup {
|
|
450
|
+
/**
|
|
451
|
+
* <p>The name of the dimension group. Its valid values are:</p>
|
|
452
|
+
*
|
|
453
|
+
* <ul>
|
|
454
|
+
* <li>
|
|
455
|
+
* <p>
|
|
456
|
+
* <code>db</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS PostgreSQL,
|
|
457
|
+
* Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
458
|
+
* </li>
|
|
459
|
+
* <li>
|
|
460
|
+
* <p>
|
|
461
|
+
* <code>db.application</code> - The name of the application that is connected to the database (only Aurora
|
|
462
|
+
* PostgreSQL and RDS PostgreSQL)</p>
|
|
463
|
+
* </li>
|
|
464
|
+
* <li>
|
|
465
|
+
* <p>
|
|
466
|
+
* <code>db.host</code> - The host name of the connected client (all engines)</p>
|
|
467
|
+
* </li>
|
|
468
|
+
* <li>
|
|
469
|
+
* <p>
|
|
470
|
+
* <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
471
|
+
* </li>
|
|
472
|
+
* <li>
|
|
473
|
+
* <p>
|
|
474
|
+
* <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
|
|
475
|
+
* </li>
|
|
476
|
+
* <li>
|
|
477
|
+
* <p>
|
|
478
|
+
* <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
|
|
479
|
+
* </li>
|
|
480
|
+
* <li>
|
|
481
|
+
* <p>
|
|
482
|
+
* <code>db.wait_event</code> - The event for which the database backend is waiting (all engines)</p>
|
|
483
|
+
* </li>
|
|
484
|
+
* <li>
|
|
485
|
+
* <p>
|
|
486
|
+
* <code>db.wait_event_type</code> - The type of event for which the database backend is waiting (all engines)</p>
|
|
487
|
+
* </li>
|
|
488
|
+
* <li>
|
|
489
|
+
* <p>
|
|
490
|
+
* <code>db.user</code> - The user logged in to the database (all engines)</p>
|
|
491
|
+
* </li>
|
|
492
|
+
* </ul>
|
|
493
|
+
*/
|
|
494
|
+
Group?: string;
|
|
495
|
+
/**
|
|
496
|
+
* <p>A list of specific dimensions from a dimension group. If this parameter is not present,
|
|
497
|
+
* then it signifies that all of the dimensions in the group were requested or are present in
|
|
498
|
+
* the response.</p>
|
|
499
|
+
* <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
|
|
500
|
+
*
|
|
501
|
+
* <ul>
|
|
502
|
+
* <li>
|
|
503
|
+
* <p>
|
|
504
|
+
* <code>db.application.name</code> - The name of the application that is connected to the database (only
|
|
505
|
+
* Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
506
|
+
* </li>
|
|
507
|
+
* <li>
|
|
508
|
+
* <p>
|
|
509
|
+
* <code>db.host.id</code> - The host ID of the connected client (all engines)</p>
|
|
510
|
+
* </li>
|
|
511
|
+
* <li>
|
|
512
|
+
* <p>
|
|
513
|
+
* <code>db.host.name</code> - The host name of the connected client (all engines)</p>
|
|
514
|
+
* </li>
|
|
515
|
+
* <li>
|
|
516
|
+
* <p>
|
|
517
|
+
* <code>db.name</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS
|
|
518
|
+
* PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
519
|
+
* </li>
|
|
520
|
+
* <li>
|
|
521
|
+
* <p>
|
|
522
|
+
* <code>db.session_type.name</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
523
|
+
* </li>
|
|
524
|
+
* <li>
|
|
525
|
+
* <p>
|
|
526
|
+
* <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
|
|
527
|
+
* </li>
|
|
528
|
+
* <li>
|
|
529
|
+
* <p>
|
|
530
|
+
* <code>db.sql.db_id</code> - The SQL ID generated by the database (all engines)</p>
|
|
531
|
+
* </li>
|
|
532
|
+
* <li>
|
|
533
|
+
* <p>
|
|
534
|
+
* <code>db.sql.statement</code> - The SQL text that is being executed (all engines)</p>
|
|
535
|
+
* </li>
|
|
536
|
+
* <li>
|
|
537
|
+
* <p>
|
|
538
|
+
* <code>db.sql.tokenized_id</code>
|
|
539
|
+
* </p>
|
|
540
|
+
* </li>
|
|
541
|
+
* <li>
|
|
542
|
+
* <p>
|
|
543
|
+
* <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all engines)</p>
|
|
544
|
+
* </li>
|
|
545
|
+
* <li>
|
|
546
|
+
* <p>
|
|
547
|
+
* <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database (all engines)</p>
|
|
548
|
+
* </li>
|
|
549
|
+
* <li>
|
|
550
|
+
* <p>
|
|
551
|
+
* <code>db.sql_tokenized.statement</code> - The SQL digest text (all engines)</p>
|
|
552
|
+
* </li>
|
|
553
|
+
* <li>
|
|
554
|
+
* <p>
|
|
555
|
+
* <code>db.user.id</code> - The ID of the user logged in to the database (all engines)</p>
|
|
556
|
+
* </li>
|
|
557
|
+
* <li>
|
|
558
|
+
* <p>
|
|
559
|
+
* <code>db.user.name</code> - The name of the user logged in to the database (all engines)</p>
|
|
560
|
+
* </li>
|
|
561
|
+
* <li>
|
|
562
|
+
* <p>
|
|
563
|
+
* <code>db.wait_event.name</code> - The event for which the backend is waiting (all engines)</p>
|
|
564
|
+
* </li>
|
|
565
|
+
* <li>
|
|
566
|
+
* <p>
|
|
567
|
+
* <code>db.wait_event.type</code> - The type of event for which the backend is waiting (all engines)</p>
|
|
568
|
+
* </li>
|
|
569
|
+
* <li>
|
|
570
|
+
* <p>
|
|
571
|
+
* <code>db.wait_event_type.name</code> - The name of the event type for which the backend is waiting (all
|
|
572
|
+
* engines)</p>
|
|
573
|
+
* </li>
|
|
574
|
+
* </ul>
|
|
575
|
+
*/
|
|
576
|
+
Dimensions?: string[];
|
|
577
|
+
/**
|
|
578
|
+
* <p>The maximum number of items to fetch for this dimension group.</p>
|
|
579
|
+
*/
|
|
580
|
+
Limit?: number;
|
|
581
|
+
}
|
|
582
|
+
export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
583
|
+
/**
|
|
584
|
+
* @internal
|
|
585
|
+
*/
|
|
586
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* <p>A single query to be processed. Use these parameters to
|
|
590
|
+
* query the Performance Insights <code>GetResourceMetrics</code> API to retrieve the metrics
|
|
591
|
+
* for an anomaly. For more information, see <code>
|
|
592
|
+
* <a href="https://docs.aws.amazon.com/performance-insights/latest/APIReference/API_GetResourceMetrics.html">GetResourceMetrics</a>
|
|
593
|
+
* </code>
|
|
594
|
+
* in the <i>Amazon RDS Performance Insights API Reference</i>.</p>
|
|
595
|
+
*
|
|
596
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
597
|
+
* dimensions of database load based on data captured from a running DB instance.
|
|
598
|
+
* DB load is measured as average active sessions. Performance Insights provides the
|
|
599
|
+
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
600
|
+
* provides DB load data for each time point in the queried time range. Each time point
|
|
601
|
+
* decomposes overall load in relation to the requested dimensions, measured at that
|
|
602
|
+
* time point. Examples include SQL, Wait event, User, and Host. </p>
|
|
603
|
+
*
|
|
604
|
+
* <ul>
|
|
605
|
+
* <li>
|
|
606
|
+
* <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
|
|
607
|
+
* </p>
|
|
608
|
+
* </li>
|
|
609
|
+
* <li>
|
|
610
|
+
* <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
|
|
611
|
+
* </p>
|
|
612
|
+
* </li>
|
|
613
|
+
* </ul>
|
|
614
|
+
*/
|
|
615
|
+
export interface PerformanceInsightsMetricQuery {
|
|
616
|
+
/**
|
|
617
|
+
* <p>The name of the meteric used used when querying an Performance Insights <code>GetResourceMetrics</code> API for
|
|
618
|
+
* anomaly metrics.</p>
|
|
619
|
+
*
|
|
620
|
+
* <p>Valid values for <code>Metric</code> are:</p>
|
|
621
|
+
*
|
|
622
|
+
* <ul>
|
|
623
|
+
* <li>
|
|
624
|
+
* <p>
|
|
625
|
+
* <code>db.load.avg</code> - a scaled representation of the number of active sessions
|
|
626
|
+
* for the database engine.</p>
|
|
627
|
+
* </li>
|
|
628
|
+
* <li>
|
|
629
|
+
* <p>
|
|
630
|
+
* <code>db.sampledload.avg</code> - the raw number of active sessions for the
|
|
631
|
+
* database engine.</p>
|
|
632
|
+
* </li>
|
|
633
|
+
* </ul>
|
|
634
|
+
* <p>If the number of active sessions is less than an internal Performance Insights threshold, <code>db.load.avg</code> and <code>db.sampledload.avg</code>
|
|
635
|
+
* are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with <code>db.load.avg</code>
|
|
636
|
+
* showing the scaled values, <code>db.sampledload.avg</code> showing the raw values, and <code>db.sampledload.avg</code> less than <code>db.load.avg</code>.
|
|
637
|
+
* For most use cases, you can query <code>db.load.avg</code> only. </p>
|
|
638
|
+
*/
|
|
639
|
+
Metric?: string;
|
|
640
|
+
/**
|
|
641
|
+
* <p>The specification for how to aggregate the data points from a Performance Insights <code>GetResourceMetrics</code> API query. The
|
|
642
|
+
* Performance Insights query returns all of the dimensions within that group,
|
|
643
|
+
* unless you provide the names of specific dimensions within that group. You can also request
|
|
644
|
+
* that Performance Insights return a limited number of values for a dimension.</p>
|
|
645
|
+
*/
|
|
646
|
+
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
647
|
+
/**
|
|
648
|
+
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query. Restrictions:</p>
|
|
649
|
+
* <ul>
|
|
650
|
+
* <li>
|
|
651
|
+
* <p>Any number of filters by the same dimension, as specified in the <code>GroupBy</code> parameter.</p>
|
|
652
|
+
* </li>
|
|
653
|
+
* <li>
|
|
654
|
+
* <p>A single filter for any other dimension in this dimension group.</p>
|
|
655
|
+
* </li>
|
|
656
|
+
* </ul>
|
|
657
|
+
*/
|
|
658
|
+
Filter?: {
|
|
659
|
+
[key: string]: string;
|
|
660
|
+
};
|
|
661
|
+
}
|
|
662
|
+
export declare namespace PerformanceInsightsMetricQuery {
|
|
663
|
+
/**
|
|
664
|
+
* @internal
|
|
665
|
+
*/
|
|
666
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricQuery) => any;
|
|
667
|
+
}
|
|
668
|
+
/**
|
|
669
|
+
* <p>Information about a reference metric used to evaluate Performance Insights.</p>
|
|
670
|
+
*/
|
|
671
|
+
export interface PerformanceInsightsReferenceMetric {
|
|
672
|
+
/**
|
|
673
|
+
* <p>A query to be processed on the metric.</p>
|
|
674
|
+
*/
|
|
675
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
676
|
+
}
|
|
677
|
+
export declare namespace PerformanceInsightsReferenceMetric {
|
|
678
|
+
/**
|
|
679
|
+
* @internal
|
|
680
|
+
*/
|
|
681
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceMetric) => any;
|
|
682
|
+
}
|
|
683
|
+
/**
|
|
684
|
+
* <p>A reference value to compare Performance Insights metrics against to determine if the metrics
|
|
685
|
+
* demonstrate anomalous behavior.</p>
|
|
686
|
+
*/
|
|
687
|
+
export interface PerformanceInsightsReferenceScalar {
|
|
688
|
+
/**
|
|
689
|
+
* <p>The reference value.</p>
|
|
690
|
+
*/
|
|
691
|
+
Value?: number;
|
|
692
|
+
}
|
|
693
|
+
export declare namespace PerformanceInsightsReferenceScalar {
|
|
694
|
+
/**
|
|
695
|
+
* @internal
|
|
696
|
+
*/
|
|
697
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
|
|
698
|
+
}
|
|
699
|
+
/**
|
|
700
|
+
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its console along with the actual metrics it
|
|
701
|
+
* analyzed. Compare these reference values to your actual metrics to help you understand anomalous behavior that DevOps Guru detected.</p>
|
|
702
|
+
*/
|
|
703
|
+
export interface PerformanceInsightsReferenceComparisonValues {
|
|
704
|
+
/**
|
|
705
|
+
* <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This reference value is used
|
|
706
|
+
* to determine if an actual metric value should be considered anomalous.</p>
|
|
707
|
+
*/
|
|
708
|
+
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
709
|
+
/**
|
|
710
|
+
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used
|
|
711
|
+
* to determine if an actual metric should be considered anomalous.</p>
|
|
712
|
+
*/
|
|
713
|
+
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
714
|
+
}
|
|
715
|
+
export declare namespace PerformanceInsightsReferenceComparisonValues {
|
|
716
|
+
/**
|
|
717
|
+
* @internal
|
|
718
|
+
*/
|
|
719
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
|
|
720
|
+
}
|
|
721
|
+
/**
|
|
722
|
+
* <p>Reference data used to evaluate Performance Insights to determine if its performance
|
|
723
|
+
* is anomalous or not.</p>
|
|
724
|
+
*/
|
|
725
|
+
export interface PerformanceInsightsReferenceData {
|
|
726
|
+
/**
|
|
727
|
+
* <p>The name of the reference data.</p>
|
|
728
|
+
*/
|
|
729
|
+
Name?: string;
|
|
730
|
+
/**
|
|
731
|
+
* <p>The specific reference values used to evaluate the Performance Insights. For more information, see
|
|
732
|
+
* <code>
|
|
733
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceComparisonValues.html">PerformanceInsightsReferenceComparisonValues</a>
|
|
734
|
+
* </code>.
|
|
735
|
+
* </p>
|
|
736
|
+
*/
|
|
737
|
+
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
738
|
+
}
|
|
739
|
+
export declare namespace PerformanceInsightsReferenceData {
|
|
740
|
+
/**
|
|
741
|
+
* @internal
|
|
742
|
+
*/
|
|
743
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceData) => any;
|
|
744
|
+
}
|
|
745
|
+
/**
|
|
746
|
+
* <p>A statistic in a Performance Insights collection.</p>
|
|
747
|
+
*/
|
|
748
|
+
export interface PerformanceInsightsStat {
|
|
749
|
+
/**
|
|
750
|
+
* <p>The statistic type.</p>
|
|
751
|
+
*/
|
|
752
|
+
Type?: string;
|
|
753
|
+
/**
|
|
754
|
+
* <p>The value of the statistic.</p>
|
|
755
|
+
*/
|
|
756
|
+
Value?: number;
|
|
757
|
+
}
|
|
758
|
+
export declare namespace PerformanceInsightsStat {
|
|
759
|
+
/**
|
|
760
|
+
* @internal
|
|
761
|
+
*/
|
|
762
|
+
const filterSensitiveLog: (obj: PerformanceInsightsStat) => any;
|
|
763
|
+
}
|
|
764
|
+
/**
|
|
765
|
+
* <p>Details about Performance Insights metrics.</p>
|
|
766
|
+
*
|
|
767
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
768
|
+
* dimensions of database load based on data captured from a running DB instance.
|
|
769
|
+
* DB load is measured as average active sessions. Performance Insights provides the
|
|
770
|
+
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
771
|
+
* provides DB load data for each time point in the queried time range. Each time point
|
|
772
|
+
* decomposes overall load in relation to the requested dimensions, measured at that
|
|
773
|
+
* time point. Examples include SQL, Wait event, User, and Host. </p>
|
|
774
|
+
*
|
|
775
|
+
* <ul>
|
|
776
|
+
* <li>
|
|
777
|
+
* <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
|
|
778
|
+
* </p>
|
|
779
|
+
* </li>
|
|
780
|
+
* <li>
|
|
781
|
+
* <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
|
|
782
|
+
* </p>
|
|
783
|
+
* </li>
|
|
784
|
+
* </ul>
|
|
785
|
+
*/
|
|
786
|
+
export interface PerformanceInsightsMetricsDetail {
|
|
787
|
+
/**
|
|
788
|
+
* <p>The name used for a specific Performance Insights metric.</p>
|
|
789
|
+
*/
|
|
790
|
+
MetricDisplayName?: string;
|
|
791
|
+
/**
|
|
792
|
+
* <p>The unit of measure for a metric. For example, a session or a process.</p>
|
|
793
|
+
*/
|
|
794
|
+
Unit?: string;
|
|
795
|
+
/**
|
|
796
|
+
* <p>A single query to be processed for the metric. For more information, see
|
|
797
|
+
* <code>
|
|
798
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
|
|
799
|
+
* </code>.</p>
|
|
800
|
+
*/
|
|
801
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
802
|
+
/**
|
|
803
|
+
* <p>
|
|
804
|
+
* For more information, see
|
|
805
|
+
* <code>
|
|
806
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
|
|
807
|
+
* </code>.
|
|
808
|
+
* </p>
|
|
809
|
+
*/
|
|
810
|
+
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
811
|
+
/**
|
|
812
|
+
* <p>The metric statistics during the anomalous period detected by DevOps Guru;</p>
|
|
813
|
+
*/
|
|
814
|
+
StatsAtAnomaly?: PerformanceInsightsStat[];
|
|
815
|
+
/**
|
|
816
|
+
* <p>Typical metric statistics that are not considered anomalous. When DevOps Guru analyzes
|
|
817
|
+
* metrics, it compares them to <code>StatsAtBaseline</code> to help determine if they are
|
|
818
|
+
* anomalous.</p>
|
|
819
|
+
*/
|
|
820
|
+
StatsAtBaseline?: PerformanceInsightsStat[];
|
|
821
|
+
}
|
|
822
|
+
export declare namespace PerformanceInsightsMetricsDetail {
|
|
823
|
+
/**
|
|
824
|
+
* @internal
|
|
825
|
+
*/
|
|
826
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricsDetail) => any;
|
|
827
|
+
}
|
|
438
828
|
/**
|
|
439
829
|
* <p> Details about the source of the anomalous operational data that triggered the
|
|
440
|
-
* anomaly
|
|
830
|
+
* anomaly.</p>
|
|
441
831
|
*/
|
|
442
832
|
export interface AnomalySourceDetails {
|
|
443
833
|
/**
|
|
444
|
-
* <p>
|
|
445
|
-
* about
|
|
834
|
+
* <p>An array of <code>CloudWatchMetricsDetail</code> objects that contain information
|
|
835
|
+
* about analyzed CloudWatch metrics that show anomalous behavior. </p>
|
|
446
836
|
*/
|
|
447
837
|
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
838
|
+
/**
|
|
839
|
+
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain information
|
|
840
|
+
* about analyzed Performance Insights metrics that show anomalous behavior.</p>
|
|
841
|
+
*/
|
|
842
|
+
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
448
843
|
}
|
|
449
844
|
export declare namespace AnomalySourceDetails {
|
|
450
845
|
/**
|
|
@@ -477,6 +872,10 @@ export declare namespace AnomalyTimeRange {
|
|
|
477
872
|
*/
|
|
478
873
|
const filterSensitiveLog: (obj: AnomalyTimeRange) => any;
|
|
479
874
|
}
|
|
875
|
+
export declare enum AnomalyType {
|
|
876
|
+
CAUSAL = "CAUSAL",
|
|
877
|
+
CONTEXTUAL = "CONTEXTUAL"
|
|
878
|
+
}
|
|
480
879
|
export interface DescribeAccountHealthRequest {
|
|
481
880
|
}
|
|
482
881
|
export declare namespace DescribeAccountHealthRequest {
|
|
@@ -611,10 +1010,82 @@ export declare namespace CloudFormationCollection {
|
|
|
611
1010
|
*/
|
|
612
1011
|
const filterSensitiveLog: (obj: CloudFormationCollection) => any;
|
|
613
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
* <p>A collection of Amazon Web Services stags.</p>
|
|
1015
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1016
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1017
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1018
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
1019
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
1020
|
+
* best practices</a> whitepaper. </p>
|
|
1021
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
1022
|
+
* <ul>
|
|
1023
|
+
* <li>
|
|
1024
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
1025
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
1026
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
1027
|
+
* </li>
|
|
1028
|
+
* <li>
|
|
1029
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
1030
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
1031
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
1032
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1033
|
+
* case-sensitive.</p>
|
|
1034
|
+
* </li>
|
|
1035
|
+
* </ul>
|
|
1036
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
1037
|
+
* <important>
|
|
1038
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1039
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1040
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1041
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1042
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1043
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1044
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1045
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1046
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1047
|
+
* </important>
|
|
1048
|
+
*/
|
|
1049
|
+
export interface TagCollection {
|
|
1050
|
+
/**
|
|
1051
|
+
* <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
|
|
1052
|
+
* DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
|
|
1053
|
+
* up your DevOps Guru application and analysis boundary.</p>
|
|
1054
|
+
* <important>
|
|
1055
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1056
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1057
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1058
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1059
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1060
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1061
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1062
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1063
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1064
|
+
* </important>
|
|
1065
|
+
*/
|
|
1066
|
+
AppBoundaryKey: string | undefined;
|
|
1067
|
+
/**
|
|
1068
|
+
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
1069
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1070
|
+
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1071
|
+
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1072
|
+
* Omitting the tag <i>value</i> is the same as using an empty
|
|
1073
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1074
|
+
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
1075
|
+
*/
|
|
1076
|
+
TagValues: string[] | undefined;
|
|
1077
|
+
}
|
|
1078
|
+
export declare namespace TagCollection {
|
|
1079
|
+
/**
|
|
1080
|
+
* @internal
|
|
1081
|
+
*/
|
|
1082
|
+
const filterSensitiveLog: (obj: TagCollection) => any;
|
|
1083
|
+
}
|
|
614
1084
|
/**
|
|
615
1085
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
616
|
-
* The
|
|
617
|
-
*
|
|
1086
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1087
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1088
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
618
1089
|
*/
|
|
619
1090
|
export interface ResourceCollection {
|
|
620
1091
|
/**
|
|
@@ -622,6 +1093,43 @@ export interface ResourceCollection {
|
|
|
622
1093
|
* DevOps Guru analyzes. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
623
1094
|
*/
|
|
624
1095
|
CloudFormation?: CloudFormationCollection;
|
|
1096
|
+
/**
|
|
1097
|
+
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1098
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1099
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1100
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1101
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
1102
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
1103
|
+
* best practices</a> whitepaper. </p>
|
|
1104
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
1105
|
+
* <ul>
|
|
1106
|
+
* <li>
|
|
1107
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
1108
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
1109
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
1110
|
+
* </li>
|
|
1111
|
+
* <li>
|
|
1112
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
1113
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
1114
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
1115
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1116
|
+
* case-sensitive.</p>
|
|
1117
|
+
* </li>
|
|
1118
|
+
* </ul>
|
|
1119
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
1120
|
+
* <important>
|
|
1121
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1122
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1123
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1124
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1125
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1126
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1127
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1128
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1129
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1130
|
+
* </important>
|
|
1131
|
+
*/
|
|
1132
|
+
Tags?: TagCollection[];
|
|
625
1133
|
}
|
|
626
1134
|
export declare namespace ResourceCollection {
|
|
627
1135
|
/**
|
|
@@ -639,7 +1147,10 @@ export interface ProactiveAnomaly {
|
|
|
639
1147
|
*/
|
|
640
1148
|
Id?: string;
|
|
641
1149
|
/**
|
|
642
|
-
* <p>
|
|
1150
|
+
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
1151
|
+
* an insight determine that insight's severity. For more information, see
|
|
1152
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1153
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
643
1154
|
*/
|
|
644
1155
|
Severity?: AnomalySeverity | string;
|
|
645
1156
|
/**
|
|
@@ -658,7 +1169,7 @@ export interface ProactiveAnomaly {
|
|
|
658
1169
|
AnomalyTimeRange?: AnomalyTimeRange;
|
|
659
1170
|
/**
|
|
660
1171
|
* <p>
|
|
661
|
-
*
|
|
1172
|
+
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
662
1173
|
* </p>
|
|
663
1174
|
*/
|
|
664
1175
|
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
@@ -679,8 +1190,9 @@ export interface ProactiveAnomaly {
|
|
|
679
1190
|
AssociatedInsightId?: string;
|
|
680
1191
|
/**
|
|
681
1192
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
682
|
-
* The
|
|
683
|
-
*
|
|
1193
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1194
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1195
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
684
1196
|
*/
|
|
685
1197
|
ResourceCollection?: ResourceCollection;
|
|
686
1198
|
/**
|
|
@@ -705,7 +1217,10 @@ export interface ReactiveAnomaly {
|
|
|
705
1217
|
*/
|
|
706
1218
|
Id?: string;
|
|
707
1219
|
/**
|
|
708
|
-
* <p>The severity of the anomaly.
|
|
1220
|
+
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
1221
|
+
* an insight determine that insight's severity. For more information, see
|
|
1222
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1223
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
709
1224
|
*/
|
|
710
1225
|
Severity?: AnomalySeverity | string;
|
|
711
1226
|
/**
|
|
@@ -720,7 +1235,7 @@ export interface ReactiveAnomaly {
|
|
|
720
1235
|
AnomalyTimeRange?: AnomalyTimeRange;
|
|
721
1236
|
/**
|
|
722
1237
|
* <p>
|
|
723
|
-
*
|
|
1238
|
+
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
724
1239
|
* </p>
|
|
725
1240
|
*/
|
|
726
1241
|
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
@@ -736,10 +1251,42 @@ export interface ReactiveAnomaly {
|
|
|
736
1251
|
AssociatedInsightId?: string;
|
|
737
1252
|
/**
|
|
738
1253
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
739
|
-
* The
|
|
740
|
-
*
|
|
1254
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1255
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1256
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
741
1257
|
*/
|
|
742
1258
|
ResourceCollection?: ResourceCollection;
|
|
1259
|
+
/**
|
|
1260
|
+
* <p>The type of the reactive anomaly. It can be one of the following types.</p>
|
|
1261
|
+
* <ul>
|
|
1262
|
+
* <li>
|
|
1263
|
+
* <p>
|
|
1264
|
+
* <code>CAUSAL</code> - the anomaly can cause a new insight.</p>
|
|
1265
|
+
* </li>
|
|
1266
|
+
* <li>
|
|
1267
|
+
* <p>
|
|
1268
|
+
* <code>CONTEXTUAL</code> - the anomaly contains additional information about an insight or its causal anomaly.</p>
|
|
1269
|
+
* </li>
|
|
1270
|
+
* </ul>
|
|
1271
|
+
*/
|
|
1272
|
+
Type?: AnomalyType | string;
|
|
1273
|
+
/**
|
|
1274
|
+
* <p>The name of the reactive anomaly.</p>
|
|
1275
|
+
*/
|
|
1276
|
+
Name?: string;
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>A description of the reactive anomaly.</p>
|
|
1279
|
+
*/
|
|
1280
|
+
Description?: string;
|
|
1281
|
+
/**
|
|
1282
|
+
* <p>The ID of the causal anomaly that is associated with this
|
|
1283
|
+
* reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
|
|
1284
|
+
*/
|
|
1285
|
+
CausalAnomalyId?: string;
|
|
1286
|
+
/**
|
|
1287
|
+
* <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
|
|
1288
|
+
*/
|
|
1289
|
+
AnomalyResources?: AnomalyResource[];
|
|
743
1290
|
}
|
|
744
1291
|
export declare namespace ReactiveAnomaly {
|
|
745
1292
|
/**
|
|
@@ -749,11 +1296,11 @@ export declare namespace ReactiveAnomaly {
|
|
|
749
1296
|
}
|
|
750
1297
|
export interface DescribeAnomalyResponse {
|
|
751
1298
|
/**
|
|
752
|
-
* <p> A <code>
|
|
1299
|
+
* <p> A <code>ProactiveAnomaly</code> object that represents the requested anomaly. </p>
|
|
753
1300
|
*/
|
|
754
1301
|
ProactiveAnomaly?: ProactiveAnomaly;
|
|
755
1302
|
/**
|
|
756
|
-
* <p> A <code>
|
|
1303
|
+
* <p> A <code>ReactiveAnomaly</code> object that represents the requested anomaly. </p>
|
|
757
1304
|
*/
|
|
758
1305
|
ReactiveAnomaly?: ReactiveAnomaly;
|
|
759
1306
|
}
|
|
@@ -872,7 +1419,9 @@ export interface ProactiveInsight {
|
|
|
872
1419
|
*/
|
|
873
1420
|
Name?: string;
|
|
874
1421
|
/**
|
|
875
|
-
* <p>The severity of the
|
|
1422
|
+
* <p>The severity of the insight. For more information, see
|
|
1423
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1424
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
876
1425
|
*/
|
|
877
1426
|
Severity?: InsightSeverity | string;
|
|
878
1427
|
/**
|
|
@@ -891,8 +1440,9 @@ export interface ProactiveInsight {
|
|
|
891
1440
|
PredictionTimeRange?: PredictionTimeRange;
|
|
892
1441
|
/**
|
|
893
1442
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
894
|
-
* The
|
|
895
|
-
*
|
|
1443
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1444
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1445
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
896
1446
|
*/
|
|
897
1447
|
ResourceCollection?: ResourceCollection;
|
|
898
1448
|
/**
|
|
@@ -921,7 +1471,9 @@ export interface ReactiveInsight {
|
|
|
921
1471
|
*/
|
|
922
1472
|
Name?: string;
|
|
923
1473
|
/**
|
|
924
|
-
* <p>
|
|
1474
|
+
* <p>The severity of the insight. For more information, see
|
|
1475
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1476
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
925
1477
|
*/
|
|
926
1478
|
Severity?: InsightSeverity | string;
|
|
927
1479
|
/**
|
|
@@ -935,8 +1487,9 @@ export interface ReactiveInsight {
|
|
|
935
1487
|
InsightTimeRange?: InsightTimeRange;
|
|
936
1488
|
/**
|
|
937
1489
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
938
|
-
* The
|
|
939
|
-
*
|
|
1490
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1491
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1492
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
940
1493
|
*/
|
|
941
1494
|
ResourceCollection?: ResourceCollection;
|
|
942
1495
|
/**
|
|
@@ -1060,13 +1613,15 @@ export declare namespace DescribeOrganizationOverviewResponse {
|
|
|
1060
1613
|
export declare enum OrganizationResourceCollectionType {
|
|
1061
1614
|
AWS_ACCOUNT = "AWS_ACCOUNT",
|
|
1062
1615
|
AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
|
|
1063
|
-
AWS_SERVICE = "AWS_SERVICE"
|
|
1616
|
+
AWS_SERVICE = "AWS_SERVICE",
|
|
1617
|
+
AWS_TAGS = "AWS_TAGS"
|
|
1064
1618
|
}
|
|
1065
1619
|
export interface DescribeOrganizationResourceCollectionHealthRequest {
|
|
1066
1620
|
/**
|
|
1067
1621
|
* <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
|
|
1068
|
-
* are defined. The
|
|
1069
|
-
*
|
|
1622
|
+
* are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1623
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1624
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1070
1625
|
*/
|
|
1071
1626
|
OrganizationResourceCollectionType: OrganizationResourceCollectionType | string | undefined;
|
|
1072
1627
|
/**
|
|
@@ -1208,10 +1763,55 @@ export declare namespace ServiceHealth {
|
|
|
1208
1763
|
*/
|
|
1209
1764
|
const filterSensitiveLog: (obj: ServiceHealth) => any;
|
|
1210
1765
|
}
|
|
1766
|
+
/**
|
|
1767
|
+
* <p> Information about the health of Amazon Web Services resources in your account that are specified by
|
|
1768
|
+
* an Amazon Web Services tag <i>key</i>. </p>
|
|
1769
|
+
*/
|
|
1770
|
+
export interface TagHealth {
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
|
|
1773
|
+
* DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
|
|
1774
|
+
* up your DevOps Guru application and analysis boundary.</p>
|
|
1775
|
+
* <important>
|
|
1776
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1777
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1778
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1779
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1780
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1781
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1782
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1783
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1784
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1785
|
+
* </important>
|
|
1786
|
+
*/
|
|
1787
|
+
AppBoundaryKey?: string;
|
|
1788
|
+
/**
|
|
1789
|
+
* <p>The value in an Amazon Web Services tag.</p>
|
|
1790
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1791
|
+
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1792
|
+
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1793
|
+
* Omitting the tag <i>value</i> is the same as using an empty
|
|
1794
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1795
|
+
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
1796
|
+
*/
|
|
1797
|
+
TagValue?: string;
|
|
1798
|
+
/**
|
|
1799
|
+
* <p>Information about the health of the Amazon Web Services resources in your account that are
|
|
1800
|
+
* specified by an Amazon Web Services tag, including the number of open proactive, open reactive
|
|
1801
|
+
* insights, and the Mean Time to Recover (MTTR) of closed insights. </p>
|
|
1802
|
+
*/
|
|
1803
|
+
Insight?: InsightHealth;
|
|
1804
|
+
}
|
|
1805
|
+
export declare namespace TagHealth {
|
|
1806
|
+
/**
|
|
1807
|
+
* @internal
|
|
1808
|
+
*/
|
|
1809
|
+
const filterSensitiveLog: (obj: TagHealth) => any;
|
|
1810
|
+
}
|
|
1211
1811
|
export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
1212
1812
|
/**
|
|
1213
1813
|
* <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
|
|
1214
|
-
*
|
|
1814
|
+
* <code>InsightHealthOverview</code> object with the requested system health
|
|
1215
1815
|
* information.</p>
|
|
1216
1816
|
*/
|
|
1217
1817
|
CloudFormation?: CloudFormationHealth[];
|
|
@@ -1229,6 +1829,42 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
1229
1829
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
1230
1830
|
*/
|
|
1231
1831
|
NextToken?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1834
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1835
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1836
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
1837
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
1838
|
+
* best practices</a> whitepaper. </p>
|
|
1839
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
1840
|
+
* <ul>
|
|
1841
|
+
* <li>
|
|
1842
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
1843
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
1844
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
1845
|
+
* </li>
|
|
1846
|
+
* <li>
|
|
1847
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
1848
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
1849
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
1850
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1851
|
+
* case-sensitive.</p>
|
|
1852
|
+
* </li>
|
|
1853
|
+
* </ul>
|
|
1854
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
1855
|
+
* <important>
|
|
1856
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1857
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1858
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1859
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1860
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1861
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1862
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1863
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1864
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1865
|
+
* </important>
|
|
1866
|
+
*/
|
|
1867
|
+
Tags?: TagHealth[];
|
|
1232
1868
|
}
|
|
1233
1869
|
export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
|
|
1234
1870
|
/**
|
|
@@ -1238,13 +1874,15 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
1238
1874
|
}
|
|
1239
1875
|
export declare enum ResourceCollectionType {
|
|
1240
1876
|
AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
|
|
1241
|
-
AWS_SERVICE = "AWS_SERVICE"
|
|
1877
|
+
AWS_SERVICE = "AWS_SERVICE",
|
|
1878
|
+
AWS_TAGS = "AWS_TAGS"
|
|
1242
1879
|
}
|
|
1243
1880
|
export interface DescribeResourceCollectionHealthRequest {
|
|
1244
1881
|
/**
|
|
1245
1882
|
* <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
|
|
1246
|
-
* are defined. The
|
|
1247
|
-
*
|
|
1883
|
+
* are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
1884
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
1885
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1248
1886
|
*/
|
|
1249
1887
|
ResourceCollectionType: ResourceCollectionType | string | undefined;
|
|
1250
1888
|
/**
|
|
@@ -1265,7 +1903,7 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
1265
1903
|
* <code>InsightHealthOverview</code> object with the requested system health
|
|
1266
1904
|
* information. </p>
|
|
1267
1905
|
*/
|
|
1268
|
-
CloudFormation
|
|
1906
|
+
CloudFormation?: CloudFormationHealth[];
|
|
1269
1907
|
/**
|
|
1270
1908
|
* <p>An array of <code>ServiceHealth</code> objects that describes the health of the Amazon Web Services
|
|
1271
1909
|
* services associated with the resources in the collection.</p>
|
|
@@ -1276,6 +1914,43 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
1276
1914
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
1277
1915
|
*/
|
|
1278
1916
|
NextToken?: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1919
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1920
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1921
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1922
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
1923
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
1924
|
+
* best practices</a> whitepaper. </p>
|
|
1925
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
1926
|
+
* <ul>
|
|
1927
|
+
* <li>
|
|
1928
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
1929
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
1930
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
1931
|
+
* </li>
|
|
1932
|
+
* <li>
|
|
1933
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
1934
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
1935
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
1936
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
1937
|
+
* case-sensitive.</p>
|
|
1938
|
+
* </li>
|
|
1939
|
+
* </ul>
|
|
1940
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
1941
|
+
* <important>
|
|
1942
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
1943
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
1944
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
1945
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
1946
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
1947
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
1948
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
1949
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
1950
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
1951
|
+
* </important>
|
|
1952
|
+
*/
|
|
1953
|
+
Tags?: TagHealth[];
|
|
1279
1954
|
}
|
|
1280
1955
|
export declare namespace DescribeResourceCollectionHealthResponse {
|
|
1281
1956
|
/**
|
|
@@ -1422,6 +2097,49 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
1422
2097
|
*/
|
|
1423
2098
|
const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
|
|
1424
2099
|
}
|
|
2100
|
+
/**
|
|
2101
|
+
* <p>Information about a collection of Amazon Web Services resources that are identified by an
|
|
2102
|
+
* Amazon Web Services tag. This collection of resources is used to create a monthly cost estimate
|
|
2103
|
+
* for DevOps Guru to analyze Amazon Web Services resources. The maximum number of tags you can specify for a
|
|
2104
|
+
* cost estimate is one. The estimate created is for the cost to analyze the Amazon Web Services
|
|
2105
|
+
* resources defined by the tag. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
|
|
2106
|
+
* <i>Amazon Web Services CloudFormation User Guide</i>.</p>
|
|
2107
|
+
*/
|
|
2108
|
+
export interface TagCostEstimationResourceCollectionFilter {
|
|
2109
|
+
/**
|
|
2110
|
+
* <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
|
|
2111
|
+
* DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
|
|
2112
|
+
* up your DevOps Guru application and analysis boundary.</p>
|
|
2113
|
+
* <important>
|
|
2114
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
2115
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
2116
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
2117
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
2118
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
2119
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
2120
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
2121
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
2122
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
2123
|
+
* </important>
|
|
2124
|
+
*/
|
|
2125
|
+
AppBoundaryKey: string | undefined;
|
|
2126
|
+
/**
|
|
2127
|
+
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2128
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2129
|
+
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2130
|
+
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2131
|
+
* Omitting the tag <i>value</i> is the same as using an empty
|
|
2132
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
2133
|
+
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
2134
|
+
*/
|
|
2135
|
+
TagValues: string[] | undefined;
|
|
2136
|
+
}
|
|
2137
|
+
export declare namespace TagCostEstimationResourceCollectionFilter {
|
|
2138
|
+
/**
|
|
2139
|
+
* @internal
|
|
2140
|
+
*/
|
|
2141
|
+
const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
|
|
2142
|
+
}
|
|
1425
2143
|
/**
|
|
1426
2144
|
* <p>Information about a filter used to specify which Amazon Web Services resources are analyzed to
|
|
1427
2145
|
* create a monthly DevOps Guru cost estimate. For more information,
|
|
@@ -1435,6 +2153,44 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
1435
2153
|
* used to create a monthly estimate for DevOps Guru.</p>
|
|
1436
2154
|
*/
|
|
1437
2155
|
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
2156
|
+
/**
|
|
2157
|
+
* <p>The Amazon Web Services tags used to filter the resource collection that is used for
|
|
2158
|
+
* a cost estimate.</p>
|
|
2159
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2160
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2161
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2162
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
2163
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
2164
|
+
* best practices</a> whitepaper. </p>
|
|
2165
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
2166
|
+
* <ul>
|
|
2167
|
+
* <li>
|
|
2168
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
2169
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
2170
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
2171
|
+
* </li>
|
|
2172
|
+
* <li>
|
|
2173
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
2174
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
2175
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
2176
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
2177
|
+
* case-sensitive.</p>
|
|
2178
|
+
* </li>
|
|
2179
|
+
* </ul>
|
|
2180
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
2181
|
+
* <important>
|
|
2182
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
2183
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
2184
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
2185
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
2186
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
2187
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
2188
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
2189
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
2190
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
2191
|
+
* </important>
|
|
2192
|
+
*/
|
|
2193
|
+
Tags?: TagCostEstimationResourceCollectionFilter[];
|
|
1438
2194
|
}
|
|
1439
2195
|
export declare namespace CostEstimationResourceCollectionFilter {
|
|
1440
2196
|
/**
|
|
@@ -1540,6 +2296,45 @@ export declare namespace CloudFormationCollectionFilter {
|
|
|
1540
2296
|
*/
|
|
1541
2297
|
const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
|
|
1542
2298
|
}
|
|
2299
|
+
/**
|
|
2300
|
+
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights generated from
|
|
2301
|
+
* only resources that contain the tags in the tag collection.</p>
|
|
2302
|
+
*/
|
|
2303
|
+
export interface TagCollectionFilter {
|
|
2304
|
+
/**
|
|
2305
|
+
* <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
|
|
2306
|
+
* DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
|
|
2307
|
+
* up your DevOps Guru application and analysis boundary.</p>
|
|
2308
|
+
* <important>
|
|
2309
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
2310
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
2311
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
2312
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
2313
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
2314
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
2315
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
2316
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
2317
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
2318
|
+
* </important>
|
|
2319
|
+
*/
|
|
2320
|
+
AppBoundaryKey: string | undefined;
|
|
2321
|
+
/**
|
|
2322
|
+
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2323
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2324
|
+
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2325
|
+
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2326
|
+
* Omitting the tag <i>value</i> is the same as using an empty
|
|
2327
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
2328
|
+
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
2329
|
+
*/
|
|
2330
|
+
TagValues: string[] | undefined;
|
|
2331
|
+
}
|
|
2332
|
+
export declare namespace TagCollectionFilter {
|
|
2333
|
+
/**
|
|
2334
|
+
* @internal
|
|
2335
|
+
*/
|
|
2336
|
+
const filterSensitiveLog: (obj: TagCollectionFilter) => any;
|
|
2337
|
+
}
|
|
1543
2338
|
/**
|
|
1544
2339
|
* <p> Information about a filter used to specify which Amazon Web Services resources are analyzed for
|
|
1545
2340
|
* anomalous behavior by DevOps Guru. </p>
|
|
@@ -1552,6 +2347,43 @@ export interface ResourceCollectionFilter {
|
|
|
1552
2347
|
* <i>Amazon Web Services CloudFormation User Guide</i>. </p>
|
|
1553
2348
|
*/
|
|
1554
2349
|
CloudFormation?: CloudFormationCollectionFilter;
|
|
2350
|
+
/**
|
|
2351
|
+
* <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
2352
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2353
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2354
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2355
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
2356
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
2357
|
+
* best practices</a> whitepaper. </p>
|
|
2358
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
2359
|
+
* <ul>
|
|
2360
|
+
* <li>
|
|
2361
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
2362
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
2363
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
2364
|
+
* </li>
|
|
2365
|
+
* <li>
|
|
2366
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
2367
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
2368
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
2369
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
2370
|
+
* case-sensitive.</p>
|
|
2371
|
+
* </li>
|
|
2372
|
+
* </ul>
|
|
2373
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
2374
|
+
* <important>
|
|
2375
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
2376
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
2377
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
2378
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
2379
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
2380
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
2381
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
2382
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
2383
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
2384
|
+
* </important>
|
|
2385
|
+
*/
|
|
2386
|
+
Tags?: TagCollectionFilter[];
|
|
1555
2387
|
}
|
|
1556
2388
|
export declare namespace ResourceCollectionFilter {
|
|
1557
2389
|
/**
|
|
@@ -1562,8 +2394,9 @@ export declare namespace ResourceCollectionFilter {
|
|
|
1562
2394
|
export interface GetResourceCollectionResponse {
|
|
1563
2395
|
/**
|
|
1564
2396
|
* <p> The requested list of Amazon Web Services resource collections.
|
|
1565
|
-
* The
|
|
1566
|
-
*
|
|
2397
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
2398
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
2399
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1567
2400
|
*/
|
|
1568
2401
|
ResourceCollection?: ResourceCollectionFilter;
|
|
1569
2402
|
/**
|
|
@@ -1640,7 +2473,10 @@ export interface ProactiveAnomalySummary {
|
|
|
1640
2473
|
*/
|
|
1641
2474
|
Id?: string;
|
|
1642
2475
|
/**
|
|
1643
|
-
* <p>The severity of the anomaly
|
|
2476
|
+
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
2477
|
+
* an insight determine that insight's severity. For more information, see
|
|
2478
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
2479
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1644
2480
|
*/
|
|
1645
2481
|
Severity?: AnomalySeverity | string;
|
|
1646
2482
|
/**
|
|
@@ -1659,7 +2495,7 @@ export interface ProactiveAnomalySummary {
|
|
|
1659
2495
|
AnomalyTimeRange?: AnomalyTimeRange;
|
|
1660
2496
|
/**
|
|
1661
2497
|
* <p>
|
|
1662
|
-
*
|
|
2498
|
+
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
1663
2499
|
* </p>
|
|
1664
2500
|
*/
|
|
1665
2501
|
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
@@ -1680,8 +2516,9 @@ export interface ProactiveAnomalySummary {
|
|
|
1680
2516
|
AssociatedInsightId?: string;
|
|
1681
2517
|
/**
|
|
1682
2518
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1683
|
-
* The
|
|
1684
|
-
*
|
|
2519
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
2520
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
2521
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1685
2522
|
*/
|
|
1686
2523
|
ResourceCollection?: ResourceCollection;
|
|
1687
2524
|
/**
|
|
@@ -1707,7 +2544,10 @@ export interface ReactiveAnomalySummary {
|
|
|
1707
2544
|
*/
|
|
1708
2545
|
Id?: string;
|
|
1709
2546
|
/**
|
|
1710
|
-
* <p>
|
|
2547
|
+
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
2548
|
+
* an insight determine that insight's severity. For more information, see
|
|
2549
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
2550
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1711
2551
|
*/
|
|
1712
2552
|
Severity?: AnomalySeverity | string;
|
|
1713
2553
|
/**
|
|
@@ -1722,7 +2562,7 @@ export interface ReactiveAnomalySummary {
|
|
|
1722
2562
|
AnomalyTimeRange?: AnomalyTimeRange;
|
|
1723
2563
|
/**
|
|
1724
2564
|
* <p>
|
|
1725
|
-
*
|
|
2565
|
+
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
1726
2566
|
* </p>
|
|
1727
2567
|
*/
|
|
1728
2568
|
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
@@ -1738,10 +2578,42 @@ export interface ReactiveAnomalySummary {
|
|
|
1738
2578
|
AssociatedInsightId?: string;
|
|
1739
2579
|
/**
|
|
1740
2580
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1741
|
-
* The
|
|
1742
|
-
*
|
|
2581
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
2582
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
2583
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1743
2584
|
*/
|
|
1744
2585
|
ResourceCollection?: ResourceCollection;
|
|
2586
|
+
/**
|
|
2587
|
+
* <p>The type of the reactive anomaly. It can be one of the following types.</p>
|
|
2588
|
+
* <ul>
|
|
2589
|
+
* <li>
|
|
2590
|
+
* <p>
|
|
2591
|
+
* <code>CAUSAL</code> - the anomaly can cause a new insight.</p>
|
|
2592
|
+
* </li>
|
|
2593
|
+
* <li>
|
|
2594
|
+
* <p>
|
|
2595
|
+
* <code>CONTEXTUAL</code> - the anomaly contains additional information about an insight or its causal anomaly.</p>
|
|
2596
|
+
* </li>
|
|
2597
|
+
* </ul>
|
|
2598
|
+
*/
|
|
2599
|
+
Type?: AnomalyType | string;
|
|
2600
|
+
/**
|
|
2601
|
+
* <p>The name of the reactive anomaly.</p>
|
|
2602
|
+
*/
|
|
2603
|
+
Name?: string;
|
|
2604
|
+
/**
|
|
2605
|
+
* <p>A description of the reactive anomaly.</p>
|
|
2606
|
+
*/
|
|
2607
|
+
Description?: string;
|
|
2608
|
+
/**
|
|
2609
|
+
* <p>The ID of the causal anomaly that is associated with this
|
|
2610
|
+
* reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
|
|
2611
|
+
*/
|
|
2612
|
+
CausalAnomalyId?: string;
|
|
2613
|
+
/**
|
|
2614
|
+
* <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
|
|
2615
|
+
*/
|
|
2616
|
+
AnomalyResources?: AnomalyResource[];
|
|
1745
2617
|
}
|
|
1746
2618
|
export declare namespace ReactiveAnomalySummary {
|
|
1747
2619
|
/**
|
|
@@ -1833,8 +2705,9 @@ export interface ListEventsFilters {
|
|
|
1833
2705
|
DataSource?: EventDataSource | string;
|
|
1834
2706
|
/**
|
|
1835
2707
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1836
|
-
* The
|
|
1837
|
-
*
|
|
2708
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
2709
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
2710
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1838
2711
|
*/
|
|
1839
2712
|
ResourceCollection?: ResourceCollection;
|
|
1840
2713
|
}
|
|
@@ -1904,8 +2777,9 @@ export declare namespace EventResource {
|
|
|
1904
2777
|
export interface Event {
|
|
1905
2778
|
/**
|
|
1906
2779
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1907
|
-
* The
|
|
1908
|
-
*
|
|
2780
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
2781
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
2782
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1909
2783
|
*/
|
|
1910
2784
|
ResourceCollection?: ResourceCollection;
|
|
1911
2785
|
/**
|
|
@@ -2125,7 +2999,9 @@ export interface ProactiveInsightSummary {
|
|
|
2125
2999
|
*/
|
|
2126
3000
|
Name?: string;
|
|
2127
3001
|
/**
|
|
2128
|
-
* <p>The severity of the
|
|
3002
|
+
* <p>The severity of the insight. For more information, see
|
|
3003
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3004
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
2129
3005
|
*/
|
|
2130
3006
|
Severity?: InsightSeverity | string;
|
|
2131
3007
|
/**
|
|
@@ -2144,14 +3020,20 @@ export interface ProactiveInsightSummary {
|
|
|
2144
3020
|
PredictionTimeRange?: PredictionTimeRange;
|
|
2145
3021
|
/**
|
|
2146
3022
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2147
|
-
* The
|
|
2148
|
-
*
|
|
3023
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3024
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3025
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2149
3026
|
*/
|
|
2150
3027
|
ResourceCollection?: ResourceCollection;
|
|
2151
3028
|
/**
|
|
2152
3029
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
2153
3030
|
*/
|
|
2154
3031
|
ServiceCollection?: ServiceCollection;
|
|
3032
|
+
/**
|
|
3033
|
+
* <p>The Amazon Resource Names (ARNs)
|
|
3034
|
+
* of the Amazon Web Services resources that generated this insight.</p>
|
|
3035
|
+
*/
|
|
3036
|
+
AssociatedResourceArns?: string[];
|
|
2155
3037
|
}
|
|
2156
3038
|
export declare namespace ProactiveInsightSummary {
|
|
2157
3039
|
/**
|
|
@@ -2174,7 +3056,9 @@ export interface ReactiveInsightSummary {
|
|
|
2174
3056
|
*/
|
|
2175
3057
|
Name?: string;
|
|
2176
3058
|
/**
|
|
2177
|
-
* <p>
|
|
3059
|
+
* <p>The severity of the insight. For more information, see
|
|
3060
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3061
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
2178
3062
|
*/
|
|
2179
3063
|
Severity?: InsightSeverity | string;
|
|
2180
3064
|
/**
|
|
@@ -2188,14 +3072,20 @@ export interface ReactiveInsightSummary {
|
|
|
2188
3072
|
InsightTimeRange?: InsightTimeRange;
|
|
2189
3073
|
/**
|
|
2190
3074
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2191
|
-
* The
|
|
2192
|
-
*
|
|
3075
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3076
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3077
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2193
3078
|
*/
|
|
2194
3079
|
ResourceCollection?: ResourceCollection;
|
|
2195
3080
|
/**
|
|
2196
3081
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
2197
3082
|
*/
|
|
2198
3083
|
ServiceCollection?: ServiceCollection;
|
|
3084
|
+
/**
|
|
3085
|
+
* <p>The Amazon Resource Names (ARNs)
|
|
3086
|
+
* of the Amazon Web Services resources that generated this insight.</p>
|
|
3087
|
+
*/
|
|
3088
|
+
AssociatedResourceArns?: string[];
|
|
2199
3089
|
}
|
|
2200
3090
|
export declare namespace ReactiveInsightSummary {
|
|
2201
3091
|
/**
|
|
@@ -2316,7 +3206,7 @@ export declare namespace ListOrganizationInsightsRequest {
|
|
|
2316
3206
|
}
|
|
2317
3207
|
/**
|
|
2318
3208
|
* <p>Details about a proactive insight. This object is returned by
|
|
2319
|
-
*
|
|
3209
|
+
* <code>DescribeInsight</code>.</p>
|
|
2320
3210
|
*/
|
|
2321
3211
|
export interface ProactiveOrganizationInsightSummary {
|
|
2322
3212
|
/**
|
|
@@ -2336,7 +3226,9 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
2336
3226
|
*/
|
|
2337
3227
|
Name?: string;
|
|
2338
3228
|
/**
|
|
2339
|
-
* <p> An array of severity values used to search for insights.
|
|
3229
|
+
* <p> An array of severity values used to search for insights. For more information, see
|
|
3230
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3231
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
2340
3232
|
*/
|
|
2341
3233
|
Severity?: InsightSeverity | string;
|
|
2342
3234
|
/**
|
|
@@ -2355,8 +3247,9 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
2355
3247
|
PredictionTimeRange?: PredictionTimeRange;
|
|
2356
3248
|
/**
|
|
2357
3249
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2358
|
-
* The
|
|
2359
|
-
*
|
|
3250
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3251
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3252
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2360
3253
|
*/
|
|
2361
3254
|
ResourceCollection?: ResourceCollection;
|
|
2362
3255
|
/**
|
|
@@ -2372,7 +3265,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
|
|
|
2372
3265
|
}
|
|
2373
3266
|
/**
|
|
2374
3267
|
* <p>Information about a reactive insight. This object is returned by
|
|
2375
|
-
*
|
|
3268
|
+
* <code>DescribeInsight</code>.</p>
|
|
2376
3269
|
*/
|
|
2377
3270
|
export interface ReactiveOrganizationInsightSummary {
|
|
2378
3271
|
/**
|
|
@@ -2380,7 +3273,7 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
2380
3273
|
*/
|
|
2381
3274
|
Id?: string;
|
|
2382
3275
|
/**
|
|
2383
|
-
* <p>The ID of the Amazon Web Services account
|
|
3276
|
+
* <p>The ID of the Amazon Web Services account. </p>
|
|
2384
3277
|
*/
|
|
2385
3278
|
AccountId?: string;
|
|
2386
3279
|
/**
|
|
@@ -2392,7 +3285,9 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
2392
3285
|
*/
|
|
2393
3286
|
Name?: string;
|
|
2394
3287
|
/**
|
|
2395
|
-
* <p> An array of severity values used to search for insights.
|
|
3288
|
+
* <p> An array of severity values used to search for insights. For more information, see
|
|
3289
|
+
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3290
|
+
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
2396
3291
|
*/
|
|
2397
3292
|
Severity?: InsightSeverity | string;
|
|
2398
3293
|
/**
|
|
@@ -2406,8 +3301,9 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
2406
3301
|
InsightTimeRange?: InsightTimeRange;
|
|
2407
3302
|
/**
|
|
2408
3303
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2409
|
-
* The
|
|
2410
|
-
*
|
|
3304
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3305
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3306
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2411
3307
|
*/
|
|
2412
3308
|
ResourceCollection?: ResourceCollection;
|
|
2413
3309
|
/**
|
|
@@ -2491,7 +3387,11 @@ export interface RecommendationRelatedAnomalyResource {
|
|
|
2491
3387
|
*/
|
|
2492
3388
|
Name?: string;
|
|
2493
3389
|
/**
|
|
2494
|
-
* <p> The type of the resource.
|
|
3390
|
+
* <p> The type of the resource. Resource types take the same form that is
|
|
3391
|
+
* used by Amazon Web Services CloudFormation resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
|
|
3392
|
+
* For example, <code>AWS::RDS::DBCluster</code>. For more information, see
|
|
3393
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services resource and
|
|
3394
|
+
* property types reference</a> in the <i>Amazon Web Services CloudFormation User Guide</i>.</p>
|
|
2495
3395
|
*/
|
|
2496
3396
|
Type?: string;
|
|
2497
3397
|
}
|
|
@@ -2552,6 +3452,10 @@ export interface RecommendationRelatedAnomaly {
|
|
|
2552
3452
|
* For example, details in Amazon CloudWatch metrics. </p>
|
|
2553
3453
|
*/
|
|
2554
3454
|
SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
|
|
3455
|
+
/**
|
|
3456
|
+
* <p>The ID of an anomaly that generated the insight with this recommendation.</p>
|
|
3457
|
+
*/
|
|
3458
|
+
AnomalyId?: string;
|
|
2555
3459
|
}
|
|
2556
3460
|
export declare namespace RecommendationRelatedAnomaly {
|
|
2557
3461
|
/**
|
|
@@ -2712,8 +3616,9 @@ export interface SearchInsightsFilters {
|
|
|
2712
3616
|
Statuses?: (InsightStatus | string)[];
|
|
2713
3617
|
/**
|
|
2714
3618
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2715
|
-
* The
|
|
2716
|
-
*
|
|
3619
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3620
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3621
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2717
3622
|
*/
|
|
2718
3623
|
ResourceCollection?: ResourceCollection;
|
|
2719
3624
|
/**
|
|
@@ -2796,8 +3701,9 @@ export interface SearchOrganizationInsightsFilters {
|
|
|
2796
3701
|
Statuses?: (InsightStatus | string)[];
|
|
2797
3702
|
/**
|
|
2798
3703
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
2799
|
-
* The
|
|
2800
|
-
*
|
|
3704
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
3705
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
3706
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2801
3707
|
*/
|
|
2802
3708
|
ResourceCollection?: ResourceCollection;
|
|
2803
3709
|
/**
|
|
@@ -2838,7 +3744,7 @@ export interface SearchOrganizationInsightsRequest {
|
|
|
2838
3744
|
NextToken?: string;
|
|
2839
3745
|
/**
|
|
2840
3746
|
* <p> The type of insights you are searching for (<code>REACTIVE</code> or
|
|
2841
|
-
*
|
|
3747
|
+
* <code>PROACTIVE</code>). </p>
|
|
2842
3748
|
*/
|
|
2843
3749
|
Type: InsightType | string | undefined;
|
|
2844
3750
|
}
|
|
@@ -2916,14 +3822,90 @@ export declare namespace UpdateCloudFormationCollectionFilter {
|
|
|
2916
3822
|
*/
|
|
2917
3823
|
const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
|
|
2918
3824
|
}
|
|
3825
|
+
/**
|
|
3826
|
+
* <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
|
|
3827
|
+
* <i>key</i>/<i>value</i> pair.</p>
|
|
3828
|
+
*/
|
|
3829
|
+
export interface UpdateTagCollectionFilter {
|
|
3830
|
+
/**
|
|
3831
|
+
* <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
|
|
3832
|
+
* DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
|
|
3833
|
+
* up your DevOps Guru application and analysis boundary.</p>
|
|
3834
|
+
* <important>
|
|
3835
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
3836
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
3837
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
3838
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
3839
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
3840
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
3841
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
3842
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
3843
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
3844
|
+
* </important>
|
|
3845
|
+
*/
|
|
3846
|
+
AppBoundaryKey: string | undefined;
|
|
3847
|
+
/**
|
|
3848
|
+
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
3849
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
3850
|
+
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
3851
|
+
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
3852
|
+
* Omitting the tag <i>value</i> is the same as using an empty
|
|
3853
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
3854
|
+
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
3855
|
+
*/
|
|
3856
|
+
TagValues: string[] | undefined;
|
|
3857
|
+
}
|
|
3858
|
+
export declare namespace UpdateTagCollectionFilter {
|
|
3859
|
+
/**
|
|
3860
|
+
* @internal
|
|
3861
|
+
*/
|
|
3862
|
+
const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
|
|
3863
|
+
}
|
|
2919
3864
|
/**
|
|
2920
3865
|
* <p> Contains information used to update a collection of Amazon Web Services resources. </p>
|
|
2921
3866
|
*/
|
|
2922
3867
|
export interface UpdateResourceCollectionFilter {
|
|
2923
3868
|
/**
|
|
2924
|
-
* <p>
|
|
3869
|
+
* <p> A collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
2925
3870
|
*/
|
|
2926
3871
|
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
3872
|
+
/**
|
|
3873
|
+
* <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
3874
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
3875
|
+
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
3876
|
+
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
3877
|
+
* table resource that you assign to an Lambda function. For more information about
|
|
3878
|
+
* using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
|
|
3879
|
+
* best practices</a> whitepaper. </p>
|
|
3880
|
+
* <p>Each Amazon Web Services tag has two parts. </p>
|
|
3881
|
+
* <ul>
|
|
3882
|
+
* <li>
|
|
3883
|
+
* <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
|
|
3884
|
+
* <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
|
|
3885
|
+
* <i>keys</i> are case-sensitive.</p>
|
|
3886
|
+
* </li>
|
|
3887
|
+
* <li>
|
|
3888
|
+
* <p>An optional field known as a tag <i>value</i> (for example,
|
|
3889
|
+
* <code>111122223333</code>, <code>Production</code>, or a team
|
|
3890
|
+
* name). Omitting the tag <i>value</i> is the same as using an empty
|
|
3891
|
+
* string. Like tag <i>keys</i>, tag <i>values</i> are
|
|
3892
|
+
* case-sensitive.</p>
|
|
3893
|
+
* </li>
|
|
3894
|
+
* </ul>
|
|
3895
|
+
* <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
|
|
3896
|
+
* <important>
|
|
3897
|
+
* <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
|
|
3898
|
+
* prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
|
|
3899
|
+
* <code>Devops-guru-deployment-application</code> or
|
|
3900
|
+
* <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
|
|
3901
|
+
* case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
|
|
3902
|
+
* <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
|
|
3903
|
+
* <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
|
|
3904
|
+
* application might be <code>Devops-Guru-production-application/RDS</code> or
|
|
3905
|
+
* <code>Devops-Guru-production-application/containers</code>.</p>
|
|
3906
|
+
* </important>
|
|
3907
|
+
*/
|
|
3908
|
+
Tags?: UpdateTagCollectionFilter[];
|
|
2927
3909
|
}
|
|
2928
3910
|
export declare namespace UpdateResourceCollectionFilter {
|
|
2929
3911
|
/**
|