@aws-sdk/client-devops-guru 3.934.0 → 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException";
3
- /**
4
- * <p> You don't have permissions to perform the requested operation. The user or role that
5
- * is making the request must have at least one IAM permissions policy attached that grants
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
7
- * <i>IAM User Guide</i>. </p>
8
- * @public
9
- */
10
- export declare class AccessDeniedException extends __BaseException {
11
- readonly name: "AccessDeniedException";
12
- readonly $fault: "client";
13
- Message: string | undefined;
14
- /**
15
- * @internal
16
- */
17
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
18
- }
1
+ import { AnomalySeverity, AnomalyStatus, AnomalyType, CloudWatchMetricDataStatusCode, CloudWatchMetricsStat, CostEstimationServiceResourceState, CostEstimationStatus, EventClass, EventDataSource, EventSourceOptInStatus, InsightFeedbackOption, InsightSeverity, InsightStatus, InsightType, Locale, LogAnomalyType, NotificationMessageType, OptInStatus, OrganizationResourceCollectionType, ResourceCollectionType, ResourcePermission, ResourceTypeFilter, ServerSideEncryptionType, ServiceName, UpdateResourceCollectionAction } from "./enums";
19
2
  /**
20
3
  * <p> Information about the number of open reactive and proactive insights that can be used
21
4
  * to gauge the health of your system. </p>
@@ -55,34 +38,6 @@ export interface AccountHealth {
55
38
  */
56
39
  Insight?: AccountInsightHealth | undefined;
57
40
  }
58
- /**
59
- * @public
60
- * @enum
61
- */
62
- export declare const NotificationMessageType: {
63
- readonly CLOSED_INSIGHT: "CLOSED_INSIGHT";
64
- readonly NEW_ASSOCIATION: "NEW_ASSOCIATION";
65
- readonly NEW_INSIGHT: "NEW_INSIGHT";
66
- readonly NEW_RECOMMENDATION: "NEW_RECOMMENDATION";
67
- readonly SEVERITY_UPGRADED: "SEVERITY_UPGRADED";
68
- };
69
- /**
70
- * @public
71
- */
72
- export type NotificationMessageType = (typeof NotificationMessageType)[keyof typeof NotificationMessageType];
73
- /**
74
- * @public
75
- * @enum
76
- */
77
- export declare const InsightSeverity: {
78
- readonly HIGH: "HIGH";
79
- readonly LOW: "LOW";
80
- readonly MEDIUM: "MEDIUM";
81
- };
82
- /**
83
- * @public
84
- */
85
- export type InsightSeverity = (typeof InsightSeverity)[keyof typeof InsightSeverity];
86
41
  /**
87
42
  * <p>
88
43
  * The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. You can choose to specify which events or message types to receive notifications for.
@@ -176,113 +131,6 @@ export interface AddNotificationChannelResponse {
176
131
  */
177
132
  Id: string | undefined;
178
133
  }
