@aws-sdk/client-kinesis-analytics 3.934.0 → 3.935.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 +18 -17
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +17 -0
- package/dist-es/models/errors.js +149 -0
- package/dist-es/models/models_0.js +1 -166
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/errors.d.ts +153 -0
- package/dist-types/models/models_0.d.ts +1 -194
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +23 -0
- package/dist-types/ts3.4/models/errors.d.ts +97 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -120
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -177,10 +177,6 @@ let UnsupportedOperationException$1 = class UnsupportedOperationException extend
|
|
|
177
177
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
178
178
|
}
|
|
179
179
|
};
|
|
180
|
-
const RecordFormatType = {
|
|
181
|
-
CSV: "CSV",
|
|
182
|
-
JSON: "JSON",
|
|
183
|
-
};
|
|
184
180
|
let CodeValidationException$1 = class CodeValidationException extends KinesisAnalyticsServiceException$1 {
|
|
185
181
|
name = "CodeValidationException";
|
|
186
182
|
$fault = "client";
|
|
@@ -193,19 +189,6 @@ let CodeValidationException$1 = class CodeValidationException extends KinesisAna
|
|
|
193
189
|
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
194
190
|
}
|
|
195
191
|
};
|
|
196
|
-
const ApplicationStatus = {
|
|
197
|
-
DELETING: "DELETING",
|
|
198
|
-
READY: "READY",
|
|
199
|
-
RUNNING: "RUNNING",
|
|
200
|
-
STARTING: "STARTING",
|
|
201
|
-
STOPPING: "STOPPING",
|
|
202
|
-
UPDATING: "UPDATING",
|
|
203
|
-
};
|
|
204
|
-
const InputStartingPosition = {
|
|
205
|
-
LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
|
|
206
|
-
NOW: "NOW",
|
|
207
|
-
TRIM_HORIZON: "TRIM_HORIZON",
|
|
208
|
-
};
|
|
209
192
|
let LimitExceededException$1 = class LimitExceededException extends KinesisAnalyticsServiceException$1 {
|
|
210
193
|
name = "LimitExceededException";
|
|
211
194
|
$fault = "client";
|
|
@@ -1450,6 +1433,24 @@ class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
1450
1433
|
}
|
|
1451
1434
|
smithyClient.createAggregatedClient(commands, KinesisAnalytics);
|
|
1452
1435
|
|
|
1436
|
+
const RecordFormatType = {
|
|
1437
|
+
CSV: "CSV",
|
|
1438
|
+
JSON: "JSON",
|
|
1439
|
+
};
|
|
1440
|
+
const ApplicationStatus = {
|
|
1441
|
+
DELETING: "DELETING",
|
|
1442
|
+
READY: "READY",
|
|
1443
|
+
RUNNING: "RUNNING",
|
|
1444
|
+
STARTING: "STARTING",
|
|
1445
|
+
STOPPING: "STOPPING",
|
|
1446
|
+
UPDATING: "UPDATING",
|
|
1447
|
+
};
|
|
1448
|
+
const InputStartingPosition = {
|
|
1449
|
+
LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
|
|
1450
|
+
NOW: "NOW",
|
|
1451
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
1452
|
+
};
|
|
1453
|
+
|
|
1453
1454
|
Object.defineProperty(exports, "$Command", {
|
|
1454
1455
|
enumerable: true,
|
|
1455
1456
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./KinesisAnalyticsClient";
|
|
2
2
|
export * from "./KinesisAnalytics";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
4
|
+
export * from "./models/enums";
|
|
5
|
+
export * from "./models/errors";
|
|
5
6
|
export { KinesisAnalyticsServiceException } from "./models/KinesisAnalyticsServiceException";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export const RecordFormatType = {
|
|
2
|
+
CSV: "CSV",
|
|
3
|
+
JSON: "JSON",
|
|
4
|
+
};
|
|
5
|
+
export const ApplicationStatus = {
|
|
6
|
+
DELETING: "DELETING",
|
|
7
|
+
READY: "READY",
|
|
8
|
+
RUNNING: "RUNNING",
|
|
9
|
+
STARTING: "STARTING",
|
|
10
|
+
STOPPING: "STOPPING",
|
|
11
|
+
UPDATING: "UPDATING",
|
|
12
|
+
};
|
|
13
|
+
export const InputStartingPosition = {
|
|
14
|
+
LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
|
|
15
|
+
NOW: "NOW",
|
|
16
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
17
|
+
};
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
2
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
3
|
+
name = "ConcurrentModificationException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "ConcurrentModificationException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InvalidArgumentException extends __BaseException {
|
|
15
|
+
name = "InvalidArgumentException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "InvalidArgumentException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ResourceInUseException extends __BaseException {
|
|
27
|
+
name = "ResourceInUseException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ResourceInUseException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
name = "ResourceNotFoundException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ResourceNotFoundException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class UnsupportedOperationException extends __BaseException {
|
|
51
|
+
name = "UnsupportedOperationException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "UnsupportedOperationException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class CodeValidationException extends __BaseException {
|
|
63
|
+
name = "CodeValidationException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "CodeValidationException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class LimitExceededException extends __BaseException {
|
|
75
|
+
name = "LimitExceededException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "LimitExceededException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class TooManyTagsException extends __BaseException {
|
|
87
|
+
name = "TooManyTagsException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "TooManyTagsException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
99
|
+
name = "ResourceProvisionedThroughputExceededException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "ResourceProvisionedThroughputExceededException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
111
|
+
name = "ServiceUnavailableException";
|
|
112
|
+
$fault = "server";
|
|
113
|
+
constructor(opts) {
|
|
114
|
+
super({
|
|
115
|
+
name: "ServiceUnavailableException",
|
|
116
|
+
$fault: "server",
|
|
117
|
+
...opts,
|
|
118
|
+
});
|
|
119
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
export class UnableToDetectSchemaException extends __BaseException {
|
|
123
|
+
name = "UnableToDetectSchemaException";
|
|
124
|
+
$fault = "client";
|
|
125
|
+
RawInputRecords;
|
|
126
|
+
ProcessedInputRecords;
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "UnableToDetectSchemaException",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
134
|
+
this.RawInputRecords = opts.RawInputRecords;
|
|
135
|
+
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
export class InvalidApplicationConfigurationException extends __BaseException {
|
|
139
|
+
name = "InvalidApplicationConfigurationException";
|
|
140
|
+
$fault = "client";
|
|
141
|
+
constructor(opts) {
|
|
142
|
+
super({
|
|
143
|
+
name: "InvalidApplicationConfigurationException",
|
|
144
|
+
$fault: "client",
|
|
145
|
+
...opts,
|
|
146
|
+
});
|
|
147
|
+
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
@@ -1,166 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class ConcurrentModificationException extends __BaseException {
|
|
3
|
-
name = "ConcurrentModificationException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "ConcurrentModificationException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class InvalidArgumentException extends __BaseException {
|
|
15
|
-
name = "InvalidArgumentException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "InvalidArgumentException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class ResourceInUseException extends __BaseException {
|
|
27
|
-
name = "ResourceInUseException";
|
|
28
|
-
$fault = "client";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "ResourceInUseException",
|
|
32
|
-
$fault: "client",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
39
|
-
name = "ResourceNotFoundException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "ResourceNotFoundException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class UnsupportedOperationException extends __BaseException {
|
|
51
|
-
name = "UnsupportedOperationException";
|
|
52
|
-
$fault = "client";
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "UnsupportedOperationException",
|
|
56
|
-
$fault: "client",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export const RecordFormatType = {
|
|
63
|
-
CSV: "CSV",
|
|
64
|
-
JSON: "JSON",
|
|
65
|
-
};
|
|
66
|
-
export class CodeValidationException extends __BaseException {
|
|
67
|
-
name = "CodeValidationException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "CodeValidationException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
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
|
-
};
|
|
91
|
-
export class LimitExceededException extends __BaseException {
|
|
92
|
-
name = "LimitExceededException";
|
|
93
|
-
$fault = "client";
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "LimitExceededException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
export class TooManyTagsException extends __BaseException {
|
|
104
|
-
name = "TooManyTagsException";
|
|
105
|
-
$fault = "client";
|
|
106
|
-
constructor(opts) {
|
|
107
|
-
super({
|
|
108
|
-
name: "TooManyTagsException",
|
|
109
|
-
$fault: "client",
|
|
110
|
-
...opts,
|
|
111
|
-
});
|
|
112
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
export class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
116
|
-
name = "ResourceProvisionedThroughputExceededException";
|
|
117
|
-
$fault = "client";
|
|
118
|
-
constructor(opts) {
|
|
119
|
-
super({
|
|
120
|
-
name: "ResourceProvisionedThroughputExceededException",
|
|
121
|
-
$fault: "client",
|
|
122
|
-
...opts,
|
|
123
|
-
});
|
|
124
|
-
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
128
|
-
name = "ServiceUnavailableException";
|
|
129
|
-
$fault = "server";
|
|
130
|
-
constructor(opts) {
|
|
131
|
-
super({
|
|
132
|
-
name: "ServiceUnavailableException",
|
|
133
|
-
$fault: "server",
|
|
134
|
-
...opts,
|
|
135
|
-
});
|
|
136
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
export class UnableToDetectSchemaException extends __BaseException {
|
|
140
|
-
name = "UnableToDetectSchemaException";
|
|
141
|
-
$fault = "client";
|
|
142
|
-
RawInputRecords;
|
|
143
|
-
ProcessedInputRecords;
|
|
144
|
-
constructor(opts) {
|
|
145
|
-
super({
|
|
146
|
-
name: "UnableToDetectSchemaException",
|
|
147
|
-
$fault: "client",
|
|
148
|
-
...opts,
|
|
149
|
-
});
|
|
150
|
-
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
151
|
-
this.RawInputRecords = opts.RawInputRecords;
|
|
152
|
-
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
export class InvalidApplicationConfigurationException extends __BaseException {
|
|
156
|
-
name = "InvalidApplicationConfigurationException";
|
|
157
|
-
$fault = "client";
|
|
158
|
-
constructor(opts) {
|
|
159
|
-
super({
|
|
160
|
-
name: "InvalidApplicationConfigurationException",
|
|
161
|
-
$fault: "client",
|
|
162
|
-
...opts,
|
|
163
|
-
});
|
|
164
|
-
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
1
|
+
export {};
|
|
@@ -206,7 +206,7 @@ const _s = "server";
|
|
|
206
206
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisanalytics";
|
|
207
207
|
const n0 = "com.amazonaws.kinesisanalytics";
|
|
208
208
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
209
|
-
import { CodeValidationException as __CodeValidationException, ConcurrentModificationException as __ConcurrentModificationException, InvalidApplicationConfigurationException as __InvalidApplicationConfigurationException, InvalidArgumentException as __InvalidArgumentException, LimitExceededException as __LimitExceededException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceProvisionedThroughputExceededException as __ResourceProvisionedThroughputExceededException, ServiceUnavailableException as __ServiceUnavailableException, TooManyTagsException as __TooManyTagsException, UnableToDetectSchemaException as __UnableToDetectSchemaException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/
|
|
209
|
+
import { CodeValidationException as __CodeValidationException, ConcurrentModificationException as __ConcurrentModificationException, InvalidApplicationConfigurationException as __InvalidApplicationConfigurationException, InvalidArgumentException as __InvalidArgumentException, LimitExceededException as __LimitExceededException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceProvisionedThroughputExceededException as __ResourceProvisionedThroughputExceededException, ServiceUnavailableException as __ServiceUnavailableException, TooManyTagsException as __TooManyTagsException, UnableToDetectSchemaException as __UnableToDetectSchemaException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/errors";
|
|
210
210
|
import { KinesisAnalyticsServiceException as __KinesisAnalyticsServiceException } from "../models/KinesisAnalyticsServiceException";
|
|
211
211
|
export var AddApplicationCloudWatchLoggingOptionRequest = [
|
|
212
212
|
3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -18,5 +18,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
18
18
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
19
19
|
export type { KinesisAnalyticsExtensionConfiguration } from "./extensionConfiguration";
|
|
20
20
|
export * from "./commands";
|
|
21
|
-
export * from "./models";
|
|
21
|
+
export * from "./models/enums";
|
|
22
|
+
export * from "./models/errors";
|
|
23
|
+
export type * from "./models/models_0";
|
|
22
24
|
export { KinesisAnalyticsServiceException } from "./models/KinesisAnalyticsServiceException";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const RecordFormatType: {
|
|
6
|
+
readonly CSV: "CSV";
|
|
7
|
+
readonly JSON: "JSON";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ApplicationStatus: {
|
|
18
|
+
readonly DELETING: "DELETING";
|
|
19
|
+
readonly READY: "READY";
|
|
20
|
+
readonly RUNNING: "RUNNING";
|
|
21
|
+
readonly STARTING: "STARTING";
|
|
22
|
+
readonly STOPPING: "STOPPING";
|
|
23
|
+
readonly UPDATING: "UPDATING";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const InputStartingPosition: {
|
|
34
|
+
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
35
|
+
readonly NOW: "NOW";
|
|
36
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
8
|
+
readonly name: "ConcurrentModificationException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>Specified input parameter value is invalid.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
20
|
+
readonly name: "InvalidArgumentException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>Application is not available for this operation.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
32
|
+
readonly name: "ResourceInUseException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>Specified application can't be found.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceNotFoundException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this operation. </p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
56
|
+
readonly name: "UnsupportedOperationException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class CodeValidationException extends __BaseException {
|
|
68
|
+
readonly name: "CodeValidationException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<CodeValidationException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>Exceeded the number of applications allowed.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class LimitExceededException extends __BaseException {
|
|
80
|
+
readonly name: "LimitExceededException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* <p>Application created with too many tags, or too many tags added to an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
92
|
+
readonly name: "TooManyTagsException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* <p>Discovery failed to get a record from the
|
|
101
|
+
* streaming source because of the Amazon Kinesis Streams
|
|
102
|
+
* ProvisionedThroughputExceededException. For more information,
|
|
103
|
+
* see <a href="https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html">GetRecords</a>
|
|
104
|
+
* in the Amazon Kinesis Streams API Reference.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
108
|
+
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
constructor(opts: __ExceptionOptionType<ResourceProvisionedThroughputExceededException, __BaseException>);
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* <p>The service is unavailable. Back off and retry the operation. </p>
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
120
|
+
readonly name: "ServiceUnavailableException";
|
|
121
|
+
readonly $fault: "server";
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* <p>Data format is not valid. Amazon Kinesis Analytics is not able to detect schema for
|
|
129
|
+
* the given streaming source.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
133
|
+
readonly name: "UnableToDetectSchemaException";
|
|
134
|
+
readonly $fault: "client";
|
|
135
|
+
RawInputRecords?: string[] | undefined;
|
|
136
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
140
|
+
constructor(opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>);
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* <p>User-provided application configuration is not valid.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
147
|
+
readonly name: "InvalidApplicationConfigurationException";
|
|
148
|
+
readonly $fault: "client";
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
constructor(opts: __ExceptionOptionType<InvalidApplicationConfigurationException, __BaseException>);
|
|
153
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
1
|
+
import { ApplicationStatus, InputStartingPosition, RecordFormatType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Provides a description of CloudWatch logging options, including the log stream
|
|
5
4
|
* Amazon Resource Name (ARN) and the role ARN.</p>
|
|
@@ -46,66 +45,6 @@ export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
|
46
45
|
*/
|
|
47
46
|
export interface AddApplicationCloudWatchLoggingOptionResponse {
|
|
48
47
|
}
|
|
49
|
-
/**
|
|
50
|
-
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
|
|
51
|
-
* @public
|
|
52
|
-
*/
|
|
53
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
54
|
-
readonly name: "ConcurrentModificationException";
|
|
55
|
-
readonly $fault: "client";
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
*/
|
|
59
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* <p>Specified input parameter value is invalid.</p>
|
|
63
|
-
* @public
|
|
64
|
-
*/
|
|
65
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
66
|
-
readonly name: "InvalidArgumentException";
|
|
67
|
-
readonly $fault: "client";
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* <p>Application is not available for this operation.</p>
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
78
|
-
readonly name: "ResourceInUseException";
|
|
79
|
-
readonly $fault: "client";
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* <p>Specified application can't be found.</p>
|
|
87
|
-
* @public
|
|
88
|
-
*/
|
|
89
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
90
|
-
readonly name: "ResourceNotFoundException";
|
|
91
|
-
readonly $fault: "client";
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
96
|
-
}
|
|
97
|
-
/**
|
|
98
|
-
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this operation. </p>
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
102
|
-
readonly name: "UnsupportedOperationException";
|
|
103
|
-
readonly $fault: "client";
|
|
104
|
-
/**
|
|
105
|
-
* @internal
|
|
106
|
-
*/
|
|
107
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
108
|
-
}
|
|
109
48
|
/**
|
|
110
49
|
* <p>Describes the number of in-application streams to create for a given
|
|
111
50
|
* streaming source. For information about parallelism,
|
|
@@ -242,18 +181,6 @@ export interface MappingParameters {
|
|
|
242
181
|
*/
|
|
243
182
|
CSVMappingParameters?: CSVMappingParameters | undefined;
|
|
244
183
|
}
|
|
245
|
-
/**
|
|
246
|
-
* @public
|
|
247
|
-
* @enum
|
|
248
|
-
*/
|
|
249
|
-
export declare const RecordFormatType: {
|
|
250
|
-
readonly CSV: "CSV";
|
|
251
|
-
readonly JSON: "JSON";
|
|
252
|
-
};
|
|
253
|
-
/**
|
|
254
|
-
* @public
|
|
255
|
-
*/
|
|
256
|
-
export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
257
184
|
/**
|
|
258
185
|
* <p>
|
|
259
186
|
* Describes the record format and relevant mapping information that
|
|
@@ -414,18 +341,6 @@ export interface AddApplicationInputRequest {
|
|
|
414
341
|
*/
|
|
415
342
|
export interface AddApplicationInputResponse {
|
|
416
343
|
}
|
|
417
|
-
/**
|
|
418
|
-
* <p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
|
|
419
|
-
* @public
|
|
420
|
-
*/
|
|
421
|
-
export declare class CodeValidationException extends __BaseException {
|
|
422
|
-
readonly name: "CodeValidationException";
|
|
423
|
-
readonly $fault: "client";
|
|
424
|
-
/**
|
|
425
|
-
* @internal
|
|
426
|
-
*/
|
|
427
|
-
constructor(opts: __ExceptionOptionType<CodeValidationException, __BaseException>);
|
|
428
|
-
}
|
|
429
344
|
/**
|
|
430
345
|
* @public
|
|
431
346
|
*/
|
|
@@ -688,22 +603,6 @@ export interface AddApplicationReferenceDataSourceRequest {
|
|
|
688
603
|
*/
|
|
689
604
|
export interface AddApplicationReferenceDataSourceResponse {
|
|
690
605
|
}
|
|
691
|
-
/**
|
|
692
|
-
* @public
|
|
693
|
-
* @enum
|
|
694
|
-
*/
|
|
695
|
-
export declare const ApplicationStatus: {
|
|
696
|
-
readonly DELETING: "DELETING";
|
|
697
|
-
readonly READY: "READY";
|
|
698
|
-
readonly RUNNING: "RUNNING";
|
|
699
|
-
readonly STARTING: "STARTING";
|
|
700
|
-
readonly STOPPING: "STOPPING";
|
|
701
|
-
readonly UPDATING: "UPDATING";
|
|
702
|
-
};
|
|
703
|
-
/**
|
|
704
|
-
* @public
|
|
705
|
-
*/
|
|
706
|
-
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
707
606
|
/**
|
|
708
607
|
* <p>Description of the CloudWatch logging option.</p>
|
|
709
608
|
* @public
|
|
@@ -755,19 +654,6 @@ export interface InputProcessingConfigurationDescription {
|
|
|
755
654
|
*/
|
|
756
655
|
InputLambdaProcessorDescription?: InputLambdaProcessorDescription | undefined;
|
|
757
656
|
}
|
|
758
|
-
/**
|
|
759
|
-
* @public
|
|
760
|
-
* @enum
|
|
761
|
-
*/
|
|
762
|
-
export declare const InputStartingPosition: {
|
|
763
|
-
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
764
|
-
readonly NOW: "NOW";
|
|
765
|
-
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
766
|
-
};
|
|
767
|
-
/**
|
|
768
|
-
* @public
|
|
769
|
-
*/
|
|
770
|
-
export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
771
657
|
/**
|
|
772
658
|
* <p>Describes the point at which the application reads from
|
|
773
659
|
* the streaming source.</p>
|
|
@@ -1616,30 +1502,6 @@ export interface CreateApplicationResponse {
|
|
|
1616
1502
|
*/
|
|
1617
1503
|
ApplicationSummary: ApplicationSummary | undefined;
|
|
1618
1504
|
}
|
|
1619
|
-
/**
|
|
1620
|
-
* <p>Exceeded the number of applications allowed.</p>
|
|
1621
|
-
* @public
|
|
1622
|
-
*/
|
|
1623
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1624
|
-
readonly name: "LimitExceededException";
|
|
1625
|
-
readonly $fault: "client";
|
|
1626
|
-
/**
|
|
1627
|
-
* @internal
|
|
1628
|
-
*/
|
|
1629
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1630
|
-
}
|
|
1631
|
-
/**
|
|
1632
|
-
* <p>Application created with too many tags, or too many tags added to an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.</p>
|
|
1633
|
-
* @public
|
|
1634
|
-
*/
|
|
1635
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1636
|
-
readonly name: "TooManyTagsException";
|
|
1637
|
-
readonly $fault: "client";
|
|
1638
|
-
/**
|
|
1639
|
-
* @internal
|
|
1640
|
-
*/
|
|
1641
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1642
|
-
}
|
|
1643
1505
|
/**
|
|
1644
1506
|
* <p></p>
|
|
1645
1507
|
* @public
|
|
@@ -1888,49 +1750,6 @@ export interface DiscoverInputSchemaResponse {
|
|
|
1888
1750
|
*/
|
|
1889
1751
|
RawInputRecords?: string[] | undefined;
|
|
1890
1752
|
}
|
|
1891
|
-
/**
|
|
1892
|
-
* <p>Discovery failed to get a record from the
|
|
1893
|
-
* streaming source because of the Amazon Kinesis Streams
|
|
1894
|
-
* ProvisionedThroughputExceededException. For more information,
|
|
1895
|
-
* see <a href="https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html">GetRecords</a>
|
|
1896
|
-
* in the Amazon Kinesis Streams API Reference.</p>
|
|
1897
|
-
* @public
|
|
1898
|
-
*/
|
|
1899
|
-
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
1900
|
-
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
1901
|
-
readonly $fault: "client";
|
|
1902
|
-
/**
|
|
1903
|
-
* @internal
|
|
1904
|
-
*/
|
|
1905
|
-
constructor(opts: __ExceptionOptionType<ResourceProvisionedThroughputExceededException, __BaseException>);
|
|
1906
|
-
}
|
|
1907
|
-
/**
|
|
1908
|
-
* <p>The service is unavailable. Back off and retry the operation. </p>
|
|
1909
|
-
* @public
|
|
1910
|
-
*/
|
|
1911
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
1912
|
-
readonly name: "ServiceUnavailableException";
|
|
1913
|
-
readonly $fault: "server";
|
|
1914
|
-
/**
|
|
1915
|
-
* @internal
|
|
1916
|
-
*/
|
|
1917
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
1918
|
-
}
|
|
1919
|
-
/**
|
|
1920
|
-
* <p>Data format is not valid. Amazon Kinesis Analytics is not able to detect schema for
|
|
1921
|
-
* the given streaming source.</p>
|
|
1922
|
-
* @public
|
|
1923
|
-
*/
|
|
1924
|
-
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
1925
|
-
readonly name: "UnableToDetectSchemaException";
|
|
1926
|
-
readonly $fault: "client";
|
|
1927
|
-
RawInputRecords?: string[] | undefined;
|
|
1928
|
-
ProcessedInputRecords?: string[] | undefined;
|
|
1929
|
-
/**
|
|
1930
|
-
* @internal
|
|
1931
|
-
*/
|
|
1932
|
-
constructor(opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>);
|
|
1933
|
-
}
|
|
1934
1753
|
/**
|
|
1935
1754
|
* <p>When you start your application,
|
|
1936
1755
|
* you provide this configuration, which identifies the input source and the point
|
|
@@ -1951,18 +1770,6 @@ export interface InputConfiguration {
|
|
|
1951
1770
|
*/
|
|
1952
1771
|
InputStartingPositionConfiguration: InputStartingPositionConfiguration | undefined;
|
|
1953
1772
|
}
|
|
1954
|
-
/**
|
|
1955
|
-
* <p>User-provided application configuration is not valid.</p>
|
|
1956
|
-
* @public
|
|
1957
|
-
*/
|
|
1958
|
-
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
1959
|
-
readonly name: "InvalidApplicationConfigurationException";
|
|
1960
|
-
readonly $fault: "client";
|
|
1961
|
-
/**
|
|
1962
|
-
* @internal
|
|
1963
|
-
*/
|
|
1964
|
-
constructor(opts: __ExceptionOptionType<InvalidApplicationConfigurationException, __BaseException>);
|
|
1965
|
-
}
|
|
1966
1773
|
/**
|
|
1967
1774
|
* <p></p>
|
|
1968
1775
|
* @public
|
|
@@ -4,5 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { KinesisAnalyticsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
-
export * from "./models";
|
|
7
|
+
export * from "./models/enums";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
8
10
|
export { KinesisAnalyticsServiceException } from "./models/KinesisAnalyticsServiceException";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare const RecordFormatType: {
|
|
2
|
+
readonly CSV: "CSV";
|
|
3
|
+
readonly JSON: "JSON";
|
|
4
|
+
};
|
|
5
|
+
export type RecordFormatType =
|
|
6
|
+
(typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
7
|
+
export declare const ApplicationStatus: {
|
|
8
|
+
readonly DELETING: "DELETING";
|
|
9
|
+
readonly READY: "READY";
|
|
10
|
+
readonly RUNNING: "RUNNING";
|
|
11
|
+
readonly STARTING: "STARTING";
|
|
12
|
+
readonly STOPPING: "STOPPING";
|
|
13
|
+
readonly UPDATING: "UPDATING";
|
|
14
|
+
};
|
|
15
|
+
export type ApplicationStatus =
|
|
16
|
+
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
17
|
+
export declare const InputStartingPosition: {
|
|
18
|
+
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
19
|
+
readonly NOW: "NOW";
|
|
20
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
21
|
+
};
|
|
22
|
+
export type InputStartingPosition =
|
|
23
|
+
(typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
3
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
4
|
+
readonly name: "ConcurrentModificationException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<
|
|
8
|
+
ConcurrentModificationException,
|
|
9
|
+
__BaseException
|
|
10
|
+
>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
14
|
+
readonly name: "InvalidArgumentException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
21
|
+
readonly name: "ResourceInUseException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
28
|
+
readonly name: "ResourceNotFoundException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
35
|
+
readonly name: "UnsupportedOperationException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class CodeValidationException extends __BaseException {
|
|
42
|
+
readonly name: "CodeValidationException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<CodeValidationException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class LimitExceededException extends __BaseException {
|
|
49
|
+
readonly name: "LimitExceededException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
56
|
+
readonly name: "TooManyTagsException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
constructor(
|
|
59
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
63
|
+
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
constructor(
|
|
66
|
+
opts: __ExceptionOptionType<
|
|
67
|
+
ResourceProvisionedThroughputExceededException,
|
|
68
|
+
__BaseException
|
|
69
|
+
>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
73
|
+
readonly name: "ServiceUnavailableException";
|
|
74
|
+
readonly $fault: "server";
|
|
75
|
+
constructor(
|
|
76
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
80
|
+
readonly name: "UnableToDetectSchemaException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
RawInputRecords?: string[] | undefined;
|
|
83
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
89
|
+
readonly name: "InvalidApplicationConfigurationException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<
|
|
93
|
+
InvalidApplicationConfigurationException,
|
|
94
|
+
__BaseException
|
|
95
|
+
>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ApplicationStatus,
|
|
3
|
+
InputStartingPosition,
|
|
4
|
+
RecordFormatType,
|
|
5
|
+
} from "./enums";
|
|
3
6
|
export interface CloudWatchLoggingOption {
|
|
4
7
|
LogStreamARN: string | undefined;
|
|
5
8
|
RoleARN: string | undefined;
|
|
@@ -10,44 +13,6 @@ export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
|
10
13
|
CloudWatchLoggingOption: CloudWatchLoggingOption | undefined;
|
|
11
14
|
}
|
|
12
15
|
export interface AddApplicationCloudWatchLoggingOptionResponse {}
|
|
13
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
14
|
-
readonly name: "ConcurrentModificationException";
|
|
15
|
-
readonly $fault: "client";
|
|
16
|
-
constructor(
|
|
17
|
-
opts: __ExceptionOptionType<
|
|
18
|
-
ConcurrentModificationException,
|
|
19
|
-
__BaseException
|
|
20
|
-
>
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
24
|
-
readonly name: "InvalidArgumentException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
31
|
-
readonly name: "ResourceInUseException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(
|
|
34
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
38
|
-
readonly name: "ResourceNotFoundException";
|
|
39
|
-
readonly $fault: "client";
|
|
40
|
-
constructor(
|
|
41
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
42
|
-
);
|
|
43
|
-
}
|
|
44
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
45
|
-
readonly name: "UnsupportedOperationException";
|
|
46
|
-
readonly $fault: "client";
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
16
|
export interface InputParallelism {
|
|
52
17
|
Count?: number | undefined;
|
|
53
18
|
}
|
|
@@ -74,12 +39,6 @@ export interface MappingParameters {
|
|
|
74
39
|
JSONMappingParameters?: JSONMappingParameters | undefined;
|
|
75
40
|
CSVMappingParameters?: CSVMappingParameters | undefined;
|
|
76
41
|
}
|
|
77
|
-
export declare const RecordFormatType: {
|
|
78
|
-
readonly CSV: "CSV";
|
|
79
|
-
readonly JSON: "JSON";
|
|
80
|
-
};
|
|
81
|
-
export type RecordFormatType =
|
|
82
|
-
(typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
83
42
|
export interface RecordFormat {
|
|
84
43
|
RecordFormatType: RecordFormatType | undefined;
|
|
85
44
|
MappingParameters?: MappingParameters | undefined;
|
|
@@ -111,13 +70,6 @@ export interface AddApplicationInputRequest {
|
|
|
111
70
|
Input: Input | undefined;
|
|
112
71
|
}
|
|
113
72
|
export interface AddApplicationInputResponse {}
|
|
114
|
-
export declare class CodeValidationException extends __BaseException {
|
|
115
|
-
readonly name: "CodeValidationException";
|
|
116
|
-
readonly $fault: "client";
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<CodeValidationException, __BaseException>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
73
|
export interface AddApplicationInputProcessingConfigurationRequest {
|
|
122
74
|
ApplicationName: string | undefined;
|
|
123
75
|
CurrentApplicationVersionId: number | undefined;
|
|
@@ -169,16 +121,6 @@ export interface AddApplicationReferenceDataSourceRequest {
|
|
|
169
121
|
ReferenceDataSource: ReferenceDataSource | undefined;
|
|
170
122
|
}
|
|
171
123
|
export interface AddApplicationReferenceDataSourceResponse {}
|
|
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];
|
|
182
124
|
export interface CloudWatchLoggingOptionDescription {
|
|
183
125
|
CloudWatchLoggingOptionId?: string | undefined;
|
|
184
126
|
LogStreamARN: string | undefined;
|
|
@@ -191,13 +133,6 @@ export interface InputLambdaProcessorDescription {
|
|
|
191
133
|
export interface InputProcessingConfigurationDescription {
|
|
192
134
|
InputLambdaProcessorDescription?: InputLambdaProcessorDescription | undefined;
|
|
193
135
|
}
|
|
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];
|
|
201
136
|
export interface InputStartingPositionConfiguration {
|
|
202
137
|
InputStartingPosition?: InputStartingPosition | undefined;
|
|
203
138
|
}
|
|
@@ -375,20 +310,6 @@ export interface CreateApplicationRequest {
|
|
|
375
310
|
export interface CreateApplicationResponse {
|
|
376
311
|
ApplicationSummary: ApplicationSummary | undefined;
|
|
377
312
|
}
|
|
378
|
-
export declare class LimitExceededException extends __BaseException {
|
|
379
|
-
readonly name: "LimitExceededException";
|
|
380
|
-
readonly $fault: "client";
|
|
381
|
-
constructor(
|
|
382
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
383
|
-
);
|
|
384
|
-
}
|
|
385
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
386
|
-
readonly name: "TooManyTagsException";
|
|
387
|
-
readonly $fault: "client";
|
|
388
|
-
constructor(
|
|
389
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
390
|
-
);
|
|
391
|
-
}
|
|
392
313
|
export interface DeleteApplicationRequest {
|
|
393
314
|
ApplicationName: string | undefined;
|
|
394
315
|
CreateTimestamp: Date | undefined;
|
|
@@ -444,48 +365,12 @@ export interface DiscoverInputSchemaResponse {
|
|
|
444
365
|
ProcessedInputRecords?: string[] | undefined;
|
|
445
366
|
RawInputRecords?: string[] | undefined;
|
|
446
367
|
}
|
|
447
|
-
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
448
|
-
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
449
|
-
readonly $fault: "client";
|
|
450
|
-
constructor(
|
|
451
|
-
opts: __ExceptionOptionType<
|
|
452
|
-
ResourceProvisionedThroughputExceededException,
|
|
453
|
-
__BaseException
|
|
454
|
-
>
|
|
455
|
-
);
|
|
456
|
-
}
|
|
457
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
458
|
-
readonly name: "ServiceUnavailableException";
|
|
459
|
-
readonly $fault: "server";
|
|
460
|
-
constructor(
|
|
461
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
462
|
-
);
|
|
463
|
-
}
|
|
464
|
-
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
465
|
-
readonly name: "UnableToDetectSchemaException";
|
|
466
|
-
readonly $fault: "client";
|
|
467
|
-
RawInputRecords?: string[] | undefined;
|
|
468
|
-
ProcessedInputRecords?: string[] | undefined;
|
|
469
|
-
constructor(
|
|
470
|
-
opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>
|
|
471
|
-
);
|
|
472
|
-
}
|
|
473
368
|
export interface InputConfiguration {
|
|
474
369
|
Id: string | undefined;
|
|
475
370
|
InputStartingPositionConfiguration:
|
|
476
371
|
| InputStartingPositionConfiguration
|
|
477
372
|
| undefined;
|
|
478
373
|
}
|
|
479
|
-
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
480
|
-
readonly name: "InvalidApplicationConfigurationException";
|
|
481
|
-
readonly $fault: "client";
|
|
482
|
-
constructor(
|
|
483
|
-
opts: __ExceptionOptionType<
|
|
484
|
-
InvalidApplicationConfigurationException,
|
|
485
|
-
__BaseException
|
|
486
|
-
>
|
|
487
|
-
);
|
|
488
|
-
}
|
|
489
374
|
export interface ListApplicationsRequest {
|
|
490
375
|
Limit?: number | undefined;
|
|
491
376
|
ExclusiveStartApplicationName?: string | undefined;
|
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.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kinesis-analytics",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|