@aws-sdk/client-kinesis-analytics 3.987.0 → 3.989.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 +39 -1167
- package/dist-cjs/models/KinesisAnalyticsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +164 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +873 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +87 -81
- package/dist-types/schemas/schemas_0.d.ts +20 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -13
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultKinesisAnalyticsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2015-08-14",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.kinesisanalytics",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
xmlNamespace: "http://analytics.kinesis.amazonaws.com/doc/2015-08-14",
|
|
30
32
|
version: "2015-08-14",
|
|
31
33
|
serviceTarget: "KinesisAnalytics_20150814",
|
|
@@ -136,8 +136,8 @@ const _OI = "OutputId";
|
|
|
136
136
|
const _OU = "OutputUpdates";
|
|
137
137
|
const _OUu = "OutputUpdate";
|
|
138
138
|
const _Ou = "Outputs";
|
|
139
|
-
const _PIR = "
|
|
140
|
-
const
|
|
139
|
+
const _PIR = "ProcessedInputRecords";
|
|
140
|
+
const _PIRa = "ParsedInputRecords";
|
|
141
141
|
const _RARN = "RoleARN";
|
|
142
142
|
const _RARNU = "RoleARNUpdate";
|
|
143
143
|
const _RARNUe = "ResourceARNUpdate";
|
|
@@ -202,12 +202,92 @@ const _c = "client";
|
|
|
202
202
|
const _e = "error";
|
|
203
203
|
const _hE = "httpError";
|
|
204
204
|
const _m = "message";
|
|
205
|
-
const _s = "
|
|
206
|
-
const
|
|
205
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisanalytics";
|
|
206
|
+
const _se = "server";
|
|
207
207
|
const n0 = "com.amazonaws.kinesisanalytics";
|
|
208
208
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
209
209
|
import { CodeValidationException, ConcurrentModificationException, InvalidApplicationConfigurationException, InvalidArgumentException, LimitExceededException, ResourceInUseException, ResourceNotFoundException, ResourceProvisionedThroughputExceededException, ServiceUnavailableException, TooManyTagsException, UnableToDetectSchemaException, UnsupportedOperationException, } from "../models/errors";
|
|
210
210
|
import { KinesisAnalyticsServiceException } from "../models/KinesisAnalyticsServiceException";
|
|
211
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
212
|
+
export var KinesisAnalyticsServiceException$ = [-3, _s, "KinesisAnalyticsServiceException", 0, [], []];
|
|
213
|
+
_s_registry.registerError(KinesisAnalyticsServiceException$, KinesisAnalyticsServiceException);
|
|
214
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
215
|
+
export var CodeValidationException$ = [-3, n0, _CVE,
|
|
216
|
+
{ [_e]: _c },
|
|
217
|
+
[_m],
|
|
218
|
+
[0]
|
|
219
|
+
];
|
|
220
|
+
n0_registry.registerError(CodeValidationException$, CodeValidationException);
|
|
221
|
+
export var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
222
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
223
|
+
[_m],
|
|
224
|
+
[0]
|
|
225
|
+
];
|
|
226
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
227
|
+
export var InvalidApplicationConfigurationException$ = [-3, n0, _IACE,
|
|
228
|
+
{ [_e]: _c },
|
|
229
|
+
[_m],
|
|
230
|
+
[0]
|
|
231
|
+
];
|
|
232
|
+
n0_registry.registerError(InvalidApplicationConfigurationException$, InvalidApplicationConfigurationException);
|
|
233
|
+
export var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
234
|
+
{ [_e]: _c },
|
|
235
|
+
[_m],
|
|
236
|
+
[0]
|
|
237
|
+
];
|
|
238
|
+
n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
239
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
240
|
+
{ [_e]: _c },
|
|
241
|
+
[_m],
|
|
242
|
+
[0]
|
|
243
|
+
];
|
|
244
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
245
|
+
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
246
|
+
{ [_e]: _c },
|
|
247
|
+
[_m],
|
|
248
|
+
[0]
|
|
249
|
+
];
|
|
250
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
251
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
252
|
+
{ [_e]: _c },
|
|
253
|
+
[_m],
|
|
254
|
+
[0]
|
|
255
|
+
];
|
|
256
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
257
|
+
export var ResourceProvisionedThroughputExceededException$ = [-3, n0, _RPTEE,
|
|
258
|
+
{ [_e]: _c },
|
|
259
|
+
[_m],
|
|
260
|
+
[0]
|
|
261
|
+
];
|
|
262
|
+
n0_registry.registerError(ResourceProvisionedThroughputExceededException$, ResourceProvisionedThroughputExceededException);
|
|
263
|
+
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
264
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
265
|
+
[_m],
|
|
266
|
+
[0]
|
|
267
|
+
];
|
|
268
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
269
|
+
export var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
270
|
+
{ [_e]: _c },
|
|
271
|
+
[_m],
|
|
272
|
+
[0]
|
|
273
|
+
];
|
|
274
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
275
|
+
export var UnableToDetectSchemaException$ = [-3, n0, _UTDSE,
|
|
276
|
+
{ [_e]: _c },
|
|
277
|
+
[_m, _RIR, _PIR],
|
|
278
|
+
[0, 64 | 0, 64 | 0]
|
|
279
|
+
];
|
|
280
|
+
n0_registry.registerError(UnableToDetectSchemaException$, UnableToDetectSchemaException);
|
|
281
|
+
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
282
|
+
{ [_e]: _c },
|
|
283
|
+
[_m],
|
|
284
|
+
[0]
|
|
285
|
+
];
|
|
286
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
287
|
+
export const errorTypeRegistries = [
|
|
288
|
+
_s_registry,
|
|
289
|
+
n0_registry,
|
|
290
|
+
];
|
|
211
291
|
export var AddApplicationCloudWatchLoggingOptionRequest$ = [3, n0, _AACWLOR,
|
|
212
292
|
0,
|
|
213
293
|
[_AN, _CAVI, _CWLO],
|
|
@@ -288,18 +368,6 @@ export var CloudWatchLoggingOptionUpdate$ = [3, n0, _CWLOUl,
|
|
|
288
368
|
[_CWLOI, _LSARNU, _RARNU],
|
|
289
369
|
[0, 0, 0], 1
|
|
290
370
|
];
|
|
291
|
-
export var CodeValidationException$ = [-3, n0, _CVE,
|
|
292
|
-
{ [_e]: _c },
|
|
293
|
-
[_m],
|
|
294
|
-
[0]
|
|
295
|
-
];
|
|
296
|
-
TypeRegistry.for(n0).registerError(CodeValidationException$, CodeValidationException);
|
|
297
|
-
export var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
298
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
299
|
-
[_m],
|
|
300
|
-
[0]
|
|
301
|
-
];
|
|
302
|
-
TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
303
371
|
export var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
304
372
|
0,
|
|
305
373
|
[_AN, _ADp, _In, _Ou, _CWLOl, _AC, _T],
|
|
@@ -387,8 +455,8 @@ export var DiscoverInputSchemaRequest$ = [3, n0, _DISR,
|
|
|
387
455
|
];
|
|
388
456
|
export var DiscoverInputSchemaResponse$ = [3, n0, _DISRi,
|
|
389
457
|
0,
|
|
390
|
-
[_IS,
|
|
391
|
-
[() => SourceSchema$, [1, n0,
|
|
458
|
+
[_IS, _PIRa, _PIR, _RIR],
|
|
459
|
+
[() => SourceSchema$, [1, n0, _PIRa, 0, 64 | 0], 64 | 0, 64 | 0]
|
|
392
460
|
];
|
|
393
461
|
export var Input$ = [3, n0, _I,
|
|
394
462
|
0,
|
|
@@ -460,18 +528,6 @@ export var InputUpdate$ = [3, n0, _IUn,
|
|
|
460
528
|
[_II, _NPU, _IPCU, _KSIU, _KFIU, _ISU, _IPU],
|
|
461
529
|
[0, 0, () => InputProcessingConfigurationUpdate$, () => KinesisStreamsInputUpdate$, () => KinesisFirehoseInputUpdate$, () => InputSchemaUpdate$, () => InputParallelismUpdate$], 1
|
|
462
530
|
];
|
|
463
|
-
export var InvalidApplicationConfigurationException$ = [-3, n0, _IACE,
|
|
464
|
-
{ [_e]: _c },
|
|
465
|
-
[_m],
|
|
466
|
-
[0]
|
|
467
|
-
];
|
|
468
|
-
TypeRegistry.for(n0).registerError(InvalidApplicationConfigurationException$, InvalidApplicationConfigurationException);
|
|
469
|
-
export var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
470
|
-
{ [_e]: _c },
|
|
471
|
-
[_m],
|
|
472
|
-
[0]
|
|
473
|
-
];
|
|
474
|
-
TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
475
531
|
export var JSONMappingParameters$ = [3, n0, _JSONMP,
|
|
476
532
|
0,
|
|
477
533
|
[_RRP],
|
|
@@ -552,12 +608,6 @@ export var LambdaOutputUpdate$ = [3, n0, _LOU,
|
|
|
552
608
|
[_RARNUe, _RARNU],
|
|
553
609
|
[0, 0]
|
|
554
610
|
];
|
|
555
|
-
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
556
|
-
{ [_e]: _c },
|
|
557
|
-
[_m],
|
|
558
|
-
[0]
|
|
559
|
-
];
|
|
560
|
-
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
561
611
|
export var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
562
612
|
0,
|
|
563
613
|
[_L, _ESAN],
|
|
@@ -623,24 +673,6 @@ export var ReferenceDataSourceUpdate$ = [3, n0, _RDSUe,
|
|
|
623
673
|
[_RI, _TNU, _SRDSU, _RSU],
|
|
624
674
|
[0, 0, () => S3ReferenceDataSourceUpdate$, () => SourceSchema$], 1
|
|
625
675
|
];
|
|
626
|
-
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
627
|
-
{ [_e]: _c },
|
|
628
|
-
[_m],
|
|
629
|
-
[0]
|
|
630
|
-
];
|
|
631
|
-
TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
632
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
633
|
-
{ [_e]: _c },
|
|
634
|
-
[_m],
|
|
635
|
-
[0]
|
|
636
|
-
];
|
|
637
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
638
|
-
export var ResourceProvisionedThroughputExceededException$ = [-3, n0, _RPTEE,
|
|
639
|
-
{ [_e]: _c },
|
|
640
|
-
[_m],
|
|
641
|
-
[0]
|
|
642
|
-
];
|
|
643
|
-
TypeRegistry.for(n0).registerError(ResourceProvisionedThroughputExceededException$, ResourceProvisionedThroughputExceededException);
|
|
644
676
|
export var S3Configuration$ = [3, n0, _SC,
|
|
645
677
|
0,
|
|
646
678
|
[_RARN, _BARN, _FK],
|
|
@@ -661,12 +693,6 @@ export var S3ReferenceDataSourceUpdate$ = [3, n0, _SRDSU,
|
|
|
661
693
|
[_BARNU, _FKU, _RRARNU],
|
|
662
694
|
[0, 0, 0]
|
|
663
695
|
];
|
|
664
|
-
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
665
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
666
|
-
[_m],
|
|
667
|
-
[0]
|
|
668
|
-
];
|
|
669
|
-
TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
670
696
|
export var SourceSchema$ = [3, n0, _SS,
|
|
671
697
|
0,
|
|
672
698
|
[_RF, _RCe, _RE],
|
|
@@ -707,24 +733,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
707
733
|
[],
|
|
708
734
|
[]
|
|
709
735
|
];
|
|
710
|
-
export var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
711
|
-
{ [_e]: _c },
|
|
712
|
-
[_m],
|
|
713
|
-
[0]
|
|
714
|
-
];
|
|
715
|
-
TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
716
|
-
export var UnableToDetectSchemaException$ = [-3, n0, _UTDSE,
|
|
717
|
-
{ [_e]: _c },
|
|
718
|
-
[_m, _RIR, _PIRr],
|
|
719
|
-
[0, 64 | 0, 64 | 0]
|
|
720
|
-
];
|
|
721
|
-
TypeRegistry.for(n0).registerError(UnableToDetectSchemaException$, UnableToDetectSchemaException);
|
|
722
|
-
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
723
|
-
{ [_e]: _c },
|
|
724
|
-
[_m],
|
|
725
|
-
[0]
|
|
726
|
-
];
|
|
727
|
-
TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
728
736
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
729
737
|
0,
|
|
730
738
|
[_RARNe, _TK],
|
|
@@ -745,8 +753,6 @@ export var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
|
745
753
|
[],
|
|
746
754
|
[]
|
|
747
755
|
];
|
|
748
|
-
export var KinesisAnalyticsServiceException$ = [-3, _sm, "KinesisAnalyticsServiceException", 0, [], []];
|
|
749
|
-
TypeRegistry.for(_sm).registerError(KinesisAnalyticsServiceException$, KinesisAnalyticsServiceException);
|
|
750
756
|
var ApplicationSummaries = [1, n0, _ASpp,
|
|
751
757
|
0, () => ApplicationSummary$
|
|
752
758
|
];
|
|
@@ -782,7 +788,7 @@ var OutputUpdates = [1, n0, _OU,
|
|
|
782
788
|
0, () => OutputUpdate$
|
|
783
789
|
];
|
|
784
790
|
var ParsedInputRecord = 64 | 0;
|
|
785
|
-
var ParsedInputRecords = [1, n0,
|
|
791
|
+
var ParsedInputRecords = [1, n0, _PIRa,
|
|
786
792
|
0, 64 | 0
|
|
787
793
|
];
|
|
788
794
|
var ProcessedInputRecords = 64 | 0;
|
|
@@ -1,4 +1,24 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var KinesisAnalyticsServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var CodeValidationException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
6
|
+
export declare var InvalidApplicationConfigurationException$: StaticErrorSchema;
|
|
7
|
+
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
8
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
9
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
10
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceProvisionedThroughputExceededException$: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
13
|
+
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
14
|
+
export declare var UnableToDetectSchemaException$: StaticErrorSchema;
|
|
15
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
16
|
+
/**
|
|
17
|
+
* TypeRegistry instances containing modeled errors.
|
|
18
|
+
* @internal
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
2
22
|
export declare var AddApplicationCloudWatchLoggingOptionRequest$: StaticStructureSchema;
|
|
3
23
|
export declare var AddApplicationCloudWatchLoggingOptionResponse$: StaticStructureSchema;
|
|
4
24
|
export declare var AddApplicationInputProcessingConfigurationRequest$: StaticStructureSchema;
|
|
@@ -15,8 +35,6 @@ export declare var ApplicationUpdate$: StaticStructureSchema;
|
|
|
15
35
|
export declare var CloudWatchLoggingOption$: StaticStructureSchema;
|
|
16
36
|
export declare var CloudWatchLoggingOptionDescription$: StaticStructureSchema;
|
|
17
37
|
export declare var CloudWatchLoggingOptionUpdate$: StaticStructureSchema;
|
|
18
|
-
export declare var CodeValidationException$: StaticErrorSchema;
|
|
19
|
-
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
20
38
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
21
39
|
export declare var CreateApplicationResponse$: StaticStructureSchema;
|
|
22
40
|
export declare var CSVMappingParameters$: StaticStructureSchema;
|
|
@@ -49,8 +67,6 @@ export declare var InputProcessingConfigurationUpdate$: StaticStructureSchema;
|
|
|
49
67
|
export declare var InputSchemaUpdate$: StaticStructureSchema;
|
|
50
68
|
export declare var InputStartingPositionConfiguration$: StaticStructureSchema;
|
|
51
69
|
export declare var InputUpdate$: StaticStructureSchema;
|
|
52
|
-
export declare var InvalidApplicationConfigurationException$: StaticErrorSchema;
|
|
53
|
-
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
54
70
|
export declare var JSONMappingParameters$: StaticStructureSchema;
|
|
55
71
|
export declare var KinesisFirehoseInput$: StaticStructureSchema;
|
|
56
72
|
export declare var KinesisFirehoseInputDescription$: StaticStructureSchema;
|
|
@@ -67,7 +83,6 @@ export declare var KinesisStreamsOutputUpdate$: StaticStructureSchema;
|
|
|
67
83
|
export declare var LambdaOutput$: StaticStructureSchema;
|
|
68
84
|
export declare var LambdaOutputDescription$: StaticStructureSchema;
|
|
69
85
|
export declare var LambdaOutputUpdate$: StaticStructureSchema;
|
|
70
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
71
86
|
export declare var ListApplicationsRequest$: StaticStructureSchema;
|
|
72
87
|
export declare var ListApplicationsResponse$: StaticStructureSchema;
|
|
73
88
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
@@ -81,14 +96,10 @@ export declare var RecordFormat$: StaticStructureSchema;
|
|
|
81
96
|
export declare var ReferenceDataSource$: StaticStructureSchema;
|
|
82
97
|
export declare var ReferenceDataSourceDescription$: StaticStructureSchema;
|
|
83
98
|
export declare var ReferenceDataSourceUpdate$: StaticStructureSchema;
|
|
84
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
85
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
86
|
-
export declare var ResourceProvisionedThroughputExceededException$: StaticErrorSchema;
|
|
87
99
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
88
100
|
export declare var S3ReferenceDataSource$: StaticStructureSchema;
|
|
89
101
|
export declare var S3ReferenceDataSourceDescription$: StaticStructureSchema;
|
|
90
102
|
export declare var S3ReferenceDataSourceUpdate$: StaticStructureSchema;
|
|
91
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
92
103
|
export declare var SourceSchema$: StaticStructureSchema;
|
|
93
104
|
export declare var StartApplicationRequest$: StaticStructureSchema;
|
|
94
105
|
export declare var StartApplicationResponse$: StaticStructureSchema;
|
|
@@ -97,14 +108,10 @@ export declare var StopApplicationResponse$: StaticStructureSchema;
|
|
|
97
108
|
export declare var Tag$: StaticStructureSchema;
|
|
98
109
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
99
110
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
100
|
-
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
101
|
-
export declare var UnableToDetectSchemaException$: StaticErrorSchema;
|
|
102
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
103
111
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
104
112
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
105
113
|
export declare var UpdateApplicationRequest$: StaticStructureSchema;
|
|
106
114
|
export declare var UpdateApplicationResponse$: StaticStructureSchema;
|
|
107
|
-
export declare var KinesisAnalyticsServiceException$: StaticErrorSchema;
|
|
108
115
|
export declare var AddApplicationCloudWatchLoggingOption$: StaticOperationSchema;
|
|
109
116
|
export declare var AddApplicationInput$: StaticOperationSchema;
|
|
110
117
|
export declare var AddApplicationInputProcessingConfiguration$: StaticOperationSchema;
|
|
@@ -1,8 +1,23 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var KinesisAnalyticsServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var CodeValidationException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
10
|
+
export declare var InvalidApplicationConfigurationException$: StaticErrorSchema;
|
|
11
|
+
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
12
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
14
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
15
|
+
export declare var ResourceProvisionedThroughputExceededException$: StaticErrorSchema;
|
|
16
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
17
|
+
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
18
|
+
export declare var UnableToDetectSchemaException$: StaticErrorSchema;
|
|
19
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
20
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
21
|
export declare var AddApplicationCloudWatchLoggingOptionRequest$: StaticStructureSchema;
|
|
7
22
|
export declare var AddApplicationCloudWatchLoggingOptionResponse$: StaticStructureSchema;
|
|
8
23
|
export declare var AddApplicationInputProcessingConfigurationRequest$: StaticStructureSchema;
|
|
@@ -19,8 +34,6 @@ export declare var ApplicationUpdate$: StaticStructureSchema;
|
|
|
19
34
|
export declare var CloudWatchLoggingOption$: StaticStructureSchema;
|
|
20
35
|
export declare var CloudWatchLoggingOptionDescription$: StaticStructureSchema;
|
|
21
36
|
export declare var CloudWatchLoggingOptionUpdate$: StaticStructureSchema;
|
|
22
|
-
export declare var CodeValidationException$: StaticErrorSchema;
|
|
23
|
-
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
24
37
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
25
38
|
export declare var CreateApplicationResponse$: StaticStructureSchema;
|
|
26
39
|
export declare var CSVMappingParameters$: StaticStructureSchema;
|
|
@@ -53,8 +66,6 @@ export declare var InputProcessingConfigurationUpdate$: StaticStructureSchema;
|
|
|
53
66
|
export declare var InputSchemaUpdate$: StaticStructureSchema;
|
|
54
67
|
export declare var InputStartingPositionConfiguration$: StaticStructureSchema;
|
|
55
68
|
export declare var InputUpdate$: StaticStructureSchema;
|
|
56
|
-
export declare var InvalidApplicationConfigurationException$: StaticErrorSchema;
|
|
57
|
-
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
58
69
|
export declare var JSONMappingParameters$: StaticStructureSchema;
|
|
59
70
|
export declare var KinesisFirehoseInput$: StaticStructureSchema;
|
|
60
71
|
export declare var KinesisFirehoseInputDescription$: StaticStructureSchema;
|
|
@@ -71,7 +82,6 @@ export declare var KinesisStreamsOutputUpdate$: StaticStructureSchema;
|
|
|
71
82
|
export declare var LambdaOutput$: StaticStructureSchema;
|
|
72
83
|
export declare var LambdaOutputDescription$: StaticStructureSchema;
|
|
73
84
|
export declare var LambdaOutputUpdate$: StaticStructureSchema;
|
|
74
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
75
85
|
export declare var ListApplicationsRequest$: StaticStructureSchema;
|
|
76
86
|
export declare var ListApplicationsResponse$: StaticStructureSchema;
|
|
77
87
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
@@ -85,14 +95,10 @@ export declare var RecordFormat$: StaticStructureSchema;
|
|
|
85
95
|
export declare var ReferenceDataSource$: StaticStructureSchema;
|
|
86
96
|
export declare var ReferenceDataSourceDescription$: StaticStructureSchema;
|
|
87
97
|
export declare var ReferenceDataSourceUpdate$: StaticStructureSchema;
|
|
88
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
89
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
90
|
-
export declare var ResourceProvisionedThroughputExceededException$: StaticErrorSchema;
|
|
91
98
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
92
99
|
export declare var S3ReferenceDataSource$: StaticStructureSchema;
|
|
93
100
|
export declare var S3ReferenceDataSourceDescription$: StaticStructureSchema;
|
|
94
101
|
export declare var S3ReferenceDataSourceUpdate$: StaticStructureSchema;
|
|
95
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
96
102
|
export declare var SourceSchema$: StaticStructureSchema;
|
|
97
103
|
export declare var StartApplicationRequest$: StaticStructureSchema;
|
|
98
104
|
export declare var StartApplicationResponse$: StaticStructureSchema;
|
|
@@ -101,14 +107,10 @@ export declare var StopApplicationResponse$: StaticStructureSchema;
|
|
|
101
107
|
export declare var Tag$: StaticStructureSchema;
|
|
102
108
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
103
109
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
104
|
-
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
105
|
-
export declare var UnableToDetectSchemaException$: StaticErrorSchema;
|
|
106
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
107
110
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
108
111
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
109
112
|
export declare var UpdateApplicationRequest$: StaticStructureSchema;
|
|
110
113
|
export declare var UpdateApplicationResponse$: StaticStructureSchema;
|
|
111
|
-
export declare var KinesisAnalyticsServiceException$: StaticErrorSchema;
|
|
112
114
|
export declare var AddApplicationCloudWatchLoggingOption$: StaticOperationSchema;
|
|
113
115
|
export declare var AddApplicationInput$: StaticOperationSchema;
|
|
114
116
|
export declare var AddApplicationInputProcessingConfiguration$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-analytics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.989.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-kinesis-analytics",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.9",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.9",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.989.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.7",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|