@aws-sdk/client-application-signals 3.687.0 → 3.691.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.
@@ -29,6 +29,7 @@ const se_CreateServiceLevelObjectiveCommand = async (input, context) => {
29
29
  b.bp("/slo");
30
30
  let body;
31
31
  body = JSON.stringify((0, smithy_client_1.take)(input, {
32
+ BurnRateConfigurations: (_) => (0, smithy_client_1._json)(_),
32
33
  Description: [],
33
34
  Goal: (_) => se_Goal(_, context),
34
35
  Name: [],
@@ -232,6 +233,7 @@ const se_UpdateServiceLevelObjectiveCommand = async (input, context) => {
232
233
  b.p("Id", () => input.Id, "{Id}", false);
233
234
  let body;
234
235
  body = JSON.stringify((0, smithy_client_1.take)(input, {
236
+ BurnRateConfigurations: (_) => (0, smithy_client_1._json)(_),
235
237
  Description: [],
236
238
  Goal: (_) => se_Goal(_, context),
237
239
  RequestBasedSliConfig: (_) => se_RequestBasedServiceLevelIndicatorConfig(_, context),
@@ -662,6 +664,7 @@ const de_ServiceLevelIndicator = (output, context) => {
662
664
  const de_ServiceLevelObjective = (output, context) => {
663
665
  return (0, smithy_client_1.take)(output, {
664
666
  Arn: smithy_client_1.expectString,
667
+ BurnRateConfigurations: smithy_client_1._json,
665
668
  CreatedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
666
669
  Description: smithy_client_1.expectString,
667
670
  EvaluationType: smithy_client_1.expectString,
@@ -25,6 +25,7 @@ export const se_CreateServiceLevelObjectiveCommand = async (input, context) => {
25
25
  b.bp("/slo");
26
26
  let body;
27
27
  body = JSON.stringify(take(input, {
28
+ BurnRateConfigurations: (_) => _json(_),
28
29
  Description: [],
29
30
  Goal: (_) => se_Goal(_, context),
30
31
  Name: [],
@@ -215,6 +216,7 @@ export const se_UpdateServiceLevelObjectiveCommand = async (input, context) => {
215
216
  b.p("Id", () => input.Id, "{Id}", false);
216
217
  let body;
217
218
  body = JSON.stringify(take(input, {
219
+ BurnRateConfigurations: (_) => _json(_),
218
220
  Description: [],
219
221
  Goal: (_) => se_Goal(_, context),
220
222
  RequestBasedSliConfig: (_) => se_RequestBasedServiceLevelIndicatorConfig(_, context),
@@ -629,6 +631,7 @@ const de_ServiceLevelIndicator = (output, context) => {
629
631
  const de_ServiceLevelObjective = (output, context) => {
630
632
  return take(output, {
631
633
  Arn: __expectString,
634
+ BurnRateConfigurations: _json,
632
635
  CreatedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
633
636
  Description: __expectString,
634
637
  EvaluationType: __expectString,
@@ -269,6 +269,11 @@ declare const CreateServiceLevelObjectiveCommand_base: {
269
269
  * Value: "STRING_VALUE", // required
270
270
  * },
271
271
  * ],
272
+ * BurnRateConfigurations: [ // BurnRateConfigurations
273
+ * { // BurnRateConfiguration
274
+ * LookBackWindowMinutes: Number("int"), // required
275
+ * },
276
+ * ],
272
277
  * };
273
278
  * const command = new CreateServiceLevelObjectiveCommand(input);
274
279
  * const response = await client.send(command);
@@ -419,6 +424,11 @@ declare const CreateServiceLevelObjectiveCommand_base: {
419
424
  * // AttainmentGoal: Number("double"),
420
425
  * // WarningThreshold: Number("double"),
421
426
  * // },
427
+ * // BurnRateConfigurations: [ // BurnRateConfigurations
428
+ * // { // BurnRateConfiguration
429
+ * // LookBackWindowMinutes: Number("int"), // required
430
+ * // },
431
+ * // ],
422
432
  * // },
423
433
  * // };
424
434
  *
@@ -186,6 +186,11 @@ declare const GetServiceLevelObjectiveCommand_base: {
186
186
  * // AttainmentGoal: Number("double"),
187
187
  * // WarningThreshold: Number("double"),
188
188
  * // },
189
+ * // BurnRateConfigurations: [ // BurnRateConfigurations
190
+ * // { // BurnRateConfiguration
191
+ * // LookBackWindowMinutes: Number("int"), // required
192
+ * // },
193
+ * // ],
189
194
  * // },
190
195
  * // };
191
196
  *
@@ -181,6 +181,11 @@ declare const UpdateServiceLevelObjectiveCommand_base: {
181
181
  * AttainmentGoal: Number("double"),
182
182
  * WarningThreshold: Number("double"),
183
183
  * },
184
+ * BurnRateConfigurations: [ // BurnRateConfigurations
185
+ * { // BurnRateConfiguration
186
+ * LookBackWindowMinutes: Number("int"), // required
187
+ * },
188
+ * ],
184
189
  * };
185
190
  * const command = new UpdateServiceLevelObjectiveCommand(input);
186
191
  * const response = await client.send(command);
@@ -331,6 +336,11 @@ declare const UpdateServiceLevelObjectiveCommand_base: {
331
336
  * // AttainmentGoal: Number("double"),
332
337
  * // WarningThreshold: Number("double"),
333
338
  * // },
339
+ * // BurnRateConfigurations: [ // BurnRateConfigurations
340
+ * // { // BurnRateConfiguration
341
+ * // LookBackWindowMinutes: Number("int"), // required
342
+ * // },
343
+ * // ],
334
344
  * // },
335
345
  * // };
336
346
  *
@@ -7,7 +7,7 @@ import { ApplicationSignalsServiceException as __BaseException } from "./Applica
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -194,7 +194,7 @@ export interface Goal {
194
194
  * <p>If you omit this parameter, a rolling interval of 7 days is used.</p>
195
195
  * @public
196
196
  */
197
- Interval?: Interval;
197
+ Interval?: Interval | undefined;
198
198
  /**
199
199
  * <p>The threshold that determines if the goal is being met.</p>
200
200
  * <p>If this is a period-based SLO, the attainment goal is the
@@ -207,13 +207,13 @@ export interface Goal {
207
207
  * to represent 99% as the attainment goal.</p>
208
208
  * @public
209
209
  */
210
- AttainmentGoal?: number;
210
+ AttainmentGoal?: number | undefined;
211
211
  /**
212
212
  * <p>The percentage of remaining budget over total budget that you want to get warnings for.
213
213
  * If you omit this parameter, the default of 50.0 is used. </p>
214
214
  * @public
215
215
  */
216
- WarningThreshold?: number;
216
+ WarningThreshold?: number | undefined;
217
217
  }
218
218
  /**
219
219
  * @public
@@ -277,19 +277,19 @@ export interface Metric {
277
277
  * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace">Namespaces</a>.</p>
278
278
  * @public
279
279
  */
280
- Namespace?: string;
280
+ Namespace?: string | undefined;
281
281
  /**
282
282
  * <p>The name of the metric to use.</p>
283
283
  * @public
284
284
  */
285
- MetricName?: string;
285
+ MetricName?: string | undefined;
286
286
  /**
287
287
  * <p>An array of one or more dimensions to use to define the metric that you want to use.
288
288
  * For more information, see
289
289
  * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension">Dimensions</a>.</p>
290
290
  * @public
291
291
  */
292
- Dimensions?: Dimension[];
292
+ Dimensions?: Dimension[] | undefined;
293
293
  }
294
294
  /**
295
295
  * @public
@@ -358,7 +358,7 @@ export interface MetricStat {
358
358
  * If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.</p>
359
359
  * @public
360
360
  */
361
- Unit?: StandardUnit;
361
+ Unit?: StandardUnit | undefined;
362
362
  }
363
363
  /**
364
364
  * <p>Use this structure to define a metric or metric math expression that you want to use as for a service level objective. </p>
@@ -388,7 +388,7 @@ export interface MetricDataQuery {
388
388
  * <code>Expression</code> or <code>MetricStat</code> but not both.</p>
389
389
  * @public
390
390
  */
391
- MetricStat?: MetricStat;
391
+ MetricStat?: MetricStat | undefined;
392
392
  /**
393
393
  * <p>This field can contain a metric math expression to be performed on the other metrics that
394
394
  * you are retrieving within this <code>MetricDataQueries</code> structure. </p>
@@ -402,7 +402,7 @@ export interface MetricDataQuery {
402
402
  * <code>Expression</code> or <code>MetricStat</code> but not both.</p>
403
403
  * @public
404
404
  */
405
- Expression?: string;
405
+ Expression?: string | undefined;
406
406
  /**
407
407
  * <p>A human-readable label for this metric or expression. This is especially useful
408
408
  * if this is an expression, so that you know
@@ -413,14 +413,14 @@ export interface MetricDataQuery {
413
413
  * For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html">Using Dynamic Labels</a>.</p>
414
414
  * @public
415
415
  */
416
- Label?: string;
416
+ Label?: string | undefined;
417
417
  /**
418
418
  * <p>Use this only if you are using a metric math expression for the SLO.
419
419
  * Specify <code>true</code> for <code>ReturnData</code> for only the one expression result to use as the alarm. For all
420
420
  * other metrics and expressions in the same <code>CreateServiceLevelObjective</code> operation, specify <code>ReturnData</code> as <code>false</code>.</p>
421
421
  * @public
422
422
  */
423
- ReturnData?: boolean;
423
+ ReturnData?: boolean | undefined;
424
424
  /**
425
425
  * <p>The granularity, in seconds, of the returned data points for this metric. For metrics with regular resolution, a period can
426
426
  * be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected
@@ -441,13 +441,13 @@ export interface MetricDataQuery {
441
441
  * </ul>
442
442
  * @public
443
443
  */
444
- Period?: number;
444
+ Period?: number | undefined;
445
445
  /**
446
446
  * <p>The ID of the account where this metric is located. If you are performing this operation in a monitoring account,
447
447
  * use this to specify which source account to retrieve this metric from.</p>
448
448
  * @public
449
449
  */
450
- AccountId?: string;
450
+ AccountId?: string | undefined;
451
451
  }
452
452
  /**
453
453
  * <p>This structure defines the metric that is used as the "good request" or "bad request"
@@ -534,18 +534,18 @@ export interface RequestBasedServiceLevelIndicatorMetric {
534
534
  * </ul>
535
535
  * @public
536
536
  */
537
- KeyAttributes?: Record<string, string>;
537
+ KeyAttributes?: Record<string, string> | undefined;
538
538
  /**
539
539
  * <p>If the SLO monitors a specific operation of the service, this field displays that operation name.</p>
540
540
  * @public
541
541
  */
542
- OperationName?: string;
542
+ OperationName?: string | undefined;
543
543
  /**
544
544
  * <p>If the SLO monitors either the <code>LATENCY</code> or <code>AVAILABILITY</code> metric that Application Signals
545
545
  * collects, this field displays which of those metrics is used.</p>
546
546
  * @public
547
547
  */
548
- MetricType?: ServiceLevelIndicatorMetricType;
548
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
549
549
  /**
550
550
  * <p>This structure defines the metric that is used as the "total requests" number for a request-based SLO.
551
551
  * The number observed for this metric is divided by the number of "good requests" or "bad requests" that is
@@ -580,13 +580,13 @@ export interface RequestBasedServiceLevelIndicator {
580
580
  * the observed metric values of the SLI metric are compared to.</p>
581
581
  * @public
582
582
  */
583
- MetricThreshold?: number;
583
+ MetricThreshold?: number | undefined;
584
584
  /**
585
585
  * <p>The arithmetic operation used when comparing the specified metric to the
586
586
  * threshold.</p>
587
587
  * @public
588
588
  */
589
- ComparisonOperator?: ServiceLevelIndicatorComparisonOperator;
589
+ ComparisonOperator?: ServiceLevelIndicatorComparisonOperator | undefined;
590
590
  }
591
591
  /**
592
592
  * <p>This structure contains the information about the metric that is used for a period-based SLO.</p>
@@ -624,18 +624,18 @@ export interface ServiceLevelIndicatorMetric {
624
624
  * </ul>
625
625
  * @public
626
626
  */
627
- KeyAttributes?: Record<string, string>;
627
+ KeyAttributes?: Record<string, string> | undefined;
628
628
  /**
629
629
  * <p>If the SLO monitors a specific operation of the service, this field displays that operation name.</p>
630
630
  * @public
631
631
  */
632
- OperationName?: string;
632
+ OperationName?: string | undefined;
633
633
  /**
634
634
  * <p>If the SLO monitors either the <code>LATENCY</code> or <code>AVAILABILITY</code> metric that Application Signals
635
635
  * collects, this field displays which of those metrics is used.</p>
636
636
  * @public
637
637
  */
638
- MetricType?: ServiceLevelIndicatorMetricType;
638
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
639
639
  /**
640
640
  * <p>If this SLO monitors a CloudWatch metric or the result of a CloudWatch metric math expression,
641
641
  * this structure includes the information about that metric or expression. </p>
@@ -684,7 +684,7 @@ export interface ServiceLevelObjectiveBudgetReport {
684
684
  * <p>Displays whether this budget report is for a period-based SLO or a request-based SLO.</p>
685
685
  * @public
686
686
  */
687
- EvaluationType?: EvaluationType;
687
+ EvaluationType?: EvaluationType | undefined;
688
688
  /**
689
689
  * <p>The status of this SLO, as it relates to the error budget for the entire time interval.</p>
690
690
  * <ul>
@@ -721,13 +721,13 @@ export interface ServiceLevelObjectiveBudgetReport {
721
721
  * by the number of total requests, multiplied by 100, during the time range that you specified in your request.</p>
722
722
  * @public
723
723
  */
724
- Attainment?: number;
724
+ Attainment?: number | undefined;
725
725
  /**
726
726
  * <p>The total number of seconds in the error budget for the interval. This field is included only
727
727
  * if the SLO is a period-based SLO.</p>
728
728
  * @public
729
729
  */
730
- TotalBudgetSeconds?: number;
730
+ TotalBudgetSeconds?: number | undefined;
731
731
  /**
732
732
  * <p>The budget amount remaining before the SLO status becomes <code>BREACHING</code>, at the time specified in
733
733
  * the
@@ -737,7 +737,7 @@ export interface ServiceLevelObjectiveBudgetReport {
737
737
  * if the SLO is a period-based SLO.</p>
738
738
  * @public
739
739
  */
740
- BudgetSecondsRemaining?: number;
740
+ BudgetSecondsRemaining?: number | undefined;
741
741
  /**
742
742
  * <p>This field is displayed only for request-based SLOs. It displays the total number of failed requests that can be tolerated during the time range between the start of the
743
743
  * interval and the time stamp supplied in the budget report request. It is based on the total number of requests that occurred,
@@ -746,7 +746,7 @@ export interface ServiceLevelObjectiveBudgetReport {
746
746
  * <p>This number can go up and down between reports with different time stamps, based on both how many total requests occur.</p>
747
747
  * @public
748
748
  */
749
- TotalBudgetRequests?: number;
749
+ TotalBudgetRequests?: number | undefined;
750
750
  /**
751
751
  * <p>This field is displayed only for request-based SLOs. It displays the number of failed requests that can be tolerated before any more successful requests occur,
752
752
  * and still have the application meet its SLO goal.</p>
@@ -754,23 +754,23 @@ export interface ServiceLevelObjectiveBudgetReport {
754
754
  * requests occur in that time.</p>
755
755
  * @public
756
756
  */
757
- BudgetRequestsRemaining?: number;
757
+ BudgetRequestsRemaining?: number | undefined;
758
758
  /**
759
759
  * <p>A structure that contains information about the performance metric that this SLO monitors.</p>
760
760
  * @public
761
761
  */
762
- Sli?: ServiceLevelIndicator;
762
+ Sli?: ServiceLevelIndicator | undefined;
763
763
  /**
764
764
  * <p>This structure contains information about the performance metric that a request-based SLO monitors.</p>
765
765
  * @public
766
766
  */
767
- RequestBasedSli?: RequestBasedServiceLevelIndicator;
767
+ RequestBasedSli?: RequestBasedServiceLevelIndicator | undefined;
768
768
  /**
769
769
  * <p>This structure contains the attributes that determine the goal of an SLO. This includes
770
770
  * the time period for evaluation and the attainment threshold.</p>
771
771
  * @public
772
772
  */
773
- Goal?: Goal;
773
+ Goal?: Goal | undefined;
774
774
  }
775
775
  /**
776
776
  * @public
@@ -896,7 +896,7 @@ export interface MetricReference {
896
896
  * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension">CloudWatchDimensions</a>.</p>
897
897
  * @public
898
898
  */
899
- Dimensions?: Dimension[];
899
+ Dimensions?: Dimension[] | undefined;
900
900
  /**
901
901
  * <p>The name of the metric.</p>
902
902
  * @public
@@ -1014,7 +1014,7 @@ export interface Service {
1014
1014
  * </ul>
1015
1015
  * @public
1016
1016
  */
1017
- AttributeMaps?: Record<string, string>[];
1017
+ AttributeMaps?: Record<string, string>[] | undefined;
1018
1018
  /**
1019
1019
  * <p>An array of structures that each contain information about one metric associated with this service.</p>
1020
1020
  * @public
@@ -1042,7 +1042,7 @@ export interface Service {
1042
1042
  * </ul>
1043
1043
  * @public
1044
1044
  */
1045
- LogGroupReferences?: Record<string, string>[];
1045
+ LogGroupReferences?: Record<string, string>[] | undefined;
1046
1046
  }
1047
1047
  /**
1048
1048
  * @public
@@ -1091,7 +1091,7 @@ export interface GetServiceOutput {
1091
1091
  * </ul>
1092
1092
  * @public
1093
1093
  */
1094
- LogGroupReferences?: Record<string, string>[];
1094
+ LogGroupReferences?: Record<string, string>[] | undefined;
1095
1095
  }
1096
1096
  /**
1097
1097
  * @public
@@ -1152,12 +1152,12 @@ export interface ListServiceDependenciesInput {
1152
1152
  * parameter, the default of 50 is used.</p>
1153
1153
  * @public
1154
1154
  */
1155
- MaxResults?: number;
1155
+ MaxResults?: number | undefined;
1156
1156
  /**
1157
1157
  * <p>Include this value, if it was returned by the previous operation, to get the next set of service dependencies.</p>
1158
1158
  * @public
1159
1159
  */
1160
- NextToken?: string;
1160
+ NextToken?: string | undefined;
1161
1161
  }
1162
1162
  /**
1163
1163
  * <p>This structure contains information about one dependency
@@ -1247,7 +1247,7 @@ export interface ListServiceDependenciesOutput {
1247
1247
  * of service dependencies.</p>
1248
1248
  * @public
1249
1249
  */
1250
- NextToken?: string;
1250
+ NextToken?: string | undefined;
1251
1251
  }
1252
1252
  /**
1253
1253
  * @public
@@ -1308,12 +1308,12 @@ export interface ListServiceDependentsInput {
1308
1308
  * parameter, the default of 50 is used.</p>
1309
1309
  * @public
1310
1310
  */
1311
- MaxResults?: number;
1311
+ MaxResults?: number | undefined;
1312
1312
  /**
1313
1313
  * <p>Include this value, if it was returned by the previous operation, to get the next set of service dependents.</p>
1314
1314
  * @public
1315
1315
  */
1316
- NextToken?: string;
1316
+ NextToken?: string | undefined;
1317
1317
  }
1318
1318
  /**
1319
1319
  * <p>This structure contains information about a service dependent that was discovered by Application Signals. A
@@ -1326,7 +1326,7 @@ export interface ServiceDependent {
1326
1326
  * <p>If the invoked entity is an operation on an entity, the name of that dependent operation is displayed here.</p>
1327
1327
  * @public
1328
1328
  */
1329
- OperationName?: string;
1329
+ OperationName?: string | undefined;
1330
1330
  /**
1331
1331
  * <p>This is a string-to-string map. It can
1332
1332
  * include the following fields.</p>
@@ -1364,7 +1364,7 @@ export interface ServiceDependent {
1364
1364
  * is displayed here.</p>
1365
1365
  * @public
1366
1366
  */
1367
- DependentOperationName?: string;
1367
+ DependentOperationName?: string | undefined;
1368
1368
  /**
1369
1369
  * <p>An array of structures that each contain information about one metric associated with this service dependent
1370
1370
  * that was discovered by
@@ -1405,7 +1405,7 @@ export interface ListServiceDependentsOutput {
1405
1405
  * of service dependents.</p>
1406
1406
  * @public
1407
1407
  */
1408
- NextToken?: string;
1408
+ NextToken?: string | undefined;
1409
1409
  }
1410
1410
  /**
1411
1411
  * @public
@@ -1466,12 +1466,12 @@ export interface ListServiceOperationsInput {
1466
1466
  * parameter, the default of 50 is used.</p>
1467
1467
  * @public
1468
1468
  */
1469
- MaxResults?: number;
1469
+ MaxResults?: number | undefined;
1470
1470
  /**
1471
1471
  * <p>Include this value, if it was returned by the previous operation, to get the next set of service operations.</p>
1472
1472
  * @public
1473
1473
  */
1474
- NextToken?: string;
1474
+ NextToken?: string | undefined;
1475
1475
  }
1476
1476
  /**
1477
1477
  * <p>This structure contains information about an operation discovered by Application Signals. An operation
@@ -1526,7 +1526,7 @@ export interface ListServiceOperationsOutput {
1526
1526
  * of service operations.</p>
1527
1527
  * @public
1528
1528
  */
1529
- NextToken?: string;
1529
+ NextToken?: string | undefined;
1530
1530
  }
1531
1531
  /**
1532
1532
  * @public
@@ -1559,12 +1559,12 @@ export interface ListServicesInput {
1559
1559
  * </p>
1560
1560
  * @public
1561
1561
  */
1562
- MaxResults?: number;
1562
+ MaxResults?: number | undefined;
1563
1563
  /**
1564
1564
  * <p>Include this value, if it was returned by the previous operation, to get the next set of services.</p>
1565
1565
  * @public
1566
1566
  */
1567
- NextToken?: string;
1567
+ NextToken?: string | undefined;
1568
1568
  }
1569
1569
  /**
1570
1570
  * <p>This structure contains information about one of your services that
@@ -1677,7 +1677,7 @@ export interface ServiceSummary {
1677
1677
  * </ul>
1678
1678
  * @public
1679
1679
  */
1680
- AttributeMaps?: Record<string, string>[];
1680
+ AttributeMaps?: Record<string, string>[] | undefined;
1681
1681
  /**
1682
1682
  * <p>An array of structures that each contain information about one metric associated with this service.</p>
1683
1683
  * @public
@@ -1718,7 +1718,7 @@ export interface ListServicesOutput {
1718
1718
  * of services.</p>
1719
1719
  * @public
1720
1720
  */
1721
- NextToken?: string;
1721
+ NextToken?: string | undefined;
1722
1722
  }
1723
1723
  /**
1724
1724
  * @public
@@ -1762,7 +1762,7 @@ export interface ListTagsForResourceResponse {
1762
1762
  * <p>The list of tag keys and values associated with the resource you specified.</p>
1763
1763
  * @public
1764
1764
  */
1765
- Tags?: Tag[];
1765
+ Tags?: Tag[] | undefined;
1766
1766
  }
1767
1767
  /**
1768
1768
  * <p>Resource not found.</p>
@@ -1800,6 +1800,24 @@ export declare class ConflictException extends __BaseException {
1800
1800
  */
1801
1801
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1802
1802
  }
1803
+ /**
1804
+ * <p>This object defines the length of the look-back window used to calculate one burn rate metric
1805
+ * 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
1806
+ * exactly 1 indicates that the SLO goal will be met exactly.</p>
1807
+ * <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>
1808
+ * <p>
1809
+ * <i>burn rate = error rate over the look-back window / (1 - attainment goal percentage)</i>
1810
+ * </p>
1811
+ * <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>
1812
+ * @public
1813
+ */
1814
+ export interface BurnRateConfiguration {
1815
+ /**
1816
+ * <p>The number of minutes to use as the look-back window.</p>
1817
+ * @public
1818
+ */
1819
+ LookBackWindowMinutes: number | undefined;
1820
+ }
1803
1821
  /**
1804
1822
  * <p>Use this structure to specify the information for the metric that a period-based SLO will monitor.</p>
1805
1823
  * @public
@@ -1839,25 +1857,25 @@ export interface RequestBasedServiceLevelIndicatorMetricConfig {
1839
1857
  * </ul>
1840
1858
  * @public
1841
1859
  */
1842
- KeyAttributes?: Record<string, string>;
1860
+ KeyAttributes?: Record<string, string> | undefined;
1843
1861
  /**
1844
1862
  * <p>If the SLO is to monitor a specific operation of the service, use this field to specify the name of that operation.</p>
1845
1863
  * @public
1846
1864
  */
1847
- OperationName?: string;
1865
+ OperationName?: string | undefined;
1848
1866
  /**
1849
1867
  * <p>If the SLO is to monitor either the <code>LATENCY</code> or <code>AVAILABILITY</code> metric that Application Signals
1850
1868
  * collects, use this field to specify which of those metrics is used.</p>
1851
1869
  * @public
1852
1870
  */
1853
- MetricType?: ServiceLevelIndicatorMetricType;
1871
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
1854
1872
  /**
1855
1873
  * <p>Use this structure to define the metric that you want to use as the "total requests" number for a request-based SLO.
1856
1874
  * This result will be divided by the "good request" or "bad request" value defined in
1857
1875
  * <code>MonitoredRequestCountMetric</code>.</p>
1858
1876
  * @public
1859
1877
  */
1860
- TotalRequestCountMetric?: MetricDataQuery[];
1878
+ TotalRequestCountMetric?: MetricDataQuery[] | undefined;
1861
1879
  /**
1862
1880
  * <p>Use this structure to define the metric that you want to use as the "good request" or "bad request"
1863
1881
  * value for a request-based SLO.
@@ -1867,7 +1885,7 @@ export interface RequestBasedServiceLevelIndicatorMetricConfig {
1867
1885
  * this SLO tracks.</p>
1868
1886
  * @public
1869
1887
  */
1870
- MonitoredRequestCountMetric?: MonitoredRequestCountMetricDataQueries;
1888
+ MonitoredRequestCountMetric?: MonitoredRequestCountMetricDataQueries | undefined;
1871
1889
  }
1872
1890
  /**
1873
1891
  * <p>This structure specifies the information about the service and the performance metric that a request-based SLO is to monitor.</p>
@@ -1883,13 +1901,13 @@ export interface RequestBasedServiceLevelIndicatorConfig {
1883
1901
  * <p>The value that the SLI metric is compared to. This parameter is required if this SLO is tracking the <code>Latency</code> metric.</p>
1884
1902
  * @public
1885
1903
  */
1886
- MetricThreshold?: number;
1904
+ MetricThreshold?: number | undefined;
1887
1905
  /**
1888
1906
  * <p>The arithmetic operation to use when comparing the specified metric to the
1889
1907
  * threshold. This parameter is required if this SLO is tracking the <code>Latency</code> metric.</p>
1890
1908
  * @public
1891
1909
  */
1892
- ComparisonOperator?: ServiceLevelIndicatorComparisonOperator;
1910
+ ComparisonOperator?: ServiceLevelIndicatorComparisonOperator | undefined;
1893
1911
  }
1894
1912
  /**
1895
1913
  * <p>Use this structure to specify the information for the metric that a period-based SLO will monitor.</p>
@@ -1930,36 +1948,36 @@ export interface ServiceLevelIndicatorMetricConfig {
1930
1948
  * </ul>
1931
1949
  * @public
1932
1950
  */
1933
- KeyAttributes?: Record<string, string>;
1951
+ KeyAttributes?: Record<string, string> | undefined;
1934
1952
  /**
1935
1953
  * <p>If the SLO is to monitor a specific operation of the service, use this field to specify the name of that operation.</p>
1936
1954
  * @public
1937
1955
  */
1938
- OperationName?: string;
1956
+ OperationName?: string | undefined;
1939
1957
  /**
1940
1958
  * <p>If the SLO is to monitor either the <code>LATENCY</code> or <code>AVAILABILITY</code> metric that Application Signals
1941
1959
  * collects, use this field to specify which of those metrics is used.</p>
1942
1960
  * @public
1943
1961
  */
1944
- MetricType?: ServiceLevelIndicatorMetricType;
1962
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
1945
1963
  /**
1946
1964
  * <p>The statistic to use for comparison to the threshold. It can be any CloudWatch statistic or extended statistic. For more information about statistics,
1947
1965
  * see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html">CloudWatch statistics definitions</a>.</p>
1948
1966
  * @public
1949
1967
  */
1950
- Statistic?: string;
1968
+ Statistic?: string | undefined;
1951
1969
  /**
1952
1970
  * <p>The number of seconds to use as the period for SLO evaluation. Your application's performance is compared to the
1953
1971
  * SLI during each period. For each period, the application is determined to have either achieved or not achieved the necessary performance.</p>
1954
1972
  * @public
1955
1973
  */
1956
- PeriodSeconds?: number;
1974
+ PeriodSeconds?: number | undefined;
1957
1975
  /**
1958
1976
  * <p>If this SLO monitors a CloudWatch metric or the result of a CloudWatch metric math expression,
1959
1977
  * use this structure to specify that metric or expression. </p>
1960
1978
  * @public
1961
1979
  */
1962
- MetricDataQueries?: MetricDataQuery[];
1980
+ MetricDataQueries?: MetricDataQuery[] | undefined;
1963
1981
  }
1964
1982
  /**
1965
1983
  * <p>This structure specifies the information about the service and the performance metric that a period-based SLO is to monitor.</p>
@@ -1997,24 +2015,24 @@ export interface CreateServiceLevelObjectiveInput {
1997
2015
  * <p>An optional description for this SLO.</p>
1998
2016
  * @public
1999
2017
  */
2000
- Description?: string;
2018
+ Description?: string | undefined;
2001
2019
  /**
2002
2020
  * <p>If this SLO is a period-based SLO, this structure defines the information about what performance metric this SLO will monitor.</p>
2003
2021
  * <p>You can't specify both <code>RequestBasedSliConfig</code> and <code>SliConfig</code> in the same operation.</p>
2004
2022
  * @public
2005
2023
  */
2006
- SliConfig?: ServiceLevelIndicatorConfig;
2024
+ SliConfig?: ServiceLevelIndicatorConfig | undefined;
2007
2025
  /**
2008
2026
  * <p>If this SLO is a request-based SLO, this structure defines the information about what performance metric this SLO will monitor.</p>
2009
2027
  * <p>You can't specify both <code>RequestBasedSliConfig</code> and <code>SliConfig</code> in the same operation.</p>
2010
2028
  * @public
2011
2029
  */
2012
- RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig;
2030
+ RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig | undefined;
2013
2031
  /**
2014
2032
  * <p>This structure contains the attributes that determine the goal of the SLO.</p>
2015
2033
  * @public
2016
2034
  */
2017
- Goal?: Goal;
2035
+ Goal?: Goal | undefined;
2018
2036
  /**
2019
2037
  * <p>A list of key-value pairs to associate with the SLO. You can associate as many as 50 tags with an SLO.
2020
2038
  * To be able to associate tags with the SLO when you create the SLO, you must
@@ -2024,7 +2042,13 @@ export interface CreateServiceLevelObjectiveInput {
2024
2042
  * permission to access or change only resources with certain tag values.</p>
2025
2043
  * @public
2026
2044
  */
2027
- Tags?: Tag[];
2045
+ Tags?: Tag[] | undefined;
2046
+ /**
2047
+ * <p>Use this array to create <i>burn rates</i> for this SLO. Each
2048
+ * burn rate is a metric that indicates how fast the service is consuming the error budget, relative to the attainment goal of the SLO.</p>
2049
+ * @public
2050
+ */
2051
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
2028
2052
  }
2029
2053
  /**
2030
2054
  * <p>A structure containing information about one service level objective (SLO) that has been created in Application Signals.
@@ -2050,7 +2074,7 @@ export interface ServiceLevelObjective {
2050
2074
  * <p>The description that you created for this SLO.</p>
2051
2075
  * @public
2052
2076
  */
2053
- Description?: string;
2077
+ Description?: string | undefined;
2054
2078
  /**
2055
2079
  * <p>The date and time that this SLO was created. When used in a raw HTTP Query API, it is formatted as
2056
2080
  * <code>yyyy-MM-dd'T'HH:mm:ss</code>. For example,
@@ -2069,23 +2093,29 @@ export interface ServiceLevelObjective {
2069
2093
  * <p>A structure containing information about the performance metric that this SLO monitors, if this is a period-based SLO.</p>
2070
2094
  * @public
2071
2095
  */
2072
- Sli?: ServiceLevelIndicator;
2096
+ Sli?: ServiceLevelIndicator | undefined;
2073
2097
  /**
2074
2098
  * <p>A structure containing information about the performance metric that this SLO monitors, if this is a request-based SLO.</p>
2075
2099
  * @public
2076
2100
  */
2077
- RequestBasedSli?: RequestBasedServiceLevelIndicator;
2101
+ RequestBasedSli?: RequestBasedServiceLevelIndicator | undefined;
2078
2102
  /**
2079
2103
  * <p>Displays whether this is a period-based SLO or a request-based SLO.</p>
2080
2104
  * @public
2081
2105
  */
2082
- EvaluationType?: EvaluationType;
2106
+ EvaluationType?: EvaluationType | undefined;
2083
2107
  /**
2084
2108
  * <p>This structure contains the attributes that determine the goal of an SLO. This includes
2085
2109
  * the time period for evaluation and the attainment threshold.</p>
2086
2110
  * @public
2087
2111
  */
2088
2112
  Goal: Goal | undefined;
2113
+ /**
2114
+ * <p>Each object in this array defines the length of the look-back window used to calculate one burn rate metric
2115
+ * for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO.</p>
2116
+ * @public
2117
+ */
2118
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
2089
2119
  }
2090
2120
  /**
2091
2121
  * @public
@@ -2183,23 +2213,23 @@ export interface ListServiceLevelObjectivesInput {
2183
2213
  * </ul>
2184
2214
  * @public
2185
2215
  */
2186
- KeyAttributes?: Record<string, string>;
2216
+ KeyAttributes?: Record<string, string> | undefined;
2187
2217
  /**
2188
2218
  * <p>The name of the operation that this SLO is associated with.</p>
2189
2219
  * @public
2190
2220
  */
2191
- OperationName?: string;
2221
+ OperationName?: string | undefined;
2192
2222
  /**
2193
2223
  * <p>The maximum number of results to return in one operation. If you omit this
2194
2224
  * parameter, the default of 50 is used.</p>
2195
2225
  * @public
2196
2226
  */
2197
- MaxResults?: number;
2227
+ MaxResults?: number | undefined;
2198
2228
  /**
2199
2229
  * <p>Include this value, if it was returned by the previous operation, to get the next set of service level objectives.</p>
2200
2230
  * @public
2201
2231
  */
2202
- NextToken?: string;
2232
+ NextToken?: string | undefined;
2203
2233
  }
2204
2234
  /**
2205
2235
  * <p>A structure that contains information about one service level objective (SLO) created in Application Signals.</p>
@@ -2247,18 +2277,18 @@ export interface ServiceLevelObjectiveSummary {
2247
2277
  * </ul>
2248
2278
  * @public
2249
2279
  */
2250
- KeyAttributes?: Record<string, string>;
2280
+ KeyAttributes?: Record<string, string> | undefined;
2251
2281
  /**
2252
2282
  * <p>If this service level objective is specific to a single operation, this
2253
2283
  * field displays the name of that operation.</p>
2254
2284
  * @public
2255
2285
  */
2256
- OperationName?: string;
2286
+ OperationName?: string | undefined;
2257
2287
  /**
2258
2288
  * <p>The date and time that this service level objective was created. It is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.</p>
2259
2289
  * @public
2260
2290
  */
2261
- CreatedTime?: Date;
2291
+ CreatedTime?: Date | undefined;
2262
2292
  }