179
- /**
180
- * <p> An exception that is thrown when a conflict occurs. </p>
181
- * @public
182
- */
183
- export declare class ConflictException extends __BaseException {
184
- readonly name: "ConflictException";
185
- readonly $fault: "client";
186
- Message: string | undefined;
187
- /**
188
- * <p> The ID of the Amazon Web Services resource in which a conflict occurred. </p>
189
- * @public
190
- */
191
- ResourceId: string | undefined;
192
- /**
193
- * <p> The type of the Amazon Web Services resource in which a conflict occurred. </p>
194
- * @public
195
- */
196
- ResourceType: string | undefined;
197
- /**
198
- * @internal
199
- */
200
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
201
- }
202
- /**
203
- * <p>An internal failure in an Amazon service occurred.</p>
204
- * @public
205
- */
206
- export declare class InternalServerException extends __BaseException {
207
- readonly name: "InternalServerException";
208
- readonly $fault: "server";
209
- Message: string | undefined;
210
- /**
211
- * <p> The number of seconds after which the action that caused the internal server
212
- * exception can be retried. </p>
213
- * @public
214
- */
215
- RetryAfterSeconds?: number | undefined;
216
- /**
217
- * @internal
218
- */
219
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
220
- }
221
- /**
222
- * <p>A requested resource could not be found</p>
223
- * @public
224
- */
225
- export declare class ResourceNotFoundException extends __BaseException {
226
- readonly name: "ResourceNotFoundException";
227
- readonly $fault: "client";
228
- Message: string | undefined;
229
- /**
230
- * <p> The ID of the Amazon Web Services resource that could not be found. </p>
231
- * @public
232
- */
233
- ResourceId: string | undefined;
234
- /**
235
- * <p> The type of the Amazon Web Services resource that could not be found. </p>
236
- * @public
237
- */
238
- ResourceType: string | undefined;
239
- /**
240
- * @internal
241
- */
242
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
243
- }
244
- /**
245
- * <p>The request contains a value that exceeds a maximum quota.</p>
246
- * @public
247
- */
248
- export declare class ServiceQuotaExceededException extends __BaseException {
249
- readonly name: "ServiceQuotaExceededException";
250
- readonly $fault: "client";
251
- Message?: string | undefined;
252
- /**
253
- * @internal
254
- */
255
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
256
- }
257
- /**
258
- * <p>The request was denied due to a request throttling.</p>
259
- * @public
260
- */
261
- export declare class ThrottlingException extends __BaseException {
262
- readonly name: "ThrottlingException";
263
- readonly $fault: "client";
264
- Message: string | undefined;
265
- /**
266
- * <p> The code of the quota that was exceeded, causing the throttling exception. </p>
267
- * @public
268
- */
269
- QuotaCode?: string | undefined;
270
- /**
271
- * <p> The code of the service that caused the throttling exception. </p>
272
- * @public
273
- */
274
- ServiceCode?: string | undefined;
275
- /**
276
- * <p> The number of seconds after which the action that caused the throttling exception can
277
- * be retried. </p>
278
- * @public
279
- */
280
- RetryAfterSeconds?: number | undefined;
281
- /**
282
- * @internal
283
- */
284
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
285
- }
286
134
  /**
287
135
  * <p> The field associated with the validation exception. </p>
288
136
  * @public
@@ -300,62 +148,6 @@ export interface ValidationExceptionField {
300
148
  */
301
149
  Message: string | undefined;
302
150
  }
303
- /**
304
- * @public
305
- * @enum
306
- */
307
- export declare const ValidationExceptionReason: {
308
- readonly CANNOT_PARSE: "CANNOT_PARSE";
309
- readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
310
- readonly INVALID_PARAMETER_COMBINATION: "INVALID_PARAMETER_COMBINATION";
311
- readonly OTHER: "OTHER";
312
- readonly PARAMETER_INCONSISTENT_WITH_SERVICE_STATE: "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE";
313
- readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
314
- };
315
- /**
316
- * @public
317
- */
318
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
319
- /**
320
- * <p> Contains information about data passed in to a field during a request that is not
321
- * valid. </p>
322
- * @public
323
- */
324
- export declare class ValidationException extends __BaseException {
325
- readonly name: "ValidationException";
326
- readonly $fault: "client";
327
- /**
328
- * <p> A message that describes the validation exception. </p>
329
- * @public
330
- */
331
- Message: string | undefined;
332
- /**
333
- * <p> The reason the validation exception was thrown. </p>
334
- * @public
335
- */
336
- Reason?: ValidationExceptionReason | undefined;
337
- /**
338
- * <p> An array of fields that are associated with the validation exception. </p>
339
- * @public
340
- */
341
- Fields?: ValidationExceptionField[] | undefined;
342
- /**
343
- * @internal
344
- */
345
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
346
- }
347
- /**
348
- * @public
349
- * @enum
350
- */
351
- export declare const EventSourceOptInStatus: {
352
- readonly DISABLED: "DISABLED";
353
- readonly ENABLED: "ENABLED";
354
- };
355
- /**
356
- * @public
357
- */
358
- export type EventSourceOptInStatus = (typeof EventSourceOptInStatus)[keyof typeof EventSourceOptInStatus];
359
151
  /**
360
152
  * <p>Information about your account's integration with Amazon CodeGuru Profiler. This
361
153
  * returns whether DevOps Guru is configured to consume recommendations generated from Amazon
@@ -370,24 +162,6 @@ export interface AmazonCodeGuruProfilerIntegration {
370
162
  */
