@aws-sdk/client-kinesis-analytics-v2 3.301.0 → 3.303.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.
@@ -86,17 +86,15 @@ class ResourceNotFoundException extends KinesisAnalyticsV2ServiceException_1.Kin
86
86
  }
87
87
  }
88
88
  exports.ResourceNotFoundException = ResourceNotFoundException;
89
- var RecordFormatType;
90
- (function (RecordFormatType) {
91
- RecordFormatType["CSV"] = "CSV";
92
- RecordFormatType["JSON"] = "JSON";
93
- })(RecordFormatType = exports.RecordFormatType || (exports.RecordFormatType = {}));
94
- var InputStartingPosition;
95
- (function (InputStartingPosition) {
96
- InputStartingPosition["LAST_STOPPED_POINT"] = "LAST_STOPPED_POINT";
97
- InputStartingPosition["NOW"] = "NOW";
98
- InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
99
- })(InputStartingPosition = exports.InputStartingPosition || (exports.InputStartingPosition = {}));
89
+ exports.RecordFormatType = {
90
+ CSV: "CSV",
91
+ JSON: "JSON",
92
+ };
93
+ exports.InputStartingPosition = {
94
+ LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
95
+ NOW: "NOW",
96
+ TRIM_HORIZON: "TRIM_HORIZON",
97
+ };
100
98
  class CodeValidationException extends KinesisAnalyticsV2ServiceException_1.KinesisAnalyticsV2ServiceException {
101
99
  constructor(opts) {
102
100
  super({
@@ -111,71 +109,62 @@ class CodeValidationException extends KinesisAnalyticsV2ServiceException_1.Kines
111
109
  }
112
110
  }
113
111
  exports.CodeValidationException = CodeValidationException;
114
- var CodeContentType;
115
- (function (CodeContentType) {
116
- CodeContentType["PLAINTEXT"] = "PLAINTEXT";
117
- CodeContentType["ZIPFILE"] = "ZIPFILE";
118
- })(CodeContentType = exports.CodeContentType || (exports.CodeContentType = {}));
119
- var ConfigurationType;
120
- (function (ConfigurationType) {
121
- ConfigurationType["CUSTOM"] = "CUSTOM";
122
- ConfigurationType["DEFAULT"] = "DEFAULT";
123
- })(ConfigurationType = exports.ConfigurationType || (exports.ConfigurationType = {}));
124
- var LogLevel;
125
- (function (LogLevel) {
126
- LogLevel["DEBUG"] = "DEBUG";
127
- LogLevel["ERROR"] = "ERROR";
128
- LogLevel["INFO"] = "INFO";
129
- LogLevel["WARN"] = "WARN";
130
- })(LogLevel = exports.LogLevel || (exports.LogLevel = {}));
131
- var MetricsLevel;
132
- (function (MetricsLevel) {
133
- MetricsLevel["APPLICATION"] = "APPLICATION";
134
- MetricsLevel["OPERATOR"] = "OPERATOR";
135
- MetricsLevel["PARALLELISM"] = "PARALLELISM";
136
- MetricsLevel["TASK"] = "TASK";
137
- })(MetricsLevel = exports.MetricsLevel || (exports.MetricsLevel = {}));
138
- var ArtifactType;
139
- (function (ArtifactType) {
140
- ArtifactType["DEPENDENCY_JAR"] = "DEPENDENCY_JAR";
141
- ArtifactType["UDF"] = "UDF";
142
- })(ArtifactType = exports.ArtifactType || (exports.ArtifactType = {}));
143
- var ApplicationRestoreType;
144
- (function (ApplicationRestoreType) {
145
- ApplicationRestoreType["RESTORE_FROM_CUSTOM_SNAPSHOT"] = "RESTORE_FROM_CUSTOM_SNAPSHOT";
146
- ApplicationRestoreType["RESTORE_FROM_LATEST_SNAPSHOT"] = "RESTORE_FROM_LATEST_SNAPSHOT";
147
- ApplicationRestoreType["SKIP_RESTORE_FROM_SNAPSHOT"] = "SKIP_RESTORE_FROM_SNAPSHOT";
148
- })(ApplicationRestoreType = exports.ApplicationRestoreType || (exports.ApplicationRestoreType = {}));
149
- var ApplicationMode;
150
- (function (ApplicationMode) {
151
- ApplicationMode["INTERACTIVE"] = "INTERACTIVE";
152
- ApplicationMode["STREAMING"] = "STREAMING";
153
- })(ApplicationMode = exports.ApplicationMode || (exports.ApplicationMode = {}));
154
- var ApplicationStatus;
155
- (function (ApplicationStatus) {
156
- ApplicationStatus["AUTOSCALING"] = "AUTOSCALING";
157
- ApplicationStatus["DELETING"] = "DELETING";
158
- ApplicationStatus["FORCE_STOPPING"] = "FORCE_STOPPING";
159
- ApplicationStatus["MAINTENANCE"] = "MAINTENANCE";
160
- ApplicationStatus["READY"] = "READY";
161
- ApplicationStatus["ROLLED_BACK"] = "ROLLED_BACK";
162
- ApplicationStatus["ROLLING_BACK"] = "ROLLING_BACK";
163
- ApplicationStatus["RUNNING"] = "RUNNING";
164
- ApplicationStatus["STARTING"] = "STARTING";
165
- ApplicationStatus["STOPPING"] = "STOPPING";
166
- ApplicationStatus["UPDATING"] = "UPDATING";
167
- })(ApplicationStatus = exports.ApplicationStatus || (exports.ApplicationStatus = {}));
168
- var RuntimeEnvironment;
169
- (function (RuntimeEnvironment) {
170
- RuntimeEnvironment["FLINK_1_11"] = "FLINK-1_11";
171
- RuntimeEnvironment["FLINK_1_13"] = "FLINK-1_13";
172
- RuntimeEnvironment["FLINK_1_15"] = "FLINK-1_15";
173
- RuntimeEnvironment["FLINK_1_6"] = "FLINK-1_6";
174
- RuntimeEnvironment["FLINK_1_8"] = "FLINK-1_8";
175
- RuntimeEnvironment["SQL_1_0"] = "SQL-1_0";
176
- RuntimeEnvironment["ZEPPELIN_FLINK_1_0"] = "ZEPPELIN-FLINK-1_0";
177
- RuntimeEnvironment["ZEPPELIN_FLINK_2_0"] = "ZEPPELIN-FLINK-2_0";
178
- })(RuntimeEnvironment = exports.RuntimeEnvironment || (exports.RuntimeEnvironment = {}));
112
+ exports.CodeContentType = {
113
+ PLAINTEXT: "PLAINTEXT",
114
+ ZIPFILE: "ZIPFILE",
115
+ };
116
+ exports.ConfigurationType = {
117
+ CUSTOM: "CUSTOM",
118
+ DEFAULT: "DEFAULT",
119
+ };
120
+ exports.LogLevel = {
121
+ DEBUG: "DEBUG",
122
+ ERROR: "ERROR",
123
+ INFO: "INFO",
124
+ WARN: "WARN",
125
+ };
126
+ exports.MetricsLevel = {
127
+ APPLICATION: "APPLICATION",
128
+ OPERATOR: "OPERATOR",
129
+ PARALLELISM: "PARALLELISM",
130
+ TASK: "TASK",
131
+ };
132
+ exports.ArtifactType = {
133
+ DEPENDENCY_JAR: "DEPENDENCY_JAR",
134
+ UDF: "UDF",
135
+ };
136
+ exports.ApplicationRestoreType = {
137
+ RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT",
138
+ RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT",
139
+ SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT",
140
+ };
141
+ exports.ApplicationMode = {
142
+ INTERACTIVE: "INTERACTIVE",
143
+ STREAMING: "STREAMING",
144
+ };
145
+ exports.ApplicationStatus = {
146
+ AUTOSCALING: "AUTOSCALING",
147
+ DELETING: "DELETING",
148
+ FORCE_STOPPING: "FORCE_STOPPING",
149
+ MAINTENANCE: "MAINTENANCE",
150
+ READY: "READY",
151
+ ROLLED_BACK: "ROLLED_BACK",
152
+ ROLLING_BACK: "ROLLING_BACK",
153
+ RUNNING: "RUNNING",
154
+ STARTING: "STARTING",
155
+ STOPPING: "STOPPING",
156
+ UPDATING: "UPDATING",
157
+ };
158
+ exports.RuntimeEnvironment = {
159
+ FLINK_1_11: "FLINK-1_11",
160
+ FLINK_1_13: "FLINK-1_13",
161
+ FLINK_1_15: "FLINK-1_15",
162
+ FLINK_1_6: "FLINK-1_6",
163
+ FLINK_1_8: "FLINK-1_8",
164
+ SQL_1_0: "SQL-1_0",
165
+ ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0",
166
+ ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0",
167
+ };
179
168
  class LimitExceededException extends KinesisAnalyticsV2ServiceException_1.KinesisAnalyticsV2ServiceException {
180
169
  constructor(opts) {
181
170
  super({
@@ -217,18 +206,16 @@ class UnsupportedOperationException extends KinesisAnalyticsV2ServiceException_1
217
206
  }
218
207
  }
219
208
  exports.UnsupportedOperationException = UnsupportedOperationException;
220
- var UrlType;
221
- (function (UrlType) {
222
- UrlType["FLINK_DASHBOARD_URL"] = "FLINK_DASHBOARD_URL";
223
- UrlType["ZEPPELIN_UI_URL"] = "ZEPPELIN_UI_URL";
224
- })(UrlType = exports.UrlType || (exports.UrlType = {}));
225
- var SnapshotStatus;
226
- (function (SnapshotStatus) {
227
- SnapshotStatus["CREATING"] = "CREATING";
228
- SnapshotStatus["DELETING"] = "DELETING";
229
- SnapshotStatus["FAILED"] = "FAILED";
230
- SnapshotStatus["READY"] = "READY";
231
- })(SnapshotStatus = exports.SnapshotStatus || (exports.SnapshotStatus = {}));
209
+ exports.UrlType = {
210
+ FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL",
211
+ ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL",
212
+ };
213
+ exports.SnapshotStatus = {
214
+ CREATING: "CREATING",
215
+ DELETING: "DELETING",
216
+ FAILED: "FAILED",
217
+ READY: "READY",
218
+ };
232
219
  class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsV2ServiceException_1.KinesisAnalyticsV2ServiceException {
233
220
  constructor(opts) {
234
221
  super({
@@ -77,17 +77,15 @@ export class ResourceNotFoundException extends __BaseException {
77
77
  this.Message = opts.Message;
78
78
  }
79
79
  }
80
- export var RecordFormatType;
81
- (function (RecordFormatType) {
82
- RecordFormatType["CSV"] = "CSV";
83
- RecordFormatType["JSON"] = "JSON";
84
- })(RecordFormatType || (RecordFormatType = {}));
85
- export var InputStartingPosition;
86
- (function (InputStartingPosition) {
87
- InputStartingPosition["LAST_STOPPED_POINT"] = "LAST_STOPPED_POINT";
88
- InputStartingPosition["NOW"] = "NOW";
89
- InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
90
- })(InputStartingPosition || (InputStartingPosition = {}));
80
+ export const RecordFormatType = {
81
+ CSV: "CSV",
82
+ JSON: "JSON",
83
+ };
84
+ export const InputStartingPosition = {
85
+ LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
86
+ NOW: "NOW",
87
+ TRIM_HORIZON: "TRIM_HORIZON",
88
+ };
91
89
  export class CodeValidationException extends __BaseException {
92
90
  constructor(opts) {
93
91
  super({
@@ -101,71 +99,62 @@ export class CodeValidationException extends __BaseException {
101
99
  this.Message = opts.Message;
102
100
  }
103
101
  }
104
- export var CodeContentType;
105
- (function (CodeContentType) {
106
- CodeContentType["PLAINTEXT"] = "PLAINTEXT";
107
- CodeContentType["ZIPFILE"] = "ZIPFILE";
108
- })(CodeContentType || (CodeContentType = {}));
109
- export var ConfigurationType;
110
- (function (ConfigurationType) {
111
- ConfigurationType["CUSTOM"] = "CUSTOM";
112
- ConfigurationType["DEFAULT"] = "DEFAULT";
113
- })(ConfigurationType || (ConfigurationType = {}));
114
- export var LogLevel;
115
- (function (LogLevel) {
116
- LogLevel["DEBUG"] = "DEBUG";
117
- LogLevel["ERROR"] = "ERROR";
118
- LogLevel["INFO"] = "INFO";
119
- LogLevel["WARN"] = "WARN";
120
- })(LogLevel || (LogLevel = {}));
121
- export var MetricsLevel;
122
- (function (MetricsLevel) {
123
- MetricsLevel["APPLICATION"] = "APPLICATION";
124
- MetricsLevel["OPERATOR"] = "OPERATOR";
125
- MetricsLevel["PARALLELISM"] = "PARALLELISM";
126
- MetricsLevel["TASK"] = "TASK";
127
- })(MetricsLevel || (MetricsLevel = {}));
128
- export var ArtifactType;
129
- (function (ArtifactType) {
130
- ArtifactType["DEPENDENCY_JAR"] = "DEPENDENCY_JAR";
131
- ArtifactType["UDF"] = "UDF";
132
- })(ArtifactType || (ArtifactType = {}));
133
- export var ApplicationRestoreType;
134
- (function (ApplicationRestoreType) {
135
- ApplicationRestoreType["RESTORE_FROM_CUSTOM_SNAPSHOT"] = "RESTORE_FROM_CUSTOM_SNAPSHOT";
136
- ApplicationRestoreType["RESTORE_FROM_LATEST_SNAPSHOT"] = "RESTORE_FROM_LATEST_SNAPSHOT";
137
- ApplicationRestoreType["SKIP_RESTORE_FROM_SNAPSHOT"] = "SKIP_RESTORE_FROM_SNAPSHOT";
138
- })(ApplicationRestoreType || (ApplicationRestoreType = {}));
139
- export var ApplicationMode;
140
- (function (ApplicationMode) {
141
- ApplicationMode["INTERACTIVE"] = "INTERACTIVE";
142
- ApplicationMode["STREAMING"] = "STREAMING";
143
- })(ApplicationMode || (ApplicationMode = {}));
144
- export var ApplicationStatus;
145
- (function (ApplicationStatus) {
146
- ApplicationStatus["AUTOSCALING"] = "AUTOSCALING";
147
- ApplicationStatus["DELETING"] = "DELETING";
148
- ApplicationStatus["FORCE_STOPPING"] = "FORCE_STOPPING";
149
- ApplicationStatus["MAINTENANCE"] = "MAINTENANCE";
150
- ApplicationStatus["READY"] = "READY";
151
- ApplicationStatus["ROLLED_BACK"] = "ROLLED_BACK";
152
- ApplicationStatus["ROLLING_BACK"] = "ROLLING_BACK";
153
- ApplicationStatus["RUNNING"] = "RUNNING";
154
- ApplicationStatus["STARTING"] = "STARTING";
155
- ApplicationStatus["STOPPING"] = "STOPPING";
156
- ApplicationStatus["UPDATING"] = "UPDATING";
157
- })(ApplicationStatus || (ApplicationStatus = {}));
158
- export var RuntimeEnvironment;
159
- (function (RuntimeEnvironment) {
160
- RuntimeEnvironment["FLINK_1_11"] = "FLINK-1_11";
161
- RuntimeEnvironment["FLINK_1_13"] = "FLINK-1_13";
162
- RuntimeEnvironment["FLINK_1_15"] = "FLINK-1_15";
163
- RuntimeEnvironment["FLINK_1_6"] = "FLINK-1_6";
164
- RuntimeEnvironment["FLINK_1_8"] = "FLINK-1_8";
165
- RuntimeEnvironment["SQL_1_0"] = "SQL-1_0";
166
- RuntimeEnvironment["ZEPPELIN_FLINK_1_0"] = "ZEPPELIN-FLINK-1_0";
167
- RuntimeEnvironment["ZEPPELIN_FLINK_2_0"] = "ZEPPELIN-FLINK-2_0";
168
- })(RuntimeEnvironment || (RuntimeEnvironment = {}));
102
+ export const CodeContentType = {
103
+ PLAINTEXT: "PLAINTEXT",
104
+ ZIPFILE: "ZIPFILE",
105
+ };
106
+ export const ConfigurationType = {
107
+ CUSTOM: "CUSTOM",
108
+ DEFAULT: "DEFAULT",
109
+ };
110
+ export const LogLevel = {
111
+ DEBUG: "DEBUG",
112
+ ERROR: "ERROR",
113
+ INFO: "INFO",
114
+ WARN: "WARN",
115
+ };
116
+ export const MetricsLevel = {
117
+ APPLICATION: "APPLICATION",
118
+ OPERATOR: "OPERATOR",
119
+ PARALLELISM: "PARALLELISM",
120
+ TASK: "TASK",
121
+ };
122
+ export const ArtifactType = {
123
+ DEPENDENCY_JAR: "DEPENDENCY_JAR",
124
+ UDF: "UDF",
125
+ };
126
+ export const ApplicationRestoreType = {
127
+ RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT",
128
+ RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT",
129
+ SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT",
130
+ };
131
+ export const ApplicationMode = {
132
+ INTERACTIVE: "INTERACTIVE",
133
+ STREAMING: "STREAMING",
134
+ };
135
+ export const ApplicationStatus = {
136
+ AUTOSCALING: "AUTOSCALING",
137
+ DELETING: "DELETING",
138
+ FORCE_STOPPING: "FORCE_STOPPING",
139
+ MAINTENANCE: "MAINTENANCE",
140
+ READY: "READY",
141
+ ROLLED_BACK: "ROLLED_BACK",
142
+ ROLLING_BACK: "ROLLING_BACK",
143
+ RUNNING: "RUNNING",
144
+ STARTING: "STARTING",
145
+ STOPPING: "STOPPING",
146
+ UPDATING: "UPDATING",
147
+ };
148
+ export const RuntimeEnvironment = {
149
+ FLINK_1_11: "FLINK-1_11",
150
+ FLINK_1_13: "FLINK-1_13",
151
+ FLINK_1_15: "FLINK-1_15",
152
+ FLINK_1_6: "FLINK-1_6",
153
+ FLINK_1_8: "FLINK-1_8",
154
+ SQL_1_0: "SQL-1_0",
155
+ ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0",
156
+ ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0",
157
+ };
169
158
  export class LimitExceededException extends __BaseException {
170
159
  constructor(opts) {
171
160
  super({
@@ -204,18 +193,16 @@ export class UnsupportedOperationException extends __BaseException {
204
193
  this.Message = opts.Message;
205
194
  }
206
195
  }
207
- export var UrlType;
208
- (function (UrlType) {
209
- UrlType["FLINK_DASHBOARD_URL"] = "FLINK_DASHBOARD_URL";
210
- UrlType["ZEPPELIN_UI_URL"] = "ZEPPELIN_UI_URL";
211
- })(UrlType || (UrlType = {}));
212
- export var SnapshotStatus;
213
- (function (SnapshotStatus) {
214
- SnapshotStatus["CREATING"] = "CREATING";
215
- SnapshotStatus["DELETING"] = "DELETING";
216
- SnapshotStatus["FAILED"] = "FAILED";
217
- SnapshotStatus["READY"] = "READY";
218
- })(SnapshotStatus || (SnapshotStatus = {}));
196
+ export const UrlType = {
197
+ FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL",
198
+ ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL",
199
+ };
200
+ export const SnapshotStatus = {
201
+ CREATING: "CREATING",
202
+ DELETING: "DELETING",
203
+ FAILED: "FAILED",
204
+ READY: "READY",
205
+ };
219
206
  export class ResourceProvisionedThroughputExceededException extends __BaseException {
220
207
  constructor(opts) {
221
208
  super({
@@ -281,11 +281,16 @@ export interface MappingParameters {
281
281
  }
282
282
  /**
283
283
  * @public
284
+ * @enum
284
285
  */
285
- export declare enum RecordFormatType {
286
- CSV = "CSV",
287
- JSON = "JSON"
288
- }
286
+ export declare const RecordFormatType: {
287
+ readonly CSV: "CSV";
288
+ readonly JSON: "JSON";
289
+ };
290
+ /**
291
+ * @public
292
+ */
293
+ export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType];
289
294
  /**
290
295
  * @public
291
296
  * <p> For a SQL-based Kinesis Data Analytics application, describes the record format
@@ -446,12 +451,17 @@ export interface InputProcessingConfigurationDescription {
446
451
  }
447
452
  /**
448
453
  * @public
454
+ * @enum
449
455
  */
450
- export declare enum InputStartingPosition {
451
- LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
452
- NOW = "NOW",
453
- TRIM_HORIZON = "TRIM_HORIZON"
454
- }
456
+ export declare const InputStartingPosition: {
457
+ readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
458
+ readonly NOW: "NOW";
459
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
460
+ };
461
+ /**
462
+ * @public
463
+ */
464
+ export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
455
465
  /**
456
466
  * @public
457
467
  * <p>Describes the point at which the application reads from
@@ -1145,11 +1155,16 @@ export interface CodeContent {
1145
1155
  }
1146
1156
  /**
1147
1157
  * @public
1158
+ * @enum
1148
1159
  */
1149
- export declare enum CodeContentType {
1150
- PLAINTEXT = "PLAINTEXT",
1151
- ZIPFILE = "ZIPFILE"
1152
- }
1160
+ export declare const CodeContentType: {
1161
+ readonly PLAINTEXT: "PLAINTEXT";
1162
+ readonly ZIPFILE: "ZIPFILE";
1163
+ };
1164
+ /**
1165
+ * @public
1166
+ */
1167
+ export type CodeContentType = (typeof CodeContentType)[keyof typeof CodeContentType];
1153
1168
  /**
1154
1169
  * @public
1155
1170
  * <p>Describes code configuration for an application.</p>
@@ -1305,11 +1320,16 @@ export interface EnvironmentProperties {
1305
1320
  }
1306
1321
  /**
1307
1322
  * @public
1323
+ * @enum
1308
1324
  */
1309
- export declare enum ConfigurationType {
1310
- CUSTOM = "CUSTOM",
1311
- DEFAULT = "DEFAULT"
1312
- }
1325
+ export declare const ConfigurationType: {
1326
+ readonly CUSTOM: "CUSTOM";
1327
+ readonly DEFAULT: "DEFAULT";
1328
+ };
1329
+ /**
1330
+ * @public
1331
+ */
1332
+ export type ConfigurationType = (typeof ConfigurationType)[keyof typeof ConfigurationType];
1313
1333
  /**
1314
1334
  * @public
1315
1335
  * <p>Describes an application's checkpointing configuration. Checkpointing is the process of persisting application state for fault
@@ -1378,22 +1398,32 @@ export interface CheckpointConfiguration {
1378
1398
  }
1379
1399
  /**
1380
1400
  * @public
1401
+ * @enum
1381
1402
  */
1382
- export declare enum LogLevel {
1383
- DEBUG = "DEBUG",
1384
- ERROR = "ERROR",
1385
- INFO = "INFO",
1386
- WARN = "WARN"
1387
- }
1403
+ export declare const LogLevel: {
1404
+ readonly DEBUG: "DEBUG";
1405
+ readonly ERROR: "ERROR";
1406
+ readonly INFO: "INFO";
1407
+ readonly WARN: "WARN";
1408
+ };
1388
1409
  /**
1389
1410
  * @public
1390
1411
  */
1391
- export declare enum MetricsLevel {
1392
- APPLICATION = "APPLICATION",
1393
- OPERATOR = "OPERATOR",
1394
- PARALLELISM = "PARALLELISM",
1395
- TASK = "TASK"
1396
- }
1412
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
1413
+ /**
1414
+ * @public
1415
+ * @enum
1416
+ */
1417
+ export declare const MetricsLevel: {
1418
+ readonly APPLICATION: "APPLICATION";
1419
+ readonly OPERATOR: "OPERATOR";
1420
+ readonly PARALLELISM: "PARALLELISM";
1421
+ readonly TASK: "TASK";
1422
+ };
1423
+ /**
1424
+ * @public
1425
+ */
1426
+ export type MetricsLevel = (typeof MetricsLevel)[keyof typeof MetricsLevel];
1397
1427
  /**
1398
1428
  * @public
1399
1429
  * <p>Describes configuration parameters for Amazon CloudWatch logging for an application. For more information about CloudWatch logging, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html">Monitoring</a>.</p>
@@ -1516,11 +1546,16 @@ export interface CatalogConfiguration {
1516
1546
  }
1517
1547
  /**
1518
1548
  * @public
1549
+ * @enum
1519
1550
  */
1520
- export declare enum ArtifactType {
1521
- DEPENDENCY_JAR = "DEPENDENCY_JAR",
1522
- UDF = "UDF"
1523
- }
1551
+ export declare const ArtifactType: {
1552
+ readonly DEPENDENCY_JAR: "DEPENDENCY_JAR";
1553
+ readonly UDF: "UDF";
1554
+ };
1555
+ /**
1556
+ * @public
1557
+ */
1558
+ export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
1524
1559
  /**
1525
1560
  * @public
1526
1561
  * <p>The information required to specify a Maven reference. You can use Maven references to specify dependency JAR files.</p>
@@ -1810,12 +1845,17 @@ export interface FlinkApplicationConfigurationDescription {
1810
1845
  }
1811
1846
  /**
1812
1847
  * @public
1848
+ * @enum
1813
1849
  */
1814
- export declare enum ApplicationRestoreType {
1815
- RESTORE_FROM_CUSTOM_SNAPSHOT = "RESTORE_FROM_CUSTOM_SNAPSHOT",
1816
- RESTORE_FROM_LATEST_SNAPSHOT = "RESTORE_FROM_LATEST_SNAPSHOT",
1817
- SKIP_RESTORE_FROM_SNAPSHOT = "SKIP_RESTORE_FROM_SNAPSHOT"
1818
- }
1850
+ export declare const ApplicationRestoreType: {
1851
+ readonly RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT";
1852
+ readonly RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT";
1853
+ readonly SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT";
1854
+ };
1855
+ /**
1856
+ * @public
1857
+ */
1858
+ export type ApplicationRestoreType = (typeof ApplicationRestoreType)[keyof typeof ApplicationRestoreType];
1819
1859
  /**
1820
1860
  * @public
1821
1861
  * <p>Specifies the method and snapshot to use when restarting an application using previously saved application state.</p>
@@ -2585,40 +2625,55 @@ export interface ApplicationMaintenanceConfigurationDescription {
2585
2625
  }
2586
2626
  /**
2587
2627
  * @public
2628
+ * @enum
2588
2629
  */
2589
- export declare enum ApplicationMode {
2590
- INTERACTIVE = "INTERACTIVE",
2591
- STREAMING = "STREAMING"
2592
- }
2630
+ export declare const ApplicationMode: {
2631
+ readonly INTERACTIVE: "INTERACTIVE";
2632
+ readonly STREAMING: "STREAMING";
2633
+ };
2593
2634
  /**
2594
2635
  * @public
2595
2636
  */
2596
- export declare enum ApplicationStatus {
2597
- AUTOSCALING = "AUTOSCALING",
2598
- DELETING = "DELETING",
2599
- FORCE_STOPPING = "FORCE_STOPPING",
2600
- MAINTENANCE = "MAINTENANCE",
2601
- READY = "READY",
2602
- ROLLED_BACK = "ROLLED_BACK",
2603
- ROLLING_BACK = "ROLLING_BACK",
2604
- RUNNING = "RUNNING",
2605
- STARTING = "STARTING",
2606
- STOPPING = "STOPPING",
2607
- UPDATING = "UPDATING"
2608
- }
2637
+ export type ApplicationMode = (typeof ApplicationMode)[keyof typeof ApplicationMode];
2609
2638
  /**
2610
2639
  * @public
2640
+ * @enum
2611
2641
  */
2612
- export declare enum RuntimeEnvironment {
2613
- FLINK_1_11 = "FLINK-1_11",
2614
- FLINK_1_13 = "FLINK-1_13",
2615
- FLINK_1_15 = "FLINK-1_15",
2616
- FLINK_1_6 = "FLINK-1_6",
2617
- FLINK_1_8 = "FLINK-1_8",
2618
- SQL_1_0 = "SQL-1_0",
2619
- ZEPPELIN_FLINK_1_0 = "ZEPPELIN-FLINK-1_0",
2620
- ZEPPELIN_FLINK_2_0 = "ZEPPELIN-FLINK-2_0"
2621
- }
2642
+ export declare const ApplicationStatus: {
2643
+ readonly AUTOSCALING: "AUTOSCALING";
2644
+ readonly DELETING: "DELETING";
2645
+ readonly FORCE_STOPPING: "FORCE_STOPPING";
2646
+ readonly MAINTENANCE: "MAINTENANCE";
2647
+ readonly READY: "READY";
2648
+ readonly ROLLED_BACK: "ROLLED_BACK";
2649
+ readonly ROLLING_BACK: "ROLLING_BACK";
2650
+ readonly RUNNING: "RUNNING";
2651
+ readonly STARTING: "STARTING";
2652
+ readonly STOPPING: "STOPPING";
2653
+ readonly UPDATING: "UPDATING";
2654
+ };
2655
+ /**
2656
+ * @public
2657
+ */
2658
+ export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
2659
+ /**
2660
+ * @public
2661
+ * @enum
2662
+ */
2663
+ export declare const RuntimeEnvironment: {
2664
+ readonly FLINK_1_11: "FLINK-1_11";
2665
+ readonly FLINK_1_13: "FLINK-1_13";
2666
+ readonly FLINK_1_15: "FLINK-1_15";
2667
+ readonly FLINK_1_6: "FLINK-1_6";
2668
+ readonly FLINK_1_8: "FLINK-1_8";
2669
+ readonly SQL_1_0: "SQL-1_0";
2670
+ readonly ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0";
2671
+ readonly ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0";
2672
+ };
2673
+ /**
2674
+ * @public
2675
+ */
2676
+ export type RuntimeEnvironment = (typeof RuntimeEnvironment)[keyof typeof RuntimeEnvironment];
2622
2677
  /**
2623
2678
  * @public
2624
2679
  * <p>Describes the application, including the application Amazon Resource Name (ARN), status,
@@ -2883,11 +2938,16 @@ export declare class UnsupportedOperationException extends __BaseException {
2883
2938
  }
2884
2939
  /**
2885
2940
  * @public
2941
+ * @enum
2886
2942
  */
2887
- export declare enum UrlType {
2888
- FLINK_DASHBOARD_URL = "FLINK_DASHBOARD_URL",
2889
- ZEPPELIN_UI_URL = "ZEPPELIN_UI_URL"
2890
- }
2943
+ export declare const UrlType: {
2944
+ readonly FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL";
2945
+ readonly ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL";
2946
+ };
2947
+ /**
2948
+ * @public
2949
+ */
2950
+ export type UrlType = (typeof UrlType)[keyof typeof UrlType];
2891
2951
  /**
2892
2952
  * @public
2893
2953
  */
@@ -3212,13 +3272,18 @@ export interface DescribeApplicationSnapshotRequest {
3212
3272
  }
3213
3273
  /**
3214
3274
  * @public
3275
+ * @enum
3215
3276
  */
3216
- export declare enum SnapshotStatus {
3217
- CREATING = "CREATING",
3218
- DELETING = "DELETING",
3219
- FAILED = "FAILED",
3220
- READY = "READY"
3221
- }
3277
+ export declare const SnapshotStatus: {
3278
+ readonly CREATING: "CREATING";
3279
+ readonly DELETING: "DELETING";
3280
+ readonly FAILED: "FAILED";
3281
+ readonly READY: "READY";
3282
+ };
3283
+ /**
3284
+ * @public
3285
+ */
3286
+ export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
3222
3287
  /**
3223
3288
  * @public
3224
3289
  * <p>Provides details about a snapshot of application state.</p>
@@ -98,10 +98,12 @@ export interface MappingParameters {
98
98
  JSONMappingParameters?: JSONMappingParameters;
99
99
  CSVMappingParameters?: CSVMappingParameters;
100
100
  }
101
- export declare enum RecordFormatType {
102
- CSV = "CSV",
103
- JSON = "JSON",
104
- }
101
+ export declare const RecordFormatType: {
102
+ readonly CSV: "CSV";
103
+ readonly JSON: "JSON";
104
+ };
105
+ export type RecordFormatType =
106
+ (typeof RecordFormatType)[keyof typeof RecordFormatType];
105
107
  export interface RecordFormat {
106
108
  RecordFormatType: RecordFormatType | string | undefined;
107
109
  MappingParameters?: MappingParameters;
@@ -137,11 +139,13 @@ export interface InputLambdaProcessorDescription {
137
139
  export interface InputProcessingConfigurationDescription {
138
140
  InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
139
141
  }
140
- export declare enum InputStartingPosition {
141
- LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
142
- NOW = "NOW",
143
- TRIM_HORIZON = "TRIM_HORIZON",
144
- }
142
+ export declare const InputStartingPosition: {
143
+ readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
144
+ readonly NOW: "NOW";
145
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
146
+ };
147
+ export type InputStartingPosition =
148
+ (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
145
149
  export interface InputStartingPositionConfiguration {
146
150
  InputStartingPosition?: InputStartingPosition | string;
147
151
  }
@@ -301,10 +305,12 @@ export interface CodeContent {
301
305
  ZipFileContent?: Uint8Array;
302
306
  S3ContentLocation?: S3ContentLocation;
303
307
  }
304
- export declare enum CodeContentType {
305
- PLAINTEXT = "PLAINTEXT",
306
- ZIPFILE = "ZIPFILE",
307
- }
308
+ export declare const CodeContentType: {
309
+ readonly PLAINTEXT: "PLAINTEXT";
310
+ readonly ZIPFILE: "ZIPFILE";
311
+ };
312
+ export type CodeContentType =
313
+ (typeof CodeContentType)[keyof typeof CodeContentType];
308
314
  export interface ApplicationCodeConfiguration {
309
315
  CodeContent?: CodeContent;
310
316
  CodeContentType: CodeContentType | string | undefined;
@@ -348,28 +354,32 @@ export interface PropertyGroup {
348
354
  export interface EnvironmentProperties {
349
355
  PropertyGroups: PropertyGroup[] | undefined;
350
356
  }
351
- export declare enum ConfigurationType {
352
- CUSTOM = "CUSTOM",
353
- DEFAULT = "DEFAULT",
354
- }
357
+ export declare const ConfigurationType: {
358
+ readonly CUSTOM: "CUSTOM";
359
+ readonly DEFAULT: "DEFAULT";
360
+ };
361
+ export type ConfigurationType =
362
+ (typeof ConfigurationType)[keyof typeof ConfigurationType];
355
363
  export interface CheckpointConfiguration {
356
364
  ConfigurationType: ConfigurationType | string | undefined;
357
365
  CheckpointingEnabled?: boolean;
358
366
  CheckpointInterval?: number;
359
367
  MinPauseBetweenCheckpoints?: number;
360
368
  }
361
- export declare enum LogLevel {
362
- DEBUG = "DEBUG",
363
- ERROR = "ERROR",
364
- INFO = "INFO",
365
- WARN = "WARN",
366
- }
367
- export declare enum MetricsLevel {
368
- APPLICATION = "APPLICATION",
369
- OPERATOR = "OPERATOR",
370
- PARALLELISM = "PARALLELISM",
371
- TASK = "TASK",
372
- }
369
+ export declare const LogLevel: {
370
+ readonly DEBUG: "DEBUG";
371
+ readonly ERROR: "ERROR";
372
+ readonly INFO: "INFO";
373
+ readonly WARN: "WARN";
374
+ };
375
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
376
+ export declare const MetricsLevel: {
377
+ readonly APPLICATION: "APPLICATION";
378
+ readonly OPERATOR: "OPERATOR";
379
+ readonly PARALLELISM: "PARALLELISM";
380
+ readonly TASK: "TASK";
381
+ };
382
+ export type MetricsLevel = (typeof MetricsLevel)[keyof typeof MetricsLevel];
373
383
  export interface MonitoringConfiguration {
374
384
  ConfigurationType: ConfigurationType | string | undefined;
375
385
  MetricsLevel?: MetricsLevel | string;
@@ -397,10 +407,11 @@ export interface GlueDataCatalogConfiguration {
397
407
  export interface CatalogConfiguration {
398
408
  GlueDataCatalogConfiguration: GlueDataCatalogConfiguration | undefined;
399
409
  }
400
- export declare enum ArtifactType {
401
- DEPENDENCY_JAR = "DEPENDENCY_JAR",
402
- UDF = "UDF",
403
- }
410
+ export declare const ArtifactType: {
411
+ readonly DEPENDENCY_JAR: "DEPENDENCY_JAR";
412
+ readonly UDF: "UDF";
413
+ };
414
+ export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
404
415
  export interface MavenReference {
405
416
  GroupId: string | undefined;
406
417
  ArtifactId: string | undefined;
@@ -466,11 +477,13 @@ export interface FlinkApplicationConfigurationDescription {
466
477
  ParallelismConfigurationDescription?: ParallelismConfigurationDescription;
467
478
  JobPlanDescription?: string;
468
479
  }
469
- export declare enum ApplicationRestoreType {
470
- RESTORE_FROM_CUSTOM_SNAPSHOT = "RESTORE_FROM_CUSTOM_SNAPSHOT",
471
- RESTORE_FROM_LATEST_SNAPSHOT = "RESTORE_FROM_LATEST_SNAPSHOT",
472
- SKIP_RESTORE_FROM_SNAPSHOT = "SKIP_RESTORE_FROM_SNAPSHOT",
473
- }
480
+ export declare const ApplicationRestoreType: {
481
+ readonly RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT";
482
+ readonly RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT";
483
+ readonly SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT";
484
+ };
485
+ export type ApplicationRestoreType =
486
+ (typeof ApplicationRestoreType)[keyof typeof ApplicationRestoreType];
474
487
  export interface ApplicationRestoreConfiguration {
475
488
  ApplicationRestoreType: ApplicationRestoreType | string | undefined;
476
489
  SnapshotName?: string;
@@ -659,33 +672,39 @@ export interface ApplicationMaintenanceConfigurationDescription {
659
672
  ApplicationMaintenanceWindowStartTime: string | undefined;
660
673
  ApplicationMaintenanceWindowEndTime: string | undefined;
661
674
  }
662
- export declare enum ApplicationMode {
663
- INTERACTIVE = "INTERACTIVE",
664
- STREAMING = "STREAMING",
665
- }
666
- export declare enum ApplicationStatus {
667
- AUTOSCALING = "AUTOSCALING",
668
- DELETING = "DELETING",
669
- FORCE_STOPPING = "FORCE_STOPPING",
670
- MAINTENANCE = "MAINTENANCE",
671
- READY = "READY",
672
- ROLLED_BACK = "ROLLED_BACK",
673
- ROLLING_BACK = "ROLLING_BACK",
674
- RUNNING = "RUNNING",
675
- STARTING = "STARTING",
676
- STOPPING = "STOPPING",
677
- UPDATING = "UPDATING",
678
- }
679
- export declare enum RuntimeEnvironment {
680
- FLINK_1_11 = "FLINK-1_11",
681
- FLINK_1_13 = "FLINK-1_13",
682
- FLINK_1_15 = "FLINK-1_15",
683
- FLINK_1_6 = "FLINK-1_6",
684
- FLINK_1_8 = "FLINK-1_8",
685
- SQL_1_0 = "SQL-1_0",
686
- ZEPPELIN_FLINK_1_0 = "ZEPPELIN-FLINK-1_0",
687
- ZEPPELIN_FLINK_2_0 = "ZEPPELIN-FLINK-2_0",
688
- }
675
+ export declare const ApplicationMode: {
676
+ readonly INTERACTIVE: "INTERACTIVE";
677
+ readonly STREAMING: "STREAMING";
678
+ };
679
+ export type ApplicationMode =
680
+ (typeof ApplicationMode)[keyof typeof ApplicationMode];
681
+ export declare const ApplicationStatus: {
682
+ readonly AUTOSCALING: "AUTOSCALING";
683
+ readonly DELETING: "DELETING";
684
+ readonly FORCE_STOPPING: "FORCE_STOPPING";
685
+ readonly MAINTENANCE: "MAINTENANCE";
686
+ readonly READY: "READY";
687
+ readonly ROLLED_BACK: "ROLLED_BACK";
688
+ readonly ROLLING_BACK: "ROLLING_BACK";
689
+ readonly RUNNING: "RUNNING";
690
+ readonly STARTING: "STARTING";
691
+ readonly STOPPING: "STOPPING";
692
+ readonly UPDATING: "UPDATING";
693
+ };
694
+ export type ApplicationStatus =
695
+ (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
696
+ export declare const RuntimeEnvironment: {
697
+ readonly FLINK_1_11: "FLINK-1_11";
698
+ readonly FLINK_1_13: "FLINK-1_13";
699
+ readonly FLINK_1_15: "FLINK-1_15";
700
+ readonly FLINK_1_6: "FLINK-1_6";
701
+ readonly FLINK_1_8: "FLINK-1_8";
702
+ readonly SQL_1_0: "SQL-1_0";
703
+ readonly ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0";
704
+ readonly ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0";
705
+ };
706
+ export type RuntimeEnvironment =
707
+ (typeof RuntimeEnvironment)[keyof typeof RuntimeEnvironment];
689
708
  export interface ApplicationDetail {
690
709
  ApplicationARN: string | undefined;
691
710
  ApplicationDescription?: string;
@@ -764,10 +783,11 @@ export declare class UnsupportedOperationException extends __BaseException {
764
783
  opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
765
784
  );
766
785
  }
767
- export declare enum UrlType {
768
- FLINK_DASHBOARD_URL = "FLINK_DASHBOARD_URL",
769
- ZEPPELIN_UI_URL = "ZEPPELIN_UI_URL",
770
- }
786
+ export declare const UrlType: {
787
+ readonly FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL";
788
+ readonly ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL";
789
+ };
790
+ export type UrlType = (typeof UrlType)[keyof typeof UrlType];
771
791
  export interface CreateApplicationPresignedUrlRequest {
772
792
  ApplicationName: string | undefined;
773
793
  UrlType: UrlType | string | undefined;
@@ -851,12 +871,14 @@ export interface DescribeApplicationSnapshotRequest {
851
871
  ApplicationName: string | undefined;
852
872
  SnapshotName: string | undefined;
853
873
  }
854
- export declare enum SnapshotStatus {
855
- CREATING = "CREATING",
856
- DELETING = "DELETING",
857
- FAILED = "FAILED",
858
- READY = "READY",
859
- }
874
+ export declare const SnapshotStatus: {
875
+ readonly CREATING: "CREATING";
876
+ readonly DELETING: "DELETING";
877
+ readonly FAILED: "FAILED";
878
+ readonly READY: "READY";
879
+ };
880
+ export type SnapshotStatus =
881
+ (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
860
882
  export interface SnapshotDetails {
861
883
  SnapshotName: string | undefined;
862
884
  SnapshotStatus: SnapshotStatus | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-analytics-v2",
3
3
  "description": "AWS SDK for JavaScript Kinesis Analytics V2 Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.303.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,42 +21,42 @@
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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",