@aws-sdk/client-devops-guru 3.52.0 → 3.54.1
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 +30 -0
- package/dist-cjs/DevOpsGuru.js +30 -0
- package/dist-cjs/commands/DescribeEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/UpdateEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DevOpsGuruServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +160 -3
- package/dist-cjs/protocols/Aws_restJson1.js +527 -1096
- package/dist-es/DevOpsGuru.js +30 -0
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/DevOpsGuruServiceException.js +12 -0
- package/dist-es/models/models_0.js +136 -1
- package/dist-es/protocols/Aws_restJson1.js +891 -1208
- package/dist-types/DevOpsGuru.d.ts +19 -4
- package/dist-types/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +36 -0
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DevOpsGuruServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +394 -220
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DevOpsGuru.d.ts +10 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DevOpsGuruServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +114 -22
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p> You don't have permissions to perform the requested operation. The user or role that
|
|
4
5
|
* is making the request must have at least one IAM permissions policy attached that grants
|
|
5
6
|
* the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access Management</a> in the
|
|
6
7
|
* <i>IAM User Guide</i>. </p>
|
|
7
8
|
*/
|
|
8
|
-
export
|
|
9
|
-
name: "AccessDeniedException";
|
|
10
|
-
$fault: "client";
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
11
12
|
Message: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
12
17
|
}
|
|
13
18
|
/**
|
|
14
19
|
* <p> Information about the number of open reactive and proactive insights that can be used
|
|
@@ -131,9 +136,9 @@ export declare namespace AddNotificationChannelResponse {
|
|
|
131
136
|
/**
|
|
132
137
|
* <p> An exception that is thrown when a conflict occurs. </p>
|
|
133
138
|
*/
|
|
134
|
-
export
|
|
135
|
-
name: "ConflictException";
|
|
136
|
-
$fault: "client";
|
|
139
|
+
export declare class ConflictException extends __BaseException {
|
|
140
|
+
readonly name: "ConflictException";
|
|
141
|
+
readonly $fault: "client";
|
|
137
142
|
Message: string | undefined;
|
|
138
143
|
/**
|
|
139
144
|
* <p> The ID of the Amazon Web Services resource in which a conflict occurred. </p>
|
|
@@ -143,26 +148,34 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
143
148
|
* <p> The type of the Amazon Web Services resource in which a conflict occurred. </p>
|
|
144
149
|
*/
|
|
145
150
|
ResourceType: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
146
155
|
}
|
|
147
156
|
/**
|
|
148
157
|
* <p>An internal failure in an Amazon service occurred.</p>
|
|
149
158
|
*/
|
|
150
|
-
export
|
|
151
|
-
name: "InternalServerException";
|
|
152
|
-
$fault: "server";
|
|
159
|
+
export declare class InternalServerException extends __BaseException {
|
|
160
|
+
readonly name: "InternalServerException";
|
|
161
|
+
readonly $fault: "server";
|
|
153
162
|
Message: string | undefined;
|
|
154
163
|
/**
|
|
155
164
|
* <p> The number of seconds after which the action that caused the internal server
|
|
156
165
|
* exception can be retried. </p>
|
|
157
166
|
*/
|
|
158
167
|
RetryAfterSeconds?: number;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
159
172
|
}
|
|
160
173
|
/**
|
|
161
174
|
* <p>A requested resource could not be found</p>
|
|
162
175
|
*/
|
|
163
|
-
export
|
|
164
|
-
name: "ResourceNotFoundException";
|
|
165
|
-
$fault: "client";
|
|
176
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
177
|
+
readonly name: "ResourceNotFoundException";
|
|
178
|
+
readonly $fault: "client";
|
|
166
179
|
Message: string | undefined;
|
|
167
180
|
/**
|
|
168
181
|
* <p> The ID of the Amazon Web Services resource that could not be found. </p>
|
|
@@ -172,21 +185,29 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
172
185
|
* <p> The type of the Amazon Web Services resource that could not be found. </p>
|
|
173
186
|
*/
|
|
174
187
|
ResourceType: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* @internal
|
|
190
|
+
*/
|
|
191
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
175
192
|
}
|
|
176
193
|
/**
|
|
177
194
|
* <p>The request contains a value that exceeds a maximum quota.</p>
|
|
178
195
|
*/
|
|
179
|
-
export
|
|
180
|
-
name: "ServiceQuotaExceededException";
|
|
181
|
-
$fault: "client";
|
|
196
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
197
|
+
readonly name: "ServiceQuotaExceededException";
|
|
198
|
+
readonly $fault: "client";
|
|
182
199
|
Message?: string;
|
|
200
|
+
/**
|
|
201
|
+
* @internal
|
|
202
|
+
*/
|
|
203
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
183
204
|
}
|
|
184
205
|
/**
|
|
185
206
|
* <p>The request was denied due to a request throttling.</p>
|
|
186
207
|
*/
|
|
187
|
-
export
|
|
188
|
-
name: "ThrottlingException";
|
|
189
|
-
$fault: "client";
|
|
208
|
+
export declare class ThrottlingException extends __BaseException {
|
|
209
|
+
readonly name: "ThrottlingException";
|
|
210
|
+
readonly $fault: "client";
|
|
190
211
|
Message: string | undefined;
|
|
191
212
|
/**
|
|
192
213
|
* <p> The code of the quota that was exceeded, causing the throttling exception. </p>
|
|
@@ -201,6 +222,10 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
201
222
|
* be retried. </p>
|
|
202
223
|
*/
|
|
203
224
|
RetryAfterSeconds?: number;
|
|
225
|
+
/**
|
|
226
|
+
* @internal
|
|
227
|
+
*/
|
|
228
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
204
229
|
}
|
|
205
230
|
/**
|
|
206
231
|
* <p> The field associated with the validation exception. </p>
|
|
@@ -234,9 +259,9 @@ export declare enum ValidationExceptionReason {
|
|
|
234
259
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
235
260
|
* valid. </p>
|
|
236
261
|
*/
|
|
237
|
-
export
|
|
238
|
-
name: "ValidationException";
|
|
239
|
-
$fault: "client";
|
|
262
|
+
export declare class ValidationException extends __BaseException {
|
|
263
|
+
readonly name: "ValidationException";
|
|
264
|
+
readonly $fault: "client";
|
|
240
265
|
/**
|
|
241
266
|
* <p> A message that describes the validation exception. </p>
|
|
242
267
|
*/
|
|
@@ -249,6 +274,29 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
249
274
|
* <p> An array of fields that are associated with the validation exception. </p>
|
|
250
275
|
*/
|
|
251
276
|
Fields?: ValidationExceptionField[];
|
|
277
|
+
/**
|
|
278
|
+
* @internal
|
|
279
|
+
*/
|
|
280
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
281
|
+
}
|
|
282
|
+
export declare enum EventSourceOptInStatus {
|
|
283
|
+
DISABLED = "DISABLED",
|
|
284
|
+
ENABLED = "ENABLED"
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* <p>Information about your account's integration with Amazon CodeGuru Profiler.</p>
|
|
288
|
+
*/
|
|
289
|
+
export interface AmazonCodeGuruProfilerIntegration {
|
|
290
|
+
/**
|
|
291
|
+
* <p>The status of the CodeGuru Profiler integration.</p>
|
|
292
|
+
*/
|
|
293
|
+
Status?: EventSourceOptInStatus | string;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace AmazonCodeGuruProfilerIntegration {
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
const filterSensitiveLog: (obj: AmazonCodeGuruProfilerIntegration) => any;
|
|
252
300
|
}
|
|
253
301
|
/**
|
|
254
302
|
* <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
|
|
@@ -272,10 +320,10 @@ export declare namespace AnomalyReportedTimeRange {
|
|
|
272
320
|
const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
|
|
273
321
|
}
|
|
274
322
|
/**
|
|
275
|
-
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in
|
|
276
|
-
*
|
|
277
|
-
*
|
|
278
|
-
*
|
|
323
|
+
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in the
|
|
324
|
+
* generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates and
|
|
325
|
+
* insight with details about the anomalous behavior and suggestions about how to correct
|
|
326
|
+
* the problem.</p>
|
|
279
327
|
*/
|
|
280
328
|
export interface AnomalyResource {
|
|
281
329
|
/**
|
|
@@ -354,8 +402,8 @@ export interface CloudWatchMetricsDataSummary {
|
|
|
354
402
|
*/
|
|
355
403
|
TimestampMetricValuePairList?: TimestampMetricValuePair[];
|
|
356
404
|
/**
|
|
357
|
-
* <p>This is an enum of the status showing whether the metric value pair list has partial
|
|
358
|
-
* complete data, or if there was an error.</p>
|
|
405
|
+
* <p>This is an enum of the status showing whether the metric value pair list has partial
|
|
406
|
+
* or complete data, or if there was an error.</p>
|
|
359
407
|
*/
|
|
360
408
|
StatusCode?: CloudWatchMetricDataStatusCode | string;
|
|
361
409
|
}
|
|
@@ -419,15 +467,14 @@ export declare namespace CloudWatchMetricsDetail {
|
|
|
419
467
|
}
|
|
420
468
|
/**
|
|
421
469
|
* <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
|
|
422
|
-
*
|
|
423
|
-
*
|
|
424
|
-
*
|
|
425
|
-
*
|
|
426
|
-
*
|
|
427
|
-
*
|
|
428
|
-
*
|
|
429
|
-
*
|
|
430
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
470
|
+
* <code>db.sql</code> dimension group consists of the following dimensions:
|
|
471
|
+
* <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>,
|
|
472
|
+
* and <code>db.sql.tokenized_id</code>.</p>
|
|
473
|
+
* <note>
|
|
474
|
+
* <p>Each response element returns a maximum of 500 bytes. For larger elements, such as
|
|
475
|
+
* SQL statements, only the first 500 bytes are returned.</p>
|
|
476
|
+
* </note>
|
|
477
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
431
478
|
* dimensions of database load based on data captured from a running DB instance.
|
|
432
479
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
433
480
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -450,127 +497,143 @@ export interface PerformanceInsightsMetricDimensionGroup {
|
|
|
450
497
|
/**
|
|
451
498
|
* <p>The name of the dimension group. Its valid values are:</p>
|
|
452
499
|
*
|
|
453
|
-
*
|
|
500
|
+
* <ul>
|
|
454
501
|
* <li>
|
|
455
|
-
*
|
|
456
|
-
*
|
|
457
|
-
*
|
|
458
|
-
*
|
|
502
|
+
* <p>
|
|
503
|
+
* <code>db</code> - The name of the database to which the client is connected
|
|
504
|
+
* (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
505
|
+
* </li>
|
|
459
506
|
* <li>
|
|
460
|
-
*
|
|
461
|
-
*
|
|
462
|
-
*
|
|
463
|
-
*
|
|
507
|
+
* <p>
|
|
508
|
+
* <code>db.application</code> - The name of the application that is connected to
|
|
509
|
+
* the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
510
|
+
* </li>
|
|
464
511
|
* <li>
|
|
465
|
-
*
|
|
466
|
-
*
|
|
467
|
-
*
|
|
512
|
+
* <p>
|
|
513
|
+
* <code>db.host</code> - The host name of the connected client (all
|
|
514
|
+
* engines)</p>
|
|
515
|
+
* </li>
|
|
468
516
|
* <li>
|
|
469
|
-
*
|
|
470
|
-
*
|
|
471
|
-
*
|
|
517
|
+
* <p>
|
|
518
|
+
* <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL
|
|
519
|
+
* and RDS PostgreSQL)</p>
|
|
520
|
+
* </li>
|
|
472
521
|
* <li>
|
|
473
|
-
*
|
|
474
|
-
*
|
|
475
|
-
*
|
|
522
|
+
* <p>
|
|
523
|
+
* <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
|
|
524
|
+
* </li>
|
|
476
525
|
* <li>
|
|
477
|
-
*
|
|
478
|
-
*
|
|
479
|
-
*
|
|
526
|
+
* <p>
|
|
527
|
+
* <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
|
|
528
|
+
* </li>
|
|
480
529
|
* <li>
|
|
481
|
-
*
|
|
482
|
-
*
|
|
483
|
-
*
|
|
530
|
+
* <p>
|
|
531
|
+
* <code>db.wait_event</code> - The event for which the database backend is waiting
|
|
532
|
+
* (all engines)</p>
|
|
533
|
+
* </li>
|
|
484
534
|
* <li>
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
*
|
|
535
|
+
* <p>
|
|
536
|
+
* <code>db.wait_event_type</code> - The type of event for which the database
|
|
537
|
+
* backend is waiting (all engines)</p>
|
|
538
|
+
* </li>
|
|
488
539
|
* <li>
|
|
489
|
-
*
|
|
490
|
-
*
|
|
491
|
-
*
|
|
540
|
+
* <p>
|
|
541
|
+
* <code>db.user</code> - The user logged in to the database (all engines)</p>
|
|
542
|
+
* </li>
|
|
492
543
|
* </ul>
|
|
493
544
|
*/
|
|
494
545
|
Group?: string;
|
|
495
546
|
/**
|
|
496
|
-
* <p>A list of specific dimensions from a dimension group. If this parameter is not
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
547
|
+
* <p>A list of specific dimensions from a dimension group. If this parameter is not
|
|
548
|
+
* present, then it signifies that all of the dimensions in the group were requested or are
|
|
549
|
+
* present in the response.</p>
|
|
550
|
+
* <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
|
|
500
551
|
*
|
|
501
|
-
*
|
|
552
|
+
* <ul>
|
|
502
553
|
* <li>
|
|
503
|
-
*
|
|
504
|
-
*
|
|
505
|
-
*
|
|
506
|
-
*
|
|
554
|
+
* <p>
|
|
555
|
+
* <code>db.application.name</code> - The name of the application that is connected
|
|
556
|
+
* to the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
557
|
+
* </li>
|
|
507
558
|
* <li>
|
|
508
|
-
*
|
|
509
|
-
*
|
|
510
|
-
*
|
|
559
|
+
* <p>
|
|
560
|
+
* <code>db.host.id</code> - The host ID of the connected client (all
|
|
561
|
+
* engines)</p>
|
|
562
|
+
* </li>
|
|
511
563
|
* <li>
|
|
512
|
-
*
|
|
513
|
-
*
|
|
514
|
-
*
|
|
564
|
+
* <p>
|
|
565
|
+
* <code>db.host.name</code> - The host name of the connected client (all
|
|
566
|
+
* engines)</p>
|
|
567
|
+
* </li>
|
|
515
568
|
* <li>
|
|
516
|
-
*
|
|
517
|
-
*
|
|
518
|
-
*
|
|
519
|
-
*
|
|
569
|
+
* <p>
|
|
570
|
+
* <code>db.name</code> - The name of the database to which the client is connected
|
|
571
|
+
* (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
572
|
+
* </li>
|
|
520
573
|
* <li>
|
|
521
|
-
*
|
|
522
|
-
*
|
|
523
|
-
*
|
|
574
|
+
* <p>
|
|
575
|
+
* <code>db.session_type.name</code> - The type of the current session (only Aurora
|
|
576
|
+
* PostgreSQL and RDS PostgreSQL)</p>
|
|
577
|
+
* </li>
|
|
524
578
|
* <li>
|
|
525
|
-
*
|
|
526
|
-
*
|
|
527
|
-
*
|
|
579
|
+
* <p>
|
|
580
|
+
* <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
|
|
581
|
+
* </li>
|
|
528
582
|
* <li>
|
|
529
|
-
*
|
|
530
|
-
*
|
|
531
|
-
*
|
|
583
|
+
* <p>
|
|
584
|
+
* <code>db.sql.db_id</code> - The SQL ID generated by the database (all
|
|
585
|
+
* engines)</p>
|
|
586
|
+
* </li>
|
|
532
587
|
* <li>
|
|
533
|
-
*
|
|
534
|
-
*
|
|
535
|
-
*
|
|
588
|
+
* <p>
|
|
589
|
+
* <code>db.sql.statement</code> - The SQL text that is being executed (all
|
|
590
|
+
* engines)</p>
|
|
591
|
+
* </li>
|
|
536
592
|
* <li>
|
|
537
|
-
*
|
|
538
|
-
*
|
|
539
|
-
*
|
|
540
|
-
*
|
|
593
|
+
* <p>
|
|
594
|
+
* <code>db.sql.tokenized_id</code>
|
|
595
|
+
* </p>
|
|
596
|
+
* </li>
|
|
541
597
|
* <li>
|
|
542
|
-
*
|
|
543
|
-
*
|
|
544
|
-
*
|
|
598
|
+
* <p>
|
|
599
|
+
* <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all
|
|
600
|
+
* engines)</p>
|
|
601
|
+
* </li>
|
|
545
602
|
* <li>
|
|
546
|
-
*
|
|
547
|
-
*
|
|
548
|
-
*
|
|
603
|
+
* <p>
|
|
604
|
+
* <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database
|
|
605
|
+
* (all engines)</p>
|
|
606
|
+
* </li>
|
|
549
607
|
* <li>
|
|
550
|
-
*
|
|
551
|
-
*
|
|
552
|
-
*
|
|
608
|
+
* <p>
|
|
609
|
+
* <code>db.sql_tokenized.statement</code> - The SQL digest text (all
|
|
610
|
+
* engines)</p>
|
|
611
|
+
* </li>
|
|
553
612
|
* <li>
|
|
554
|
-
*
|
|
555
|
-
*
|
|
556
|
-
*
|
|
613
|
+
* <p>
|
|
614
|
+
* <code>db.user.id</code> - The ID of the user logged in to the database (all
|
|
615
|
+
* engines)</p>
|
|
616
|
+
* </li>
|
|
557
617
|
* <li>
|
|
558
|
-
*
|
|
559
|
-
*
|
|
560
|
-
*
|
|
618
|
+
* <p>
|
|
619
|
+
* <code>db.user.name</code> - The name of the user logged in to the database (all
|
|
620
|
+
* engines)</p>
|
|
621
|
+
* </li>
|
|
561
622
|
* <li>
|
|
562
|
-
*
|
|
563
|
-
*
|
|
564
|
-
*
|
|
623
|
+
* <p>
|
|
624
|
+
* <code>db.wait_event.name</code> - The event for which the backend is waiting
|
|
625
|
+
* (all engines)</p>
|
|
626
|
+
* </li>
|
|
565
627
|
* <li>
|
|
566
|
-
*
|
|
567
|
-
*
|
|
568
|
-
*
|
|
628
|
+
* <p>
|
|
629
|
+
* <code>db.wait_event.type</code> - The type of event for which the backend is
|
|
630
|
+
* waiting (all engines)</p>
|
|
631
|
+
* </li>
|
|
569
632
|
* <li>
|
|
570
|
-
*
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
633
|
+
* <p>
|
|
634
|
+
* <code>db.wait_event_type.name</code> - The name of the event type for which the
|
|
635
|
+
* backend is waiting (all engines)</p>
|
|
636
|
+
* </li>
|
|
574
637
|
* </ul>
|
|
575
638
|
*/
|
|
576
639
|
Dimensions?: string[];
|
|
@@ -586,14 +649,13 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
|
586
649
|
const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
|
|
587
650
|
}
|
|
588
651
|
/**
|
|
589
|
-
* <p>A single query to be processed. Use these parameters to
|
|
590
|
-
*
|
|
591
|
-
*
|
|
652
|
+
* <p>A single query to be processed. Use these parameters to query the Performance Insights
|
|
653
|
+
* <code>GetResourceMetrics</code> API to retrieve the metrics for an anomaly. For more
|
|
654
|
+
* information, see <code>
|
|
592
655
|
* <a href="https://docs.aws.amazon.com/performance-insights/latest/APIReference/API_GetResourceMetrics.html">GetResourceMetrics</a>
|
|
593
|
-
* </code>
|
|
594
|
-
*
|
|
595
|
-
*
|
|
596
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
656
|
+
* </code> in the <i>Amazon RDS Performance Insights API
|
|
657
|
+
* Reference</i>.</p>
|
|
658
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
597
659
|
* dimensions of database load based on data captured from a running DB instance.
|
|
598
660
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
599
661
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -614,45 +676,51 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
|
614
676
|
*/
|
|
615
677
|
export interface PerformanceInsightsMetricQuery {
|
|
616
678
|
/**
|
|
617
|
-
* <p>The name of the meteric used used when querying an Performance Insights
|
|
618
|
-
*
|
|
679
|
+
* <p>The name of the meteric used used when querying an Performance Insights
|
|
680
|
+
* <code>GetResourceMetrics</code> API for anomaly metrics.</p>
|
|
619
681
|
*
|
|
620
|
-
*
|
|
682
|
+
* <p>Valid values for <code>Metric</code> are:</p>
|
|
621
683
|
*
|
|
622
|
-
*
|
|
684
|
+
* <ul>
|
|
623
685
|
* <li>
|
|
624
|
-
*
|
|
625
|
-
*
|
|
626
|
-
*
|
|
627
|
-
*
|
|
686
|
+
* <p>
|
|
687
|
+
* <code>db.load.avg</code> - a scaled representation of the number of active sessions for the
|
|
688
|
+
* database engine.</p>
|
|
689
|
+
* </li>
|
|
628
690
|
* <li>
|
|
629
|
-
*
|
|
630
|
-
*
|
|
631
|
-
*
|
|
632
|
-
*
|
|
691
|
+
* <p>
|
|
692
|
+
* <code>db.sampledload.avg</code> - the raw number of active sessions for the database
|
|
693
|
+
* engine.</p>
|
|
694
|
+
* </li>
|
|
633
695
|
* </ul>
|
|
634
|
-
*
|
|
635
|
-
*
|
|
636
|
-
*
|
|
637
|
-
*
|
|
696
|
+
* <p>If the number of active sessions is less than an internal Performance Insights threshold,
|
|
697
|
+
* <code>db.load.avg</code> and <code>db.sampledload.avg</code> are the same value. If
|
|
698
|
+
* the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with
|
|
699
|
+
* <code>db.load.avg</code> showing the scaled values, <code>db.sampledload.avg</code>
|
|
700
|
+
* showing the raw values, and <code>db.sampledload.avg</code> less than
|
|
701
|
+
* <code>db.load.avg</code>. For most use cases, you can query <code>db.load.avg</code>
|
|
702
|
+
* only. </p>
|
|
638
703
|
*/
|
|
639
704
|
Metric?: string;
|
|
640
705
|
/**
|
|
641
|
-
* <p>The specification for how to aggregate the data points from a Performance Insights
|
|
642
|
-
*
|
|
643
|
-
*
|
|
644
|
-
*
|
|
706
|
+
* <p>The specification for how to aggregate the data points from a Performance Insights
|
|
707
|
+
* <code>GetResourceMetrics</code> API query. The Performance Insights query returns all of the
|
|
708
|
+
* dimensions within that group, unless you provide the names of specific dimensions within
|
|
709
|
+
* that group. You can also request that Performance Insights return a limited number of values for a
|
|
710
|
+
* dimension.</p>
|
|
645
711
|
*/
|
|
646
712
|
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
647
713
|
/**
|
|
648
|
-
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
|
|
649
|
-
*
|
|
714
|
+
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
|
|
715
|
+
* Restrictions:</p>
|
|
716
|
+
* <ul>
|
|
650
717
|
* <li>
|
|
651
|
-
*
|
|
652
|
-
*
|
|
718
|
+
* <p>Any number of filters by the same dimension, as specified in the
|
|
719
|
+
* <code>GroupBy</code> parameter.</p>
|
|
720
|
+
* </li>
|
|
653
721
|
* <li>
|
|
654
|
-
*
|
|
655
|
-
*
|
|
722
|
+
* <p>A single filter for any other dimension in this dimension group.</p>
|
|
723
|
+
* </li>
|
|
656
724
|
* </ul>
|
|
657
725
|
*/
|
|
658
726
|
Filter?: {
|
|
@@ -682,7 +750,7 @@ export declare namespace PerformanceInsightsReferenceMetric {
|
|
|
682
750
|
}
|
|
683
751
|
/**
|
|
684
752
|
* <p>A reference value to compare Performance Insights metrics against to determine if the metrics
|
|
685
|
-
*
|
|
753
|
+
* demonstrate anomalous behavior.</p>
|
|
686
754
|
*/
|
|
687
755
|
export interface PerformanceInsightsReferenceScalar {
|
|
688
756
|
/**
|
|
@@ -697,18 +765,21 @@ export declare namespace PerformanceInsightsReferenceScalar {
|
|
|
697
765
|
const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
|
|
698
766
|
}
|
|
699
767
|
/**
|
|
700
|
-
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
|
|
701
|
-
*
|
|
768
|
+
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
|
|
769
|
+
* console along with the actual metrics it analyzed. Compare these reference values to
|
|
770
|
+
* your actual metrics to help you understand anomalous behavior that DevOps Guru
|
|
771
|
+
* detected.</p>
|
|
702
772
|
*/
|
|
703
773
|
export interface PerformanceInsightsReferenceComparisonValues {
|
|
704
774
|
/**
|
|
705
|
-
* <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This
|
|
706
|
-
*
|
|
775
|
+
* <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This
|
|
776
|
+
* reference value is used to determine if an actual metric value should be considered
|
|
777
|
+
* anomalous.</p>
|
|
707
778
|
*/
|
|
708
779
|
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
709
780
|
/**
|
|
710
|
-
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used
|
|
711
|
-
*
|
|
781
|
+
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used to
|
|
782
|
+
* determine if an actual metric should be considered anomalous.</p>
|
|
712
783
|
*/
|
|
713
784
|
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
714
785
|
}
|
|
@@ -719,8 +790,8 @@ export declare namespace PerformanceInsightsReferenceComparisonValues {
|
|
|
719
790
|
const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
|
|
720
791
|
}
|
|
721
792
|
/**
|
|
722
|
-
* <p>Reference data used to evaluate Performance Insights to determine if its performance
|
|
723
|
-
*
|
|
793
|
+
* <p>Reference data used to evaluate Performance Insights to determine if its performance is anomalous or
|
|
794
|
+
* not.</p>
|
|
724
795
|
*/
|
|
725
796
|
export interface PerformanceInsightsReferenceData {
|
|
726
797
|
/**
|
|
@@ -729,10 +800,9 @@ export interface PerformanceInsightsReferenceData {
|
|
|
729
800
|
Name?: string;
|
|
730
801
|
/**
|
|
731
802
|
* <p>The specific reference values used to evaluate the Performance Insights. For more information, see
|
|
732
|
-
*
|
|
803
|
+
* <code>
|
|
733
804
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceComparisonValues.html">PerformanceInsightsReferenceComparisonValues</a>
|
|
734
|
-
* </code>.
|
|
735
|
-
* </p>
|
|
805
|
+
* </code>. </p>
|
|
736
806
|
*/
|
|
737
807
|
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
738
808
|
}
|
|
@@ -763,8 +833,7 @@ export declare namespace PerformanceInsightsStat {
|
|
|
763
833
|
}
|
|
764
834
|
/**
|
|
765
835
|
* <p>Details about Performance Insights metrics.</p>
|
|
766
|
-
*
|
|
767
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
836
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
768
837
|
* dimensions of database load based on data captured from a running DB instance.
|
|
769
838
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
770
839
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -793,19 +862,15 @@ export interface PerformanceInsightsMetricsDetail {
|
|
|
793
862
|
*/
|
|
794
863
|
Unit?: string;
|
|
795
864
|
/**
|
|
796
|
-
* <p>A single query to be processed for the metric. For more information, see
|
|
797
|
-
* <code>
|
|
865
|
+
* <p>A single query to be processed for the metric. For more information, see <code>
|
|
798
866
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
|
|
799
867
|
* </code>.</p>
|
|
800
868
|
*/
|
|
801
869
|
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
802
870
|
/**
|
|
803
|
-
* <p>
|
|
804
|
-
* For more information, see
|
|
805
|
-
* <code>
|
|
871
|
+
* <p> For more information, see <code>
|
|
806
872
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
|
|
807
|
-
* </code>.
|
|
808
|
-
* </p>
|
|
873
|
+
* </code>. </p>
|
|
809
874
|
*/
|
|
810
875
|
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
811
876
|
/**
|
|
@@ -836,8 +901,8 @@ export interface AnomalySourceDetails {
|
|
|
836
901
|
*/
|
|
837
902
|
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
838
903
|
/**
|
|
839
|
-
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
|
|
840
|
-
*
|
|
904
|
+
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
|
|
905
|
+
* information about analyzed Performance Insights metrics that show anomalous behavior.</p>
|
|
841
906
|
*/
|
|
842
907
|
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
843
908
|
}
|
|
@@ -847,6 +912,30 @@ export declare namespace AnomalySourceDetails {
|
|
|
847
912
|
*/
|
|
848
913
|
const filterSensitiveLog: (obj: AnomalySourceDetails) => any;
|
|
849
914
|
}
|
|
915
|
+
/**
|
|
916
|
+
* <p>Metadata about an anomaly. The anomaly is detected using analysis of the metric data
|
|
917
|
+
over a period of time</p>
|
|
918
|
+
*/
|
|
919
|
+
export interface AnomalySourceMetadata {
|
|
920
|
+
/**
|
|
921
|
+
* <p>The source of the anomaly.</p>
|
|
922
|
+
*/
|
|
923
|
+
Source?: string;
|
|
924
|
+
/**
|
|
925
|
+
* <p>The name of the anomaly's resource.</p>
|
|
926
|
+
*/
|
|
927
|
+
SourceResourceName?: string;
|
|
928
|
+
/**
|
|
929
|
+
* <p>The anomaly's resource type.</p>
|
|
930
|
+
*/
|
|
931
|
+
SourceResourceType?: string;
|
|
932
|
+
}
|
|
933
|
+
export declare namespace AnomalySourceMetadata {
|
|
934
|
+
/**
|
|
935
|
+
* @internal
|
|
936
|
+
*/
|
|
937
|
+
const filterSensitiveLog: (obj: AnomalySourceMetadata) => any;
|
|
938
|
+
}
|
|
850
939
|
export declare enum AnomalyStatus {
|
|
851
940
|
CLOSED = "CLOSED",
|
|
852
941
|
ONGOING = "ONGOING"
|
|
@@ -1012,7 +1101,7 @@ export declare namespace CloudFormationCollection {
|
|
|
1012
1101
|
}
|
|
1013
1102
|
/**
|
|
1014
1103
|
* <p>A collection of Amazon Web Services stags.</p>
|
|
1015
|
-
*
|
|
1104
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1016
1105
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1017
1106
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1018
1107
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -1066,7 +1155,7 @@ export interface TagCollection {
|
|
|
1066
1155
|
AppBoundaryKey: string | undefined;
|
|
1067
1156
|
/**
|
|
1068
1157
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
1069
|
-
*
|
|
1158
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1070
1159
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1071
1160
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1072
1161
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -1095,7 +1184,7 @@ export interface ResourceCollection {
|
|
|
1095
1184
|
CloudFormation?: CloudFormationCollection;
|
|
1096
1185
|
/**
|
|
1097
1186
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1098
|
-
*
|
|
1187
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1099
1188
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1100
1189
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1101
1190
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -1200,6 +1289,14 @@ export interface ProactiveAnomaly {
|
|
|
1200
1289
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
1201
1290
|
*/
|
|
1202
1291
|
Limit?: number;
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>The metadata for the anomaly.</p>
|
|
1294
|
+
*/
|
|
1295
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
1296
|
+
/**
|
|
1297
|
+
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
1298
|
+
*/
|
|
1299
|
+
AnomalyResources?: AnomalyResource[];
|
|
1203
1300
|
}
|
|
1204
1301
|
export declare namespace ProactiveAnomaly {
|
|
1205
1302
|
/**
|
|
@@ -1310,6 +1407,41 @@ export declare namespace DescribeAnomalyResponse {
|
|
|
1310
1407
|
*/
|
|
1311
1408
|
const filterSensitiveLog: (obj: DescribeAnomalyResponse) => any;
|
|
1312
1409
|
}
|
|
1410
|
+
export interface DescribeEventSourcesConfigRequest {
|
|
1411
|
+
}
|
|
1412
|
+
export declare namespace DescribeEventSourcesConfigRequest {
|
|
1413
|
+
/**
|
|
1414
|
+
* @internal
|
|
1415
|
+
*/
|
|
1416
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigRequest) => any;
|
|
1417
|
+
}
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>Describes the event sources.</p>
|
|
1420
|
+
*/
|
|
1421
|
+
export interface EventSourcesConfig {
|
|
1422
|
+
/**
|
|
1423
|
+
* <p></p>
|
|
1424
|
+
*/
|
|
1425
|
+
AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
|
|
1426
|
+
}
|
|
1427
|
+
export declare namespace EventSourcesConfig {
|
|
1428
|
+
/**
|
|
1429
|
+
* @internal
|
|
1430
|
+
*/
|
|
1431
|
+
const filterSensitiveLog: (obj: EventSourcesConfig) => any;
|
|
1432
|
+
}
|
|
1433
|
+
export interface DescribeEventSourcesConfigResponse {
|
|
1434
|
+
/**
|
|
1435
|
+
* <p>The name of the event source.</p>
|
|
1436
|
+
*/
|
|
1437
|
+
EventSources?: EventSourcesConfig;
|
|
1438
|
+
}
|
|
1439
|
+
export declare namespace DescribeEventSourcesConfigResponse {
|
|
1440
|
+
/**
|
|
1441
|
+
* @internal
|
|
1442
|
+
*/
|
|
1443
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigResponse) => any;
|
|
1444
|
+
}
|
|
1313
1445
|
export interface DescribeFeedbackRequest {
|
|
1314
1446
|
/**
|
|
1315
1447
|
* <p> The ID of the insight for which the feedback was provided. </p>
|
|
@@ -1450,6 +1582,10 @@ export interface ProactiveInsight {
|
|
|
1450
1582
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1451
1583
|
*/
|
|
1452
1584
|
SsmOpsItemId?: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>Describes the proactive insight.</p>
|
|
1587
|
+
*/
|
|
1588
|
+
Description?: string;
|
|
1453
1589
|
}
|
|
1454
1590
|
export declare namespace ProactiveInsight {
|
|
1455
1591
|
/**
|
|
@@ -1497,6 +1633,10 @@ export interface ReactiveInsight {
|
|
|
1497
1633
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1498
1634
|
*/
|
|
1499
1635
|
SsmOpsItemId?: string;
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>Describes the reactive insight.</p>
|
|
1638
|
+
*/
|
|
1639
|
+
Description?: string;
|
|
1500
1640
|
}
|
|
1501
1641
|
export declare namespace ReactiveInsight {
|
|
1502
1642
|
/**
|
|
@@ -1765,7 +1905,7 @@ export declare namespace ServiceHealth {
|
|
|
1765
1905
|
}
|
|
1766
1906
|
/**
|
|
1767
1907
|
* <p> Information about the health of Amazon Web Services resources in your account that are specified by
|
|
1768
|
-
*
|
|
1908
|
+
* an Amazon Web Services tag <i>key</i>. </p>
|
|
1769
1909
|
*/
|
|
1770
1910
|
export interface TagHealth {
|
|
1771
1911
|
/**
|
|
@@ -1787,7 +1927,7 @@ export interface TagHealth {
|
|
|
1787
1927
|
AppBoundaryKey?: string;
|
|
1788
1928
|
/**
|
|
1789
1929
|
* <p>The value in an Amazon Web Services tag.</p>
|
|
1790
|
-
*
|
|
1930
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1791
1931
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1792
1932
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1793
1933
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -1796,9 +1936,9 @@ export interface TagHealth {
|
|
|
1796
1936
|
*/
|
|
1797
1937
|
TagValue?: string;
|
|
1798
1938
|
/**
|
|
1799
|
-
* <p>Information about the health of the Amazon Web Services resources in your account that are
|
|
1800
|
-
*
|
|
1801
|
-
*
|
|
1939
|
+
* <p>Information about the health of the Amazon Web Services resources in your account that are specified
|
|
1940
|
+
* by an Amazon Web Services tag, including the number of open proactive, open reactive insights, and the
|
|
1941
|
+
* Mean Time to Recover (MTTR) of closed insights. </p>
|
|
1802
1942
|
*/
|
|
1803
1943
|
Insight?: InsightHealth;
|
|
1804
1944
|
}
|
|
@@ -1811,7 +1951,7 @@ export declare namespace TagHealth {
|
|
|
1811
1951
|
export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
1812
1952
|
/**
|
|
1813
1953
|
* <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
|
|
1814
|
-
*
|
|
1954
|
+
* <code>InsightHealthOverview</code> object with the requested system health
|
|
1815
1955
|
* information.</p>
|
|
1816
1956
|
*/
|
|
1817
1957
|
CloudFormation?: CloudFormationHealth[];
|
|
@@ -1916,7 +2056,7 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
1916
2056
|
NextToken?: string;
|
|
1917
2057
|
/**
|
|
1918
2058
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1919
|
-
*
|
|
2059
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1920
2060
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1921
2061
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1922
2062
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2098,12 +2238,12 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
2098
2238
|
const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
|
|
2099
2239
|
}
|
|
2100
2240
|
/**
|
|
2101
|
-
* <p>Information about a collection of Amazon Web Services resources that are identified by an
|
|
2102
|
-
*
|
|
2103
|
-
*
|
|
2104
|
-
*
|
|
2105
|
-
*
|
|
2106
|
-
*
|
|
2241
|
+
* <p>Information about a collection of Amazon Web Services resources that are identified by an Amazon Web Services tag.
|
|
2242
|
+
* This collection of resources is used to create a monthly cost estimate for DevOps Guru to
|
|
2243
|
+
* analyze Amazon Web Services resources. The maximum number of tags you can specify for a cost estimate
|
|
2244
|
+
* is one. The estimate created is for the cost to analyze the Amazon Web Services resources defined by
|
|
2245
|
+
* the tag. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
|
|
2246
|
+
* <i>Amazon Web Services CloudFormation User Guide</i>.</p>
|
|
2107
2247
|
*/
|
|
2108
2248
|
export interface TagCostEstimationResourceCollectionFilter {
|
|
2109
2249
|
/**
|
|
@@ -2125,7 +2265,7 @@ export interface TagCostEstimationResourceCollectionFilter {
|
|
|
2125
2265
|
AppBoundaryKey: string | undefined;
|
|
2126
2266
|
/**
|
|
2127
2267
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2128
|
-
*
|
|
2268
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2129
2269
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2130
2270
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2131
2271
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -2154,9 +2294,9 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
2154
2294
|
*/
|
|
2155
2295
|
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
2156
2296
|
/**
|
|
2157
|
-
* <p>The Amazon Web Services tags used to filter the resource collection that is used for
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2297
|
+
* <p>The Amazon Web Services tags used to filter the resource collection that is used for a cost
|
|
2298
|
+
* estimate.</p>
|
|
2299
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2160
2300
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2161
2301
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2162
2302
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2297,8 +2437,8 @@ export declare namespace CloudFormationCollectionFilter {
|
|
|
2297
2437
|
const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
|
|
2298
2438
|
}
|
|
2299
2439
|
/**
|
|
2300
|
-
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
|
|
2301
|
-
*
|
|
2440
|
+
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
|
|
2441
|
+
* generated from only resources that contain the tags in the tag collection.</p>
|
|
2302
2442
|
*/
|
|
2303
2443
|
export interface TagCollectionFilter {
|
|
2304
2444
|
/**
|
|
@@ -2320,7 +2460,7 @@ export interface TagCollectionFilter {
|
|
|
2320
2460
|
AppBoundaryKey: string | undefined;
|
|
2321
2461
|
/**
|
|
2322
2462
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2323
|
-
*
|
|
2463
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2324
2464
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2325
2465
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2326
2466
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -2349,7 +2489,7 @@ export interface ResourceCollectionFilter {
|
|
|
2349
2489
|
CloudFormation?: CloudFormationCollectionFilter;
|
|
2350
2490
|
/**
|
|
2351
2491
|
* <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
2352
|
-
*
|
|
2492
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2353
2493
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2354
2494
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2355
2495
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2526,6 +2666,14 @@ export interface ProactiveAnomalySummary {
|
|
|
2526
2666
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
2527
2667
|
*/
|
|
2528
2668
|
Limit?: number;
|
|
2669
|
+
/**
|
|
2670
|
+
* <p>Returns the metadata of the source.</p>
|
|
2671
|
+
*/
|
|
2672
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
2673
|
+
/**
|
|
2674
|
+
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
2675
|
+
*/
|
|
2676
|
+
AnomalyResources?: AnomalyResource[];
|
|
2529
2677
|
}
|
|
2530
2678
|
export declare namespace ProactiveAnomalySummary {
|
|
2531
2679
|
/**
|
|
@@ -3206,7 +3354,7 @@ export declare namespace ListOrganizationInsightsRequest {
|
|
|
3206
3354
|
}
|
|
3207
3355
|
/**
|
|
3208
3356
|
* <p>Details about a proactive insight. This object is returned by
|
|
3209
|
-
*
|
|
3357
|
+
* <code>DescribeInsight</code>.</p>
|
|
3210
3358
|
*/
|
|
3211
3359
|
export interface ProactiveOrganizationInsightSummary {
|
|
3212
3360
|
/**
|
|
@@ -3226,7 +3374,8 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
3226
3374
|
*/
|
|
3227
3375
|
Name?: string;
|
|
3228
3376
|
/**
|
|
3229
|
-
* <p> An array of severity values used to search for insights.
|
|
3377
|
+
* <p> An array of severity values used to search for insights.
|
|
3378
|
+
* For more information, see
|
|
3230
3379
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3231
3380
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3232
3381
|
*/
|
|
@@ -3265,7 +3414,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
|
|
|
3265
3414
|
}
|
|
3266
3415
|
/**
|
|
3267
3416
|
* <p>Information about a reactive insight. This object is returned by
|
|
3268
|
-
*
|
|
3417
|
+
* <code>DescribeInsight</code>.</p>
|
|
3269
3418
|
*/
|
|
3270
3419
|
export interface ReactiveOrganizationInsightSummary {
|
|
3271
3420
|
/**
|
|
@@ -3285,7 +3434,8 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
3285
3434
|
*/
|
|
3286
3435
|
Name?: string;
|
|
3287
3436
|
/**
|
|
3288
|
-
* <p> An array of severity values used to search for insights.
|
|
3437
|
+
* <p> An array of severity values used to search for insights.
|
|
3438
|
+
* For more information, see
|
|
3289
3439
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3290
3440
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3291
3441
|
*/
|
|
@@ -3387,11 +3537,11 @@ export interface RecommendationRelatedAnomalyResource {
|
|
|
3387
3537
|
*/
|
|
3388
3538
|
Name?: string;
|
|
3389
3539
|
/**
|
|
3390
|
-
* <p> The type of the resource. Resource types take the same form that is
|
|
3391
|
-
*
|
|
3392
|
-
* For example, <code>AWS::RDS::DBCluster</code>. For more information, see
|
|
3393
|
-
*
|
|
3394
|
-
*
|
|
3540
|
+
* <p> The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation
|
|
3541
|
+
* resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
|
|
3542
|
+
* For example, <code>AWS::RDS::DBCluster</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services
|
|
3543
|
+
* resource and property types reference</a> in the <i>Amazon Web Services CloudFormation User
|
|
3544
|
+
* Guide</i>.</p>
|
|
3395
3545
|
*/
|
|
3396
3546
|
Type?: string;
|
|
3397
3547
|
}
|
|
@@ -3537,6 +3687,10 @@ export interface Recommendation {
|
|
|
3537
3687
|
* what's happening and to help address the issue. </p>
|
|
3538
3688
|
*/
|
|
3539
3689
|
RelatedAnomalies?: RecommendationRelatedAnomaly[];
|
|
3690
|
+
/**
|
|
3691
|
+
* <p>The category type of the recommendation.</p>
|
|
3692
|
+
*/
|
|
3693
|
+
Category?: string;
|
|
3540
3694
|
}
|
|
3541
3695
|
export declare namespace Recommendation {
|
|
3542
3696
|
/**
|
|
@@ -3744,7 +3898,7 @@ export interface SearchOrganizationInsightsRequest {
|
|
|
3744
3898
|
NextToken?: string;
|
|
3745
3899
|
/**
|
|
3746
3900
|
* <p> The type of insights you are searching for (<code>REACTIVE</code> or
|
|
3747
|
-
*
|
|
3901
|
+
* <code>PROACTIVE</code>). </p>
|
|
3748
3902
|
*/
|
|
3749
3903
|
Type: InsightType | string | undefined;
|
|
3750
3904
|
}
|
|
@@ -3801,6 +3955,26 @@ export declare namespace StartCostEstimationResponse {
|
|
|
3801
3955
|
*/
|
|
3802
3956
|
const filterSensitiveLog: (obj: StartCostEstimationResponse) => any;
|
|
3803
3957
|
}
|
|
3958
|
+
export interface UpdateEventSourcesConfigRequest {
|
|
3959
|
+
/**
|
|
3960
|
+
* <p>The name of the event source.</p>
|
|
3961
|
+
*/
|
|
3962
|
+
EventSources?: EventSourcesConfig;
|
|
3963
|
+
}
|
|
3964
|
+
export declare namespace UpdateEventSourcesConfigRequest {
|
|
3965
|
+
/**
|
|
3966
|
+
* @internal
|
|
3967
|
+
*/
|
|
3968
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigRequest) => any;
|
|
3969
|
+
}
|
|
3970
|
+
export interface UpdateEventSourcesConfigResponse {
|
|
3971
|
+
}
|
|
3972
|
+
export declare namespace UpdateEventSourcesConfigResponse {
|
|
3973
|
+
/**
|
|
3974
|
+
* @internal
|
|
3975
|
+
*/
|
|
3976
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigResponse) => any;
|
|
3977
|
+
}
|
|
3804
3978
|
export declare enum UpdateResourceCollectionAction {
|
|
3805
3979
|
ADD = "ADD",
|
|
3806
3980
|
REMOVE = "REMOVE"
|
|
@@ -3824,7 +3998,7 @@ export declare namespace UpdateCloudFormationCollectionFilter {
|
|
|
3824
3998
|
}
|
|
3825
3999
|
/**
|
|
3826
4000
|
* <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
|
|
3827
|
-
*
|
|
4001
|
+
* <i>key</i>/<i>value</i> pair.</p>
|
|
3828
4002
|
*/
|
|
3829
4003
|
export interface UpdateTagCollectionFilter {
|
|
3830
4004
|
/**
|
|
@@ -3846,7 +4020,7 @@ export interface UpdateTagCollectionFilter {
|
|
|
3846
4020
|
AppBoundaryKey: string | undefined;
|
|
3847
4021
|
/**
|
|
3848
4022
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
3849
|
-
*
|
|
4023
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
3850
4024
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
3851
4025
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
3852
4026
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -3871,7 +4045,7 @@ export interface UpdateResourceCollectionFilter {
|
|
|
3871
4045
|
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
3872
4046
|
/**
|
|
3873
4047
|
* <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
3874
|
-
*
|
|
4048
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
3875
4049
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
3876
4050
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
3877
4051
|
* table resource that you assign to an Lambda function. For more information about
|