371
163
  Status?: EventSourceOptInStatus | undefined;
372
164
  }
373
- /**
374
- * @public
375
- * @enum
376
- */
377
- export declare const LogAnomalyType: {
378
- readonly BLOCK_FORMAT: "BLOCK_FORMAT";
379
- readonly FORMAT: "FORMAT";
380
- readonly HTTP_CODE: "HTTP_CODE";
381
- readonly KEYWORD: "KEYWORD";
382
- readonly KEYWORD_TOKEN: "KEYWORD_TOKEN";
383
- readonly NEW_FIELD_NAME: "NEW_FIELD_NAME";
384
- readonly NUMERICAL_NAN: "NUMERICAL_NAN";
385
- readonly NUMERICAL_POINT: "NUMERICAL_POINT";
386
- };
387
- /**
388
- * @public
389
- */
390
- export type LogAnomalyType = (typeof LogAnomalyType)[keyof typeof LogAnomalyType];
391
165
  /**
392
166
  * <p>
393
167
  * Information about an anomalous log event found within a log group.
@@ -540,19 +314,6 @@ export interface AnomalyResource {
540
314
  */
541
315
  Type?: string | undefined;
542
316
  }
543
- /**
544
- * @public
545
- * @enum
546
- */
547
- export declare const AnomalySeverity: {
548
- readonly HIGH: "HIGH";
549
- readonly LOW: "LOW";
550
- readonly MEDIUM: "MEDIUM";
551
- };
552
- /**
553
- * @public
554
- */
555
- export type AnomalySeverity = (typeof AnomalySeverity)[keyof typeof AnomalySeverity];
556
317
  /**
557
318
  * <p> The dimension of an Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
558
319
  * your account for operational problems and anomalous behavior. A dimension is a
@@ -572,19 +333,6 @@ export interface CloudWatchMetricsDimension {
572
333
  */
573
334
  Value?: string | undefined;
574
335
  }
575
- /**
576
- * @public
577
- * @enum
578
- */
579
- export declare const CloudWatchMetricDataStatusCode: {
580
- readonly COMPLETE: "Complete";
581
- readonly INTERNAL_ERROR: "InternalError";
582
- readonly PARTIAL_DATA: "PartialData";
583
- };
584
- /**
585
- * @public
586
- */
587
- export type CloudWatchMetricDataStatusCode = (typeof CloudWatchMetricDataStatusCode)[keyof typeof CloudWatchMetricDataStatusCode];
588
336
  /**
589
337
  * <p>A pair that contains metric values at the respective timestamp.</p>
590
338
  * @public
@@ -619,24 +367,6 @@ export interface CloudWatchMetricsDataSummary {
619
367
  */
620
368
  StatusCode?: CloudWatchMetricDataStatusCode | undefined;
621
369
  }
622
- /**
623
- * @public
624
- * @enum
625
- */
626
- export declare const CloudWatchMetricsStat: {
627
- readonly AVERAGE: "Average";
628
- readonly MAXIMUM: "Maximum";
629
- readonly MINIMUM: "Minimum";
630
- readonly P50: "p50";
631
- readonly P90: "p90";
632
- readonly P99: "p99";
633
- readonly SAMPLE_COUNT: "SampleCount";
634
- readonly SUM: "Sum";
635
- };
636
- /**
637
- * @public
638
- */
639
- export type CloudWatchMetricsStat = (typeof CloudWatchMetricsStat)[keyof typeof CloudWatchMetricsStat];
640
370
  /**
641
371
  * <p> Information about an Amazon CloudWatch metric. </p>
642
372
  * @public
@@ -1119,18 +849,6 @@ export interface AnomalySourceMetadata {
1119
849
  */
1120
850
  SourceResourceType?: string | undefined;
1121
851
  }
1122
- /**
1123
- * @public
1124
- * @enum
1125
- */
1126
- export declare const AnomalyStatus: {
1127
- readonly CLOSED: "CLOSED";
1128
- readonly ONGOING: "ONGOING";
1129
- };
1130
- /**
1131
- * @public
1132
- */
1133
- export type AnomalyStatus = (typeof AnomalyStatus)[keyof typeof AnomalyStatus];
1134
852
  /**
1135
853
  * <p> A time range that specifies when the observed unusual behavior in an anomaly started
1136
854
  * and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
@@ -1149,18 +867,6 @@ export interface AnomalyTimeRange {
1149
867
  */
