@aws-sdk/client-devops-guru 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +188 -213
- package/dist-es/models/models_0.js +188 -213
- package/dist-types/models/models_0.d.ts +313 -188
- package/dist-types/ts3.4/models/models_0.d.ts +230 -188
- package/package.json +34 -34
|
@@ -53,22 +53,32 @@ export interface AccountHealth {
|
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
55
|
* @public
|
|
56
|
+
* @enum
|
|
56
57
|
*/
|
|
57
|
-
export declare
|
|
58
|
-
CLOSED_INSIGHT
|
|
59
|
-
NEW_ASSOCIATION
|
|
60
|
-
NEW_INSIGHT
|
|
61
|
-
NEW_RECOMMENDATION
|
|
62
|
-
SEVERITY_UPGRADED
|
|
63
|
-
}
|
|
58
|
+
export declare const NotificationMessageType: {
|
|
59
|
+
readonly CLOSED_INSIGHT: "CLOSED_INSIGHT";
|
|
60
|
+
readonly NEW_ASSOCIATION: "NEW_ASSOCIATION";
|
|
61
|
+
readonly NEW_INSIGHT: "NEW_INSIGHT";
|
|
62
|
+
readonly NEW_RECOMMENDATION: "NEW_RECOMMENDATION";
|
|
63
|
+
readonly SEVERITY_UPGRADED: "SEVERITY_UPGRADED";
|
|
64
|
+
};
|
|
64
65
|
/**
|
|
65
66
|
* @public
|
|
66
67
|
*/
|
|
67
|
-
export
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
export type NotificationMessageType = (typeof NotificationMessageType)[keyof typeof NotificationMessageType];
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
* @enum
|
|
72
|
+
*/
|
|
73
|
+
export declare const InsightSeverity: {
|
|
74
|
+
readonly HIGH: "HIGH";
|
|
75
|
+
readonly LOW: "LOW";
|
|
76
|
+
readonly MEDIUM: "MEDIUM";
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export type InsightSeverity = (typeof InsightSeverity)[keyof typeof InsightSeverity];
|
|
72
82
|
/**
|
|
73
83
|
* @public
|
|
74
84
|
* <p>
|
|
@@ -273,15 +283,20 @@ export interface ValidationExceptionField {
|
|
|
273
283
|
}
|
|
274
284
|
/**
|
|
275
285
|
* @public
|
|
286
|
+
* @enum
|
|
276
287
|
*/
|
|
277
|
-
export declare
|
|
278
|
-
CANNOT_PARSE
|
|
279
|
-
FIELD_VALIDATION_FAILED
|
|
280
|
-
INVALID_PARAMETER_COMBINATION
|
|
281
|
-
OTHER
|
|
282
|
-
PARAMETER_INCONSISTENT_WITH_SERVICE_STATE
|
|
283
|
-
UNKNOWN_OPERATION
|
|
284
|
-
}
|
|
288
|
+
export declare const ValidationExceptionReason: {
|
|
289
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
290
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
291
|
+
readonly INVALID_PARAMETER_COMBINATION: "INVALID_PARAMETER_COMBINATION";
|
|
292
|
+
readonly OTHER: "OTHER";
|
|
293
|
+
readonly PARAMETER_INCONSISTENT_WITH_SERVICE_STATE: "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE";
|
|
294
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
285
300
|
/**
|
|
286
301
|
* @public
|
|
287
302
|
* <p> Contains information about data passed in to a field during a request that is not
|
|
@@ -309,11 +324,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
309
324
|
}
|
|
310
325
|
/**
|
|
311
326
|
* @public
|
|
327
|
+
* @enum
|
|
312
328
|
*/
|
|
313
|
-
export declare
|
|
314
|
-
DISABLED
|
|
315
|
-
ENABLED
|
|
316
|
-
}
|
|
329
|
+
export declare const EventSourceOptInStatus: {
|
|
330
|
+
readonly DISABLED: "DISABLED";
|
|
331
|
+
readonly ENABLED: "ENABLED";
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export type EventSourceOptInStatus = (typeof EventSourceOptInStatus)[keyof typeof EventSourceOptInStatus];
|
|
317
337
|
/**
|
|
318
338
|
* @public
|
|
319
339
|
* <p>Information about your account's integration with Amazon CodeGuru Profiler. This
|
|
@@ -329,17 +349,22 @@ export interface AmazonCodeGuruProfilerIntegration {
|
|
|
329
349
|
}
|
|
330
350
|
/**
|
|
331
351
|
* @public
|
|
352
|
+
* @enum
|
|
332
353
|
*/
|
|
333
|
-
export declare
|
|
334
|
-
BLOCK_FORMAT
|
|
335
|
-
FORMAT
|
|
336
|
-
HTTP_CODE
|
|
337
|
-
KEYWORD
|
|
338
|
-
KEYWORD_TOKEN
|
|
339
|
-
NEW_FIELD_NAME
|
|
340
|
-
NUMERICAL_NAN
|
|
341
|
-
NUMERICAL_POINT
|
|
342
|
-
}
|
|
354
|
+
export declare const LogAnomalyType: {
|
|
355
|
+
readonly BLOCK_FORMAT: "BLOCK_FORMAT";
|
|
356
|
+
readonly FORMAT: "FORMAT";
|
|
357
|
+
readonly HTTP_CODE: "HTTP_CODE";
|
|
358
|
+
readonly KEYWORD: "KEYWORD";
|
|
359
|
+
readonly KEYWORD_TOKEN: "KEYWORD_TOKEN";
|
|
360
|
+
readonly NEW_FIELD_NAME: "NEW_FIELD_NAME";
|
|
361
|
+
readonly NUMERICAL_NAN: "NUMERICAL_NAN";
|
|
362
|
+
readonly NUMERICAL_POINT: "NUMERICAL_POINT";
|
|
363
|
+
};
|
|
364
|
+
/**
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
export type LogAnomalyType = (typeof LogAnomalyType)[keyof typeof LogAnomalyType];
|
|
343
368
|
/**
|
|
344
369
|
* @public
|
|
345
370
|
* <p>
|
|
@@ -477,12 +502,17 @@ export interface AnomalyResource {
|
|
|
477
502
|
}
|
|
478
503
|
/**
|
|
479
504
|
* @public
|
|
505
|
+
* @enum
|
|
480
506
|
*/
|
|
481
|
-
export declare
|
|
482
|
-
HIGH
|
|
483
|
-
LOW
|
|
484
|
-
MEDIUM
|
|
485
|
-
}
|
|
507
|
+
export declare const AnomalySeverity: {
|
|
508
|
+
readonly HIGH: "HIGH";
|
|
509
|
+
readonly LOW: "LOW";
|
|
510
|
+
readonly MEDIUM: "MEDIUM";
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* @public
|
|
514
|
+
*/
|
|
515
|
+
export type AnomalySeverity = (typeof AnomalySeverity)[keyof typeof AnomalySeverity];
|
|
486
516
|
/**
|
|
487
517
|
* @public
|
|
488
518
|
* <p> The dimension of an Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
|
|
@@ -502,12 +532,17 @@ export interface CloudWatchMetricsDimension {
|
|
|
502
532
|
}
|
|
503
533
|
/**
|
|
504
534
|
* @public
|
|
535
|
+
* @enum
|
|
505
536
|
*/
|
|
506
|
-
export declare
|
|
507
|
-
COMPLETE
|
|
508
|
-
INTERNAL_ERROR
|
|
509
|
-
PARTIAL_DATA
|
|
510
|
-
}
|
|
537
|
+
export declare const CloudWatchMetricDataStatusCode: {
|
|
538
|
+
readonly COMPLETE: "Complete";
|
|
539
|
+
readonly INTERNAL_ERROR: "InternalError";
|
|
540
|
+
readonly PARTIAL_DATA: "PartialData";
|
|
541
|
+
};
|
|
542
|
+
/**
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
export type CloudWatchMetricDataStatusCode = (typeof CloudWatchMetricDataStatusCode)[keyof typeof CloudWatchMetricDataStatusCode];
|
|
511
546
|
/**
|
|
512
547
|
* @public
|
|
513
548
|
* <p>A pair that contains metric values at the respective timestamp.</p>
|
|
@@ -540,17 +575,22 @@ export interface CloudWatchMetricsDataSummary {
|
|
|
540
575
|
}
|
|
541
576
|
/**
|
|
542
577
|
* @public
|
|
578
|
+
* @enum
|
|
543
579
|
*/
|
|
544
|
-
export declare
|
|
545
|
-
AVERAGE
|
|
546
|
-
MAXIMUM
|
|
547
|
-
MINIMUM
|
|
548
|
-
P50
|
|
549
|
-
P90
|
|
550
|
-
P99
|
|
551
|
-
SAMPLE_COUNT
|
|
552
|
-
SUM
|
|
553
|
-
}
|
|
580
|
+
export declare const CloudWatchMetricsStat: {
|
|
581
|
+
readonly AVERAGE: "Average";
|
|
582
|
+
readonly MAXIMUM: "Maximum";
|
|
583
|
+
readonly MINIMUM: "Minimum";
|
|
584
|
+
readonly P50: "p50";
|
|
585
|
+
readonly P90: "p90";
|
|
586
|
+
readonly P99: "p99";
|
|
587
|
+
readonly SAMPLE_COUNT: "SampleCount";
|
|
588
|
+
readonly SUM: "Sum";
|
|
589
|
+
};
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
export type CloudWatchMetricsStat = (typeof CloudWatchMetricsStat)[keyof typeof CloudWatchMetricsStat];
|
|
554
594
|
/**
|
|
555
595
|
* @public
|
|
556
596
|
* <p> Information about an Amazon CloudWatch metric. </p>
|
|
@@ -1003,11 +1043,16 @@ export interface AnomalySourceMetadata {
|
|
|
1003
1043
|
}
|
|
1004
1044
|
/**
|
|
1005
1045
|
* @public
|
|
1046
|
+
* @enum
|
|
1006
1047
|
*/
|
|
1007
|
-
export declare
|
|
1008
|
-
CLOSED
|
|
1009
|
-
ONGOING
|
|
1010
|
-
}
|
|
1048
|
+
export declare const AnomalyStatus: {
|
|
1049
|
+
readonly CLOSED: "CLOSED";
|
|
1050
|
+
readonly ONGOING: "ONGOING";
|
|
1051
|
+
};
|
|
1052
|
+
/**
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
export type AnomalyStatus = (typeof AnomalyStatus)[keyof typeof AnomalyStatus];
|
|
1011
1056
|
/**
|
|
1012
1057
|
* @public
|
|
1013
1058
|
* <p> A time range that specifies when the observed unusual behavior in an anomaly started
|
|
@@ -1026,11 +1071,16 @@ export interface AnomalyTimeRange {
|
|
|
1026
1071
|
}
|
|
1027
1072
|
/**
|
|
1028
1073
|
* @public
|
|
1074
|
+
* @enum
|
|
1029
1075
|
*/
|
|
1030
|
-
export declare
|
|
1031
|
-
CAUSAL
|
|
1032
|
-
CONTEXTUAL
|
|
1033
|
-
}
|
|
1076
|
+
export declare const AnomalyType: {
|
|
1077
|
+
readonly CAUSAL: "CAUSAL";
|
|
1078
|
+
readonly CONTEXTUAL: "CONTEXTUAL";
|
|
1079
|
+
};
|
|
1080
|
+
/**
|
|
1081
|
+
* @public
|
|
1082
|
+
*/
|
|
1083
|
+
export type AnomalyType = (typeof AnomalyType)[keyof typeof AnomalyType];
|
|
1034
1084
|
/**
|
|
1035
1085
|
* @public
|
|
1036
1086
|
*/
|
|
@@ -1488,14 +1538,19 @@ export interface DescribeFeedbackRequest {
|
|
|
1488
1538
|
}
|
|
1489
1539
|
/**
|
|
1490
1540
|
* @public
|
|
1541
|
+
* @enum
|
|
1491
1542
|
*/
|
|
1492
|
-
export declare
|
|
1493
|
-
ALERT_TOO_SENSITIVE
|
|
1494
|
-
DATA_INCORRECT
|
|
1495
|
-
DATA_NOISY_ANOMALY
|
|
1496
|
-
RECOMMENDATION_USEFUL
|
|
1497
|
-
VALID_COLLECTION
|
|
1498
|
-
}
|
|
1543
|
+
export declare const InsightFeedbackOption: {
|
|
1544
|
+
readonly ALERT_TOO_SENSITIVE: "ALERT_TOO_SENSITIVE";
|
|
1545
|
+
readonly DATA_INCORRECT: "DATA_INCORRECT";
|
|
1546
|
+
readonly DATA_NOISY_ANOMALY: "DATA_NOISY_ANOMALY";
|
|
1547
|
+
readonly RECOMMENDATION_USEFUL: "RECOMMENDATION_USEFUL";
|
|
1548
|
+
readonly VALID_COLLECTION: "VALID_COLLECTION";
|
|
1549
|
+
};
|
|
1550
|
+
/**
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1553
|
+
export type InsightFeedbackOption = (typeof InsightFeedbackOption)[keyof typeof InsightFeedbackOption];
|
|
1499
1554
|
/**
|
|
1500
1555
|
* @public
|
|
1501
1556
|
* <p> Information about insight feedback received from a customer. </p>
|
|
@@ -1549,11 +1604,16 @@ export interface InsightTimeRange {
|
|
|
1549
1604
|
}
|
|
1550
1605
|
/**
|
|
1551
1606
|
* @public
|
|
1607
|
+
* @enum
|
|
1552
1608
|
*/
|
|
1553
|
-
export declare
|
|
1554
|
-
CLOSED
|
|
1555
|
-
ONGOING
|
|
1556
|
-
}
|
|
1609
|
+
export declare const InsightStatus: {
|
|
1610
|
+
readonly CLOSED: "CLOSED";
|
|
1611
|
+
readonly ONGOING: "ONGOING";
|
|
1612
|
+
};
|
|
1613
|
+
/**
|
|
1614
|
+
* @public
|
|
1615
|
+
*/
|
|
1616
|
+
export type InsightStatus = (typeof InsightStatus)[keyof typeof InsightStatus];
|
|
1557
1617
|
/**
|
|
1558
1618
|
* @public
|
|
1559
1619
|
* <p>Details about a proactive insight. This object is returned by
|
|
@@ -1744,13 +1804,18 @@ export interface DescribeOrganizationOverviewResponse {
|
|
|
1744
1804
|
}
|
|
1745
1805
|
/**
|
|
1746
1806
|
* @public
|
|
1807
|
+
* @enum
|
|
1747
1808
|
*/
|
|
1748
|
-
export declare
|
|
1749
|
-
AWS_ACCOUNT
|
|
1750
|
-
AWS_CLOUD_FORMATION
|
|
1751
|
-
AWS_SERVICE
|
|
1752
|
-
AWS_TAGS
|
|
1753
|
-
}
|
|
1809
|
+
export declare const OrganizationResourceCollectionType: {
|
|
1810
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
1811
|
+
readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
|
|
1812
|
+
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
1813
|
+
readonly AWS_TAGS: "AWS_TAGS";
|
|
1814
|
+
};
|
|
1815
|
+
/**
|
|
1816
|
+
* @public
|
|
1817
|
+
*/
|
|
1818
|
+
export type OrganizationResourceCollectionType = (typeof OrganizationResourceCollectionType)[keyof typeof OrganizationResourceCollectionType];
|
|
1754
1819
|
/**
|
|
1755
1820
|
* @public
|
|
1756
1821
|
*/
|
|
@@ -1840,34 +1905,39 @@ export interface ServiceInsightHealth {
|
|
|
1840
1905
|
}
|
|
1841
1906
|
/**
|
|
1842
1907
|
* @public
|
|
1908
|
+
* @enum
|
|
1843
1909
|
*/
|
|
1844
|
-
export declare
|
|
1845
|
-
API_GATEWAY
|
|
1846
|
-
APPLICATION_ELB
|
|
1847
|
-
AUTO_SCALING_GROUP
|
|
1848
|
-
CLOUD_FRONT
|
|
1849
|
-
DYNAMO_DB
|
|
1850
|
-
EC2
|
|
1851
|
-
ECS
|
|
1852
|
-
EKS
|
|
1853
|
-
ELASTIC_BEANSTALK
|
|
1854
|
-
ELASTI_CACHE
|
|
1855
|
-
ELB
|
|
1856
|
-
ES
|
|
1857
|
-
KINESIS
|
|
1858
|
-
LAMBDA
|
|
1859
|
-
NAT_GATEWAY
|
|
1860
|
-
NETWORK_ELB
|
|
1861
|
-
RDS
|
|
1862
|
-
REDSHIFT
|
|
1863
|
-
ROUTE_53
|
|
1864
|
-
S3
|
|
1865
|
-
SAGE_MAKER
|
|
1866
|
-
SNS
|
|
1867
|
-
SQS
|
|
1868
|
-
STEP_FUNCTIONS
|
|
1869
|
-
SWF
|
|
1870
|
-
}
|
|
1910
|
+
export declare const ServiceName: {
|
|
1911
|
+
readonly API_GATEWAY: "API_GATEWAY";
|
|
1912
|
+
readonly APPLICATION_ELB: "APPLICATION_ELB";
|
|
1913
|
+
readonly AUTO_SCALING_GROUP: "AUTO_SCALING_GROUP";
|
|
1914
|
+
readonly CLOUD_FRONT: "CLOUD_FRONT";
|
|
1915
|
+
readonly DYNAMO_DB: "DYNAMO_DB";
|
|
1916
|
+
readonly EC2: "EC2";
|
|
1917
|
+
readonly ECS: "ECS";
|
|
1918
|
+
readonly EKS: "EKS";
|
|
1919
|
+
readonly ELASTIC_BEANSTALK: "ELASTIC_BEANSTALK";
|
|
1920
|
+
readonly ELASTI_CACHE: "ELASTI_CACHE";
|
|
1921
|
+
readonly ELB: "ELB";
|
|
1922
|
+
readonly ES: "ES";
|
|
1923
|
+
readonly KINESIS: "KINESIS";
|
|
1924
|
+
readonly LAMBDA: "LAMBDA";
|
|
1925
|
+
readonly NAT_GATEWAY: "NAT_GATEWAY";
|
|
1926
|
+
readonly NETWORK_ELB: "NETWORK_ELB";
|
|
1927
|
+
readonly RDS: "RDS";
|
|
1928
|
+
readonly REDSHIFT: "REDSHIFT";
|
|
1929
|
+
readonly ROUTE_53: "ROUTE_53";
|
|
1930
|
+
readonly S3: "S3";
|
|
1931
|
+
readonly SAGE_MAKER: "SAGE_MAKER";
|
|
1932
|
+
readonly SNS: "SNS";
|
|
1933
|
+
readonly SQS: "SQS";
|
|
1934
|
+
readonly STEP_FUNCTIONS: "STEP_FUNCTIONS";
|
|
1935
|
+
readonly SWF: "SWF";
|
|
1936
|
+
};
|
|
1937
|
+
/**
|
|
1938
|
+
* @public
|
|
1939
|
+
*/
|
|
1940
|
+
export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
|
|
1871
1941
|
/**
|
|
1872
1942
|
* @public
|
|
1873
1943
|
* <p>Represents the health of an Amazon Web Services service.</p>
|
|
@@ -1999,12 +2069,17 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
1999
2069
|
}
|
|
2000
2070
|
/**
|
|
2001
2071
|
* @public
|
|
2072
|
+
* @enum
|
|
2002
2073
|
*/
|
|
2003
|
-
export declare
|
|
2004
|
-
AWS_CLOUD_FORMATION
|
|
2005
|
-
AWS_SERVICE
|
|
2006
|
-
AWS_TAGS
|
|
2007
|
-
}
|
|
2074
|
+
export declare const ResourceCollectionType: {
|
|
2075
|
+
readonly AWS_CLOUD_FORMATION: "AWS_CLOUD_FORMATION";
|
|
2076
|
+
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
2077
|
+
readonly AWS_TAGS: "AWS_TAGS";
|
|
2078
|
+
};
|
|
2079
|
+
/**
|
|
2080
|
+
* @public
|
|
2081
|
+
*/
|
|
2082
|
+
export type ResourceCollectionType = (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
|
|
2008
2083
|
/**
|
|
2009
2084
|
* @public
|
|
2010
2085
|
*/
|
|
@@ -2087,11 +2162,16 @@ export interface DescribeServiceIntegrationRequest {
|
|
|
2087
2162
|
}
|
|
2088
2163
|
/**
|
|
2089
2164
|
* @public
|
|
2165
|
+
* @enum
|
|
2090
2166
|
*/
|
|
2091
|
-
export declare
|
|
2092
|
-
DISABLED
|
|
2093
|
-
ENABLED
|
|
2094
|
-
}
|
|
2167
|
+
export declare const OptInStatus: {
|
|
2168
|
+
readonly DISABLED: "DISABLED";
|
|
2169
|
+
readonly ENABLED: "ENABLED";
|
|
2170
|
+
};
|
|
2171
|
+
/**
|
|
2172
|
+
* @public
|
|
2173
|
+
*/
|
|
2174
|
+
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
2095
2175
|
/**
|
|
2096
2176
|
* @public
|
|
2097
2177
|
* <p>
|
|
@@ -2156,11 +2236,16 @@ export interface GetCostEstimationRequest {
|
|
|
2156
2236
|
}
|
|
2157
2237
|
/**
|
|
2158
2238
|
* @public
|
|
2239
|
+
* @enum
|
|
2159
2240
|
*/
|
|
2160
|
-
export declare
|
|
2161
|
-
ACTIVE
|
|
2162
|
-
INACTIVE
|
|
2163
|
-
}
|
|
2241
|
+
export declare const CostEstimationServiceResourceState: {
|
|
2242
|
+
readonly ACTIVE: "ACTIVE";
|
|
2243
|
+
readonly INACTIVE: "INACTIVE";
|
|
2244
|
+
};
|
|
2245
|
+
/**
|
|
2246
|
+
* @public
|
|
2247
|
+
*/
|
|
2248
|
+
export type CostEstimationServiceResourceState = (typeof CostEstimationServiceResourceState)[keyof typeof CostEstimationServiceResourceState];
|
|
2164
2249
|
/**
|
|
2165
2250
|
* @public
|
|
2166
2251
|
* <p>An object that contains information about the estimated monthly cost to analyze an
|
|
@@ -2307,11 +2392,16 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
2307
2392
|
}
|
|
2308
2393
|
/**
|
|
2309
2394
|
* @public
|
|
2395
|
+
* @enum
|
|
2310
2396
|
*/
|
|
2311
|
-
export declare
|
|
2312
|
-
COMPLETED
|
|
2313
|
-
ONGOING
|
|
2314
|
-
}
|
|
2397
|
+
export declare const CostEstimationStatus: {
|
|
2398
|
+
readonly COMPLETED: "COMPLETED";
|
|
2399
|
+
readonly ONGOING: "ONGOING";
|
|
2400
|
+
};
|
|
2401
|
+
/**
|
|
2402
|
+
* @public
|
|
2403
|
+
*/
|
|
2404
|
+
export type CostEstimationStatus = (typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
|
|
2315
2405
|
/**
|
|
2316
2406
|
* @public
|
|
2317
2407
|
* <p>The time range of a cost estimation.</p>
|
|
@@ -2791,21 +2881,31 @@ export interface ListAnomalousLogGroupsResponse {
|
|
|
2791
2881
|
}
|
|
2792
2882
|
/**
|
|
2793
2883
|
* @public
|
|
2884
|
+
* @enum
|
|
2794
2885
|
*/
|
|
2795
|
-
export declare
|
|
2796
|
-
AWS_CLOUD_TRAIL
|
|
2797
|
-
AWS_CODE_DEPLOY
|
|
2798
|
-
}
|
|
2886
|
+
export declare const EventDataSource: {
|
|
2887
|
+
readonly AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL";
|
|
2888
|
+
readonly AWS_CODE_DEPLOY: "AWS_CODE_DEPLOY";
|
|
2889
|
+
};
|
|
2799
2890
|
/**
|
|
2800
2891
|
* @public
|
|
2801
2892
|
*/
|
|
2802
|
-
export
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2893
|
+
export type EventDataSource = (typeof EventDataSource)[keyof typeof EventDataSource];
|
|
2894
|
+
/**
|
|
2895
|
+
* @public
|
|
2896
|
+
* @enum
|
|
2897
|
+
*/
|
|
2898
|
+
export declare const EventClass: {
|
|
2899
|
+
readonly CONFIG_CHANGE: "CONFIG_CHANGE";
|
|
2900
|
+
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
2901
|
+
readonly INFRASTRUCTURE: "INFRASTRUCTURE";
|
|
2902
|
+
readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
|
|
2903
|
+
readonly SECURITY_CHANGE: "SECURITY_CHANGE";
|
|
2904
|
+
};
|
|
2905
|
+
/**
|
|
2906
|
+
* @public
|
|
2907
|
+
*/
|
|
2908
|
+
export type EventClass = (typeof EventClass)[keyof typeof EventClass];
|
|
2809
2909
|
/**
|
|
2810
2910
|
* @public
|
|
2811
2911
|
* <p> The time range during which an Amazon Web Services event occurred. Amazon Web Services resource events and
|
|
@@ -2964,11 +3064,16 @@ export interface ListEventsResponse {
|
|
|
2964
3064
|
}
|
|
2965
3065
|
/**
|
|
2966
3066
|
* @public
|
|
3067
|
+
* @enum
|
|
2967
3068
|
*/
|
|
2968
|
-
export declare
|
|
2969
|
-
PROACTIVE
|
|
2970
|
-
REACTIVE
|
|
2971
|
-
}
|
|
3069
|
+
export declare const InsightType: {
|
|
3070
|
+
readonly PROACTIVE: "PROACTIVE";
|
|
3071
|
+
readonly REACTIVE: "REACTIVE";
|
|
3072
|
+
};
|
|
3073
|
+
/**
|
|
3074
|
+
* @public
|
|
3075
|
+
*/
|
|
3076
|
+
export type InsightType = (typeof InsightType)[keyof typeof InsightType];
|
|
2972
3077
|
/**
|
|
2973
3078
|
* @public
|
|
2974
3079
|
* <p> Used to filter for insights that have any status. </p>
|
|
@@ -3188,43 +3293,53 @@ export interface ListInsightsResponse {
|
|
|
3188
3293
|
}
|
|
3189
3294
|
/**
|
|
3190
3295
|
* @public
|
|
3296
|
+
* @enum
|
|
3191
3297
|
*/
|
|
3192
|
-
export declare
|
|
3193
|
-
FULL_PERMISSION
|
|
3194
|
-
MISSING_PERMISSION
|
|
3195
|
-
}
|
|
3298
|
+
export declare const ResourcePermission: {
|
|
3299
|
+
readonly FULL_PERMISSION: "FULL_PERMISSION";
|
|
3300
|
+
readonly MISSING_PERMISSION: "MISSING_PERMISSION";
|
|
3301
|
+
};
|
|
3196
3302
|
/**
|
|
3197
3303
|
* @public
|
|
3198
3304
|
*/
|
|
3199
|
-
export
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3305
|
+
export type ResourcePermission = (typeof ResourcePermission)[keyof typeof ResourcePermission];
|
|
3306
|
+
/**
|
|
3307
|
+
* @public
|
|
3308
|
+
* @enum
|
|
3309
|
+
*/
|
|
3310
|
+
export declare const ResourceTypeFilter: {
|
|
3311
|
+
readonly CLOUDFRONT_DISTRIBUTION: "CLOUDFRONT_DISTRIBUTION";
|
|
3312
|
+
readonly DYNAMODB_TABLE: "DYNAMODB_TABLE";
|
|
3313
|
+
readonly EC2_NAT_GATEWAY: "EC2_NAT_GATEWAY";
|
|
3314
|
+
readonly ECS_CLUSTER: "ECS_CLUSTER";
|
|
3315
|
+
readonly ECS_SERVICE: "ECS_SERVICE";
|
|
3316
|
+
readonly EKS_CLUSTER: "EKS_CLUSTER";
|
|
3317
|
+
readonly ELASTICACHE_CACHE_CLUSTER: "ELASTICACHE_CACHE_CLUSTER";
|
|
3318
|
+
readonly ELASTICSEARCH_DOMAIN: "ELASTICSEARCH_DOMAIN";
|
|
3319
|
+
readonly ELASTIC_BEANSTALK_ENVIRONMENT: "ELASTIC_BEANSTALK_ENVIRONMENT";
|
|
3320
|
+
readonly ELASTIC_LOAD_BALANCER_LOAD_BALANCER: "ELASTIC_LOAD_BALANCER_LOAD_BALANCER";
|
|
3321
|
+
readonly ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER: "ELASTIC_LOAD_BALANCING_V2_LOAD_BALANCER";
|
|
3322
|
+
readonly ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP: "ELASTIC_LOAD_BALANCING_V2_TARGET_GROUP";
|
|
3323
|
+
readonly KINESIS_STREAM: "KINESIS_STREAM";
|
|
3324
|
+
readonly LAMBDA_FUNCTION: "LAMBDA_FUNCTION";
|
|
3325
|
+
readonly LOG_GROUPS: "LOG_GROUPS";
|
|
3326
|
+
readonly OPEN_SEARCH_SERVICE_DOMAIN: "OPEN_SEARCH_SERVICE_DOMAIN";
|
|
3327
|
+
readonly RDS_DB_CLUSTER: "RDS_DB_CLUSTER";
|
|
3328
|
+
readonly RDS_DB_INSTANCE: "RDS_DB_INSTANCE";
|
|
3329
|
+
readonly REDSHIFT_CLUSTER: "REDSHIFT_CLUSTER";
|
|
3330
|
+
readonly ROUTE53_HEALTH_CHECK: "ROUTE53_HEALTH_CHECK";
|
|
3331
|
+
readonly ROUTE53_HOSTED_ZONE: "ROUTE53_HOSTED_ZONE";
|
|
3332
|
+
readonly S3_BUCKET: "S3_BUCKET";
|
|
3333
|
+
readonly SAGEMAKER_ENDPOINT: "SAGEMAKER_ENDPOINT";
|
|
3334
|
+
readonly SNS_TOPIC: "SNS_TOPIC";
|
|
3335
|
+
readonly SQS_QUEUE: "SQS_QUEUE";
|
|
3336
|
+
readonly STEP_FUNCTIONS_ACTIVITY: "STEP_FUNCTIONS_ACTIVITY";
|
|
3337
|
+
readonly STEP_FUNCTIONS_STATE_MACHINE: "STEP_FUNCTIONS_STATE_MACHINE";
|
|
3338
|
+
};
|
|
3339
|
+
/**
|
|
3340
|
+
* @public
|
|
3341
|
+
*/
|
|
3342
|
+
export type ResourceTypeFilter = (typeof ResourceTypeFilter)[keyof typeof ResourceTypeFilter];
|
|
3228
3343
|
/**
|
|
3229
3344
|
* @public
|
|
3230
3345
|
* <p>
|
|
@@ -3525,20 +3640,25 @@ export interface ListOrganizationInsightsResponse {
|
|
|
3525
3640
|
}
|
|
3526
3641
|
/**
|
|
3527
3642
|
* @public
|
|
3643
|
+
* @enum
|
|
3528
3644
|
*/
|
|
3529
|
-
export declare
|
|
3530
|
-
DE_DE
|
|
3531
|
-
EN_GB
|
|
3532
|
-
EN_US
|
|
3533
|
-
ES_ES
|
|
3534
|
-
FR_FR
|
|
3535
|
-
IT_IT
|
|
3536
|
-
JA_JP
|
|
3537
|
-
KO_KR
|
|
3538
|
-
PT_BR
|
|
3539
|
-
ZH_CN
|
|
3540
|
-
ZH_TW
|
|
3541
|
-
}
|
|
3645
|
+
export declare const Locale: {
|
|
3646
|
+
readonly DE_DE: "DE_DE";
|
|
3647
|
+
readonly EN_GB: "EN_GB";
|
|
3648
|
+
readonly EN_US: "EN_US";
|
|
3649
|
+
readonly ES_ES: "ES_ES";
|
|
3650
|
+
readonly FR_FR: "FR_FR";
|
|
3651
|
+
readonly IT_IT: "IT_IT";
|
|
3652
|
+
readonly JA_JP: "JA_JP";
|
|
3653
|
+
readonly KO_KR: "KO_KR";
|
|
3654
|
+
readonly PT_BR: "PT_BR";
|
|
3655
|
+
readonly ZH_CN: "ZH_CN";
|
|
3656
|
+
readonly ZH_TW: "ZH_TW";
|
|
3657
|
+
};
|
|
3658
|
+
/**
|
|
3659
|
+
* @public
|
|
3660
|
+
*/
|
|
3661
|
+
export type Locale = (typeof Locale)[keyof typeof Locale];
|
|
3542
3662
|
/**
|
|
3543
3663
|
* @public
|
|
3544
3664
|
*/
|
|
@@ -3929,11 +4049,16 @@ export interface UpdateEventSourcesConfigResponse {
|
|
|
3929
4049
|
}
|
|
3930
4050
|
/**
|
|
3931
4051
|
* @public
|
|
4052
|
+
* @enum
|
|
3932
4053
|
*/
|
|
3933
|
-
export declare
|
|
3934
|
-
ADD
|
|
3935
|
-
REMOVE
|
|
3936
|
-
}
|
|
4054
|
+
export declare const UpdateResourceCollectionAction: {
|
|
4055
|
+
readonly ADD: "ADD";
|
|
4056
|
+
readonly REMOVE: "REMOVE";
|
|
4057
|
+
};
|
|
4058
|
+
/**
|
|
4059
|
+
* @public
|
|
4060
|
+
*/
|
|
4061
|
+
export type UpdateResourceCollectionAction = (typeof UpdateResourceCollectionAction)[keyof typeof UpdateResourceCollectionAction];
|
|
3937
4062
|
/**
|
|
3938
4063
|
* @public
|
|
3939
4064
|
* <p> Contains the names of Amazon Web Services CloudFormation stacks used to update a collection of stacks.
|