@aws-sdk/client-cloudwatch-logs 3.1022.0 → 3.1023.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.
@@ -1194,8 +1194,8 @@ exports.CreateScheduledQueryResponse$ = [3, n0, _CSQRr,
1194
1194
  ];
1195
1195
  exports.CSV$ = [3, n0, _CSV,
1196
1196
  0,
1197
- [_qC, _del, _co, _so],
1198
- [0, 0, 64 | 0, 0]
1197
+ [_qC, _del, _co, _so, _des],
1198
+ [0, 0, 64 | 0, 0, 0]
1199
1199
  ];
1200
1200
  exports.DataSource$ = [3, n0, _DS,
1201
1201
  0,
@@ -1183,8 +1183,8 @@ export var CreateScheduledQueryResponse$ = [3, n0, _CSQRr,
1183
1183
  ];
1184
1184
  export var CSV$ = [3, n0, _CSV,
1185
1185
  0,
1186
- [_qC, _del, _co, _so],
1187
- [0, 0, 64 | 0, 0]
1186
+ [_qC, _del, _co, _so, _des],
1187
+ [0, 0, 64 | 0, 0, 0]
1188
1188
  ];
1189
1189
  export var DataSource$ = [3, n0, _DS,
1190
1190
  0,
@@ -74,6 +74,7 @@ declare const GetTransformerCommand_base: {
74
74
  * // "STRING_VALUE",
75
75
  * // ],
76
76
  * // source: "STRING_VALUE",
77
+ * // destination: "STRING_VALUE",
77
78
  * // },
78
79
  * // dateTimeConverter: { // DateTimeConverter
79
80
  * // source: "STRING_VALUE", // required
@@ -89,6 +89,7 @@ declare const PutTransformerCommand_base: {
89
89
  * "STRING_VALUE",
90
90
  * ],
91
91
  * source: "STRING_VALUE",
92
+ * destination: "STRING_VALUE",
92
93
  * },
93
94
  * dateTimeConverter: { // DateTimeConverter
94
95
  * source: "STRING_VALUE", // required
@@ -66,6 +66,7 @@ declare const TestTransformerCommand_base: {
66
66
  * "STRING_VALUE",
67
67
  * ],
68
68
  * source: "STRING_VALUE",
69
+ * destination: "STRING_VALUE",
69
70
  * },
70
71
  * dateTimeConverter: { // DateTimeConverter
71
72
  * source: "STRING_VALUE", // required
@@ -1129,12 +1129,12 @@ export interface S3Configuration {
1129
1129
  */
1130
1130
  roleArn: string | undefined;
1131
1131
  /**
1132
- * <p>The AWS accountId for the bucket owning account.</p>
1132
+ * <p>The Amazon Web Services accountId for the bucket owning account.</p>
1133
1133
  * @public
1134
1134
  */
1135
1135
  ownerAccountId?: string | undefined;
1136
1136
  /**
1137
- * <p>The Amazon Resource Name (ARN) of the KMS encryption key. Must belong to the same AWS Region
1137
+ * <p>The Amazon Resource Name (ARN) of the KMS encryption key. Must belong to the same Amazon Web Services Region
1138
1138
  * as the destination Amazon S3 bucket.</p>
1139
1139
  * @public
1140
1140
  */
@@ -1291,6 +1291,12 @@ export interface CSV {
1291
1291
  * @public
1292
1292
  */
1293
1293
  source?: string | undefined;
1294
+ /**
1295
+ * <p>The path to the parent field to put transformed key value pairs under.
1296
+ * If you omit this value, the key value pairs will be placed under the root node.</p>
1297
+ * @public
1298
+ */
1299
+ destination?: string | undefined;
1294
1300
  }
1295
1301
  /**
1296
1302
  * <p>Filter criteria for data sources, used to specify which data sources to include in
@@ -6914,6 +6920,9 @@ export interface PutDeliverySourceRequest {
6914
6920
  * <p>For CloudFront, the valid value is <code>ACCESS_LOGS</code>.</p>
6915
6921
  * </li>
6916
6922
  * <li>
6923
+ * <p>For DevOps Agent, the valid value is <code>APPLICATION_LOGS</code>.</p>
6924
+ * </li>
6925
+ * <li>
6917
6926
  * <p>For Amazon CodeWhisperer, the valid value is <code>EVENT_LOGS</code>.</p>
6918
6927
  * </li>
6919
6928
  * <li>
@@ -294,6 +294,7 @@ export interface CSV {
294
294
  delimiter?: string | undefined;
295
295
  columns?: string[] | undefined;
296
296
  source?: string | undefined;
297
+ destination?: string | undefined;
297
298
  }
298
299
  export interface DataSourceFilter {
299
300
  name: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudwatch-logs",
3
3
  "description": "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
4
- "version": "3.1022.0",
4
+ "version": "3.1023.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-logs",