1150
868
  EndTime?: Date | undefined;
1151
869
  }
1152
- /**
1153
- * @public
1154
- * @enum
1155
- */
1156
- export declare const AnomalyType: {
1157
- readonly CAUSAL: "CAUSAL";
1158
- readonly CONTEXTUAL: "CONTEXTUAL";
1159
- };
1160
- /**
1161
- * @public
1162
- */
1163
- export type AnomalyType = (typeof AnomalyType)[keyof typeof AnomalyType];
1164
870
  /**
1165
871
  * @public
1166
872
  */
@@ -1668,21 +1374,6 @@ export interface DescribeFeedbackRequest {
1668
1374
  */
1669
1375
  InsightId?: string | undefined;
1670
1376
  }
1671
- /**
1672
- * @public
1673
- * @enum
1674
- */
1675
- export declare const InsightFeedbackOption: {
1676
- readonly ALERT_TOO_SENSITIVE: "ALERT_TOO_SENSITIVE";
1677
- readonly DATA_INCORRECT: "DATA_INCORRECT";
1678
- readonly DATA_NOISY_ANOMALY: "DATA_NOISY_ANOMALY";
1679
- readonly RECOMMENDATION_USEFUL: "RECOMMENDATION_USEFUL";
1680
- readonly VALID_COLLECTION: "VALID_COLLECTION";
1681
- };
1682
- /**
1683
- * @public
1684
- */
1685
- export type InsightFeedbackOption = (typeof InsightFeedbackOption)[keyof typeof InsightFeedbackOption];
1686
1377
  /**
1687
1378
  * <p> Information about insight feedback received from a customer. </p>
1688
1379
  * @public
@@ -1741,18 +1432,6 @@ export interface InsightTimeRange {
1741
1432
  */
1742
1433
  EndTime?: Date | undefined;
1743
1434
  }
1744
- /**
1745
- * @public
1746
- * @enum
1747
- */
1748
- export declare const InsightStatus: {
1749
- readonly CLOSED: "CLOSED";
1750
- readonly ONGOING: "ONGOING";
1751
- };
1752
- /**
1753
- * @public
1754
- */
1755
- export type InsightStatus = (typeof InsightStatus)[keyof typeof InsightStatus];
1756
1435
  /**
1757
1436
  * <p>Details about a proactive insight. This object is returned by
1758
1437
  * <code>ListInsights</code>.</p>
@@ -1972,20 +1651,6 @@ export interface DescribeOrganizationOverviewResponse {
1972
1651
  */
1973
1652
  ProactiveInsights: number | undefined;
1974
1653
  }
1975
- /**
1976
- * @public
1977
- * @enum
1978
- */
1979
- export declare const OrganizationResourceCollectionType: {
1980
- readonly AWS_ACCOUNT: "AWS_ACCOUNT";
1981
- readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
1982
- readonly AWS_SERVICE: "AWS_SERVICE";
1983
- readonly AWS_TAGS: "AWS_TAGS";
1984
- };
1985
- /**
1986
- * @public
1987
- */
1988
- export type OrganizationResourceCollectionType = (typeof OrganizationResourceCollectionType)[keyof typeof OrganizationResourceCollectionType];
1989
1654
  /**
1990
1655
  * @public
1991
1656
  */
@@ -2086,41 +1751,6 @@ export interface ServiceInsightHealth {
2086
1751
  */
2087
1752
  OpenReactiveInsights?: number | undefined;
2088
1753
  }
