@aws-sdk/client-cloudwatch-logs 3.1119.0 → 3.1121.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -70,7 +70,7 @@ const commonParams = {
70
70
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
71
71
  };
72
72
 
73
- var version = "3.1118.0";
73
+ var version = "3.1120.0";
74
74
  var packageInfo = {
75
75
  version: version};
76
76
 
@@ -1234,6 +1234,7 @@ const _rAe = "resourceArns";
1234
1234
  const _rAo = "roleArn";
1235
1235
  const _rC = "recordsCount";
1236
1236
  const _rCe = "resourceConfig";
1237
+ const _rCes = "resultCount";
1237
1238
  const _rD = "retentionDays";
1238
1239
  const _rEI = "rejectedEntityInfo";
1239
1240
  const _rF = "recordFields";
@@ -2804,8 +2805,8 @@ var QueryParameter$ = [3, n0, _QP,
2804
2805
  ];
2805
2806
  var QueryStatistics$ = [3, n0, _QS,
2806
2807
  0,
2807
- [_rM, _rS, _eRS, _bS, _eBS, _lGS],
2808
- [1, 1, 1, 1, 1, 1]
2808
+ [_rM, _rS, _eRS, _bS, _eBS, _lGS, _rCes],
2809
+ [1, 1, 1, 1, 1, 1, 1]
2809
2810
  ];
2810
2811
  var RecordField$ = [3, n0, _RF,
2811
2812
  0,
@@ -826,6 +826,7 @@ const _rAe = "resourceArns";
826
826
  const _rAo = "roleArn";
827
827
  const _rC = "recordsCount";
828
828
  const _rCe = "resourceConfig";
829
+ const _rCes = "resultCount";
829
830
  const _rD = "retentionDays";
830
831
  const _rEI = "rejectedEntityInfo";
831
832
  const _rF = "recordFields";
@@ -2399,8 +2400,8 @@ export var QueryParameter$ = [3, n0, _QP,
2399
2400
  ];
2400
2401
  export var QueryStatistics$ = [3, n0, _QS,
2401
2402
  0,
2402
- [_rM, _rS, _eRS, _bS, _eBS, _lGS],
2403
- [1, 1, 1, 1, 1, 1]
2403
+ [_rM, _rS, _eRS, _bS, _eBS, _lGS, _rCes],
2404
+ [1, 1, 1, 1, 1, 1, 1]
2404
2405
  ];
2405
2406
  export var RecordField$ = [3, n0, _RF,
2406
2407
  0,
@@ -79,6 +79,7 @@ declare const GetQueryResultsCommand_base: {
79
79
  * // bytesScanned: Number("double"),
80
80
  * // estimatedBytesSkipped: Number("double"),
81
81
  * // logGroupsScanned: Number("double"),
82
+ * // resultCount: Number("double"),
82
83
  * // },
83
84
  * // status: "Scheduled" || "Running" || "Complete" || "Failed" || "Cancelled" || "Timeout" || "Unknown",
84
85
  * // encryptionKey: "STRING_VALUE",
@@ -5103,6 +5103,15 @@ export interface QueryStatistics {
5103
5103
  * @public
5104
5104
  */
5105
5105
  logGroupsScanned?: number | undefined;
5106
+ /**
5107
+ * <p>The number of rows in the final query result set. This value represents the total number
5108
+ * of output rows across all pages. For queries that include post-aggregation filters (such as
5109
+ * <code>stats count(*) by field | filter count > threshold</code>), this value might be less
5110
+ * than <code>recordsMatched</code>. It reflects only the rows that survived all operations in
5111
+ * the query.</p>
5112
+ * @public
5113
+ */
5114
+ resultCount?: number | undefined;
5106
5115
  }
5107
5116
  /**
5108
5117
  * @public
@@ -1065,6 +1065,7 @@ export interface QueryStatistics {
1065
1065
  bytesScanned?: number | undefined;
1066
1066
  estimatedBytesSkipped?: number | undefined;
1067
1067
  logGroupsScanned?: number | undefined;
1068
+ resultCount?: number | undefined;
1068
1069
  }
1069
1070
  export interface GetQueryResultsResponse {
1070
1071
  queryLanguage?: QueryLanguage | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudwatch-logs",
3
- "version": "3.1119.0",
3
+ "version": "3.1121.0",
4
4
  "description": "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudwatch-logs",
6
6
  "license": "Apache-2.0",