2263
2293
  /**
2264
2294
  * @public
@@ -2268,13 +2298,13 @@ export interface ListServiceLevelObjectivesOutput {
2268
2298
  * <p>An array of structures, where each structure contains information about one SLO.</p>
2269
2299
  * @public
2270
2300
  */
2271
- SloSummaries?: ServiceLevelObjectiveSummary[];
2301
+ SloSummaries?: ServiceLevelObjectiveSummary[] | undefined;
2272
2302
  /**
2273
2303
  * <p>Include this value in your next use of this API to get next set
2274
2304
  * of service level objectives.</p>
2275
2305
  * @public
2276
2306
  */
2277
- NextToken?: string;
2307
+ NextToken?: string | undefined;
2278
2308
  }
2279
2309
  /**
2280
2310
  * @public
@@ -2289,24 +2319,30 @@ export interface UpdateServiceLevelObjectiveInput {
2289
2319
  * <p>An optional description for the SLO.</p>
2290
2320
  * @public
2291
2321
  */
2292
- Description?: string;
2322
+ Description?: string | undefined;
2293
2323
  /**
2294
2324
  * <p>If this SLO is a period-based SLO, this structure defines the information about what performance metric this SLO will monitor.</p>
2295
2325
  * @public
2296
2326
  */
2297
- SliConfig?: ServiceLevelIndicatorConfig;
2327
+ SliConfig?: ServiceLevelIndicatorConfig | undefined;
2298
2328
  /**
2299
2329
  * <p>If this SLO is a request-based SLO, this structure defines the information about what performance metric this SLO will monitor.</p>
2300
2330
  * <p>You can't specify both <code>SliConfig</code> and <code>RequestBasedSliConfig</code> in the same operation.</p>
2301
2331
  * @public
2302
2332
  */