2089
- /**
2090
- * @public
2091
- * @enum
2092
- */
2093
- export declare const ServiceName: {
2094
- readonly API_GATEWAY: "API_GATEWAY";
2095
- readonly APPLICATION_ELB: "APPLICATION_ELB";
2096
- readonly AUTO_SCALING_GROUP: "AUTO_SCALING_GROUP";
2097
- readonly CLOUD_FRONT: "CLOUD_FRONT";
2098
- readonly DYNAMO_DB: "DYNAMO_DB";
2099
- readonly EC2: "EC2";
2100
- readonly ECS: "ECS";
2101
- readonly EKS: "EKS";
2102
- readonly ELASTIC_BEANSTALK: "ELASTIC_BEANSTALK";
2103
- readonly ELASTI_CACHE: "ELASTI_CACHE";
2104
- readonly ELB: "ELB";
2105
- readonly ES: "ES";
2106
- readonly KINESIS: "KINESIS";
2107
- readonly LAMBDA: "LAMBDA";
2108
- readonly NAT_GATEWAY: "NAT_GATEWAY";
2109
- readonly NETWORK_ELB: "NETWORK_ELB";
2110
- readonly RDS: "RDS";
2111
- readonly REDSHIFT: "REDSHIFT";
2112
- readonly ROUTE_53: "ROUTE_53";
2113
- readonly S3: "S3";
2114
- readonly SAGE_MAKER: "SAGE_MAKER";
2115
- readonly SNS: "SNS";
2116
- readonly SQS: "SQS";
2117
- readonly STEP_FUNCTIONS: "STEP_FUNCTIONS";
2118
- readonly SWF: "SWF";
2119
- };
2120
- /**
2121
- * @public
2122
- */
2123
- export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
2124
1754
  /**
2125
1755
  * <p>Represents the health of an Amazon Web Services service.</p>
2126
1756
  * @public
@@ -2262,19 +1892,6 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
2262
1892
  */
2263
1893
  Tags?: TagHealth[] | undefined;
2264
1894
  }
2265
- /**
2266
- * @public
2267
- * @enum
2268
- */
2269
- export declare const ResourceCollectionType: {
2270
- readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
2271
- readonly AWS_SERVICE: "AWS_SERVICE";
2272
- readonly AWS_TAGS: "AWS_TAGS";
2273
- };
2274
- /**
2275
- * @public
2276
- */
2277
- export type ResourceCollectionType = (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
2278
1895
  /**
2279
1896
  * @public
2280
1897
  */
@@ -2361,30 +1978,6 @@ export interface DescribeResourceCollectionHealthResponse {
2361
1978
  */
2362
1979
  export interface DescribeServiceIntegrationRequest {
2363
1980
  }
2364
- /**
2365
- * @public
2366
- * @enum
2367
- */
2368
- export declare const OptInStatus: {
2369
- readonly DISABLED: "DISABLED";
2370
- readonly ENABLED: "ENABLED";
2371
- };
2372
- /**
2373
- * @public
2374
- */
2375
- export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
2376
- /**
2377
- * @public
2378
- * @enum
2379
- */
2380
- export declare const ServerSideEncryptionType: {
2381
- readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
2382
- readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
2383
- };
2384
- /**
2385
- * @public
2386
- */
2387
- export type ServerSideEncryptionType = (typeof ServerSideEncryptionType)[keyof typeof ServerSideEncryptionType];
2388
1981
  /**
2389
1982
  * <p>
2390
1983
  * Information about the KMS encryption used with DevOps Guru.
@@ -2500,18 +2093,6 @@ export interface GetCostEstimationRequest {
2500
2093
  */
2501
2094
  NextToken?: string | undefined;
2502
2095
  }
2503
- /**
2504
- * @public
2505
- * @enum
2506
- */
2507
- export declare const CostEstimationServiceResourceState: {
2508
- readonly ACTIVE: "ACTIVE";
2509
- readonly INACTIVE: "INACTIVE";
2510
- };
2511
- /**
2512
- * @public
2513
- */
2514
- export type CostEstimationServiceResourceState = (typeof CostEstimationServiceResourceState)[keyof typeof CostEstimationServiceResourceState];
2515
2096
  /**
2516
2097
  * <p>An object that contains information about the estimated monthly cost to analyze an
2517
2098
  * Amazon Web Services resource. For more information,
@@ -2666,18 +2247,6 @@ export interface CostEstimationResourceCollectionFilter {
2666
2247
  */
2667
2248
  Tags?: TagCostEstimationResourceCollectionFilter[] | undefined;
2668
2249
  }
