@aws-sdk/client-application-signals 3.934.0 → 3.936.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/index.js +75 -74
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -161
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +154 -0
- package/dist-types/models/errors.d.ts +89 -0
- package/dist-types/models/models_0.d.ts +1 -243
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +91 -0
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -140
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationSignalsServiceException as __BaseException } from "./ApplicationSignalsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class ThrottlingException extends __BaseException {
|
|
21
|
+
readonly name: "ThrottlingException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>The resource is not valid.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ValidationException extends __BaseException {
|
|
34
|
+
readonly name: "ValidationException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>Resource not found.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceNotFoundException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
/**
|
|
49
|
+
* <p>The resource type is not valid.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
ResourceType: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>Can't find the resource id.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
ResourceId: string | undefined;
|
|
58
|
+
Message: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ConflictException extends __BaseException {
|
|
69
|
+
readonly name: "ConflictException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* <p>This request exceeds a service quota.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
82
|
+
readonly name: "ServiceQuotaExceededException";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
Message: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
89
|
+
}
|
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ApplicationSignalsServiceException as __BaseException } from "./ApplicationSignalsServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You don't have sufficient permissions to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { ChangeEventType, ConnectionType, DurationUnit, EvaluationType, MetricSourceType, ServiceLevelIndicatorComparisonOperator, ServiceLevelIndicatorMetricType, ServiceLevelObjectiveBudgetStatus, Severity, StandardUnit } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* @public
|
|
18
4
|
*/
|
|
@@ -54,46 +40,6 @@ export interface ServiceLevelObjectiveBudgetReportError {
|
|
|
54
40
|
*/
|
|
55
41
|
ErrorMessage: string | undefined;
|
|
56
42
|
}
|
|
57
|
-
/**
|
|
58
|
-
* @public
|
|
59
|
-
* @enum
|
|
60
|
-
*/
|
|
61
|
-
export declare const ServiceLevelObjectiveBudgetStatus: {
|
|
62
|
-
readonly BREACHED: "BREACHED";
|
|
63
|
-
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
64
|
-
readonly OK: "OK";
|
|
65
|
-
readonly WARNING: "WARNING";
|
|
66
|
-
};
|
|
67
|
-
/**
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
export type ServiceLevelObjectiveBudgetStatus = (typeof ServiceLevelObjectiveBudgetStatus)[keyof typeof ServiceLevelObjectiveBudgetStatus];
|
|
71
|
-
/**
|
|
72
|
-
* @public
|
|
73
|
-
* @enum
|
|
74
|
-
*/
|
|
75
|
-
export declare const EvaluationType: {
|
|
76
|
-
readonly PERIOD_BASED: "PeriodBased";
|
|
77
|
-
readonly REQUEST_BASED: "RequestBased";
|
|
78
|
-
};
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType];
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
* @enum
|
|
86
|
-
*/
|
|
87
|
-
export declare const DurationUnit: {
|
|
88
|
-
readonly DAY: "DAY";
|
|
89
|
-
readonly HOUR: "HOUR";
|
|
90
|
-
readonly MINUTE: "MINUTE";
|
|
91
|
-
readonly MONTH: "MONTH";
|
|
92
|
-
};
|
|
93
|
-
/**
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
export type DurationUnit = (typeof DurationUnit)[keyof typeof DurationUnit];
|
|
97
43
|
/**
|
|
98
44
|
* <p>If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.</p>
|
|
99
45
|
* @public
|
|
@@ -197,20 +143,6 @@ export interface Goal {
|
|
|
197
143
|
*/
|
|
198
144
|
WarningThreshold?: number | undefined;
|
|
199
145
|
}
|
|
200
|
-
/**
|
|
201
|
-
* @public
|
|
202
|
-
* @enum
|
|
203
|
-
*/
|
|
204
|
-
export declare const ServiceLevelIndicatorComparisonOperator: {
|
|
205
|
-
readonly GREATER_THAN: "GreaterThan";
|
|
206
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
|
|
207
|
-
readonly LESS_THAN: "LessThan";
|
|
208
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
|
|
209
|
-
};
|
|
210
|
-
/**
|
|
211
|
-
* @public
|
|
212
|
-
*/
|
|
213
|
-
export type ServiceLevelIndicatorComparisonOperator = (typeof ServiceLevelIndicatorComparisonOperator)[keyof typeof ServiceLevelIndicatorComparisonOperator];
|
|
214
146
|
/**
|
|
215
147
|
* <p>Identifies the dependency using the <code>DependencyKeyAttributes</code> and <code>DependencyOperationName</code>.</p> <p>When creating a service dependency SLO, you must specify the <code>KeyAttributes</code> of the service, and the <code>DependencyConfig</code> for the dependency. You can specify the <code>OperationName</code> of the service, from which it calls the dependency. Alternatively, you can exclude <code>OperationName</code> and the SLO will monitor all of the service's operations that call the dependency.</p>
|
|
216
148
|
* @public
|
|
@@ -227,18 +159,6 @@ export interface DependencyConfig {
|
|
|
227
159
|
*/
|
|
228
160
|
DependencyOperationName: string | undefined;
|
|
229
161
|
}
|
|
230
|
-
/**
|
|
231
|
-
* @public
|
|
232
|
-
* @enum
|
|
233
|
-
*/
|
|
234
|
-
export declare const ServiceLevelIndicatorMetricType: {
|
|
235
|
-
readonly AVAILABILITY: "AVAILABILITY";
|
|
236
|
-
readonly LATENCY: "LATENCY";
|
|
237
|
-
};
|
|
238
|
-
/**
|
|
239
|
-
* @public
|
|
240
|
-
*/
|
|
241
|
-
export type ServiceLevelIndicatorMetricType = (typeof ServiceLevelIndicatorMetricType)[keyof typeof ServiceLevelIndicatorMetricType];
|
|
242
162
|
/**
|
|
243
163
|
* <p>A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish <code>InstanceId</code> as a dimension name, and the actual instance ID as the value for that dimension.</p> <p>You can assign up to 30 dimensions to a metric.</p>
|
|
244
164
|
* @public
|
|
@@ -276,43 +196,6 @@ export interface Metric {
|
|
|
276
196
|
*/
|
|
277
197
|
Dimensions?: Dimension[] | undefined;
|
|
278
198
|
}
|
|
279
|
-
/**
|
|
280
|
-
* @public
|
|
281
|
-
* @enum
|
|
282
|
-
*/
|
|
283
|
-
export declare const StandardUnit: {
|
|
284
|
-
readonly BITS: "Bits";
|
|
285
|
-
readonly BITS_SECOND: "Bits/Second";
|
|
286
|
-
readonly BYTES: "Bytes";
|
|
287
|
-
readonly BYTES_SECOND: "Bytes/Second";
|
|
288
|
-
readonly COUNT: "Count";
|
|
289
|
-
readonly COUNT_SECOND: "Count/Second";
|
|
290
|
-
readonly GIGABITS: "Gigabits";
|
|
291
|
-
readonly GIGABITS_SECOND: "Gigabits/Second";
|
|
292
|
-
readonly GIGABYTES: "Gigabytes";
|
|
293
|
-
readonly GIGABYTES_SECOND: "Gigabytes/Second";
|
|
294
|
-
readonly KILOBITS: "Kilobits";
|
|
295
|
-
readonly KILOBITS_SECOND: "Kilobits/Second";
|
|
296
|
-
readonly KILOBYTES: "Kilobytes";
|
|
297
|
-
readonly KILOBYTES_SECOND: "Kilobytes/Second";
|
|
298
|
-
readonly MEGABITS: "Megabits";
|
|
299
|
-
readonly MEGABITS_SECOND: "Megabits/Second";
|
|
300
|
-
readonly MEGABYTES: "Megabytes";
|
|
301
|
-
readonly MEGABYTES_SECOND: "Megabytes/Second";
|
|
302
|
-
readonly MICROSECONDS: "Microseconds";
|
|
303
|
-
readonly MILLISECONDS: "Milliseconds";
|
|
304
|
-
readonly NONE: "None";
|
|
305
|
-
readonly PERCENT: "Percent";
|
|
306
|
-
readonly SECONDS: "Seconds";
|
|
307
|
-
readonly TERABITS: "Terabits";
|
|
308
|
-
readonly TERABITS_SECOND: "Terabits/Second";
|
|
309
|
-
readonly TERABYTES: "Terabytes";
|
|
310
|
-
readonly TERABYTES_SECOND: "Terabytes/Second";
|
|
311
|
-
};
|
|
312
|
-
/**
|
|
313
|
-
* @public
|
|
314
|
-
*/
|
|
315
|
-
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
316
199
|
/**
|
|
317
200
|
* <p>This structure defines the metric to be used as the service level indicator, along with the statistics, period, and unit.</p>
|
|
318
201
|
* @public
|
|
@@ -620,31 +503,6 @@ export interface BatchGetServiceLevelObjectiveBudgetReportOutput {
|
|
|
620
503
|
*/
|
|
621
504
|
Errors: ServiceLevelObjectiveBudgetReportError[] | undefined;
|
|
622
505
|
}
|
|
623
|
-
/**
|
|
624
|
-
* <p>The request was throttled because of quota limits.</p>
|
|
625
|
-
* @public
|
|
626
|
-
*/
|
|
627
|
-
export declare class ThrottlingException extends __BaseException {
|
|
628
|
-
readonly name: "ThrottlingException";
|
|
629
|
-
readonly $fault: "client";
|
|
630
|
-
Message: string | undefined;
|
|
631
|
-
/**
|
|
632
|
-
* @internal
|
|
633
|
-
*/
|
|
634
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
635
|
-
}
|
|
636
|
-
/**
|
|
637
|
-
* <p>The resource is not valid.</p>
|
|
638
|
-
* @public
|
|
639
|
-
*/
|
|
640
|
-
export declare class ValidationException extends __BaseException {
|
|
641
|
-
readonly name: "ValidationException";
|
|
642
|
-
readonly $fault: "client";
|
|
643
|
-
/**
|
|
644
|
-
* @internal
|
|
645
|
-
*/
|
|
646
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
647
|
-
}
|
|
648
506
|
/**
|
|
649
507
|
* <p>The recurrence rule for the SLO time window exclusion .</p>
|
|
650
508
|
* @public
|
|
@@ -754,29 +612,6 @@ export interface BatchUpdateExclusionWindowsOutput {
|
|
|
754
612
|
*/
|
|
755
613
|
Errors: BatchUpdateExclusionWindowsError[] | undefined;
|
|
756
614
|
}
|
|
757
|
-
/**
|
|
758
|
-
* <p>Resource not found.</p>
|
|
759
|
-
* @public
|
|
760
|
-
*/
|
|
761
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
762
|
-
readonly name: "ResourceNotFoundException";
|
|
763
|
-
readonly $fault: "client";
|
|
764
|
-
/**
|
|
765
|
-
* <p>The resource type is not valid.</p>
|
|
766
|
-
* @public
|
|
767
|
-
*/
|
|
768
|
-
ResourceType: string | undefined;
|
|
769
|
-
/**
|
|
770
|
-
* <p>Can't find the resource id.</p>
|
|
771
|
-
* @public
|
|
772
|
-
*/
|
|
773
|
-
ResourceId: string | undefined;
|
|
774
|
-
Message: string | undefined;
|
|
775
|
-
/**
|
|
776
|
-
* @internal
|
|
777
|
-
*/
|
|
778
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
779
|
-
}
|
|
780
615
|
/**
|
|
781
616
|
* @public
|
|
782
617
|
*/
|
|
@@ -1115,21 +950,6 @@ export interface ListAuditFindingsInput {
|
|
|
1115
950
|
*/
|
|
1116
951
|
MaxResults?: number | undefined;
|
|
1117
952
|
}
|
|
1118
|
-
/**
|
|
1119
|
-
* @public
|
|
1120
|
-
* @enum
|
|
1121
|
-
*/
|
|
1122
|
-
export declare const Severity: {
|
|
1123
|
-
readonly CRITICAL: "CRITICAL";
|
|
1124
|
-
readonly HIGH: "HIGH";
|
|
1125
|
-
readonly LOW: "LOW";
|
|
1126
|
-
readonly MEDIUM: "MEDIUM";
|
|
1127
|
-
readonly NONE: "NONE";
|
|
1128
|
-
};
|
|
1129
|
-
/**
|
|
1130
|
-
* @public
|
|
1131
|
-
*/
|
|
1132
|
-
export type Severity = (typeof Severity)[keyof typeof Severity];
|
|
1133
953
|
/**
|
|
1134
954
|
* <p>Represents the result of an audit performed by a specific auditor on a resource.</p>
|
|
1135
955
|
* @public
|
|
@@ -1151,18 +971,6 @@ export interface AuditorResult {
|
|
|
1151
971
|
*/
|
|
1152
972
|
Severity?: Severity | undefined;
|
|
1153
973
|
}
|
|
1154
|
-
/**
|
|
1155
|
-
* @public
|
|
1156
|
-
* @enum
|
|
1157
|
-
*/
|
|
1158
|
-
export declare const ConnectionType: {
|
|
1159
|
-
readonly DIRECT: "DIRECT";
|
|
1160
|
-
readonly INDIRECT: "INDIRECT";
|
|
1161
|
-
};
|
|
1162
|
-
/**
|
|
1163
|
-
* @public
|
|
1164
|
-
*/
|
|
1165
|
-
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
1166
974
|
/**
|
|
1167
975
|
* <p>Represents a connection between two nodes in a dependency graph, showing how services or components interact with each other.</p>
|
|
1168
976
|
* @public
|
|
@@ -1779,17 +1587,6 @@ export interface ListServiceStatesInput {
|
|
|
1779
1587
|
*/
|
|
1780
1588
|
AttributeFilters?: AttributeFilter[] | undefined;
|
|
1781
1589
|
}
|
|
1782
|
-
/**
|
|
1783
|
-
* @public
|
|
1784
|
-
* @enum
|
|
1785
|
-
*/
|
|
1786
|
-
export declare const ChangeEventType: {
|
|
1787
|
-
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
1788
|
-
};
|
|
1789
|
-
/**
|
|
1790
|
-
* @public
|
|
1791
|
-
*/
|
|
1792
|
-
export type ChangeEventType = (typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
1793
1590
|
/**
|
|
1794
1591
|
* <p>Represents a change event that occurred in the system, such as deployments, configuration changes, or other operational events that may impact service performance.</p>
|
|
1795
1592
|
* @public
|
|
@@ -1954,19 +1751,6 @@ export interface PutGroupingConfigurationOutput {
|
|
|
1954
1751
|
*/
|
|
1955
1752
|
GroupingConfiguration: GroupingConfiguration | undefined;
|
|
1956
1753
|
}
|
|
1957
|
-
/**
|
|
1958
|
-
* <p>This operation attempted to create a resource that already exists.</p>
|
|
1959
|
-
* @public
|
|
1960
|
-
*/
|
|
1961
|
-
export declare class ConflictException extends __BaseException {
|
|
1962
|
-
readonly name: "ConflictException";
|
|
1963
|
-
readonly $fault: "client";
|
|
1964
|
-
Message: string | undefined;
|
|
1965
|
-
/**
|
|
1966
|
-
* @internal
|
|
1967
|
-
*/
|
|
1968
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1969
|
-
}
|
|
1970
1754
|
/**
|
|
1971
1755
|
* <p>This object defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO. A burn rate of exactly 1 indicates that the SLO goal will be met exactly.</p> <p>For example, if you specify 60 as the number of minutes in the look-back window, the burn rate is calculated as the following:</p> <p> <i>burn rate = error rate over the look-back window / (100% - attainment goal percentage)</i> </p> <p>For more information about burn rates, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-ServiceLevelObjectives.html#CloudWatch-ServiceLevelObjectives-burn">Calculate burn rates</a>.</p>
|
|
1972
1756
|
* @public
|
|
@@ -2142,19 +1926,6 @@ export interface CreateServiceLevelObjectiveInput {
|
|
|
2142
1926
|
*/
|
|
2143
1927
|
BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
|
|
2144
1928
|
}
|
|
2145
|
-
/**
|
|
2146
|
-
* @public
|
|
2147
|
-
* @enum
|
|
2148
|
-
*/
|
|
2149
|
-
export declare const MetricSourceType: {
|
|
2150
|
-
readonly CLOUDWATCH_METRIC: "CloudWatchMetric";
|
|
2151
|
-
readonly SERVICE_DEPENDENCY: "ServiceDependency";
|
|
2152
|
-
readonly SERVICE_OPERATION: "ServiceOperation";
|
|
2153
|
-
};
|
|
2154
|
-
/**
|
|
2155
|
-
* @public
|
|
2156
|
-
*/
|
|
2157
|
-
export type MetricSourceType = (typeof MetricSourceType)[keyof typeof MetricSourceType];
|
|
2158
1929
|
/**
|
|
2159
1930
|
* <p>A structure containing information about one service level objective (SLO) that has been created in Application Signals. Creating SLOs can help you ensure your services are performing to the level that you expect. SLOs help you set and track a specific target level for the reliability and availability of your applications and services. Each SLO uses a service level indicator (SLI), which is a key performance metric, to calculate how much underperformance can be tolerated before the goal that you set for the SLO is not achieved.</p>
|
|
2160
1931
|
* @public
|
|
@@ -2226,19 +1997,6 @@ export interface CreateServiceLevelObjectiveOutput {
|
|
|
2226
1997
|
*/
|
|
2227
1998
|
Slo: ServiceLevelObjective | undefined;
|
|
2228
1999
|
}
|
|
2229
|
-
/**
|
|
2230
|
-
* <p>This request exceeds a service quota.</p>
|
|
2231
|
-
* @public
|
|
2232
|
-
*/
|
|
2233
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2234
|
-
readonly name: "ServiceQuotaExceededException";
|
|
2235
|
-
readonly $fault: "client";
|
|
2236
|
-
Message: string | undefined;
|
|
2237
|
-
/**
|
|
2238
|
-
* @internal
|
|
2239
|
-
*/
|
|
2240
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2241
|
-
}
|
|
2242
2000
|
/**
|
|
2243
2001
|
* @public
|
|
2244
2002
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ApplicationSignalsExtensionConfiguration } 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 { ApplicationSignalsServiceException } from "./models/ApplicationSignalsServiceException";
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
export declare const ServiceLevelObjectiveBudgetStatus: {
|
|
2
|
+
readonly BREACHED: "BREACHED";
|
|
3
|
+
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
4
|
+
readonly OK: "OK";
|
|
5
|
+
readonly WARNING: "WARNING";
|
|
6
|
+
};
|
|
7
|
+
export type ServiceLevelObjectiveBudgetStatus =
|
|
8
|
+
(typeof ServiceLevelObjectiveBudgetStatus)[keyof typeof ServiceLevelObjectiveBudgetStatus];
|
|
9
|
+
export declare const EvaluationType: {
|
|
10
|
+
readonly PERIOD_BASED: "PeriodBased";
|
|
11
|
+
readonly REQUEST_BASED: "RequestBased";
|
|
12
|
+
};
|
|
13
|
+
export type EvaluationType =
|
|
14
|
+
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
15
|
+
export declare const DurationUnit: {
|
|
16
|
+
readonly DAY: "DAY";
|
|
17
|
+
readonly HOUR: "HOUR";
|
|
18
|
+
readonly MINUTE: "MINUTE";
|
|
19
|
+
readonly MONTH: "MONTH";
|
|
20
|
+
};
|
|
21
|
+
export type DurationUnit = (typeof DurationUnit)[keyof typeof DurationUnit];
|
|
22
|
+
export declare const ServiceLevelIndicatorComparisonOperator: {
|
|
23
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
24
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
|
|
25
|
+
readonly LESS_THAN: "LessThan";
|
|
26
|
+
readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
|
|
27
|
+
};
|
|
28
|
+
export type ServiceLevelIndicatorComparisonOperator =
|
|
29
|
+
(typeof ServiceLevelIndicatorComparisonOperator)[keyof typeof ServiceLevelIndicatorComparisonOperator];
|
|
30
|
+
export declare const ServiceLevelIndicatorMetricType: {
|
|
31
|
+
readonly AVAILABILITY: "AVAILABILITY";
|
|
32
|
+
readonly LATENCY: "LATENCY";
|
|
33
|
+
};
|
|
34
|
+
export type ServiceLevelIndicatorMetricType =
|
|
35
|
+
(typeof ServiceLevelIndicatorMetricType)[keyof typeof ServiceLevelIndicatorMetricType];
|
|
36
|
+
export declare const StandardUnit: {
|
|
37
|
+
readonly BITS: "Bits";
|
|
38
|
+
readonly BITS_SECOND: "Bits/Second";
|
|
39
|
+
readonly BYTES: "Bytes";
|
|
40
|
+
readonly BYTES_SECOND: "Bytes/Second";
|
|
41
|
+
readonly COUNT: "Count";
|
|
42
|
+
readonly COUNT_SECOND: "Count/Second";
|
|
43
|
+
readonly GIGABITS: "Gigabits";
|
|
44
|
+
readonly GIGABITS_SECOND: "Gigabits/Second";
|
|
45
|
+
readonly GIGABYTES: "Gigabytes";
|
|
46
|
+
readonly GIGABYTES_SECOND: "Gigabytes/Second";
|
|
47
|
+
readonly KILOBITS: "Kilobits";
|
|
48
|
+
readonly KILOBITS_SECOND: "Kilobits/Second";
|
|
49
|
+
readonly KILOBYTES: "Kilobytes";
|
|
50
|
+
readonly KILOBYTES_SECOND: "Kilobytes/Second";
|
|
51
|
+
readonly MEGABITS: "Megabits";
|
|
52
|
+
readonly MEGABITS_SECOND: "Megabits/Second";
|
|
53
|
+
readonly MEGABYTES: "Megabytes";
|
|
54
|
+
readonly MEGABYTES_SECOND: "Megabytes/Second";
|
|
55
|
+
readonly MICROSECONDS: "Microseconds";
|
|
56
|
+
readonly MILLISECONDS: "Milliseconds";
|
|
57
|
+
readonly NONE: "None";
|
|
58
|
+
readonly PERCENT: "Percent";
|
|
59
|
+
readonly SECONDS: "Seconds";
|
|
60
|
+
readonly TERABITS: "Terabits";
|
|
61
|
+
readonly TERABITS_SECOND: "Terabits/Second";
|
|
62
|
+
readonly TERABYTES: "Terabytes";
|
|
63
|
+
readonly TERABYTES_SECOND: "Terabytes/Second";
|
|
64
|
+
};
|
|
65
|
+
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
66
|
+
export declare const Severity: {
|
|
67
|
+
readonly CRITICAL: "CRITICAL";
|
|
68
|
+
readonly HIGH: "HIGH";
|
|
69
|
+
readonly LOW: "LOW";
|
|
70
|
+
readonly MEDIUM: "MEDIUM";
|
|
71
|
+
readonly NONE: "NONE";
|
|
72
|
+
};
|
|
73
|
+
export type Severity = (typeof Severity)[keyof typeof Severity];
|
|
74
|
+
export declare const ConnectionType: {
|
|
75
|
+
readonly DIRECT: "DIRECT";
|
|
76
|
+
readonly INDIRECT: "INDIRECT";
|
|
77
|
+
};
|
|
78
|
+
export type ConnectionType =
|
|
79
|
+
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
80
|
+
export declare const ChangeEventType: {
|
|
81
|
+
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
82
|
+
};
|
|
83
|
+
export type ChangeEventType =
|
|
84
|
+
(typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
85
|
+
export declare const MetricSourceType: {
|
|
86
|
+
readonly CLOUDWATCH_METRIC: "CloudWatchMetric";
|
|
87
|
+
readonly SERVICE_DEPENDENCY: "ServiceDependency";
|
|
88
|
+
readonly SERVICE_OPERATION: "ServiceOperation";
|
|
89
|
+
};
|
|
90
|
+
export type MetricSourceType =
|
|
91
|
+
(typeof MetricSourceType)[keyof typeof MetricSourceType];
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationSignalsServiceException as __BaseException } from "./ApplicationSignalsServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ThrottlingException extends __BaseException {
|
|
12
|
+
readonly name: "ThrottlingException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class ValidationException extends __BaseException {
|
|
20
|
+
readonly name: "ValidationException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "ResourceNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
ResourceType: string | undefined;
|
|
30
|
+
ResourceId: string | undefined;
|
|
31
|
+
Message: string | undefined;
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ConflictException extends __BaseException {
|
|
37
|
+
readonly name: "ConflictException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
Message: string | undefined;
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
43
|
+
readonly name: "ServiceQuotaExceededException";
|
|
44
|
+
readonly $fault: "client";
|
|
45
|
+
Message: string | undefined;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|