2303
- RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig;
2333
+ RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig | undefined;
2304
2334
  /**
2305
2335
  * <p>A structure that contains the attributes that determine the goal of the SLO. This includes
2306
2336
  * the time period for evaluation and the attainment threshold.</p>
2307
2337
  * @public
2308
2338
  */
2309
- Goal?: Goal;
2339
+ Goal?: Goal | undefined;
2340
+ /**
2341
+ * <p>Use this array to create <i>burn rates</i> for this SLO. Each
2342
+ * burn rate is a metric that indicates how fast the service is consuming the error budget, relative to the attainment goal of the SLO.</p>
2343
+ * @public
2344
+ */
2345
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
2310
2346
  }
2311
2347
  /**
2312
2348
  * @public
@@ -3,7 +3,7 @@ import { ApplicationSignalsServiceException as __BaseException } from "./Applica
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -76,9 +76,9 @@ export declare namespace Interval {
76
76
  const visit: <T>(value: Interval, visitor: Visitor<T>) => T;
77
77
  }
78
78
  export interface Goal {
79
- Interval?: Interval;
80
- AttainmentGoal?: number;
81
- WarningThreshold?: number;
79
+ Interval?: Interval | undefined;
80
+ AttainmentGoal?: number | undefined;
81
+ WarningThreshold?: number | undefined;
82
82
  }
83
83
  export declare const ServiceLevelIndicatorComparisonOperator: {
84
84
  readonly GREATER_THAN: "GreaterThan";
@@ -99,9 +99,9 @@ export interface Dimension {
99
99
  Value: string | undefined;
100
100
  }
101
101
  export interface Metric {
102
- Namespace?: string;
103
- MetricName?: string;
104
- Dimensions?: Dimension[];
102
+ Namespace?: string | undefined;
103
+ MetricName?: string | undefined;
104
+ Dimensions?: Dimension[] | undefined;
105
105
  }
106
106
  export declare const StandardUnit: {
107
107
  readonly BITS: "Bits";
@@ -137,16 +137,16 @@ export interface MetricStat {
137
137
  Metric: Metric | undefined;
138
138
  Period: number | undefined;
139
139
  Stat: string | undefined;
140
- Unit?: StandardUnit;
140
+ Unit?: StandardUnit | undefined;
141
141
  }
142
142
  export interface MetricDataQuery {
143
143
  Id: string | undefined;
144
- MetricStat?: MetricStat;
145
- Expression?: string;
146
- Label?: string;
147
- ReturnData?: boolean;
148
- Period?: number;
149
- AccountId?: string;
144
+ MetricStat?: MetricStat | undefined;
145
+ Expression?: string | undefined;
146
+ Label?: string | undefined;
147
+ ReturnData?: boolean | undefined;
148
+ Period?: number | undefined;
149
+ AccountId?: string | undefined;
150
150
  }
151
151
  export type MonitoredRequestCountMetricDataQueries =
152
152
  | MonitoredRequestCountMetricDataQueries.BadCountMetricMember
@@ -179,9 +179,9 @@ export declare namespace MonitoredRequestCountMetricDataQueries {
179
179
  ) => T;
180
180
  }
181
181
  export interface RequestBasedServiceLevelIndicatorMetric {
182
- KeyAttributes?: Record<string, string>;
183
- OperationName?: string;
184
- MetricType?: ServiceLevelIndicatorMetricType;
182
+ KeyAttributes?: Record<string, string> | undefined;
183
+ OperationName?: string | undefined;
184
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
185
185
  TotalRequestCountMetric: MetricDataQuery[] | undefined;
186
186
  MonitoredRequestCountMetric:
187
187
  | MonitoredRequestCountMetricDataQueries
@@ -189,13 +189,13 @@ export interface RequestBasedServiceLevelIndicatorMetric {
189
189
  }
190
190
  export interface RequestBasedServiceLevelIndicator {
191
191
  RequestBasedSliMetric: RequestBasedServiceLevelIndicatorMetric | undefined;
192
- MetricThreshold?: number;
193
- ComparisonOperator?: ServiceLevelIndicatorComparisonOperator;
192
+ MetricThreshold?: number | undefined;
193
+ ComparisonOperator?: ServiceLevelIndicatorComparisonOperator | undefined;
194
194
  }
195
195
  export interface ServiceLevelIndicatorMetric {
196
- KeyAttributes?: Record<string, string>;
197
- OperationName?: string;
198
- MetricType?: ServiceLevelIndicatorMetricType;
196
+ KeyAttributes?: Record<string, string> | undefined;
197
+ OperationName?: string | undefined;
198
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
199
199
  MetricDataQueries: MetricDataQuery[] | undefined;
200
200
  }
201
201
  export interface ServiceLevelIndicator {
@@ -206,16 +206,16 @@ export interface ServiceLevelIndicator {
206
206
  export interface ServiceLevelObjectiveBudgetReport {
207
207
  Arn: string | undefined;
208
208
  Name: string | undefined;
209
- EvaluationType?: EvaluationType;
209
+ EvaluationType?: EvaluationType | undefined;
210
210
  BudgetStatus: ServiceLevelObjectiveBudgetStatus | undefined;
211
- Attainment?: number;
212
- TotalBudgetSeconds?: number;
213
- BudgetSecondsRemaining?: number;
214
- TotalBudgetRequests?: number;
215
- BudgetRequestsRemaining?: number;
216
- Sli?: ServiceLevelIndicator;
217
- RequestBasedSli?: RequestBasedServiceLevelIndicator;
218
- Goal?: Goal;
211
+ Attainment?: number | undefined;
212
+ TotalBudgetSeconds?: number | undefined;
213
+ BudgetSecondsRemaining?: number | undefined;
214
+ TotalBudgetRequests?: number | undefined;
215
+ BudgetRequestsRemaining?: number | undefined;
216
+ Sli?: ServiceLevelIndicator | undefined;
217
+ RequestBasedSli?: RequestBasedServiceLevelIndicator | undefined;
218
+ Goal?: Goal | undefined;
219
219
  }
220
220
  export interface BatchGetServiceLevelObjectiveBudgetReportOutput {
221
221
  Timestamp: Date | undefined;
@@ -245,27 +245,27 @@ export interface GetServiceInput {
245
245
  export interface MetricReference {
246
246
  Namespace: string | undefined;
247
247
  MetricType: string | undefined;
248
- Dimensions?: Dimension[];
248
+ Dimensions?: Dimension[] | undefined;
249
249
  MetricName: string | undefined;
250
250
  }
251
251
  export interface Service {
252
252
  KeyAttributes: Record<string, string> | undefined;
253
- AttributeMaps?: Record<string, string>[];
253
+ AttributeMaps?: Record<string, string>[] | undefined;
254
254
  MetricReferences: MetricReference[] | undefined;
255
- LogGroupReferences?: Record<string, string>[];
255
+ LogGroupReferences?: Record<string, string>[] | undefined;
256
256
  }
257
257
  export interface GetServiceOutput {
258
258
  Service: Service | undefined;
259
259
  StartTime: Date | undefined;
260
260
  EndTime: Date | undefined;
261
- LogGroupReferences?: Record<string, string>[];
261
+ LogGroupReferences?: Record<string, string>[] | undefined;
262
262
  }
263
263
  export interface ListServiceDependenciesInput {
264
264
  StartTime: Date | undefined;
265
265
  EndTime: Date | undefined;
266
266
  KeyAttributes: Record<string, string> | undefined;
267
- MaxResults?: number;
268
- NextToken?: string;
267
+ MaxResults?: number | undefined;
268
+ NextToken?: string | undefined;
269
269
  }
270
270
  export interface ServiceDependency {
271
271
  OperationName: string | undefined;
@@ -277,33 +277,33 @@ export interface ListServiceDependenciesOutput {
277
277
  StartTime: Date | undefined;
278
278
  EndTime: Date | undefined;
279
279
  ServiceDependencies: ServiceDependency[] | undefined;
280
- NextToken?: string;
280
+ NextToken?: string | undefined;
281
281
  }
282
282
  export interface ListServiceDependentsInput {
283
283
  StartTime: Date | undefined;
284
284
  EndTime: Date | undefined;
285
285
  KeyAttributes: Record<string, string> | undefined;
286
- MaxResults?: number;
287
- NextToken?: string;
286
+ MaxResults?: number | undefined;
287
+ NextToken?: string | undefined;
288
288
  }
289
289
  export interface ServiceDependent {
290
- OperationName?: string;
290
+ OperationName?: string | undefined;
291
291
  DependentKeyAttributes: Record<string, string> | undefined;
292
- DependentOperationName?: string;
292
+ DependentOperationName?: string | undefined;
293
293
  MetricReferences: MetricReference[] | undefined;
294
294
  }
295
295
  export interface ListServiceDependentsOutput {
296
296
  StartTime: Date | undefined;
297
297
  EndTime: Date | undefined;
298
298
  ServiceDependents: ServiceDependent[] | undefined;
299
- NextToken?: string;
299
+ NextToken?: string | undefined;
300
300
  }
301
301
  export interface ListServiceOperationsInput {
302
302
  StartTime: Date | undefined;
303
303
  EndTime: Date | undefined;
304
304
  KeyAttributes: Record<string, string> | undefined;
305
- MaxResults?: number;
306
- NextToken?: string;
305
+ MaxResults?: number | undefined;
306
+ NextToken?: string | undefined;
307
307
  }
308
308
  export interface ServiceOperation {
309
309
  Name: string | undefined;
@@ -313,24 +313,24 @@ export interface ListServiceOperationsOutput {
313
313
  StartTime: Date | undefined;
314
314
  EndTime: Date | undefined;
315
315
  ServiceOperations: ServiceOperation[] | undefined;
316
- NextToken?: string;
316
+ NextToken?: string | undefined;
317
317
  }
318
318
  export interface ListServicesInput {
319
319
  StartTime: Date | undefined;
320
320
  EndTime: Date | undefined;
321
- MaxResults?: number;
322
- NextToken?: string;
321
+ MaxResults?: number | undefined;
322
+ NextToken?: string | undefined;
323
323
  }
324
324
  export interface ServiceSummary {
325
325
  KeyAttributes: Record<string, string> | undefined;
326
- AttributeMaps?: Record<string, string>[];
326
+ AttributeMaps?: Record<string, string>[] | undefined;
327
327
  MetricReferences: MetricReference[] | undefined;
328
328
  }
329
329
  export interface ListServicesOutput {
330
330
  StartTime: Date | undefined;
331
331
  EndTime: Date | undefined;
332
332
  ServiceSummaries: ServiceSummary[] | undefined;
333
- NextToken?: string;
333
+ NextToken?: string | undefined;
334
334
  }
335
335
  export interface ListTagsForResourceRequest {
336
336
  ResourceArn: string | undefined;
@@ -340,7 +340,7 @@ export interface Tag {
340
340
  Value: string | undefined;
341
341
  }
342
342
  export interface ListTagsForResourceResponse {
343
- Tags?: Tag[];
343
+ Tags?: Tag[] | undefined;
344
344
  }
345
345
  export declare class ResourceNotFoundException extends __BaseException {
346
346
  readonly name: "ResourceNotFoundException";
@@ -358,27 +358,32 @@ export declare class ConflictException extends __BaseException {
358
358
  Message: string | undefined;
359
359
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
360
360
  }
361
+ export interface BurnRateConfiguration {
362
+ LookBackWindowMinutes: number | undefined;
363
+ }
361
364
  export interface RequestBasedServiceLevelIndicatorMetricConfig {
362
- KeyAttributes?: Record<string, string>;
363
- OperationName?: string;
364
- MetricType?: ServiceLevelIndicatorMetricType;
365
- TotalRequestCountMetric?: MetricDataQuery[];
366
- MonitoredRequestCountMetric?: MonitoredRequestCountMetricDataQueries;
365
+ KeyAttributes?: Record<string, string> | undefined;
366
+ OperationName?: string | undefined;
367
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
368
+ TotalRequestCountMetric?: MetricDataQuery[] | undefined;
369
+ MonitoredRequestCountMetric?:
370
+ | MonitoredRequestCountMetricDataQueries
371
+ | undefined;
367
372
  }
368
373
  export interface RequestBasedServiceLevelIndicatorConfig {
369
374
  RequestBasedSliMetricConfig:
370
375
  | RequestBasedServiceLevelIndicatorMetricConfig
371
376
  | undefined;
372
- MetricThreshold?: number;
373
- ComparisonOperator?: ServiceLevelIndicatorComparisonOperator;
377
+ MetricThreshold?: number | undefined;
378
+ ComparisonOperator?: ServiceLevelIndicatorComparisonOperator | undefined;
374
379
  }
375
380
  export interface ServiceLevelIndicatorMetricConfig {
376
- KeyAttributes?: Record<string, string>;
377
- OperationName?: string;
378
- MetricType?: ServiceLevelIndicatorMetricType;
379
- Statistic?: string;
380
- PeriodSeconds?: number;
381
- MetricDataQueries?: MetricDataQuery[];
381
+ KeyAttributes?: Record<string, string> | undefined;
382
+ OperationName?: string | undefined;
383
+ MetricType?: ServiceLevelIndicatorMetricType | undefined;
384
+ Statistic?: string | undefined;
385
+ PeriodSeconds?: number | undefined;
386
+ MetricDataQueries?: MetricDataQuery[] | undefined;
382
387
  }
383
388
  export interface ServiceLevelIndicatorConfig {
384
389
  SliMetricConfig: ServiceLevelIndicatorMetricConfig | undefined;
@@ -387,22 +392,24 @@ export interface ServiceLevelIndicatorConfig {
387
392
  }
388
393
  export interface CreateServiceLevelObjectiveInput {
389
394
  Name: string | undefined;
390
- Description?: string;
391
- SliConfig?: ServiceLevelIndicatorConfig;
392
- RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig;
393
- Goal?: Goal;
394
- Tags?: Tag[];
395
+ Description?: string | undefined;
396
+ SliConfig?: ServiceLevelIndicatorConfig | undefined;
397
+ RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig | undefined;
398
+ Goal?: Goal | undefined;
399
+ Tags?: Tag[] | undefined;
400
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
395
401
  }
396
402
  export interface ServiceLevelObjective {
397
403
  Arn: string | undefined;
398
404
  Name: string | undefined;
399
- Description?: string;
405
+ Description?: string | undefined;
400
406
  CreatedTime: Date | undefined;
401
407
  LastUpdatedTime: Date | undefined;
402
- Sli?: ServiceLevelIndicator;
403
- RequestBasedSli?: RequestBasedServiceLevelIndicator;
404
- EvaluationType?: EvaluationType;
408
+ Sli?: ServiceLevelIndicator | undefined;
409
+ RequestBasedSli?: RequestBasedServiceLevelIndicator | undefined;
410
+ EvaluationType?: EvaluationType | undefined;
405
411
  Goal: Goal | undefined;
412
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
406
413
  }
407
414
  export interface CreateServiceLevelObjectiveOutput {
408
415
  Slo: ServiceLevelObjective | undefined;
@@ -426,28 +433,29 @@ export interface GetServiceLevelObjectiveOutput {
426
433
  Slo: ServiceLevelObjective | undefined;
427
434
  }
428
435
  export interface ListServiceLevelObjectivesInput {
429
- KeyAttributes?: Record<string, string>;
430
- OperationName?: string;
431
- MaxResults?: number;
432
- NextToken?: string;
436
+ KeyAttributes?: Record<string, string> | undefined;
437
+ OperationName?: string | undefined;
438
+ MaxResults?: number | undefined;
439
+ NextToken?: string | undefined;
433
440
  }
434
441
  export interface ServiceLevelObjectiveSummary {
435
442
  Arn: string | undefined;
436
443
  Name: string | undefined;
437
- KeyAttributes?: Record<string, string>;
438
- OperationName?: string;
439
- CreatedTime?: Date;
444
+ KeyAttributes?: Record<string, string> | undefined;
445
+ OperationName?: string | undefined;
446
+ CreatedTime?: Date | undefined;
440
447
  }
441
448
  export interface ListServiceLevelObjectivesOutput {
442
- SloSummaries?: ServiceLevelObjectiveSummary[];
443
- NextToken?: string;
449
+ SloSummaries?: ServiceLevelObjectiveSummary[] | undefined;
450
+ NextToken?: string | undefined;
444
451
  }
445
452
  export interface UpdateServiceLevelObjectiveInput {
446
453
  Id: string | undefined;
447
- Description?: string;
448
- SliConfig?: ServiceLevelIndicatorConfig;
449
- RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig;
450
- Goal?: Goal;
454
+ Description?: string | undefined;
455
+ SliConfig?: ServiceLevelIndicatorConfig | undefined;
456
+ RequestBasedSliConfig?: RequestBasedServiceLevelIndicatorConfig | undefined;
457
+ Goal?: Goal | undefined;
458
+ BurnRateConfigurations?: BurnRateConfiguration[] | undefined;
451
459
  }
452
460
  export interface UpdateServiceLevelObjectiveOutput {
453
461
  Slo: ServiceLevelObjective | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-application-signals",
3
3
  "description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",