2669
- /**
2670
- * @public
2671
- * @enum
2672
- */
2673
- export declare const CostEstimationStatus: {
2674
- readonly COMPLETED: "COMPLETED";
2675
- readonly ONGOING: "ONGOING";
2676
- };
2677
- /**
2678
- * @public
2679
- */
2680
- export type CostEstimationStatus = (typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
2681
2250
  /**
2682
2251
  * <p>The time range of a cost estimation.</p>
2683
2252
  * @public
@@ -3218,33 +2787,6 @@ export interface ListAnomalousLogGroupsResponse {
3218
2787
  */
3219
2788
  NextToken?: string | undefined;
3220
2789
  }
3221
- /**
3222
- * @public
3223
- * @enum
3224
- */
3225
- export declare const EventDataSource: {
3226
- readonly AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL";
3227
- readonly AWS_CODE_DEPLOY: "AWS_CODE_DEPLOY";
3228
- };
3229
- /**
3230
- * @public
3231
- */
3232
- export type EventDataSource = (typeof EventDataSource)[keyof typeof EventDataSource];
3233
- /**
3234
- * @public
3235
- * @enum
3236
- */
3237
- export declare const EventClass: {
3238
- readonly CONFIG_CHANGE: "CONFIG_CHANGE";
3239
- readonly DEPLOYMENT: "DEPLOYMENT";
3240
- readonly INFRASTRUCTURE: "INFRASTRUCTURE";
3241
- readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
3242
- readonly SECURITY_CHANGE: "SECURITY_CHANGE";
3243
- };
3244
- /**
3245
- * @public
3246
- */
3247
- export type EventClass = (typeof EventClass)[keyof typeof EventClass];
3248
2790
  /**
3249
2791
  * <p> The time range during which an Amazon Web Services event occurred. Amazon Web Services resource events and
3250
2792
  * metrics are analyzed by DevOps Guru to find anomalous behavior and provide recommendations to
@@ -3426,18 +2968,6 @@ export interface ListEventsResponse {
3426
2968
  */
3427
2969
  NextToken?: string | undefined;
3428
2970
  }
3429
- /**
3430
- * @public
3431
- * @enum
3432
- */
3433
- export declare const InsightType: {
3434
- readonly PROACTIVE: "PROACTIVE";
3435
- readonly REACTIVE: "REACTIVE";
3436
- };
3437
- /**
3438
- * @public
3439
- */
3440
- export type InsightType = (typeof InsightType)[keyof typeof InsightType];
3441
2971
  /**
3442
2972
  * <p> Used to filter for insights that have any status. </p>
3443
2973
  * @public
@@ -3688,55 +3218,6 @@ export interface ListInsightsResponse {
3688
3218
  */
3689
3219
  NextToken?: string | undefined;
3690
3220
  }
