@aws-sdk/client-xray 3.170.0 → 3.178.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/XRay.d.ts +0 -27
  6. package/dist-types/ts3.4/XRayClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/models/XRayServiceException.d.ts +0 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +0 -437
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  40. package/package.json +26 -26
@@ -1,14 +1,10 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { XRayServiceException as __BaseException } from "./XRayServiceException";
3
-
4
3
  export interface Alias {
5
4
  Name?: string;
6
-
7
5
  Names?: string[];
8
-
9
6
  Type?: string;
10
7
  }
11
-
12
8
  export declare type AnnotationValue =
13
9
  | AnnotationValue.BooleanValueMember
14
10
  | AnnotationValue.NumberValueMember
@@ -21,14 +17,12 @@ export declare namespace AnnotationValue {
21
17
  StringValue?: never;
22
18
  $unknown?: never;
23
19
  }
24
-
25
20
  interface BooleanValueMember {
26
21
  NumberValue?: never;
27
22
  BooleanValue: boolean;
28
23
  StringValue?: never;
29
24
  $unknown?: never;
30
25
  }
31
-
32
26
  interface StringValueMember {
33
27
  NumberValue?: never;
34
28
  BooleanValue?: never;
@@ -49,173 +43,120 @@ export declare namespace AnnotationValue {
49
43
  }
50
44
  const visit: <T>(value: AnnotationValue, visitor: Visitor<T>) => T;
51
45
  }
52
-
53
46
  export interface ServiceId {
54
47
  Name?: string;
55
-
56
48
  Names?: string[];
57
-
58
49
  AccountId?: string;
59
-
60
50
  Type?: string;
61
51
  }
62
-
63
52
  export interface ValueWithServiceIds {
64
53
  AnnotationValue?: AnnotationValue;
65
-
66
54
  ServiceIds?: ServiceId[];
67
55
  }
68
-
69
56
  export interface AnomalousService {
70
57
  ServiceId?: ServiceId;
71
58
  }
72
-
73
59
  export interface AvailabilityZoneDetail {
74
60
  Name?: string;
75
61
  }
76
62
  export interface BatchGetTracesRequest {
77
63
  TraceIds: string[] | undefined;
78
-
79
64
  NextToken?: string;
80
65
  }
81
-
82
66
  export interface Segment {
83
67
  Id?: string;
84
-
85
68
  Document?: string;
86
69
  }
87
-
88
70
  export interface Trace {
89
71
  Id?: string;
90
-
91
72
  Duration?: number;
92
-
93
73
  LimitExceeded?: boolean;
94
-
95
74
  Segments?: Segment[];
96
75
  }
97
76
  export interface BatchGetTracesResult {
98
77
  Traces?: Trace[];
99
-
100
78
  UnprocessedTraceIds?: string[];
101
-
102
79
  NextToken?: string;
103
80
  }
104
-
105
81
  export declare class InvalidRequestException extends __BaseException {
106
82
  readonly name: "InvalidRequestException";
107
83
  readonly $fault: "client";
108
84
  Message?: string;
109
-
110
85
  constructor(
111
86
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
112
87
  );
113
88
  }
114
-
115
89
  export declare class ThrottledException extends __BaseException {
116
90
  readonly name: "ThrottledException";
117
91
  readonly $fault: "client";
118
92
  Message?: string;
119
-
120
93
  constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
121
94
  }
122
-
123
95
  export interface InsightsConfiguration {
124
96
  InsightsEnabled?: boolean;
125
-
126
97
  NotificationsEnabled?: boolean;
127
98
  }
128
-
129
99
  export interface Tag {
130
100
  Key: string | undefined;
131
-
132
101
  Value: string | undefined;
133
102
  }
134
103
  export interface CreateGroupRequest {
135
104
  GroupName: string | undefined;
136
-
137
105
  FilterExpression?: string;
138
-
139
106
  InsightsConfiguration?: InsightsConfiguration;
140
-
141
107
  Tags?: Tag[];
142
108
  }
143
-
144
109
  export interface Group {
145
110
  GroupName?: string;
146
-
147
111
  GroupARN?: string;
148
-
149
112
  FilterExpression?: string;
150
-
151
113
  InsightsConfiguration?: InsightsConfiguration;
152
114
  }
153
115
  export interface CreateGroupResult {
154
116
  Group?: Group;
155
117
  }
156
-
157
118
  export interface SamplingRule {
158
119
  RuleName?: string;
159
-
160
120
  RuleARN?: string;
161
-
162
121
  ResourceARN: string | undefined;
163
-
164
122
  Priority: number | undefined;
165
-
166
123
  FixedRate: number | undefined;
167
-
168
124
  ReservoirSize: number | undefined;
169
-
170
125
  ServiceName: string | undefined;
171
-
172
126
  ServiceType: string | undefined;
173
-
174
127
  Host: string | undefined;
175
-
176
128
  HTTPMethod: string | undefined;
177
-
178
129
  URLPath: string | undefined;
179
-
180
130
  Version: number | undefined;
181
-
182
131
  Attributes?: Record<string, string>;
183
132
  }
184
133
  export interface CreateSamplingRuleRequest {
185
134
  SamplingRule: SamplingRule | undefined;
186
-
187
135
  Tags?: Tag[];
188
136
  }
189
-
190
137
  export interface SamplingRuleRecord {
191
138
  SamplingRule?: SamplingRule;
192
-
193
139
  CreatedAt?: Date;
194
-
195
140
  ModifiedAt?: Date;
196
141
  }
197
142
  export interface CreateSamplingRuleResult {
198
143
  SamplingRuleRecord?: SamplingRuleRecord;
199
144
  }
200
-
201
145
  export declare class RuleLimitExceededException extends __BaseException {
202
146
  readonly name: "RuleLimitExceededException";
203
147
  readonly $fault: "client";
204
148
  Message?: string;
205
-
206
149
  constructor(
207
150
  opts: __ExceptionOptionType<RuleLimitExceededException, __BaseException>
208
151
  );
209
152
  }
