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