3691
- /**
3692
- * @public
3693
- * @enum
3694
- */
3695
- export declare const ResourcePermission: {
3696
- readonly FULL_PERMISSION: "FULL_PERMISSION";
3697
- readonly MISSING_PERMISSION: "MISSING_PERMISSION";
3698
- };
3699
- /**
3700
- * @public
3701
- */
3702
- export type ResourcePermission = (typeof ResourcePermission)[keyof typeof ResourcePermission];
3703
- /**
3704
- * @public
3705
- * @enum
3706
- */
3707
- export declare const ResourceTypeFilter: {
3708
- readonly CLOUDFRONT_DISTRIBUTION: "CLOUDFRONT_DISTRIBUTION";
3709
- readonly DYNAMODB_TABLE: "DYNAMODB_TABLE";
3710
- readonly EC2_NAT_GATEWAY: "EC2_NAT_GATEWAY";
3711
- readonly ECS_CLUSTER: "ECS_CLUSTER";
3712
- readonly ECS_SERVICE: "ECS_SERVICE";
3713
- readonly EKS_CLUSTER: "EKS_CLUSTER";
3714
- readonly ELASTICACHE_CACHE_CLUSTER: "ELASTICACHE_CACHE_CLUSTER";
3715
- readonly ELASTICSEARCH_DOMAIN: "ELASTICSEARCH_DOMAIN";
3716
- readonly ELASTIC_BEANSTALK_ENVIRONMENT: "ELASTIC_BEANSTALK_ENVIRONMENT";
3717
- readonly ELASTIC_LOAD_BALANCER_LOAD_BALANCER: "ELASTIC_LOAD_BALANCER_LOAD_BALANCER";
3718
- readonly ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER: "ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER";
3719
- readonly ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP: "ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP";
3720
- readonly KINESIS_STREAM: "KINESIS_STREAM";
3721
- readonly LAMBDA_FUNCTION: "LAMBDA_FUNCTION";
3722
- readonly LOG_GROUPS: "LOG_GROUPS";
3723
- readonly OPEN_SEARCH_SERVICE_DOMAIN: "OPEN_SEARCH_SERVICE_DOMAIN";
3724
- readonly RDS_DB_CLUSTER: "RDS_DB_CLUSTER";
3725
- readonly RDS_DB_INSTANCE: "RDS_DB_INSTANCE";
3726
- readonly REDSHIFT_CLUSTER: "REDSHIFT_CLUSTER";
3727
- readonly ROUTE53_HEALTH_CHECK: "ROUTE53_HEALTH_CHECK";
3728
- readonly ROUTE53_HOSTED_ZONE: "ROUTE53_HOSTED_ZONE";
3729
- readonly S3_BUCKET: "S3_BUCKET";
3730
- readonly SAGEMAKER_ENDPOINT: "SAGEMAKER_ENDPOINT";
3731
- readonly SNS_TOPIC: "SNS_TOPIC";
3732
- readonly SQS_QUEUE: "SQS_QUEUE";
3733
- readonly STEP_FUNCTIONS_ACTIVITY: "STEP_FUNCTIONS_ACTIVITY";
3734
- readonly STEP_FUNCTIONS_STATE_MACHINE: "STEP_FUNCTIONS_STATE_MACHINE";
3735
- };
3736
- /**
3737
- * @public
3738
- */
3739
- export type ResourceTypeFilter = (typeof ResourceTypeFilter)[keyof typeof ResourceTypeFilter];
3740
3221
  /**
3741
3222
  * <p>
3742
3223
  * Filters to determine which monitored resources you want to retrieve. You can filter by resource type or resource permission status.
@@ -4078,27 +3559,6 @@ export interface ListOrganizationInsightsResponse {
4078
3559
  */
4079
3560
  NextToken?: string | undefined;
4080
3561
  }
4081
- /**
4082
- * @public
4083
- * @enum
4084
- */
4085
- export declare const Locale: {
4086
- readonly DE_DE: "DE_DE";
4087
- readonly EN_GB: "EN_GB";
4088
- readonly EN_US: "EN_US";
4089
- readonly ES_ES: "ES_ES";
4090
- readonly FR_FR: "FR_FR";
4091
- readonly IT_IT: "IT_IT";
4092
- readonly JA_JP: "JA_JP";
4093
- readonly KO_KR: "KO_KR";
4094
- readonly PT_BR: "PT_BR";
4095
- readonly ZH_CN: "ZH_CN";
4096
- readonly ZH_TW: "ZH_TW";
4097
- };
4098
- /**
4099
- * @public
4100
- */
4101
- export type Locale = (typeof Locale)[keyof typeof Locale];
4102
3562
  /**
4103
3563
  * @public
4104
3564
  */
@@ -4542,18 +4002,6 @@ export interface UpdateEventSourcesConfigRequest {
4542
4002
  */
4543
4003
  export interface UpdateEventSourcesConfigResponse {
4544
4004
  }
4545
- /**
4546
- * @public
4547
- * @enum
4548
- */
4549
- export declare const UpdateResourceCollectionAction: {
4550
- readonly ADD: "ADD";
4551
- readonly REMOVE: "REMOVE";
4552
- };
4553
- /**
4554
- * @public
4555
- */
4556
- export type UpdateResourceCollectionAction = (typeof UpdateResourceCollectionAction)[keyof typeof UpdateResourceCollectionAction];
4557
4005
  /**
4558
4006
  * <p> Contains the names of Amazon Web Services CloudFormation stacks used to update a collection of stacks.
4559
4007
  * You can specify up to 500 Amazon Web Services CloudFormation stacks.</p>
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { DevOpsGuruExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { DevOpsGuruServiceException } from "./models/DevOpsGuruServiceException";