210
153
  export interface DeleteGroupRequest {
211
154
  GroupName?: string;
212
-
213
155
  GroupARN?: string;
214
156
  }
215
157
  export interface DeleteGroupResult {}
216
158
  export interface DeleteSamplingRuleRequest {
217
159
  RuleName?: string;
218
-
219
160
  RuleARN?: string;
220
161
  }
221
162
  export interface DeleteSamplingRuleResult {
@@ -230,12 +171,9 @@ export declare enum EncryptionType {
230
171
  KMS = "KMS",
231
172
  NONE = "NONE",
232
173
  }
233
-
234
174
  export interface EncryptionConfig {
235
175
  KeyId?: string;
236
-
237
176
  Status?: EncryptionStatus | string;
238
-
239
177
  Type?: EncryptionType | string;
240
178
  }
241
179
  export interface GetEncryptionConfigResult {
@@ -243,7 +181,6 @@ export interface GetEncryptionConfigResult {
243
181
  }
244
182
  export interface GetGroupRequest {
245
183
  GroupName?: string;
246
-
247
184
  GroupARN?: string;
248
185
  }
249
186
  export interface GetGroupResult {
@@ -252,19 +189,14 @@ export interface GetGroupResult {
252
189
  export interface GetGroupsRequest {
253
190
  NextToken?: string;
254
191
  }
255
-
256
192
  export interface GroupSummary {
257
193
  GroupName?: string;
258
-
259
194
  GroupARN?: string;
260
-
261
195
  FilterExpression?: string;
262
-
263
196
  InsightsConfiguration?: InsightsConfiguration;
264
197
  }
265
198
  export interface GetGroupsResult {
266
199
  Groups?: GroupSummary[];
267
-
268
200
  NextToken?: string;
269
201
  }
270
202
  export interface GetInsightRequest {
@@ -273,42 +205,27 @@ export interface GetInsightRequest {
273
205
  export declare enum InsightCategory {
274
206
  FAULT = "FAULT",
275
207
  }
276
-
277
208
  export interface RequestImpactStatistics {
278
209
  FaultCount?: number;
279
-
280
210
  OkCount?: number;
281
-
282
211
  TotalCount?: number;
283
212
  }
284
213
  export declare enum InsightState {
285
214
  ACTIVE = "ACTIVE",
286
215
  CLOSED = "CLOSED",
287
216
  }
288
-
289
217
  export interface Insight {
290
218
  InsightId?: string;
291
-
292
219
  GroupARN?: string;
293
-
294
220
  GroupName?: string;
295
-
296
221
  RootCauseServiceId?: ServiceId;
297
-
298
222
  Categories?: (InsightCategory | string)[];
299
-
300
223
  State?: InsightState | string;
301
-
302
224
  StartTime?: Date;
303
-
304
225
  EndTime?: Date;
305
-
306
226
  Summary?: string;
307
-
308
227
  ClientRequestImpactStatistics?: RequestImpactStatistics;
309
-
310
228
  RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics;
311
-
312
229
  TopAnomalousServices?: AnomalousService[];
313
230
  }
314
231
  export interface GetInsightResult {
@@ -316,116 +233,72 @@ export interface GetInsightResult {
316
233
  }
317
234
  export interface GetInsightEventsRequest {
318
235
  InsightId: string | undefined;
319
-
320
236
  MaxResults?: number;
321
-
322
237
  NextToken?: string;
323
238
  }
324
-
325
239
  export interface InsightEvent {
326
240
  Summary?: string;
327
-
328
241
  EventTime?: Date;
329
-
330
242
  ClientRequestImpactStatistics?: RequestImpactStatistics;
331
-
332
243
  RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics;
333
-
334
244
  TopAnomalousServices?: AnomalousService[];
335
245
  }
336
246
  export interface GetInsightEventsResult {
337
247
  InsightEvents?: InsightEvent[];
338
-
339
248
  NextToken?: string;
340
249
  }
341
250
  export interface GetInsightImpactGraphRequest {
342
251
  InsightId: string | undefined;
343
-
344
252
  StartTime: Date | undefined;
345
-
346
253
  EndTime: Date | undefined;
347
-
348
254
  NextToken?: string;
349
255
  }
350
-
351
256
  export interface InsightImpactGraphEdge {
352
257
  ReferenceId?: number;
353
258
  }
354
-
355
259
  export interface InsightImpactGraphService {
356
260
  ReferenceId?: number;
357
-
358
261
  Type?: string;
359
-
360
262
  Name?: string;
361
-
362
263
  Names?: string[];
363
-
364
264
  AccountId?: string;
365
-
366
265
  Edges?: InsightImpactGraphEdge[];
367
266
  }
368
267
  export interface GetInsightImpactGraphResult {
369
268
  InsightId?: string;
370
-
371
269
  StartTime?: Date;
372
-
373
270
  EndTime?: Date;
374
-
375
271
  ServiceGraphStartTime?: Date;
376
-
377
272
  ServiceGraphEndTime?: Date;
378
-
379
273
  Services?: InsightImpactGraphService[];
380
-
381
274
  NextToken?: string;
382
275
  }
383
276
  export interface GetInsightSummariesRequest {
384
277
  States?: (InsightState | string)[];
385
-
386
278
  GroupARN?: string;
387
-
388
279
  GroupName?: string;
389
-
390
280
  StartTime: Date | undefined;
391
-
392
281
  EndTime: Date | undefined;
393
-
394
282
  MaxResults?: number;
395
-
396
283
  NextToken?: string;
397
284
  }
398
-
399
285
  export interface InsightSummary {
400
286
  InsightId?: string;
401
-
402
287
  GroupARN?: string;
403
-
404
288
  GroupName?: string;
405
-
406
289
  RootCauseServiceId?: ServiceId;
407
-
408
290
  Categories?: (InsightCategory | string)[];
409
-
410
291
  State?: InsightState | string;
411
-
412
292
  StartTime?: Date;
413
-
414
293
  EndTime?: Date;
415
-
416
294
  Summary?: string;
417
-
418
295
  ClientRequestImpactStatistics?: RequestImpactStatistics;
419
-
420
296
  RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics;
421
-
422
297
  TopAnomalousServices?: AnomalousService[];
423
-
424
298
  LastUpdateTime?: Date;
425
299
  }
426
300
  export interface GetInsightSummariesResult {
427
301
  InsightSummaries?: InsightSummary[];
428
-
429
302
  NextToken?: string;
430
303
  }
431
304
  export interface GetSamplingRulesRequest {
@@ -433,241 +306,154 @@ export interface GetSamplingRulesRequest {
433
306
  }
434
307
  export interface GetSamplingRulesResult {
435
308
  SamplingRuleRecords?: SamplingRuleRecord[];
436
-
437
309
  NextToken?: string;
438
310
  }
439
311
  export interface GetSamplingStatisticSummariesRequest {
440
312
  NextToken?: string;
441
313
  }
442
-
443
314
  export interface SamplingStatisticSummary {
444
315
  RuleName?: string;
445
-
446
316
  Timestamp?: Date;
447
-
448
317
  RequestCount?: number;
449
-
450
318
  BorrowCount?: number;
451
-
452
319
  SampledCount?: number;
453
320
  }
454
321
  export interface GetSamplingStatisticSummariesResult {
455
322
  SamplingStatisticSummaries?: SamplingStatisticSummary[];
456
-
457
323
  NextToken?: string;
458
324
  }
459
-
460
325
  export interface SamplingStatisticsDocument {
461
326
  RuleName: string | undefined;
462
-
463
327
  ClientID: string | undefined;
464
-
465
328
  Timestamp: Date | undefined;
466
-
467
329
  RequestCount: number | undefined;
468
-
469
330
  SampledCount: number | undefined;
470
-
471
331
  BorrowCount?: number;
472
332
  }
473
333
  export interface GetSamplingTargetsRequest {
474
334
  SamplingStatisticsDocuments: SamplingStatisticsDocument[] | undefined;
475
335
  }
476
-
477
336
  export interface SamplingTargetDocument {
478
337
  RuleName?: string;
479
-
480
338
  FixedRate?: number;
481
-
482
339
  ReservoirQuota?: number;
483
-
484
340
  ReservoirQuotaTTL?: Date;
485
-
486
341
  Interval?: number;
487
342
  }
488
-
489
343
  export interface UnprocessedStatistics {
490
344
  RuleName?: string;
491
-
492
345
  ErrorCode?: string;
493
-
494
346
  Message?: string;
495
347
  }
496
348
  export interface GetSamplingTargetsResult {
497
349
  SamplingTargetDocuments?: SamplingTargetDocument[];
498
-
499
350
  LastRuleModification?: Date;
500
-
501
351
  UnprocessedStatistics?: UnprocessedStatistics[];
502
352
  }
503
353
  export interface GetServiceGraphRequest {
504
354
  StartTime: Date | undefined;
505
-
506
355
  EndTime: Date | undefined;
507
-
508
356
  GroupName?: string;
509
-
510
357
  GroupARN?: string;
511
-
512
358
  NextToken?: string;
513
359
  }
514
-
515
360
  export interface HistogramEntry {
516
361
  Value?: number;
517
-
518
362
  Count?: number;
519
363
  }
520
-
521
364
  export interface ErrorStatistics {
522
365
  ThrottleCount?: number;
523
-
524
366
  OtherCount?: number;
525
-
526
367
  TotalCount?: number;
527
368
  }
528
-
529
369
  export interface FaultStatistics {
530
370
  OtherCount?: number;
531
-
532
371
  TotalCount?: number;
533
372
  }
534
-
535
373
  export interface EdgeStatistics {
536
374
  OkCount?: number;
537
-
538
375
  ErrorStatistics?: ErrorStatistics;
539
-
540
376
  FaultStatistics?: FaultStatistics;
541
-
542
377
  TotalCount?: number;
543
-
544
378
  TotalResponseTime?: number;
545
379
  }
546
-
547
380
  export interface Edge {
548
381
  ReferenceId?: number;
549
-
550
382
  StartTime?: Date;
551
-
552
383
  EndTime?: Date;
553
-
554
384
  SummaryStatistics?: EdgeStatistics;
555
-
556
385
  ResponseTimeHistogram?: HistogramEntry[];
557
-
558
386
  Aliases?: Alias[];
559
387
  }
560
-
561
388
  export interface ServiceStatistics {
562
389
  OkCount?: number;
563
-
564
390
  ErrorStatistics?: ErrorStatistics;
565
-
566
391
  FaultStatistics?: FaultStatistics;
567
-
568
392
  TotalCount?: number;
569
-
570
393
  TotalResponseTime?: number;
571
394
  }
572
-
573
395
  export interface Service {
574
396
  ReferenceId?: number;
575
-
576
397
  Name?: string;
577
-
578
398
  Names?: string[];
579
-
580
399
  Root?: boolean;
581
-
582
400
  AccountId?: string;
583
-
584
401
  Type?: string;
585
-
586
402
  State?: string;
587
-
588
403
  StartTime?: Date;
589
-
590
404
  EndTime?: Date;
591
-
592
405
  Edges?: Edge[];
593
-
594
406
  SummaryStatistics?: ServiceStatistics;
595
-
596
407
  DurationHistogram?: HistogramEntry[];
597
-
598
408
  ResponseTimeHistogram?: HistogramEntry[];
599
409
  }
600
410
  export interface GetServiceGraphResult {
601
411
  StartTime?: Date;
602
-
603
412
  EndTime?: Date;
604
-
605
413
  Services?: Service[];
606
-
607
414
  ContainsOldGroupVersions?: boolean;
608
-
609
415
  NextToken?: string;
610
416
  }
611
417
  export interface GetTimeSeriesServiceStatisticsRequest {
612
418
  StartTime: Date | undefined;
613
-
614
419
  EndTime: Date | undefined;
615
-
616
420
  GroupName?: string;
617
-
618
421
  GroupARN?: string;
619
-
620
422
  EntitySelectorExpression?: string;
621
-
622
423
  Period?: number;
623
-
624
424
  ForecastStatistics?: boolean;
625
-
626
425
  NextToken?: string;
627
426
  }
628
-
629
427
  export interface ForecastStatistics {
630
428
  FaultCountHigh?: number;
631
-
632
429
  FaultCountLow?: number;
633
430
  }
634
-
635
431
  export interface TimeSeriesServiceStatistics {
636
432
  Timestamp?: Date;
637
-
638
433
  EdgeSummaryStatistics?: EdgeStatistics;
639
-
640
434
  ServiceSummaryStatistics?: ServiceStatistics;
641
-
642
435
  ServiceForecastStatistics?: ForecastStatistics;
643
-
644
436
  ResponseTimeHistogram?: HistogramEntry[];
645
437
  }
646
438
  export interface GetTimeSeriesServiceStatisticsResult {
647
439
  TimeSeriesServiceStatistics?: TimeSeriesServiceStatistics[];
648
-
649
440
  ContainsOldGroupVersions?: boolean;
650
-
651
441
  NextToken?: string;
652
442
  }
653
443
  export interface GetTraceGraphRequest {
654
444
  TraceIds: string[] | undefined;
655
-
656
445
  NextToken?: string;
657
446
  }
658
447
  export interface GetTraceGraphResult {
659
448
  Services?: Service[];
660
-
661
449
  NextToken?: string;
662
450
  }
663
451
  export declare enum SamplingStrategyName {
664
452
  FixedRate = "FixedRate",
665
453
  PartialScan = "PartialScan",
666
454
  }
667
-
668
455
  export interface SamplingStrategy {
669
456
  Name?: SamplingStrategyName | string;
670
-
671
457
  Value?: number;
672
458
  }
673
459
  export declare enum TimeRangeType {
@@ -676,262 +462,166 @@ export declare enum TimeRangeType {
676
462
  }
677
463
  export interface GetTraceSummariesRequest {
678
464
  StartTime: Date | undefined;
679
-
680
465
  EndTime: Date | undefined;
681
-
682
466
  TimeRangeType?: TimeRangeType | string;
683
-
684
467
  Sampling?: boolean;
685
-
686
468
  SamplingStrategy?: SamplingStrategy;
687
-
688
469
  FilterExpression?: string;
689
-
690
470
  NextToken?: string;
691
471
  }
692
-
693
472
  export interface RootCauseException {
694
473
  Name?: string;
695
-
696
474
  Message?: string;
697
475
  }
698
-
699
476
  export interface ErrorRootCauseEntity {
700
477
  Name?: string;
701
-
702
478
  Exceptions?: RootCauseException[];
703
-
704
479
  Remote?: boolean;
705
480
  }
706
-
707
481
  export interface ErrorRootCauseService {
708
482
  Name?: string;
709
-
710
483
  Names?: string[];
711
-
712
484
  Type?: string;
713
-
714
485
  AccountId?: string;
715
-
716
486
  EntityPath?: ErrorRootCauseEntity[];
717
-
718
487
  Inferred?: boolean;
719
488
  }
720
-
721
489
  export interface ErrorRootCause {
722
490
  Services?: ErrorRootCauseService[];
723
-
724
491
  ClientImpacting?: boolean;
725
492
  }
726
-
727
493
  export interface FaultRootCauseEntity {
728
494
  Name?: string;
729
-
730
495
  Exceptions?: RootCauseException[];
731
-
732
496
  Remote?: boolean;
733
497
  }
734
-
735
498
  export interface FaultRootCauseService {
736
499
  Name?: string;
737
-
738
500
  Names?: string[];
739
-
740
501
  Type?: string;
741
-
742
502
  AccountId?: string;
743
-
744
503
  EntityPath?: FaultRootCauseEntity[];
745
-
746
504
  Inferred?: boolean;
747
505
  }
748
-
749
506
  export interface FaultRootCause {
750
507
  Services?: FaultRootCauseService[];
751
-
752
508
  ClientImpacting?: boolean;
753
509
  }
754
-
755
510
  export interface Http {
756
511
  HttpURL?: string;
757
-
758
512
  HttpStatus?: number;
759
-
760
513
  HttpMethod?: string;
761
-
762
514
  UserAgent?: string;
763
-
764
515
  ClientIp?: string;
765
516
  }
766
-
767
517
  export interface InstanceIdDetail {
768
518
  Id?: string;
769
519
  }
770
-
771
520
  export interface ResourceARNDetail {
772
521
  ARN?: string;
773
522
  }
774
-
775
523
  export interface ResponseTimeRootCauseEntity {
776
524
  Name?: string;
777
-
778
525
  Coverage?: number;
779
-
780
526
  Remote?: boolean;
781
527
  }
782
-
783
528
  export interface ResponseTimeRootCauseService {
784
529
  Name?: string;
785
-
786
530
  Names?: string[];
787
-
788
531
  Type?: string;
789
-
790
532
  AccountId?: string;
791
-
792
533
  EntityPath?: ResponseTimeRootCauseEntity[];
793
-
794
534
  Inferred?: boolean;
795
535
  }
796
-
797
536
  export interface ResponseTimeRootCause {
798
537
  Services?: ResponseTimeRootCauseService[];
799
-
800
538
  ClientImpacting?: boolean;
801
539
  }
802
-
803
540
  export interface TraceUser {
804
541
  UserName?: string;
805
-
806
542
  ServiceIds?: ServiceId[];
807
543
  }
808
-
809
544
  export interface TraceSummary {
810
545
  Id?: string;
811
-
812
546
  Duration?: number;
813
-
814
547
  ResponseTime?: number;
815
-
816
548
  HasFault?: boolean;
817
-
818
549
  HasError?: boolean;
819
-
820
550
  HasThrottle?: boolean;
821
-
822
551
  IsPartial?: boolean;
823
-
824
552
  Http?: Http;
825
-
826
553
  Annotations?: Record<string, ValueWithServiceIds[]>;
827
-
828
554
  Users?: TraceUser[];
829
-
830
555
  ServiceIds?: ServiceId[];
831
-
832
556
  ResourceARNs?: ResourceARNDetail[];
833
-
834
557
  InstanceIds?: InstanceIdDetail[];
835
-
836
558
  AvailabilityZones?: AvailabilityZoneDetail[];
837
-
838
559
  EntryPoint?: ServiceId;
839
-
840
560
  FaultRootCauses?: FaultRootCause[];
841
-
842
561
  ErrorRootCauses?: ErrorRootCause[];
843
-
844
562
  ResponseTimeRootCauses?: ResponseTimeRootCause[];
845
-
846
563
  Revision?: number;
847
-
848
564
  MatchedEventTime?: Date;
849
565
  }
850
566
  export interface GetTraceSummariesResult {
851
567
  TraceSummaries?: TraceSummary[];
852
-
853
568
  ApproximateTime?: Date;
854
-
855
569
  TracesProcessedCount?: number;
856
-
857
570
  NextToken?: string;
858
571
  }
859
572
  export interface ListTagsForResourceRequest {
860
573
  ResourceARN: string | undefined;
861
-
862
574
  NextToken?: string;
863
575
  }
864
576
  export interface ListTagsForResourceResponse {
865
577
  Tags?: Tag[];
866
-
867
578
  NextToken?: string;
868
579
  }
869
-
870
580
  export declare class ResourceNotFoundException extends __BaseException {
871
581
  readonly name: "ResourceNotFoundException";
872
582
  readonly $fault: "client";
873
583
  Message?: string;
874
584
  ResourceName?: string;
875
-
876
585
  constructor(
877
586
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
878
587
  );
879
588
  }
880
589
  export interface PutEncryptionConfigRequest {
881
590
  KeyId?: string;
882
-
883
591
  Type: EncryptionType | string | undefined;
884
592
  }
885
593
  export interface PutEncryptionConfigResult {
886
594
  EncryptionConfig?: EncryptionConfig;
887
595
  }
888
-
889
596
  export interface BackendConnectionErrors {
890
597
  TimeoutCount?: number;
891
-
892
598
  ConnectionRefusedCount?: number;
893
-
894
599
  HTTPCode4XXCount?: number;
895
-
896
600
  HTTPCode5XXCount?: number;
897
-
898
601
  UnknownHostCount?: number;
899
-
900
602
  OtherCount?: number;
901
603
  }
902
-
903
604
  export interface TelemetryRecord {
904
605
  Timestamp: Date | undefined;
905
-
906
606
  SegmentsReceivedCount?: number;
907
-
908
607
  SegmentsSentCount?: number;
909
-
910
608
  SegmentsSpilloverCount?: number;
911
-
912
609
  SegmentsRejectedCount?: number;
913
-
914
610
  BackendConnectionErrors?: BackendConnectionErrors;
915
611
  }
916
612
  export interface PutTelemetryRecordsRequest {
917
613
  TelemetryRecords: TelemetryRecord[] | undefined;
918
-
919
614
  EC2InstanceId?: string;
920
-
921
615
  Hostname?: string;
922
-
923
616
  ResourceARN?: string;
924
617
  }
925
618
  export interface PutTelemetryRecordsResult {}
926
619
  export interface PutTraceSegmentsRequest {
927
620
  TraceSegmentDocuments: string[] | undefined;
928
621
  }
929
-
930
622
  export interface UnprocessedTraceSegment {
931
623
  Id?: string;
932
-
933
624
  ErrorCode?: string;
934
-
935
625
  Message?: string;
936
626
  }
937
627
  export interface PutTraceSegmentsResult {
@@ -939,63 +629,44 @@ export interface PutTraceSegmentsResult {
939
629
  }
940
630
  export interface TagResourceRequest {
941
631
  ResourceARN: string | undefined;
942
-
943
632
  Tags: Tag[] | undefined;
944
633
  }
945
634
  export interface TagResourceResponse {}
946
-
947
635
  export declare class TooManyTagsException extends __BaseException {
948
636
  readonly name: "TooManyTagsException";
949
637
  readonly $fault: "client";
950
638
  Message?: string;
951
639
  ResourceName?: string;
952
-
953
640
  constructor(
954
641
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
955
642
  );
956
643
  }
957
644
  export interface UntagResourceRequest {
958
645
  ResourceARN: string | undefined;
959
-
960
646
  TagKeys: string[] | undefined;
961
647
  }
962
648
  export interface UntagResourceResponse {}
963
649
  export interface UpdateGroupRequest {
964
650
  GroupName?: string;
965
-
966
651
  GroupARN?: string;
967
-
968
652
  FilterExpression?: string;
969
-
970
653
  InsightsConfiguration?: InsightsConfiguration;
971
654
  }
972
655
  export interface UpdateGroupResult {
973
656
  Group?: Group;
974
657
  }
975
-
976
658
  export interface SamplingRuleUpdate {
977
659
  RuleName?: string;
978
-
979
660
  RuleARN?: string;
980
-
981
661
  ResourceARN?: string;
982
-
983
662
  Priority?: number;
984
-
985
663
  FixedRate?: number;
986
-
987
664
  ReservoirSize?: number;
988
-
989
665
  Host?: string;
990
-
991
666
  ServiceName?: string;
992
-
993
667
  ServiceType?: string;
994
-
995
668
  HTTPMethod?: string;
996
-
997
669
  URLPath?: string;
998
-
999
670
  Attributes?: Record<string, string>;
1000
671
  }
1001
672
  export interface UpdateSamplingRuleRequest {
@@ -1004,405 +675,297 @@ export interface UpdateSamplingRuleRequest {
1004
675
  export interface UpdateSamplingRuleResult {
1005
676
  SamplingRuleRecord?: SamplingRuleRecord;
1006
677
  }
1007
-
1008
678
  export declare const AliasFilterSensitiveLog: (obj: Alias) => any;
1009
-
1010
679
  export declare const AnnotationValueFilterSensitiveLog: (
1011
680
  obj: AnnotationValue
1012
681
  ) => any;
1013
-
1014
682
  export declare const ServiceIdFilterSensitiveLog: (obj: ServiceId) => any;
1015
-
1016
683
  export declare const ValueWithServiceIdsFilterSensitiveLog: (
1017
684
  obj: ValueWithServiceIds
1018
685
  ) => any;
1019
-
1020
686
  export declare const AnomalousServiceFilterSensitiveLog: (
1021
687
  obj: AnomalousService
1022
688
  ) => any;
1023
-
1024
689
  export declare const AvailabilityZoneDetailFilterSensitiveLog: (
1025
690
  obj: AvailabilityZoneDetail
1026
691
  ) => any;
1027
-
1028
692
  export declare const BatchGetTracesRequestFilterSensitiveLog: (
1029
693
  obj: BatchGetTracesRequest
1030
694
  ) => any;
1031
-
1032
695
  export declare const SegmentFilterSensitiveLog: (obj: Segment) => any;
1033
-
1034
696
  export declare const TraceFilterSensitiveLog: (obj: Trace) => any;
1035
-
1036
697
  export declare const BatchGetTracesResultFilterSensitiveLog: (
1037
698
  obj: BatchGetTracesResult
1038
699
  ) => any;
1039
-
1040
700
  export declare const InsightsConfigurationFilterSensitiveLog: (
1041
701
  obj: InsightsConfiguration
1042
702
  ) => any;
1043
-
1044
703
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1045
-
1046
704
  export declare const CreateGroupRequestFilterSensitiveLog: (
1047
705
  obj: CreateGroupRequest
1048
706
  ) => any;
1049
-
1050
707
  export declare const GroupFilterSensitiveLog: (obj: Group) => any;
1051
-
1052
708
  export declare const CreateGroupResultFilterSensitiveLog: (
1053
709
  obj: CreateGroupResult
1054
710
  ) => any;
1055
-
1056
711
  export declare const SamplingRuleFilterSensitiveLog: (obj: SamplingRule) => any;
1057
-
1058
712
  export declare const CreateSamplingRuleRequestFilterSensitiveLog: (
1059
713
  obj: CreateSamplingRuleRequest
1060
714
  ) => any;
1061
-
1062
715
  export declare const SamplingRuleRecordFilterSensitiveLog: (
1063
716
  obj: SamplingRuleRecord
1064
717
  ) => any;
1065
-
1066
718
  export declare const CreateSamplingRuleResultFilterSensitiveLog: (
1067
719
  obj: CreateSamplingRuleResult
1068
720
  ) => any;
1069
-
1070
721
  export declare const DeleteGroupRequestFilterSensitiveLog: (
1071
722
  obj: DeleteGroupRequest
1072
723
  ) => any;
1073
-
1074
724
  export declare const DeleteGroupResultFilterSensitiveLog: (
1075
725
  obj: DeleteGroupResult
1076
726
  ) => any;
1077
-
1078
727
  export declare const DeleteSamplingRuleRequestFilterSensitiveLog: (
1079
728
  obj: DeleteSamplingRuleRequest
1080
729
  ) => any;
1081
-
1082
730
  export declare const DeleteSamplingRuleResultFilterSensitiveLog: (
1083
731
  obj: DeleteSamplingRuleResult
1084
732
  ) => any;
1085
-
1086
733
  export declare const GetEncryptionConfigRequestFilterSensitiveLog: (
1087
734
  obj: GetEncryptionConfigRequest
1088
735
  ) => any;
1089
-
1090
736
  export declare const EncryptionConfigFilterSensitiveLog: (
1091
737
  obj: EncryptionConfig
1092
738
  ) => any;
1093
-
1094
739
  export declare const GetEncryptionConfigResultFilterSensitiveLog: (
1095
740
  obj: GetEncryptionConfigResult
1096
741
  ) => any;
1097
-
1098
742
  export declare const GetGroupRequestFilterSensitiveLog: (
1099
743
  obj: GetGroupRequest
1100
744
  ) => any;
1101
-
1102
745
  export declare const GetGroupResultFilterSensitiveLog: (
1103
746
  obj: GetGroupResult
1104
747
  ) => any;
1105
-
1106
748
  export declare const GetGroupsRequestFilterSensitiveLog: (
1107
749
  obj: GetGroupsRequest
1108
750
  ) => any;
1109
-
1110
751
  export declare const GroupSummaryFilterSensitiveLog: (obj: GroupSummary) => any;
1111
-
1112
752
  export declare const GetGroupsResultFilterSensitiveLog: (
1113
753
  obj: GetGroupsResult
1114
754
  ) => any;
1115
-
1116
755
  export declare const GetInsightRequestFilterSensitiveLog: (
1117
756
  obj: GetInsightRequest
1118
757
  ) => any;
1119
-
1120
758
  export declare const RequestImpactStatisticsFilterSensitiveLog: (
1121
759
  obj: RequestImpactStatistics
1122
760
  ) => any;
1123
-
1124
761
  export declare const InsightFilterSensitiveLog: (obj: Insight) => any;
1125
-
1126
762
  export declare const GetInsightResultFilterSensitiveLog: (
1127
763
  obj: GetInsightResult
1128
764
  ) => any;
1129
-
1130
765
  export declare const GetInsightEventsRequestFilterSensitiveLog: (
1131
766
  obj: GetInsightEventsRequest
1132
767
  ) => any;
1133
-
1134
768
  export declare const InsightEventFilterSensitiveLog: (obj: InsightEvent) => any;
1135
-
1136
769
  export declare const GetInsightEventsResultFilterSensitiveLog: (
1137
770
  obj: GetInsightEventsResult
1138
771
  ) => any;
1139
-
1140
772
  export declare const GetInsightImpactGraphRequestFilterSensitiveLog: (
1141
773
  obj: GetInsightImpactGraphRequest
1142
774
  ) => any;
1143
-
1144
775
  export declare const InsightImpactGraphEdgeFilterSensitiveLog: (
1145
776
  obj: InsightImpactGraphEdge
1146
777
  ) => any;
1147
-
1148
778
  export declare const InsightImpactGraphServiceFilterSensitiveLog: (
1149
779
  obj: InsightImpactGraphService
1150
780
  ) => any;
1151
-
1152
781
  export declare const GetInsightImpactGraphResultFilterSensitiveLog: (
1153
782
  obj: GetInsightImpactGraphResult
1154
783
  ) => any;
1155
-
1156
784
  export declare const GetInsightSummariesRequestFilterSensitiveLog: (
1157
785
  obj: GetInsightSummariesRequest
1158
786
  ) => any;
1159
-
1160
787
  export declare const InsightSummaryFilterSensitiveLog: (
1161
788
  obj: InsightSummary
1162
789
  ) => any;
1163
-
1164
790
  export declare const GetInsightSummariesResultFilterSensitiveLog: (
1165
791
  obj: GetInsightSummariesResult
1166
792
  ) => any;
1167
-
1168
793
  export declare const GetSamplingRulesRequestFilterSensitiveLog: (
1169
794
  obj: GetSamplingRulesRequest
1170
795
  ) => any;
1171
-
1172
796
  export declare const GetSamplingRulesResultFilterSensitiveLog: (
1173
797
  obj: GetSamplingRulesResult
1174
798
  ) => any;
1175
-
1176
799
  export declare const GetSamplingStatisticSummariesRequestFilterSensitiveLog: (
1177
800
  obj: GetSamplingStatisticSummariesRequest
1178
801
  ) => any;
1179
-
1180
802
  export declare const SamplingStatisticSummaryFilterSensitiveLog: (
1181
803
  obj: SamplingStatisticSummary
1182
804
  ) => any;
1183
-
1184
805
  export declare const GetSamplingStatisticSummariesResultFilterSensitiveLog: (
1185
806
  obj: GetSamplingStatisticSummariesResult
1186
807
  ) => any;
1187
-
1188
808
  export declare const SamplingStatisticsDocumentFilterSensitiveLog: (
1189
809
  obj: SamplingStatisticsDocument
1190
810
  ) => any;
1191
-
1192
811
  export declare const GetSamplingTargetsRequestFilterSensitiveLog: (
1193
812
  obj: GetSamplingTargetsRequest
1194
813
  ) => any;
1195
-
1196
814
  export declare const SamplingTargetDocumentFilterSensitiveLog: (
1197
815
  obj: SamplingTargetDocument
1198
816
  ) => any;
1199
-
1200
817
  export declare const UnprocessedStatisticsFilterSensitiveLog: (
1201
818
  obj: UnprocessedStatistics
1202
819
  ) => any;
1203
-
1204
820
  export declare const GetSamplingTargetsResultFilterSensitiveLog: (
1205
821
  obj: GetSamplingTargetsResult
1206
822
  ) => any;
1207
-
1208
823
  export declare const GetServiceGraphRequestFilterSensitiveLog: (
1209
824
  obj: GetServiceGraphRequest
1210
825
  ) => any;
1211
-
1212
826
  export declare const HistogramEntryFilterSensitiveLog: (
1213
827
  obj: HistogramEntry
1214
828
  ) => any;
1215
-
1216
829
  export declare const ErrorStatisticsFilterSensitiveLog: (
1217
830
  obj: ErrorStatistics
1218
831
  ) => any;
1219
-
1220
832
  export declare const FaultStatisticsFilterSensitiveLog: (
1221
833
  obj: FaultStatistics
1222
834
  ) => any;
1223
-
1224
835
  export declare const EdgeStatisticsFilterSensitiveLog: (
1225
836
  obj: EdgeStatistics
1226
837
  ) => any;
1227
-
1228
838
  export declare const EdgeFilterSensitiveLog: (obj: Edge) => any;
1229
-
1230
839
  export declare const ServiceStatisticsFilterSensitiveLog: (
1231
840
  obj: ServiceStatistics
1232
841
  ) => any;
1233
-
1234
842
  export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
1235
-
1236
843
  export declare const GetServiceGraphResultFilterSensitiveLog: (
1237
844
  obj: GetServiceGraphResult
1238
845
  ) => any;
1239
-
1240
846
  export declare const GetTimeSeriesServiceStatisticsRequestFilterSensitiveLog: (
1241
847
  obj: GetTimeSeriesServiceStatisticsRequest
1242
848
  ) => any;
1243
-
1244
849
  export declare const ForecastStatisticsFilterSensitiveLog: (
1245
850
  obj: ForecastStatistics
1246
851
  ) => any;
1247
-
1248
852
  export declare const TimeSeriesServiceStatisticsFilterSensitiveLog: (
1249
853
  obj: TimeSeriesServiceStatistics
1250
854
  ) => any;
1251
-
1252
855
  export declare const GetTimeSeriesServiceStatisticsResultFilterSensitiveLog: (
1253
856
  obj: GetTimeSeriesServiceStatisticsResult
1254
857
  ) => any;
1255
-
1256
858
  export declare const GetTraceGraphRequestFilterSensitiveLog: (
1257
859
  obj: GetTraceGraphRequest
1258
860
  ) => any;
1259
-
1260
861
  export declare const GetTraceGraphResultFilterSensitiveLog: (
1261
862
  obj: GetTraceGraphResult
1262
863
  ) => any;
1263
-
1264
864
  export declare const SamplingStrategyFilterSensitiveLog: (
1265
865
  obj: SamplingStrategy
1266
866
  ) => any;
1267
-
1268
867
  export declare const GetTraceSummariesRequestFilterSensitiveLog: (
1269
868
  obj: GetTraceSummariesRequest
1270
869
  ) => any;
1271
-
1272
870
  export declare const RootCauseExceptionFilterSensitiveLog: (
1273
871
  obj: RootCauseException
1274
872
  ) => any;
1275
-
1276
873
  export declare const ErrorRootCauseEntityFilterSensitiveLog: (
1277
874
  obj: ErrorRootCauseEntity
1278
875
  ) => any;
1279
-
1280
876
  export declare const ErrorRootCauseServiceFilterSensitiveLog: (
1281
877
  obj: ErrorRootCauseService
1282
878
  ) => any;
1283
-
1284
879
  export declare const ErrorRootCauseFilterSensitiveLog: (
1285
880
  obj: ErrorRootCause
1286
881
  ) => any;
1287
-
1288
882
  export declare const FaultRootCauseEntityFilterSensitiveLog: (
1289
883
  obj: FaultRootCauseEntity
1290
884
  ) => any;
1291
-
1292
885
  export declare const FaultRootCauseServiceFilterSensitiveLog: (
1293
886
  obj: FaultRootCauseService
1294
887
  ) => any;
1295
-
1296
888
  export declare const FaultRootCauseFilterSensitiveLog: (
1297
889
  obj: FaultRootCause
1298
890
  ) => any;
1299
-
1300
891
  export declare const HttpFilterSensitiveLog: (obj: Http) => any;
1301
-
1302
892
  export declare const InstanceIdDetailFilterSensitiveLog: (
1303
893
  obj: InstanceIdDetail
1304
894
  ) => any;
1305
-
1306
895
  export declare const ResourceARNDetailFilterSensitiveLog: (
1307
896
  obj: ResourceARNDetail
1308
897
  ) => any;
1309
-
1310
898
  export declare const ResponseTimeRootCauseEntityFilterSensitiveLog: (
1311
899
  obj: ResponseTimeRootCauseEntity
1312
900
  ) => any;
1313
-
1314
901
  export declare const ResponseTimeRootCauseServiceFilterSensitiveLog: (
1315
902
  obj: ResponseTimeRootCauseService
1316
903
  ) => any;
1317
-
1318
904
  export declare const ResponseTimeRootCauseFilterSensitiveLog: (
1319
905
  obj: ResponseTimeRootCause
1320
906
  ) => any;
1321
-
1322
907
  export declare const TraceUserFilterSensitiveLog: (obj: TraceUser) => any;
1323
-
1324
908
  export declare const TraceSummaryFilterSensitiveLog: (obj: TraceSummary) => any;
1325
-
1326
909
  export declare const GetTraceSummariesResultFilterSensitiveLog: (
1327
910
  obj: GetTraceSummariesResult
1328
911
  ) => any;
1329
-
1330
912
  export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1331
913
  obj: ListTagsForResourceRequest
1332
914
  ) => any;
1333
-
1334
915
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1335
916
  obj: ListTagsForResourceResponse
1336
917
  ) => any;
1337
-
1338
918
  export declare const PutEncryptionConfigRequestFilterSensitiveLog: (
1339
919
  obj: PutEncryptionConfigRequest
1340
920
  ) => any;
1341
-
1342
921
  export declare const PutEncryptionConfigResultFilterSensitiveLog: (
1343
922
  obj: PutEncryptionConfigResult
1344
923
  ) => any;
1345
-
1346
924
  export declare const BackendConnectionErrorsFilterSensitiveLog: (
1347
925
  obj: BackendConnectionErrors
1348
926
  ) => any;
1349
-
1350
927
  export declare const TelemetryRecordFilterSensitiveLog: (
1351
928
  obj: TelemetryRecord
1352
929
  ) => any;
1353
-
1354
930
  export declare const PutTelemetryRecordsRequestFilterSensitiveLog: (
1355
931
  obj: PutTelemetryRecordsRequest
1356
932
  ) => any;
1357
-
1358
933
  export declare const PutTelemetryRecordsResultFilterSensitiveLog: (
1359
934
  obj: PutTelemetryRecordsResult
1360
935
  ) => any;
1361
-
1362
936
  export declare const PutTraceSegmentsRequestFilterSensitiveLog: (
1363
937
  obj: PutTraceSegmentsRequest
1364
938
  ) => any;
1365
-
1366
939
  export declare const UnprocessedTraceSegmentFilterSensitiveLog: (
1367
940
  obj: UnprocessedTraceSegment
1368
941
  ) => any;
1369
-
1370
942
  export declare const PutTraceSegmentsResultFilterSensitiveLog: (
1371
943
  obj: PutTraceSegmentsResult
1372
944
  ) => any;
1373
-
1374
945
  export declare const TagResourceRequestFilterSensitiveLog: (
1375
946
  obj: TagResourceRequest
1376
947
  ) => any;
1377
-
1378
948
  export declare const TagResourceResponseFilterSensitiveLog: (
1379
949
  obj: TagResourceResponse
1380
950
  ) => any;
1381
-
1382
951
  export declare const UntagResourceRequestFilterSensitiveLog: (
1383
952
  obj: UntagResourceRequest
1384
953
  ) => any;
1385
-
1386
954
  export declare const UntagResourceResponseFilterSensitiveLog: (
1387
955
  obj: UntagResourceResponse
1388
956
  ) => any;
1389
-
1390
957
  export declare const UpdateGroupRequestFilterSensitiveLog: (
1391
958
  obj: UpdateGroupRequest
1392
959
  ) => any;
1393
-
1394
960
  export declare const UpdateGroupResultFilterSensitiveLog: (
1395
961
  obj: UpdateGroupResult
1396
962
  ) => any;
1397
-
1398
963
  export declare const SamplingRuleUpdateFilterSensitiveLog: (
1399
964
  obj: SamplingRuleUpdate
1400
965
  ) => any;
1401
-
1402
966
  export declare const UpdateSamplingRuleRequestFilterSensitiveLog: (
1403
967
  obj: UpdateSamplingRuleRequest
1404
968
  ) => any;
1405
-
1406
969
  export declare const UpdateSamplingRuleResultFilterSensitiveLog: (
1407
970
  obj: UpdateSamplingRuleResult
1408
971
  ) => any;