@aws-sdk/client-kinesis-analytics 3.301.0 → 3.306.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/models/models_0.js +17 -20
- package/dist-es/models/models_0.js +17 -20
- package/dist-types/models/models_0.d.ts +32 -17
- package/dist-types/ts3.4/models/models_0.d.ts +23 -17
- package/package.json +34 -34
|
@@ -67,11 +67,10 @@ class UnsupportedOperationException extends KinesisAnalyticsServiceException_1.K
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
})(RecordFormatType = exports.RecordFormatType || (exports.RecordFormatType = {}));
|
|
70
|
+
exports.RecordFormatType = {
|
|
71
|
+
CSV: "CSV",
|
|
72
|
+
JSON: "JSON",
|
|
73
|
+
};
|
|
75
74
|
class CodeValidationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
76
75
|
constructor(opts) {
|
|
77
76
|
super({
|
|
@@ -85,21 +84,19 @@ class CodeValidationException extends KinesisAnalyticsServiceException_1.Kinesis
|
|
|
85
84
|
}
|
|
86
85
|
}
|
|
87
86
|
exports.CodeValidationException = CodeValidationException;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
|
|
102
|
-
})(InputStartingPosition = exports.InputStartingPosition || (exports.InputStartingPosition = {}));
|
|
87
|
+
exports.ApplicationStatus = {
|
|
88
|
+
DELETING: "DELETING",
|
|
89
|
+
READY: "READY",
|
|
90
|
+
RUNNING: "RUNNING",
|
|
91
|
+
STARTING: "STARTING",
|
|
92
|
+
STOPPING: "STOPPING",
|
|
93
|
+
UPDATING: "UPDATING",
|
|
94
|
+
};
|
|
95
|
+
exports.InputStartingPosition = {
|
|
96
|
+
LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
|
|
97
|
+
NOW: "NOW",
|
|
98
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
99
|
+
};
|
|
103
100
|
class LimitExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
104
101
|
constructor(opts) {
|
|
105
102
|
super({
|
|
@@ -59,11 +59,10 @@ export class UnsupportedOperationException extends __BaseException {
|
|
|
59
59
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
})(RecordFormatType || (RecordFormatType = {}));
|
|
62
|
+
export const RecordFormatType = {
|
|
63
|
+
CSV: "CSV",
|
|
64
|
+
JSON: "JSON",
|
|
65
|
+
};
|
|
67
66
|
export class CodeValidationException extends __BaseException {
|
|
68
67
|
constructor(opts) {
|
|
69
68
|
super({
|
|
@@ -76,21 +75,19 @@ export class CodeValidationException extends __BaseException {
|
|
|
76
75
|
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
77
76
|
}
|
|
78
77
|
}
|
|
79
|
-
export
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
|
|
93
|
-
})(InputStartingPosition || (InputStartingPosition = {}));
|
|
78
|
+
export const ApplicationStatus = {
|
|
79
|
+
DELETING: "DELETING",
|
|
80
|
+
READY: "READY",
|
|
81
|
+
RUNNING: "RUNNING",
|
|
82
|
+
STARTING: "STARTING",
|
|
83
|
+
STOPPING: "STOPPING",
|
|
84
|
+
UPDATING: "UPDATING",
|
|
85
|
+
};
|
|
86
|
+
export const InputStartingPosition = {
|
|
87
|
+
LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
|
|
88
|
+
NOW: "NOW",
|
|
89
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
90
|
+
};
|
|
94
91
|
export class LimitExceededException extends __BaseException {
|
|
95
92
|
constructor(opts) {
|
|
96
93
|
super({
|
|
@@ -227,11 +227,16 @@ export interface MappingParameters {
|
|
|
227
227
|
}
|
|
228
228
|
/**
|
|
229
229
|
* @public
|
|
230
|
+
* @enum
|
|
230
231
|
*/
|
|
231
|
-
export declare
|
|
232
|
-
CSV
|
|
233
|
-
JSON
|
|
234
|
-
}
|
|
232
|
+
export declare const RecordFormatType: {
|
|
233
|
+
readonly CSV: "CSV";
|
|
234
|
+
readonly JSON: "JSON";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
235
240
|
/**
|
|
236
241
|
* @public
|
|
237
242
|
* <p>
|
|
@@ -622,15 +627,20 @@ export interface AddApplicationReferenceDataSourceResponse {
|
|
|
622
627
|
}
|
|
623
628
|
/**
|
|
624
629
|
* @public
|
|
630
|
+
* @enum
|
|
625
631
|
*/
|
|
626
|
-
export declare
|
|
627
|
-
DELETING
|
|
628
|
-
READY
|
|
629
|
-
RUNNING
|
|
630
|
-
STARTING
|
|
631
|
-
STOPPING
|
|
632
|
-
UPDATING
|
|
633
|
-
}
|
|
632
|
+
export declare const ApplicationStatus: {
|
|
633
|
+
readonly DELETING: "DELETING";
|
|
634
|
+
readonly READY: "READY";
|
|
635
|
+
readonly RUNNING: "RUNNING";
|
|
636
|
+
readonly STARTING: "STARTING";
|
|
637
|
+
readonly STOPPING: "STOPPING";
|
|
638
|
+
readonly UPDATING: "UPDATING";
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* @public
|
|
642
|
+
*/
|
|
643
|
+
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
634
644
|
/**
|
|
635
645
|
* @public
|
|
636
646
|
* <p>Description of the CloudWatch logging option.</p>
|
|
@@ -678,12 +688,17 @@ export interface InputProcessingConfigurationDescription {
|
|
|
678
688
|
}
|
|
679
689
|
/**
|
|
680
690
|
* @public
|
|
691
|
+
* @enum
|
|
681
692
|
*/
|
|
682
|
-
export declare
|
|
683
|
-
LAST_STOPPED_POINT
|
|
684
|
-
NOW
|
|
685
|
-
TRIM_HORIZON
|
|
686
|
-
}
|
|
693
|
+
export declare const InputStartingPosition: {
|
|
694
|
+
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
695
|
+
readonly NOW: "NOW";
|
|
696
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
697
|
+
};
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
701
|
+
export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
687
702
|
/**
|
|
688
703
|
* @public
|
|
689
704
|
* <p>Describes the point at which the application reads from
|
|
@@ -74,10 +74,12 @@ export interface MappingParameters {
|
|
|
74
74
|
JSONMappingParameters?: JSONMappingParameters;
|
|
75
75
|
CSVMappingParameters?: CSVMappingParameters;
|
|
76
76
|
}
|
|
77
|
-
export declare
|
|
78
|
-
CSV
|
|
79
|
-
JSON
|
|
80
|
-
}
|
|
77
|
+
export declare const RecordFormatType: {
|
|
78
|
+
readonly CSV: "CSV";
|
|
79
|
+
readonly JSON: "JSON";
|
|
80
|
+
};
|
|
81
|
+
export type RecordFormatType =
|
|
82
|
+
(typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
81
83
|
export interface RecordFormat {
|
|
82
84
|
RecordFormatType: RecordFormatType | string | undefined;
|
|
83
85
|
MappingParameters?: MappingParameters;
|
|
@@ -167,14 +169,16 @@ export interface AddApplicationReferenceDataSourceRequest {
|
|
|
167
169
|
ReferenceDataSource: ReferenceDataSource | undefined;
|
|
168
170
|
}
|
|
169
171
|
export interface AddApplicationReferenceDataSourceResponse {}
|
|
170
|
-
export declare
|
|
171
|
-
DELETING
|
|
172
|
-
READY
|
|
173
|
-
RUNNING
|
|
174
|
-
STARTING
|
|
175
|
-
STOPPING
|
|
176
|
-
UPDATING
|
|
177
|
-
}
|
|
172
|
+
export declare const ApplicationStatus: {
|
|
173
|
+
readonly DELETING: "DELETING";
|
|
174
|
+
readonly READY: "READY";
|
|
175
|
+
readonly RUNNING: "RUNNING";
|
|
176
|
+
readonly STARTING: "STARTING";
|
|
177
|
+
readonly STOPPING: "STOPPING";
|
|
178
|
+
readonly UPDATING: "UPDATING";
|
|
179
|
+
};
|
|
180
|
+
export type ApplicationStatus =
|
|
181
|
+
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
178
182
|
export interface CloudWatchLoggingOptionDescription {
|
|
179
183
|
CloudWatchLoggingOptionId?: string;
|
|
180
184
|
LogStreamARN: string | undefined;
|
|
@@ -187,11 +191,13 @@ export interface InputLambdaProcessorDescription {
|
|
|
187
191
|
export interface InputProcessingConfigurationDescription {
|
|
188
192
|
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
189
193
|
}
|
|
190
|
-
export declare
|
|
191
|
-
LAST_STOPPED_POINT
|
|
192
|
-
NOW
|
|
193
|
-
TRIM_HORIZON
|
|
194
|
-
}
|
|
194
|
+
export declare const InputStartingPosition: {
|
|
195
|
+
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
196
|
+
readonly NOW: "NOW";
|
|
197
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
198
|
+
};
|
|
199
|
+
export type InputStartingPosition =
|
|
200
|
+
(typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
195
201
|
export interface InputStartingPositionConfiguration {
|
|
196
202
|
InputStartingPosition?: InputStartingPosition | string;
|
|
197
203
|
}
|
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.306.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.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.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.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.
|
|
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",
|