@aws-sdk/client-xray 3.300.0 → 3.301.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 (30) hide show
  1. package/dist-types/commands/BatchGetTracesCommand.d.ts +2 -2
  2. package/dist-types/commands/CreateGroupCommand.d.ts +4 -4
  3. package/dist-types/commands/CreateSamplingRuleCommand.d.ts +5 -5
  4. package/dist-types/commands/DeleteGroupCommand.d.ts +1 -1
  5. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteSamplingRuleCommand.d.ts +1 -1
  7. package/dist-types/commands/GetGroupCommand.d.ts +1 -1
  8. package/dist-types/commands/GetGroupsCommand.d.ts +1 -1
  9. package/dist-types/commands/GetInsightCommand.d.ts +1 -1
  10. package/dist-types/commands/GetInsightEventsCommand.d.ts +1 -1
  11. package/dist-types/commands/GetInsightImpactGraphCommand.d.ts +1 -1
  12. package/dist-types/commands/GetInsightSummariesCommand.d.ts +2 -2
  13. package/dist-types/commands/GetSamplingRulesCommand.d.ts +1 -1
  14. package/dist-types/commands/GetSamplingStatisticSummariesCommand.d.ts +1 -1
  15. package/dist-types/commands/GetSamplingTargetsCommand.d.ts +3 -3
  16. package/dist-types/commands/GetServiceGraphCommand.d.ts +1 -1
  17. package/dist-types/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +1 -1
  18. package/dist-types/commands/GetTraceGraphCommand.d.ts +2 -2
  19. package/dist-types/commands/GetTraceSummariesCommand.d.ts +2 -2
  20. package/dist-types/commands/ListResourcePoliciesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/PutEncryptionConfigCommand.d.ts +1 -1
  23. package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
  24. package/dist-types/commands/PutTelemetryRecordsCommand.d.ts +4 -4
  25. package/dist-types/commands/PutTraceSegmentsCommand.d.ts +2 -2
  26. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  28. package/dist-types/commands/UpdateGroupCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateSamplingRuleCommand.d.ts +3 -3
  30. package/package.json +3 -3
@@ -28,8 +28,8 @@ export interface BatchGetTracesCommandOutput extends BatchGetTracesResult, __Met
28
28
  * import { XRayClient, BatchGetTracesCommand } from "@aws-sdk/client-xray"; // ES Modules import
29
29
  * // const { XRayClient, BatchGetTracesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
30
30
  * const client = new XRayClient(config);
31
- * const input = {
32
- * TraceIds: [ // required
31
+ * const input = { // BatchGetTracesRequest
32
+ * TraceIds: [ // TraceIdList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * NextToken: "STRING_VALUE",
@@ -26,15 +26,15 @@ export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataB
26
26
  * import { XRayClient, CreateGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, CreateGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // CreateGroupRequest
30
30
  * GroupName: "STRING_VALUE", // required
31
31
  * FilterExpression: "STRING_VALUE",
32
- * InsightsConfiguration: {
32
+ * InsightsConfiguration: { // InsightsConfiguration
33
33
  * InsightsEnabled: true || false,
34
34
  * NotificationsEnabled: true || false,
35
35
  * },
36
- * Tags: [
37
- * {
36
+ * Tags: [ // TagList
37
+ * { // Tag
38
38
  * Key: "STRING_VALUE", // required
39
39
  * Value: "STRING_VALUE", // required
40
40
  * },
@@ -32,8 +32,8 @@ export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResul
32
32
  * import { XRayClient, CreateSamplingRuleCommand } from "@aws-sdk/client-xray"; // ES Modules import
33
33
  * // const { XRayClient, CreateSamplingRuleCommand } = require("@aws-sdk/client-xray"); // CommonJS import
34
34
  * const client = new XRayClient(config);
35
- * const input = {
36
- * SamplingRule: {
35
+ * const input = { // CreateSamplingRuleRequest
36
+ * SamplingRule: { // SamplingRule
37
37
  * RuleName: "STRING_VALUE",
38
38
  * RuleARN: "STRING_VALUE",
39
39
  * ResourceARN: "STRING_VALUE", // required
@@ -46,12 +46,12 @@ export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResul
46
46
  * HTTPMethod: "STRING_VALUE", // required
47
47
  * URLPath: "STRING_VALUE", // required
48
48
  * Version: Number("int"), // required
49
- * Attributes: {
49
+ * Attributes: { // AttributeMap
50
50
  * "<keys>": "STRING_VALUE",
51
51
  * },
52
52
  * },
53
- * Tags: [
54
- * {
53
+ * Tags: [ // TagList
54
+ * { // Tag
55
55
  * Key: "STRING_VALUE", // required
56
56
  * Value: "STRING_VALUE", // required
57
57
  * },
@@ -26,7 +26,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataB
26
26
  * import { XRayClient, DeleteGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, DeleteGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // DeleteGroupRequest
30
30
  * GroupName: "STRING_VALUE",
31
31
  * GroupARN: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
26
26
  * import { XRayClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, DeleteResourcePolicyCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // DeleteResourcePolicyRequest
30
30
  * PolicyName: "STRING_VALUE", // required
31
31
  * PolicyRevisionId: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResul
26
26
  * import { XRayClient, DeleteSamplingRuleCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, DeleteSamplingRuleCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // DeleteSamplingRuleRequest
30
30
  * RuleName: "STRING_VALUE",
31
31
  * RuleARN: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetGroupCommandOutput extends GetGroupResult, __MetadataBearer
26
26
  * import { XRayClient, GetGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // GetGroupRequest
30
30
  * GroupName: "STRING_VALUE",
31
31
  * GroupARN: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetGroupsCommandOutput extends GetGroupsResult, __MetadataBeare
26
26
  * import { XRayClient, GetGroupsCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetGroupsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // GetGroupsRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new GetGroupsCommand(input);
@@ -28,7 +28,7 @@ export interface GetInsightCommandOutput extends GetInsightResult, __MetadataBea
28
28
  * import { XRayClient, GetInsightCommand } from "@aws-sdk/client-xray"; // ES Modules import
29
29
  * // const { XRayClient, GetInsightCommand } = require("@aws-sdk/client-xray"); // CommonJS import
30
30
  * const client = new XRayClient(config);
31
- * const input = {
31
+ * const input = { // GetInsightRequest
32
32
  * InsightId: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetInsightCommand(input);
@@ -28,7 +28,7 @@ export interface GetInsightEventsCommandOutput extends GetInsightEventsResult, _
28
28
  * import { XRayClient, GetInsightEventsCommand } from "@aws-sdk/client-xray"; // ES Modules import
29
29
  * // const { XRayClient, GetInsightEventsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
30
30
  * const client = new XRayClient(config);
31
- * const input = {
31
+ * const input = { // GetInsightEventsRequest
32
32
  * InsightId: "STRING_VALUE", // required
33
33
  * MaxResults: Number("int"),
34
34
  * NextToken: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface GetInsightImpactGraphCommandOutput extends GetInsightImpactGrap
27
27
  * import { XRayClient, GetInsightImpactGraphCommand } from "@aws-sdk/client-xray"; // ES Modules import
28
28
  * // const { XRayClient, GetInsightImpactGraphCommand } = require("@aws-sdk/client-xray"); // CommonJS import
29
29
  * const client = new XRayClient(config);
30
- * const input = {
30
+ * const input = { // GetInsightImpactGraphRequest
31
31
  * InsightId: "STRING_VALUE", // required
32
32
  * StartTime: new Date("TIMESTAMP"), // required
33
33
  * EndTime: new Date("TIMESTAMP"), // required
@@ -26,8 +26,8 @@ export interface GetInsightSummariesCommandOutput extends GetInsightSummariesRes
26
26
  * import { XRayClient, GetInsightSummariesCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetInsightSummariesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
30
- * States: [
29
+ * const input = { // GetInsightSummariesRequest
30
+ * States: [ // InsightStateList
31
31
  * "ACTIVE" || "CLOSED",
32
32
  * ],
33
33
  * GroupARN: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface GetSamplingRulesCommandOutput extends GetSamplingRulesResult, _
26
26
  * import { XRayClient, GetSamplingRulesCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetSamplingRulesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // GetSamplingRulesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new GetSamplingRulesCommand(input);
@@ -26,7 +26,7 @@ export interface GetSamplingStatisticSummariesCommandOutput extends GetSamplingS
26
26
  * import { XRayClient, GetSamplingStatisticSummariesCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetSamplingStatisticSummariesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // GetSamplingStatisticSummariesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new GetSamplingStatisticSummariesCommand(input);
@@ -27,9 +27,9 @@ export interface GetSamplingTargetsCommandOutput extends GetSamplingTargetsResul
27
27
  * import { XRayClient, GetSamplingTargetsCommand } from "@aws-sdk/client-xray"; // ES Modules import
28
28
  * // const { XRayClient, GetSamplingTargetsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
29
29
  * const client = new XRayClient(config);
30
- * const input = {
31
- * SamplingStatisticsDocuments: [ // required
32
- * {
30
+ * const input = { // GetSamplingTargetsRequest
31
+ * SamplingStatisticsDocuments: [ // SamplingStatisticsDocumentList // required
32
+ * { // SamplingStatisticsDocument
33
33
  * RuleName: "STRING_VALUE", // required
34
34
  * ClientID: "STRING_VALUE", // required
35
35
  * Timestamp: new Date("TIMESTAMP"), // required
@@ -30,7 +30,7 @@ export interface GetServiceGraphCommandOutput extends GetServiceGraphResult, __M
30
30
  * import { XRayClient, GetServiceGraphCommand } from "@aws-sdk/client-xray"; // ES Modules import
31
31
  * // const { XRayClient, GetServiceGraphCommand } = require("@aws-sdk/client-xray"); // CommonJS import
32
32
  * const client = new XRayClient(config);
33
- * const input = {
33
+ * const input = { // GetServiceGraphRequest
34
34
  * StartTime: new Date("TIMESTAMP"), // required
35
35
  * EndTime: new Date("TIMESTAMP"), // required
36
36
  * GroupName: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface GetTimeSeriesServiceStatisticsCommandOutput extends GetTimeSeri
27
27
  * import { XRayClient, GetTimeSeriesServiceStatisticsCommand } from "@aws-sdk/client-xray"; // ES Modules import
28
28
  * // const { XRayClient, GetTimeSeriesServiceStatisticsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
29
29
  * const client = new XRayClient(config);
30
- * const input = {
30
+ * const input = { // GetTimeSeriesServiceStatisticsRequest
31
31
  * StartTime: new Date("TIMESTAMP"), // required
32
32
  * EndTime: new Date("TIMESTAMP"), // required
33
33
  * GroupName: "STRING_VALUE",
@@ -26,8 +26,8 @@ export interface GetTraceGraphCommandOutput extends GetTraceGraphResult, __Metad
26
26
  * import { XRayClient, GetTraceGraphCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, GetTraceGraphCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
30
- * TraceIds: [ // required
29
+ * const input = { // GetTraceGraphRequest
30
+ * TraceIds: [ // TraceIdList // required
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * NextToken: "STRING_VALUE",
@@ -42,12 +42,12 @@ export interface GetTraceSummariesCommandOutput extends GetTraceSummariesResult,
42
42
  * import { XRayClient, GetTraceSummariesCommand } from "@aws-sdk/client-xray"; // ES Modules import
43
43
  * // const { XRayClient, GetTraceSummariesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
44
44
  * const client = new XRayClient(config);
45
- * const input = {
45
+ * const input = { // GetTraceSummariesRequest
46
46
  * StartTime: new Date("TIMESTAMP"), // required
47
47
  * EndTime: new Date("TIMESTAMP"), // required
48
48
  * TimeRangeType: "TraceId" || "Event",
49
49
  * Sampling: true || false,
50
- * SamplingStrategy: {
50
+ * SamplingStrategy: { // SamplingStrategy
51
51
  * Name: "PartialScan" || "FixedRate",
52
52
  * Value: Number("double"),
53
53
  * },
@@ -26,7 +26,7 @@ export interface ListResourcePoliciesCommandOutput extends ListResourcePoliciesR
26
26
  * import { XRayClient, ListResourcePoliciesCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, ListResourcePoliciesCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // ListResourcePoliciesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new ListResourcePoliciesCommand(input);
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { XRayClient, ListTagsForResourceCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, ListTagsForResourceCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface PutEncryptionConfigCommandOutput extends PutEncryptionConfigRes
26
26
  * import { XRayClient, PutEncryptionConfigCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, PutEncryptionConfigCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // PutEncryptionConfigRequest
30
30
  * KeyId: "STRING_VALUE",
31
31
  * Type: "NONE" || "KMS", // required
32
32
  * };
@@ -31,7 +31,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResult,
31
31
  * import { XRayClient, PutResourcePolicyCommand } from "@aws-sdk/client-xray"; // ES Modules import
32
32
  * // const { XRayClient, PutResourcePolicyCommand } = require("@aws-sdk/client-xray"); // CommonJS import
33
33
  * const client = new XRayClient(config);
34
- * const input = {
34
+ * const input = { // PutResourcePolicyRequest
35
35
  * PolicyName: "STRING_VALUE", // required
36
36
  * PolicyDocument: "STRING_VALUE", // required
37
37
  * PolicyRevisionId: "STRING_VALUE",
@@ -26,15 +26,15 @@ export interface PutTelemetryRecordsCommandOutput extends PutTelemetryRecordsRes
26
26
  * import { XRayClient, PutTelemetryRecordsCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, PutTelemetryRecordsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
30
- * TelemetryRecords: [ // required
31
- * {
29
+ * const input = { // PutTelemetryRecordsRequest
30
+ * TelemetryRecords: [ // TelemetryRecordList // required
31
+ * { // TelemetryRecord
32
32
  * Timestamp: new Date("TIMESTAMP"), // required
33
33
  * SegmentsReceivedCount: Number("int"),
34
34
  * SegmentsSentCount: Number("int"),
35
35
  * SegmentsSpilloverCount: Number("int"),
36
36
  * SegmentsRejectedCount: Number("int"),
37
- * BackendConnectionErrors: {
37
+ * BackendConnectionErrors: { // BackendConnectionErrors
38
38
  * TimeoutCount: Number("int"),
39
39
  * ConnectionRefusedCount: Number("int"),
40
40
  * HTTPCode4XXCount: Number("int"),
@@ -88,8 +88,8 @@ export interface PutTraceSegmentsCommandOutput extends PutTraceSegmentsResult, _
88
88
  * import { XRayClient, PutTraceSegmentsCommand } from "@aws-sdk/client-xray"; // ES Modules import
89
89
  * // const { XRayClient, PutTraceSegmentsCommand } = require("@aws-sdk/client-xray"); // CommonJS import
90
90
  * const client = new XRayClient(config);
91
- * const input = {
92
- * TraceSegmentDocuments: [ // required
91
+ * const input = { // PutTraceSegmentsRequest
92
+ * TraceSegmentDocuments: [ // TraceSegmentDocumentList // required
93
93
  * "STRING_VALUE",
94
94
  * ],
95
95
  * };
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { XRayClient, TagResourceCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, TagResourceCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * Tags: [ // required
32
- * {
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
33
  * Key: "STRING_VALUE", // required
34
34
  * Value: "STRING_VALUE", // required
35
35
  * },
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
27
  * import { XRayClient, UntagResourceCommand } from "@aws-sdk/client-xray"; // ES Modules import
28
28
  * // const { XRayClient, UntagResourceCommand } = require("@aws-sdk/client-xray"); // CommonJS import
29
29
  * const client = new XRayClient(config);
30
- * const input = {
30
+ * const input = { // UntagResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
- * TagKeys: [ // required
32
+ * TagKeys: [ // TagKeyList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -26,11 +26,11 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataB
26
26
  * import { XRayClient, UpdateGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, UpdateGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
29
+ * const input = { // UpdateGroupRequest
30
30
  * GroupName: "STRING_VALUE",
31
31
  * GroupARN: "STRING_VALUE",
32
32
  * FilterExpression: "STRING_VALUE",
33
- * InsightsConfiguration: {
33
+ * InsightsConfiguration: { // InsightsConfiguration
34
34
  * InsightsEnabled: true || false,
35
35
  * NotificationsEnabled: true || false,
36
36
  * },
@@ -26,8 +26,8 @@ export interface UpdateSamplingRuleCommandOutput extends UpdateSamplingRuleResul
26
26
  * import { XRayClient, UpdateSamplingRuleCommand } from "@aws-sdk/client-xray"; // ES Modules import
27
27
  * // const { XRayClient, UpdateSamplingRuleCommand } = require("@aws-sdk/client-xray"); // CommonJS import
28
28
  * const client = new XRayClient(config);
29
- * const input = {
30
- * SamplingRuleUpdate: {
29
+ * const input = { // UpdateSamplingRuleRequest
30
+ * SamplingRuleUpdate: { // SamplingRuleUpdate
31
31
  * RuleName: "STRING_VALUE",
32
32
  * RuleARN: "STRING_VALUE",
33
33
  * ResourceARN: "STRING_VALUE",
@@ -39,7 +39,7 @@ export interface UpdateSamplingRuleCommandOutput extends UpdateSamplingRuleResul
39
39
  * ServiceType: "STRING_VALUE",
40
40
  * HTTPMethod: "STRING_VALUE",
41
41
  * URLPath: "STRING_VALUE",
42
- * Attributes: {
42
+ * Attributes: { // AttributeMap
43
43
  * "<keys>": "STRING_VALUE",
44
44
  * },
45
45
  * },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-xray",
3
3
  "description": "AWS SDK for JavaScript Xray Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",