@aws-sdk/client-kinesis-analytics-v2 3.1075.0 → 3.1076.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 +2294 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/KinesisAnalyticsV2ServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -185
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1887
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultKinesisAnalyticsV2HttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "kinesisanalytics",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultKinesisAnalyticsV2HttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1991 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://kinesisanalytics-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://kinesisanalytics-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://kinesisanalytics.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://kinesisanalytics.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class KinesisAnalyticsV2ServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, KinesisAnalyticsV2ServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class ConcurrentModificationException extends KinesisAnalyticsV2ServiceException {
|
|
140
|
+
name = "ConcurrentModificationException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "ConcurrentModificationException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidApplicationConfigurationException extends KinesisAnalyticsV2ServiceException {
|
|
154
|
+
name = "InvalidApplicationConfigurationException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidApplicationConfigurationException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InvalidArgumentException extends KinesisAnalyticsV2ServiceException {
|
|
168
|
+
name = "InvalidArgumentException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InvalidArgumentException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class InvalidRequestException extends KinesisAnalyticsV2ServiceException {
|
|
182
|
+
name = "InvalidRequestException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InvalidRequestException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ResourceInUseException extends KinesisAnalyticsV2ServiceException {
|
|
196
|
+
name = "ResourceInUseException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ResourceInUseException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class ResourceNotFoundException extends KinesisAnalyticsV2ServiceException {
|
|
210
|
+
name = "ResourceNotFoundException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "ResourceNotFoundException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class CodeValidationException extends KinesisAnalyticsV2ServiceException {
|
|
224
|
+
name = "CodeValidationException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "CodeValidationException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class LimitExceededException extends KinesisAnalyticsV2ServiceException {
|
|
238
|
+
name = "LimitExceededException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "LimitExceededException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class TooManyTagsException extends KinesisAnalyticsV2ServiceException {
|
|
252
|
+
name = "TooManyTagsException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "TooManyTagsException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class UnsupportedOperationException extends KinesisAnalyticsV2ServiceException {
|
|
264
|
+
name = "UnsupportedOperationException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
Message;
|
|
267
|
+
constructor(opts) {
|
|
268
|
+
super({
|
|
269
|
+
name: "UnsupportedOperationException",
|
|
270
|
+
$fault: "client",
|
|
271
|
+
...opts,
|
|
272
|
+
});
|
|
273
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
274
|
+
this.Message = opts.Message;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsV2ServiceException {
|
|
278
|
+
name = "ResourceProvisionedThroughputExceededException";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
Message;
|
|
281
|
+
constructor(opts) {
|
|
282
|
+
super({
|
|
283
|
+
name: "ResourceProvisionedThroughputExceededException",
|
|
284
|
+
$fault: "client",
|
|
285
|
+
...opts,
|
|
286
|
+
});
|
|
287
|
+
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
288
|
+
this.Message = opts.Message;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
class ServiceUnavailableException extends KinesisAnalyticsV2ServiceException {
|
|
292
|
+
name = "ServiceUnavailableException";
|
|
293
|
+
$fault = "server";
|
|
294
|
+
Message;
|
|
295
|
+
constructor(opts) {
|
|
296
|
+
super({
|
|
297
|
+
name: "ServiceUnavailableException",
|
|
298
|
+
$fault: "server",
|
|
299
|
+
...opts,
|
|
300
|
+
});
|
|
301
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
302
|
+
this.Message = opts.Message;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
class UnableToDetectSchemaException extends KinesisAnalyticsV2ServiceException {
|
|
306
|
+
name = "UnableToDetectSchemaException";
|
|
307
|
+
$fault = "client";
|
|
308
|
+
Message;
|
|
309
|
+
RawInputRecords;
|
|
310
|
+
ProcessedInputRecords;
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "UnableToDetectSchemaException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
318
|
+
this.Message = opts.Message;
|
|
319
|
+
this.RawInputRecords = opts.RawInputRecords;
|
|
320
|
+
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
const _AACWLO = "AddApplicationCloudWatchLoggingOption";
|
|
325
|
+
const _AACWLOR = "AddApplicationCloudWatchLoggingOptionRequest";
|
|
326
|
+
const _AACWLORd = "AddApplicationCloudWatchLoggingOptionResponse";
|
|
327
|
+
const _AAI = "AddApplicationInput";
|
|
328
|
+
const _AAIPC = "AddApplicationInputProcessingConfiguration";
|
|
329
|
+
const _AAIPCR = "AddApplicationInputProcessingConfigurationRequest";
|
|
330
|
+
const _AAIPCRd = "AddApplicationInputProcessingConfigurationResponse";
|
|
331
|
+
const _AAIR = "AddApplicationInputRequest";
|
|
332
|
+
const _AAIRd = "AddApplicationInputResponse";
|
|
333
|
+
const _AAO = "AddApplicationOutput";
|
|
334
|
+
const _AAOR = "AddApplicationOutputRequest";
|
|
335
|
+
const _AAORd = "AddApplicationOutputResponse";
|
|
336
|
+
const _AARDS = "AddApplicationReferenceDataSource";
|
|
337
|
+
const _AARDSR = "AddApplicationReferenceDataSourceRequest";
|
|
338
|
+
const _AARDSRd = "AddApplicationReferenceDataSourceResponse";
|
|
339
|
+
const _AARN = "ApplicationARN";
|
|
340
|
+
const _AAVC = "AddApplicationVpcConfiguration";
|
|
341
|
+
const _AAVCR = "AddApplicationVpcConfigurationRequest";
|
|
342
|
+
const _AAVCRd = "AddApplicationVpcConfigurationResponse";
|
|
343
|
+
const _AC = "ApplicationConfiguration";
|
|
344
|
+
const _ACC = "ApplicationCodeConfiguration";
|
|
345
|
+
const _ACCD = "ApplicationCodeConfigurationDescription";
|
|
346
|
+
const _ACCU = "ApplicationCodeConfigurationUpdate";
|
|
347
|
+
const _ACD = "ApplicationConfigurationDescription";
|
|
348
|
+
const _ACU = "ApplicationConfigurationUpdate";
|
|
349
|
+
const _AD = "ApplicationDetail";
|
|
350
|
+
const _ADp = "ApplicationDescription";
|
|
351
|
+
const _AEC = "ApplicationEncryptionConfiguration";
|
|
352
|
+
const _AECD = "ApplicationEncryptionConfigurationDescription";
|
|
353
|
+
const _AECU = "ApplicationEncryptionConfigurationUpdate";
|
|
354
|
+
const _AI = "ArtifactId";
|
|
355
|
+
const _AM = "ApplicationMode";
|
|
356
|
+
const _AMCD = "ApplicationMaintenanceConfigurationDescription";
|
|
357
|
+
const _AMCU = "ApplicationMaintenanceConfigurationUpdate";
|
|
358
|
+
const _AMWET = "ApplicationMaintenanceWindowEndTime";
|
|
359
|
+
const _AMWST = "ApplicationMaintenanceWindowStartTime";
|
|
360
|
+
const _AMWSTU = "ApplicationMaintenanceWindowStartTimeUpdate";
|
|
361
|
+
const _AN = "ApplicationName";
|
|
362
|
+
const _ANRS = "AllowNonRestoredState";
|
|
363
|
+
const _AOI = "ApplicationOperationInfo";
|
|
364
|
+
const _AOID = "ApplicationOperationInfoDetails";
|
|
365
|
+
const _AOIL = "ApplicationOperationInfoList";
|
|
366
|
+
const _ARC = "ApplicationRestoreConfiguration";
|
|
367
|
+
const _ARCD = "ApplicationRestoreConfigurationDescription";
|
|
368
|
+
const _ART = "ApplicationRestoreType";
|
|
369
|
+
const _AS = "ApplicationStatus";
|
|
370
|
+
const _ASC = "ApplicationSnapshotConfiguration";
|
|
371
|
+
const _ASCD = "ApplicationSnapshotConfigurationDescription";
|
|
372
|
+
const _ASCU = "ApplicationSnapshotConfigurationUpdate";
|
|
373
|
+
const _ASE = "AutoScalingEnabled";
|
|
374
|
+
const _ASEU = "AutoScalingEnabledUpdate";
|
|
375
|
+
const _ASRC = "ApplicationSystemRollbackConfiguration";
|
|
376
|
+
const _ASRCD = "ApplicationSystemRollbackConfigurationDescription";
|
|
377
|
+
const _ASRCU = "ApplicationSystemRollbackConfigurationUpdate";
|
|
378
|
+
const _ASp = "ApplicationSummary";
|
|
379
|
+
const _ASpp = "ApplicationSummaries";
|
|
380
|
+
const _AT = "ArtifactType";
|
|
381
|
+
const _AU = "AuthorizedUrl";
|
|
382
|
+
const _AVCD = "ApplicationVersionChangeDetails";
|
|
383
|
+
const _AVCT = "ApplicationVersionCreateTimestamp";
|
|
384
|
+
const _AVD = "ApplicationVersionDetail";
|
|
385
|
+
const _AVI = "ApplicationVersionId";
|
|
386
|
+
const _AVRBF = "ApplicationVersionRolledBackFrom";
|
|
387
|
+
const _AVRBT = "ApplicationVersionRolledBackTo";
|
|
388
|
+
const _AVS = "ApplicationVersionSummary";
|
|
389
|
+
const _AVSp = "ApplicationVersionSummaries";
|
|
390
|
+
const _AVUF = "ApplicationVersionUpdatedFrom";
|
|
391
|
+
const _AVUT = "ApplicationVersionUpdatedTo";
|
|
392
|
+
const _BARN = "BucketARN";
|
|
393
|
+
const _BARNU = "BucketARNUpdate";
|
|
394
|
+
const _BP = "BasePath";
|
|
395
|
+
const _BPU = "BasePathUpdate";
|
|
396
|
+
const _C = "Count";
|
|
397
|
+
const _CA = "CreateApplication";
|
|
398
|
+
const _CAC = "CustomArtifactConfiguration";
|
|
399
|
+
const _CACD = "CustomArtifactConfigurationDescription";
|
|
400
|
+
const _CACDL = "CustomArtifactsConfigurationDescriptionList";
|
|
401
|
+
const _CACDu = "CustomArtifactsConfigurationDescription";
|
|
402
|
+
const _CACL = "CustomArtifactsConfigurationList";
|
|
403
|
+
const _CACU = "CustomArtifactsConfigurationUpdate";
|
|
404
|
+
const _CACu = "CustomArtifactsConfiguration";
|
|
405
|
+
const _CAPU = "CreateApplicationPresignedUrl";
|
|
406
|
+
const _CAPUR = "CreateApplicationPresignedUrlRequest";
|
|
407
|
+
const _CAPURr = "CreateApplicationPresignedUrlResponse";
|
|
408
|
+
const _CAR = "CreateApplicationRequest";
|
|
409
|
+
const _CARr = "CreateApplicationResponse";
|
|
410
|
+
const _CAS = "CreateApplicationSnapshot";
|
|
411
|
+
const _CASR = "CreateApplicationSnapshotRequest";
|
|
412
|
+
const _CASRr = "CreateApplicationSnapshotResponse";
|
|
413
|
+
const _CAVI = "CurrentApplicationVersionId";
|
|
414
|
+
const _CC = "CodeContent";
|
|
415
|
+
const _CCD = "CodeContentDescription";
|
|
416
|
+
const _CCDa = "CatalogConfigurationDescription";
|
|
417
|
+
const _CCDh = "CheckpointConfigurationDescription";
|
|
418
|
+
const _CCT = "CodeContentType";
|
|
419
|
+
const _CCTU = "CodeContentTypeUpdate";
|
|
420
|
+
const _CCU = "CodeContentUpdate";
|
|
421
|
+
const _CCUa = "CatalogConfigurationUpdate";
|
|
422
|
+
const _CCUh = "CheckpointConfigurationUpdate";
|
|
423
|
+
const _CCa = "CatalogConfiguration";
|
|
424
|
+
const _CCh = "CheckpointConfiguration";
|
|
425
|
+
const _CE = "CheckpointingEnabled";
|
|
426
|
+
const _CEU = "CheckpointingEnabledUpdate";
|
|
427
|
+
const _CI = "CheckpointInterval";
|
|
428
|
+
const _CIU = "CheckpointIntervalUpdate";
|
|
429
|
+
const _CMD = "CodeMD5";
|
|
430
|
+
const _CME = "ConcurrentModificationException";
|
|
431
|
+
const _CP = "CurrentParallelism";
|
|
432
|
+
const _CS = "CodeSize";
|
|
433
|
+
const _CSVMP = "CSVMappingParameters";
|
|
434
|
+
const _CT = "ConditionalToken";
|
|
435
|
+
const _CTU = "ConfigurationTypeUpdate";
|
|
436
|
+
const _CTo = "ConfigurationType";
|
|
437
|
+
const _CTr = "CreateTimestamp";
|
|
438
|
+
const _CU = "CountUpdate";
|
|
439
|
+
const _CVE = "CodeValidationException";
|
|
440
|
+
const _CWLO = "CloudWatchLoggingOption";
|
|
441
|
+
const _CWLOD = "CloudWatchLoggingOptionDescriptions";
|
|
442
|
+
const _CWLODl = "CloudWatchLoggingOptionDescription";
|
|
443
|
+
const _CWLOI = "CloudWatchLoggingOptionId";
|
|
444
|
+
const _CWLOU = "CloudWatchLoggingOptionUpdate";
|
|
445
|
+
const _CWLOUl = "CloudWatchLoggingOptionUpdates";
|
|
446
|
+
const _CWLOl = "CloudWatchLoggingOptions";
|
|
447
|
+
const _DA = "DeleteApplication";
|
|
448
|
+
const _DAAC = "DeployAsApplicationConfiguration";
|
|
449
|
+
const _DAACD = "DeployAsApplicationConfigurationDescription";
|
|
450
|
+
const _DAACU = "DeployAsApplicationConfigurationUpdate";
|
|
451
|
+
const _DACWLO = "DeleteApplicationCloudWatchLoggingOption";
|
|
452
|
+
const _DACWLOR = "DeleteApplicationCloudWatchLoggingOptionRequest";
|
|
453
|
+
const _DACWLORe = "DeleteApplicationCloudWatchLoggingOptionResponse";
|
|
454
|
+
const _DAIPC = "DeleteApplicationInputProcessingConfiguration";
|
|
455
|
+
const _DAIPCR = "DeleteApplicationInputProcessingConfigurationRequest";
|
|
456
|
+
const _DAIPCRe = "DeleteApplicationInputProcessingConfigurationResponse";
|
|
457
|
+
const _DAO = "DeleteApplicationOutput";
|
|
458
|
+
const _DAOR = "DeleteApplicationOutputRequest";
|
|
459
|
+
const _DAORe = "DeleteApplicationOutputResponse";
|
|
460
|
+
const _DAORes = "DescribeApplicationOperationRequest";
|
|
461
|
+
const _DAOResc = "DescribeApplicationOperationResponse";
|
|
462
|
+
const _DAOe = "DescribeApplicationOperation";
|
|
463
|
+
const _DAR = "DeleteApplicationRequest";
|
|
464
|
+
const _DARDS = "DeleteApplicationReferenceDataSource";
|
|
465
|
+
const _DARDSR = "DeleteApplicationReferenceDataSourceRequest";
|
|
466
|
+
const _DARDSRe = "DeleteApplicationReferenceDataSourceResponse";
|
|
467
|
+
const _DARN = "DatabaseARN";
|
|
468
|
+
const _DARNU = "DatabaseARNUpdate";
|
|
469
|
+
const _DARe = "DeleteApplicationResponse";
|
|
470
|
+
const _DARes = "DescribeApplicationRequest";
|
|
471
|
+
const _DAResc = "DescribeApplicationResponse";
|
|
472
|
+
const _DAS = "DeleteApplicationSnapshot";
|
|
473
|
+
const _DASR = "DeleteApplicationSnapshotRequest";
|
|
474
|
+
const _DASRe = "DeleteApplicationSnapshotResponse";
|
|
475
|
+
const _DASRes = "DescribeApplicationSnapshotRequest";
|
|
476
|
+
const _DASResc = "DescribeApplicationSnapshotResponse";
|
|
477
|
+
const _DASe = "DescribeApplicationSnapshot";
|
|
478
|
+
const _DAV = "DescribeApplicationVersion";
|
|
479
|
+
const _DAVC = "DeleteApplicationVpcConfiguration";
|
|
480
|
+
const _DAVCR = "DeleteApplicationVpcConfigurationRequest";
|
|
481
|
+
const _DAVCRe = "DeleteApplicationVpcConfigurationResponse";
|
|
482
|
+
const _DAVR = "DescribeApplicationVersionRequest";
|
|
483
|
+
const _DAVRe = "DescribeApplicationVersionResponse";
|
|
484
|
+
const _DAe = "DescribeApplication";
|
|
485
|
+
const _DIS = "DiscoverInputSchema";
|
|
486
|
+
const _DISR = "DiscoverInputSchemaRequest";
|
|
487
|
+
const _DISRi = "DiscoverInputSchemaResponse";
|
|
488
|
+
const _DS = "DestinationSchema";
|
|
489
|
+
const _DSU = "DestinationSchemaUpdate";
|
|
490
|
+
const _EI = "ErrorInfo";
|
|
491
|
+
const _EP = "EnvironmentProperties";
|
|
492
|
+
const _EPD = "EnvironmentPropertyDescriptions";
|
|
493
|
+
const _EPU = "EnvironmentPropertyUpdates";
|
|
494
|
+
const _ES = "ErrorString";
|
|
495
|
+
const _ET = "EndTime";
|
|
496
|
+
const _F = "Force";
|
|
497
|
+
const _FAC = "FlinkApplicationConfiguration";
|
|
498
|
+
const _FACD = "FlinkApplicationConfigurationDescription";
|
|
499
|
+
const _FACU = "FlinkApplicationConfigurationUpdate";
|
|
500
|
+
const _FK = "FileKey";
|
|
501
|
+
const _FKU = "FileKeyUpdate";
|
|
502
|
+
const _FRC = "FlinkRunConfiguration";
|
|
503
|
+
const _FRCD = "FlinkRunConfigurationDescription";
|
|
504
|
+
const _GDCC = "GlueDataCatalogConfiguration";
|
|
505
|
+
const _GDCCD = "GlueDataCatalogConfigurationDescription";
|
|
506
|
+
const _GDCCU = "GlueDataCatalogConfigurationUpdate";
|
|
507
|
+
const _GI = "GroupId";
|
|
508
|
+
const _I = "Input";
|
|
509
|
+
const _IACE = "InvalidApplicationConfigurationException";
|
|
510
|
+
const _IAD = "IncludeAdditionalDetails";
|
|
511
|
+
const _IAE = "InvalidArgumentException";
|
|
512
|
+
const _IASN = "InAppStreamNames";
|
|
513
|
+
const _ID = "InputDescriptions";
|
|
514
|
+
const _IDn = "InputDescription";
|
|
515
|
+
const _II = "InputId";
|
|
516
|
+
const _ILP = "InputLambdaProcessor";
|
|
517
|
+
const _ILPD = "InputLambdaProcessorDescription";
|
|
518
|
+
const _ILPU = "InputLambdaProcessorUpdate";
|
|
519
|
+
const _IP = "InputParallelism";
|
|
520
|
+
const _IPC = "InputProcessingConfiguration";
|
|
521
|
+
const _IPCD = "InputProcessingConfigurationDescription";
|
|
522
|
+
const _IPCU = "InputProcessingConfigurationUpdate";
|
|
523
|
+
const _IPU = "InputParallelismUpdate";
|
|
524
|
+
const _IRE = "InvalidRequestException";
|
|
525
|
+
const _IS = "InputSchema";
|
|
526
|
+
const _ISP = "InputStartingPosition";
|
|
527
|
+
const _ISPC = "InputStartingPositionConfiguration";
|
|
528
|
+
const _ISU = "InputSchemaUpdate";
|
|
529
|
+
const _IU = "InputUpdate";
|
|
530
|
+
const _IUn = "InputUpdates";
|
|
531
|
+
const _In = "Inputs";
|
|
532
|
+
const _JPD = "JobPlanDescription";
|
|
533
|
+
const _JSONMP = "JSONMappingParameters";
|
|
534
|
+
const _K = "Key";
|
|
535
|
+
const _KFI = "KinesisFirehoseInput";
|
|
536
|
+
const _KFID = "KinesisFirehoseInputDescription";
|
|
537
|
+
const _KFIU = "KinesisFirehoseInputUpdate";
|
|
538
|
+
const _KFO = "KinesisFirehoseOutput";
|
|
539
|
+
const _KFOD = "KinesisFirehoseOutputDescription";
|
|
540
|
+
const _KFOU = "KinesisFirehoseOutputUpdate";
|
|
541
|
+
const _KI = "KeyId";
|
|
542
|
+
const _KIU = "KeyIdUpdate";
|
|
543
|
+
const _KSI = "KinesisStreamsInput";
|
|
544
|
+
const _KSID = "KinesisStreamsInputDescription";
|
|
545
|
+
const _KSIU = "KinesisStreamsInputUpdate";
|
|
546
|
+
const _KSO = "KinesisStreamsOutput";
|
|
547
|
+
const _KSOD = "KinesisStreamsOutputDescription";
|
|
548
|
+
const _KSOU = "KinesisStreamsOutputUpdate";
|
|
549
|
+
const _KT = "KeyType";
|
|
550
|
+
const _KTU = "KeyTypeUpdate";
|
|
551
|
+
const _L = "Limit";
|
|
552
|
+
const _LA = "ListApplications";
|
|
553
|
+
const _LAO = "ListApplicationOperations";
|
|
554
|
+
const _LAOR = "ListApplicationOperationsRequest";
|
|
555
|
+
const _LAORi = "ListApplicationOperationsResponse";
|
|
556
|
+
const _LAR = "ListApplicationsRequest";
|
|
557
|
+
const _LARi = "ListApplicationsResponse";
|
|
558
|
+
const _LAS = "ListApplicationSnapshots";
|
|
559
|
+
const _LASR = "ListApplicationSnapshotsRequest";
|
|
560
|
+
const _LASRi = "ListApplicationSnapshotsResponse";
|
|
561
|
+
const _LAV = "ListApplicationVersions";
|
|
562
|
+
const _LAVR = "ListApplicationVersionsRequest";
|
|
563
|
+
const _LAVRi = "ListApplicationVersionsResponse";
|
|
564
|
+
const _LEE = "LimitExceededException";
|
|
565
|
+
const _LL = "LogLevel";
|
|
566
|
+
const _LLU = "LogLevelUpdate";
|
|
567
|
+
const _LO = "LambdaOutput";
|
|
568
|
+
const _LOD = "LambdaOutputDescription";
|
|
569
|
+
const _LOU = "LambdaOutputUpdate";
|
|
570
|
+
const _LSARN = "LogStreamARN";
|
|
571
|
+
const _LSARNU = "LogStreamARNUpdate";
|
|
572
|
+
const _LTFR = "ListTagsForResource";
|
|
573
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
574
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
575
|
+
const _LUT = "LastUpdateTimestamp";
|
|
576
|
+
const _M = "Message";
|
|
577
|
+
const _MC = "MonitoringConfiguration";
|
|
578
|
+
const _MCD = "MonitoringConfigurationDescription";
|
|
579
|
+
const _MCU = "MonitoringConfigurationUpdate";
|
|
580
|
+
const _ML = "MetricsLevel";
|
|
581
|
+
const _MLU = "MetricsLevelUpdate";
|
|
582
|
+
const _MP = "MappingParameters";
|
|
583
|
+
const _MPBC = "MinPauseBetweenCheckpoints";
|
|
584
|
+
const _MPBCU = "MinPauseBetweenCheckpointsUpdate";
|
|
585
|
+
const _MR = "MavenReference";
|
|
586
|
+
const _MRD = "MavenReferenceDescription";
|
|
587
|
+
const _Ma = "Mapping";
|
|
588
|
+
const _N = "Name";
|
|
589
|
+
const _NP = "NamePrefix";
|
|
590
|
+
const _NPU = "NamePrefixUpdate";
|
|
591
|
+
const _NT = "NextToken";
|
|
592
|
+
const _NU = "NameUpdate";
|
|
593
|
+
const _O = "Output";
|
|
594
|
+
const _OD = "OutputDescriptions";
|
|
595
|
+
const _ODu = "OutputDescription";
|
|
596
|
+
const _OFD = "OperationFailureDetails";
|
|
597
|
+
const _OI = "OperationId";
|
|
598
|
+
const _OIu = "OutputId";
|
|
599
|
+
const _OS = "OperationStatus";
|
|
600
|
+
const _OU = "OutputUpdate";
|
|
601
|
+
const _OUu = "OutputUpdates";
|
|
602
|
+
const _OV = "ObjectVersion";
|
|
603
|
+
const _OVU = "ObjectVersionUpdate";
|
|
604
|
+
const _Op = "Operation";
|
|
605
|
+
const _Ou = "Outputs";
|
|
606
|
+
const _P = "Parallelism";
|
|
607
|
+
const _PC = "ParallelismConfiguration";
|
|
608
|
+
const _PCD = "ParallelismConfigurationDescription";
|
|
609
|
+
const _PCU = "ParallelismConfigurationUpdate";
|
|
610
|
+
const _PG = "PropertyGroups";
|
|
611
|
+
const _PGD = "PropertyGroupDescriptions";
|
|
612
|
+
const _PGI = "PropertyGroupId";
|
|
613
|
+
const _PGr = "PropertyGroup";
|
|
614
|
+
const _PIR = "ProcessedInputRecords";
|
|
615
|
+
const _PIRa = "ParsedInputRecords";
|
|
616
|
+
const _PM = "PropertyMap";
|
|
617
|
+
const _PPKPU = "ParallelismPerKPU";
|
|
618
|
+
const _PPKPUU = "ParallelismPerKPUUpdate";
|
|
619
|
+
const _PU = "ParallelismUpdate";
|
|
620
|
+
const _RA = "RollbackApplication";
|
|
621
|
+
const _RAR = "RollbackApplicationRequest";
|
|
622
|
+
const _RARN = "RoleARN";
|
|
623
|
+
const _RARNU = "ResourceARNUpdate";
|
|
624
|
+
const _RARNe = "ResourceARN";
|
|
625
|
+
const _RARo = "RollbackApplicationResponse";
|
|
626
|
+
const _RC = "RecordColumn";
|
|
627
|
+
const _RCD = "RunConfigurationDescription";
|
|
628
|
+
const _RCDe = "RecordColumnDelimiter";
|
|
629
|
+
const _RCU = "RecordColumnUpdates";
|
|
630
|
+
const _RCUu = "RunConfigurationUpdate";
|
|
631
|
+
const _RCe = "RecordColumns";
|
|
632
|
+
const _RCu = "RunConfiguration";
|
|
633
|
+
const _RDS = "ReferenceDataSource";
|
|
634
|
+
const _RDSD = "ReferenceDataSourceDescriptions";
|
|
635
|
+
const _RDSDe = "ReferenceDataSourceDescription";
|
|
636
|
+
const _RDSU = "ReferenceDataSourceUpdate";
|
|
637
|
+
const _RDSUe = "ReferenceDataSourceUpdates";
|
|
638
|
+
const _RDSe = "ReferenceDataSources";
|
|
639
|
+
const _RE = "RuntimeEnvironment";
|
|
640
|
+
const _REU = "RollbackEnabledUpdate";
|
|
641
|
+
const _REUe = "RecordEncodingUpdate";
|
|
642
|
+
const _REUu = "RuntimeEnvironmentUpdate";
|
|
643
|
+
const _REe = "RecordEncoding";
|
|
644
|
+
const _REo = "RollbackEnabled";
|
|
645
|
+
const _RF = "RecordFormat";
|
|
646
|
+
const _RFT = "RecordFormatType";
|
|
647
|
+
const _RFU = "RecordFormatUpdate";
|
|
648
|
+
const _RI = "ReferenceId";
|
|
649
|
+
const _RIR = "RawInputRecords";
|
|
650
|
+
const _RIUE = "ResourceInUseException";
|
|
651
|
+
const _RNFE = "ResourceNotFoundException";
|
|
652
|
+
const _ROI = "RollbackOperationId";
|
|
653
|
+
const _RPTEE = "ResourceProvisionedThroughputExceededException";
|
|
654
|
+
const _RRARN = "ReferenceRoleARN";
|
|
655
|
+
const _RRD = "RecordRowDelimiter";
|
|
656
|
+
const _RRP = "RecordRowPath";
|
|
657
|
+
const _RS = "ReferenceSchema";
|
|
658
|
+
const _RSU = "ReferenceSchemaUpdate";
|
|
659
|
+
const _SA = "StartApplication";
|
|
660
|
+
const _SAC = "SqlApplicationConfiguration";
|
|
661
|
+
const _SACD = "SqlApplicationConfigurationDescription";
|
|
662
|
+
const _SACLD = "S3ApplicationCodeLocationDescription";
|
|
663
|
+
const _SACU = "SqlApplicationConfigurationUpdate";
|
|
664
|
+
const _SAR = "StartApplicationRequest";
|
|
665
|
+
const _SARt = "StartApplicationResponse";
|
|
666
|
+
const _SARto = "StopApplicationRequest";
|
|
667
|
+
const _SARtop = "StopApplicationResponse";
|
|
668
|
+
const _SAt = "StopApplication";
|
|
669
|
+
const _SC = "S3Configuration";
|
|
670
|
+
const _SCBL = "S3ContentBaseLocation";
|
|
671
|
+
const _SCBLD = "S3ContentBaseLocationDescription";
|
|
672
|
+
const _SCBLU = "S3ContentBaseLocationUpdate";
|
|
673
|
+
const _SCL = "S3ContentLocation";
|
|
674
|
+
const _SCLD = "S3ContentLocationDescription";
|
|
675
|
+
const _SCLU = "S3ContentLocationUpdate";
|
|
676
|
+
const _SCT = "SnapshotCreationTimestamp";
|
|
677
|
+
const _SD = "SnapshotDetails";
|
|
678
|
+
const _SE = "SnapshotsEnabled";
|
|
679
|
+
const _SEDIS = "SessionExpirationDurationInSeconds";
|
|
680
|
+
const _SER = "ServiceExecutionRole";
|
|
681
|
+
const _SERU = "ServiceExecutionRoleUpdate";
|
|
682
|
+
const _SEU = "SnapshotsEnabledUpdate";
|
|
683
|
+
const _SGI = "SecurityGroupIds";
|
|
684
|
+
const _SGIU = "SecurityGroupIdUpdates";
|
|
685
|
+
const _SI = "SubnetIds";
|
|
686
|
+
const _SIU = "SubnetIdUpdates";
|
|
687
|
+
const _SN = "SnapshotName";
|
|
688
|
+
const _SRC = "SqlRunConfigurations";
|
|
689
|
+
const _SRCq = "SqlRunConfiguration";
|
|
690
|
+
const _SRDS = "S3ReferenceDataSource";
|
|
691
|
+
const _SRDSD = "S3ReferenceDataSourceDescription";
|
|
692
|
+
const _SRDSU = "S3ReferenceDataSourceUpdate";
|
|
693
|
+
const _SS = "SnapshotSummaries";
|
|
694
|
+
const _SSn = "SnapshotStatus";
|
|
695
|
+
const _SSo = "SourceSchema";
|
|
696
|
+
const _ST = "StartTime";
|
|
697
|
+
const _STq = "SqlType";
|
|
698
|
+
const _SUE = "ServiceUnavailableException";
|
|
699
|
+
const _T = "Tags";
|
|
700
|
+
const _TC = "TextContent";
|
|
701
|
+
const _TCU = "TextContentUpdate";
|
|
702
|
+
const _TK = "TagKeys";
|
|
703
|
+
const _TMTE = "TooManyTagsException";
|
|
704
|
+
const _TN = "TableName";
|
|
705
|
+
const _TNU = "TableNameUpdate";
|
|
706
|
+
const _TR = "TagResource";
|
|
707
|
+
const _TRR = "TagResourceRequest";
|
|
708
|
+
const _TRRa = "TagResourceResponse";
|
|
709
|
+
const _Ta = "Tag";
|
|
710
|
+
const _UA = "UpdateApplication";
|
|
711
|
+
const _UAMC = "UpdateApplicationMaintenanceConfiguration";
|
|
712
|
+
const _UAMCR = "UpdateApplicationMaintenanceConfigurationRequest";
|
|
713
|
+
const _UAMCRp = "UpdateApplicationMaintenanceConfigurationResponse";
|
|
714
|
+
const _UAR = "UpdateApplicationRequest";
|
|
715
|
+
const _UARp = "UpdateApplicationResponse";
|
|
716
|
+
const _UOE = "UnsupportedOperationException";
|
|
717
|
+
const _UR = "UntagResource";
|
|
718
|
+
const _URR = "UntagResourceRequest";
|
|
719
|
+
const _URRn = "UntagResourceResponse";
|
|
720
|
+
const _UT = "UrlType";
|
|
721
|
+
const _UTDSE = "UnableToDetectSchemaException";
|
|
722
|
+
const _V = "Version";
|
|
723
|
+
const _VC = "VpcConfiguration";
|
|
724
|
+
const _VCD = "VpcConfigurationDescription";
|
|
725
|
+
const _VCDp = "VpcConfigurationDescriptions";
|
|
726
|
+
const _VCI = "VpcConfigurationId";
|
|
727
|
+
const _VCU = "VpcConfigurationUpdates";
|
|
728
|
+
const _VCUp = "VpcConfigurationUpdate";
|
|
729
|
+
const _VCp = "VpcConfigurations";
|
|
730
|
+
const _VI = "VpcId";
|
|
731
|
+
const _Va = "Value";
|
|
732
|
+
const _ZAC = "ZeppelinApplicationConfiguration";
|
|
733
|
+
const _ZACD = "ZeppelinApplicationConfigurationDescription";
|
|
734
|
+
const _ZACU = "ZeppelinApplicationConfigurationUpdate";
|
|
735
|
+
const _ZFC = "ZipFileContent";
|
|
736
|
+
const _ZFCU = "ZipFileContentUpdate";
|
|
737
|
+
const _ZMC = "ZeppelinMonitoringConfiguration";
|
|
738
|
+
const _ZMCD = "ZeppelinMonitoringConfigurationDescription";
|
|
739
|
+
const _ZMCU = "ZeppelinMonitoringConfigurationUpdate";
|
|
740
|
+
const _c = "client";
|
|
741
|
+
const _e = "error";
|
|
742
|
+
const _hE = "httpError";
|
|
743
|
+
const _m = "message";
|
|
744
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisanalyticsv2";
|
|
745
|
+
const _se = "server";
|
|
746
|
+
const n0 = "com.amazonaws.kinesisanalyticsv2";
|
|
747
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
748
|
+
var KinesisAnalyticsV2ServiceException$ = [-3, _s, "KinesisAnalyticsV2ServiceException", 0, [], []];
|
|
749
|
+
_s_registry.registerError(KinesisAnalyticsV2ServiceException$, KinesisAnalyticsV2ServiceException);
|
|
750
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
751
|
+
var CodeValidationException$ = [-3, n0, _CVE,
|
|
752
|
+
{ [_e]: _c },
|
|
753
|
+
[_M],
|
|
754
|
+
[0]
|
|
755
|
+
];
|
|
756
|
+
n0_registry.registerError(CodeValidationException$, CodeValidationException);
|
|
757
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
758
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
759
|
+
[_M],
|
|
760
|
+
[0]
|
|
761
|
+
];
|
|
762
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
763
|
+
var InvalidApplicationConfigurationException$ = [-3, n0, _IACE,
|
|
764
|
+
{ [_e]: _c },
|
|
765
|
+
[_M],
|
|
766
|
+
[0]
|
|
767
|
+
];
|
|
768
|
+
n0_registry.registerError(InvalidApplicationConfigurationException$, InvalidApplicationConfigurationException);
|
|
769
|
+
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
770
|
+
{ [_e]: _c },
|
|
771
|
+
[_M],
|
|
772
|
+
[0]
|
|
773
|
+
];
|
|
774
|
+
n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
775
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
776
|
+
{ [_e]: _c },
|
|
777
|
+
[_M],
|
|
778
|
+
[0]
|
|
779
|
+
];
|
|
780
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
781
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
782
|
+
{ [_e]: _c },
|
|
783
|
+
[_M],
|
|
784
|
+
[0]
|
|
785
|
+
];
|
|
786
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
787
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
788
|
+
{ [_e]: _c },
|
|
789
|
+
[_M],
|
|
790
|
+
[0]
|
|
791
|
+
];
|
|
792
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
793
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
794
|
+
{ [_e]: _c },
|
|
795
|
+
[_M],
|
|
796
|
+
[0]
|
|
797
|
+
];
|
|
798
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
799
|
+
var ResourceProvisionedThroughputExceededException$ = [-3, n0, _RPTEE,
|
|
800
|
+
{ [_e]: _c },
|
|
801
|
+
[_M],
|
|
802
|
+
[0]
|
|
803
|
+
];
|
|
804
|
+
n0_registry.registerError(ResourceProvisionedThroughputExceededException$, ResourceProvisionedThroughputExceededException);
|
|
805
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
806
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
807
|
+
[_M],
|
|
808
|
+
[0]
|
|
809
|
+
];
|
|
810
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
811
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
812
|
+
{ [_e]: _c },
|
|
813
|
+
[_m],
|
|
814
|
+
[0]
|
|
815
|
+
];
|
|
816
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
817
|
+
var UnableToDetectSchemaException$ = [-3, n0, _UTDSE,
|
|
818
|
+
{ [_e]: _c },
|
|
819
|
+
[_M, _RIR, _PIR],
|
|
820
|
+
[0, 64 | 0, 64 | 0]
|
|
821
|
+
];
|
|
822
|
+
n0_registry.registerError(UnableToDetectSchemaException$, UnableToDetectSchemaException);
|
|
823
|
+
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
824
|
+
{ [_e]: _c },
|
|
825
|
+
[_M],
|
|
826
|
+
[0]
|
|
827
|
+
];
|
|
828
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
829
|
+
const errorTypeRegistries = [
|
|
830
|
+
_s_registry,
|
|
831
|
+
n0_registry,
|
|
832
|
+
];
|
|
833
|
+
var AddApplicationCloudWatchLoggingOptionRequest$ = [3, n0, _AACWLOR,
|
|
834
|
+
0,
|
|
835
|
+
[_AN, _CWLO, _CAVI, _CT],
|
|
836
|
+
[0, () => CloudWatchLoggingOption$, 1, 0], 2
|
|
837
|
+
];
|
|
838
|
+
var AddApplicationCloudWatchLoggingOptionResponse$ = [3, n0, _AACWLORd,
|
|
839
|
+
0,
|
|
840
|
+
[_AARN, _AVI, _CWLOD, _OI],
|
|
841
|
+
[0, 1, () => CloudWatchLoggingOptionDescriptions, 0]
|
|
842
|
+
];
|
|
843
|
+
var AddApplicationInputProcessingConfigurationRequest$ = [3, n0, _AAIPCR,
|
|
844
|
+
0,
|
|
845
|
+
[_AN, _CAVI, _II, _IPC],
|
|
846
|
+
[0, 1, 0, () => InputProcessingConfiguration$], 4
|
|
847
|
+
];
|
|
848
|
+
var AddApplicationInputProcessingConfigurationResponse$ = [3, n0, _AAIPCRd,
|
|
849
|
+
0,
|
|
850
|
+
[_AARN, _AVI, _II, _IPCD],
|
|
851
|
+
[0, 1, 0, () => InputProcessingConfigurationDescription$]
|
|
852
|
+
];
|
|
853
|
+
var AddApplicationInputRequest$ = [3, n0, _AAIR,
|
|
854
|
+
0,
|
|
855
|
+
[_AN, _CAVI, _I],
|
|
856
|
+
[0, 1, () => Input$], 3
|
|
857
|
+
];
|
|
858
|
+
var AddApplicationInputResponse$ = [3, n0, _AAIRd,
|
|
859
|
+
0,
|
|
860
|
+
[_AARN, _AVI, _ID],
|
|
861
|
+
[0, 1, () => InputDescriptions]
|
|
862
|
+
];
|
|
863
|
+
var AddApplicationOutputRequest$ = [3, n0, _AAOR,
|
|
864
|
+
0,
|
|
865
|
+
[_AN, _CAVI, _O],
|
|
866
|
+
[0, 1, () => Output$], 3
|
|
867
|
+
];
|
|
868
|
+
var AddApplicationOutputResponse$ = [3, n0, _AAORd,
|
|
869
|
+
0,
|
|
870
|
+
[_AARN, _AVI, _OD],
|
|
871
|
+
[0, 1, () => OutputDescriptions]
|
|
872
|
+
];
|
|
873
|
+
var AddApplicationReferenceDataSourceRequest$ = [3, n0, _AARDSR,
|
|
874
|
+
0,
|
|
875
|
+
[_AN, _CAVI, _RDS],
|
|
876
|
+
[0, 1, () => ReferenceDataSource$], 3
|
|
877
|
+
];
|
|
878
|
+
var AddApplicationReferenceDataSourceResponse$ = [3, n0, _AARDSRd,
|
|
879
|
+
0,
|
|
880
|
+
[_AARN, _AVI, _RDSD],
|
|
881
|
+
[0, 1, () => ReferenceDataSourceDescriptions]
|
|
882
|
+
];
|
|
883
|
+
var AddApplicationVpcConfigurationRequest$ = [3, n0, _AAVCR,
|
|
884
|
+
0,
|
|
885
|
+
[_AN, _VC, _CAVI, _CT],
|
|
886
|
+
[0, () => VpcConfiguration$, 1, 0], 2
|
|
887
|
+
];
|
|
888
|
+
var AddApplicationVpcConfigurationResponse$ = [3, n0, _AAVCRd,
|
|
889
|
+
0,
|
|
890
|
+
[_AARN, _AVI, _VCD, _OI],
|
|
891
|
+
[0, 1, () => VpcConfigurationDescription$, 0]
|
|
892
|
+
];
|
|
893
|
+
var ApplicationCodeConfiguration$ = [3, n0, _ACC,
|
|
894
|
+
0,
|
|
895
|
+
[_CCT, _CC],
|
|
896
|
+
[0, () => CodeContent$], 1
|
|
897
|
+
];
|
|
898
|
+
var ApplicationCodeConfigurationDescription$ = [3, n0, _ACCD,
|
|
899
|
+
0,
|
|
900
|
+
[_CCT, _CCD],
|
|
901
|
+
[0, () => CodeContentDescription$], 1
|
|
902
|
+
];
|
|
903
|
+
var ApplicationCodeConfigurationUpdate$ = [3, n0, _ACCU,
|
|
904
|
+
0,
|
|
905
|
+
[_CCTU, _CCU],
|
|
906
|
+
[0, () => CodeContentUpdate$]
|
|
907
|
+
];
|
|
908
|
+
var ApplicationConfiguration$ = [3, n0, _AC,
|
|
909
|
+
0,
|
|
910
|
+
[_SAC, _FAC, _EP, _ACC, _ASC, _ASRC, _VCp, _ZAC, _AEC],
|
|
911
|
+
[() => SqlApplicationConfiguration$, () => FlinkApplicationConfiguration$, () => EnvironmentProperties$, () => ApplicationCodeConfiguration$, () => ApplicationSnapshotConfiguration$, () => ApplicationSystemRollbackConfiguration$, () => VpcConfigurations, () => ZeppelinApplicationConfiguration$, () => ApplicationEncryptionConfiguration$]
|
|
912
|
+
];
|
|
913
|
+
var ApplicationConfigurationDescription$ = [3, n0, _ACD,
|
|
914
|
+
0,
|
|
915
|
+
[_SACD, _ACCD, _RCD, _FACD, _EPD, _ASCD, _ASRCD, _VCDp, _ZACD, _AECD],
|
|
916
|
+
[() => SqlApplicationConfigurationDescription$, () => ApplicationCodeConfigurationDescription$, () => RunConfigurationDescription$, () => FlinkApplicationConfigurationDescription$, () => EnvironmentPropertyDescriptions$, () => ApplicationSnapshotConfigurationDescription$, () => ApplicationSystemRollbackConfigurationDescription$, () => VpcConfigurationDescriptions, () => ZeppelinApplicationConfigurationDescription$, () => ApplicationEncryptionConfigurationDescription$]
|
|
917
|
+
];
|
|
918
|
+
var ApplicationConfigurationUpdate$ = [3, n0, _ACU,
|
|
919
|
+
0,
|
|
920
|
+
[_SACU, _ACCU, _FACU, _EPU, _ASCU, _ASRCU, _VCU, _ZACU, _AECU],
|
|
921
|
+
[() => SqlApplicationConfigurationUpdate$, () => ApplicationCodeConfigurationUpdate$, () => FlinkApplicationConfigurationUpdate$, () => EnvironmentPropertyUpdates$, () => ApplicationSnapshotConfigurationUpdate$, () => ApplicationSystemRollbackConfigurationUpdate$, () => VpcConfigurationUpdates, () => ZeppelinApplicationConfigurationUpdate$, () => ApplicationEncryptionConfigurationUpdate$]
|
|
922
|
+
];
|
|
923
|
+
var ApplicationDetail$ = [3, n0, _AD,
|
|
924
|
+
0,
|
|
925
|
+
[_AARN, _AN, _RE, _AS, _AVI, _ADp, _SER, _CTr, _LUT, _ACD, _CWLOD, _AMCD, _AVUF, _AVRBF, _AVCT, _CT, _AVRBT, _AM],
|
|
926
|
+
[0, 0, 0, 0, 1, 0, 0, 4, 4, () => ApplicationConfigurationDescription$, () => CloudWatchLoggingOptionDescriptions, () => ApplicationMaintenanceConfigurationDescription$, 1, 1, 4, 0, 1, 0], 5
|
|
927
|
+
];
|
|
928
|
+
var ApplicationEncryptionConfiguration$ = [3, n0, _AEC,
|
|
929
|
+
0,
|
|
930
|
+
[_KT, _KI],
|
|
931
|
+
[0, 0], 1
|
|
932
|
+
];
|
|
933
|
+
var ApplicationEncryptionConfigurationDescription$ = [3, n0, _AECD,
|
|
934
|
+
0,
|
|
935
|
+
[_KT, _KI],
|
|
936
|
+
[0, 0], 1
|
|
937
|
+
];
|
|
938
|
+
var ApplicationEncryptionConfigurationUpdate$ = [3, n0, _AECU,
|
|
939
|
+
0,
|
|
940
|
+
[_KTU, _KIU],
|
|
941
|
+
[0, 0], 1
|
|
942
|
+
];
|
|
943
|
+
var ApplicationMaintenanceConfigurationDescription$ = [3, n0, _AMCD,
|
|
944
|
+
0,
|
|
945
|
+
[_AMWST, _AMWET],
|
|
946
|
+
[0, 0], 2
|
|
947
|
+
];
|
|
948
|
+
var ApplicationMaintenanceConfigurationUpdate$ = [3, n0, _AMCU,
|
|
949
|
+
0,
|
|
950
|
+
[_AMWSTU],
|
|
951
|
+
[0], 1
|
|
952
|
+
];
|
|
953
|
+
var ApplicationOperationInfo$ = [3, n0, _AOI,
|
|
954
|
+
0,
|
|
955
|
+
[_Op, _OI, _ST, _ET, _OS],
|
|
956
|
+
[0, 0, 4, 4, 0]
|
|
957
|
+
];
|
|
958
|
+
var ApplicationOperationInfoDetails$ = [3, n0, _AOID,
|
|
959
|
+
0,
|
|
960
|
+
[_Op, _ST, _ET, _OS, _AVCD, _OFD],
|
|
961
|
+
[0, 4, 4, 0, () => ApplicationVersionChangeDetails$, () => OperationFailureDetails$], 4
|
|
962
|
+
];
|
|
963
|
+
var ApplicationRestoreConfiguration$ = [3, n0, _ARC,
|
|
964
|
+
0,
|
|
965
|
+
[_ART, _SN],
|
|
966
|
+
[0, 0], 1
|
|
967
|
+
];
|
|
968
|
+
var ApplicationSnapshotConfiguration$ = [3, n0, _ASC,
|
|
969
|
+
0,
|
|
970
|
+
[_SE],
|
|
971
|
+
[2], 1
|
|
972
|
+
];
|
|
973
|
+
var ApplicationSnapshotConfigurationDescription$ = [3, n0, _ASCD,
|
|
974
|
+
0,
|
|
975
|
+
[_SE],
|
|
976
|
+
[2], 1
|
|
977
|
+
];
|
|
978
|
+
var ApplicationSnapshotConfigurationUpdate$ = [3, n0, _ASCU,
|
|
979
|
+
0,
|
|
980
|
+
[_SEU],
|
|
981
|
+
[2], 1
|
|
982
|
+
];
|
|
983
|
+
var ApplicationSummary$ = [3, n0, _ASp,
|
|
984
|
+
0,
|
|
985
|
+
[_AN, _AARN, _AS, _AVI, _RE, _AM],
|
|
986
|
+
[0, 0, 0, 1, 0, 0], 5
|
|
987
|
+
];
|
|
988
|
+
var ApplicationSystemRollbackConfiguration$ = [3, n0, _ASRC,
|
|
989
|
+
0,
|
|
990
|
+
[_REo],
|
|
991
|
+
[2], 1
|
|
992
|
+
];
|
|
993
|
+
var ApplicationSystemRollbackConfigurationDescription$ = [3, n0, _ASRCD,
|
|
994
|
+
0,
|
|
995
|
+
[_REo],
|
|
996
|
+
[2], 1
|
|
997
|
+
];
|
|
998
|
+
var ApplicationSystemRollbackConfigurationUpdate$ = [3, n0, _ASRCU,
|
|
999
|
+
0,
|
|
1000
|
+
[_REU],
|
|
1001
|
+
[2], 1
|
|
1002
|
+
];
|
|
1003
|
+
var ApplicationVersionChangeDetails$ = [3, n0, _AVCD,
|
|
1004
|
+
0,
|
|
1005
|
+
[_AVUF, _AVUT],
|
|
1006
|
+
[1, 1], 2
|
|
1007
|
+
];
|
|
1008
|
+
var ApplicationVersionSummary$ = [3, n0, _AVS,
|
|
1009
|
+
0,
|
|
1010
|
+
[_AVI, _AS],
|
|
1011
|
+
[1, 0], 2
|
|
1012
|
+
];
|
|
1013
|
+
var CatalogConfiguration$ = [3, n0, _CCa,
|
|
1014
|
+
0,
|
|
1015
|
+
[_GDCC],
|
|
1016
|
+
[() => GlueDataCatalogConfiguration$], 1
|
|
1017
|
+
];
|
|
1018
|
+
var CatalogConfigurationDescription$ = [3, n0, _CCDa,
|
|
1019
|
+
0,
|
|
1020
|
+
[_GDCCD],
|
|
1021
|
+
[() => GlueDataCatalogConfigurationDescription$], 1
|
|
1022
|
+
];
|
|
1023
|
+
var CatalogConfigurationUpdate$ = [3, n0, _CCUa,
|
|
1024
|
+
0,
|
|
1025
|
+
[_GDCCU],
|
|
1026
|
+
[() => GlueDataCatalogConfigurationUpdate$], 1
|
|
1027
|
+
];
|
|
1028
|
+
var CheckpointConfiguration$ = [3, n0, _CCh,
|
|
1029
|
+
0,
|
|
1030
|
+
[_CTo, _CE, _CI, _MPBC],
|
|
1031
|
+
[0, 2, 1, 1], 1
|
|
1032
|
+
];
|
|
1033
|
+
var CheckpointConfigurationDescription$ = [3, n0, _CCDh,
|
|
1034
|
+
0,
|
|
1035
|
+
[_CTo, _CE, _CI, _MPBC],
|
|
1036
|
+
[0, 2, 1, 1]
|
|
1037
|
+
];
|
|
1038
|
+
var CheckpointConfigurationUpdate$ = [3, n0, _CCUh,
|
|
1039
|
+
0,
|
|
1040
|
+
[_CTU, _CEU, _CIU, _MPBCU],
|
|
1041
|
+
[0, 2, 1, 1]
|
|
1042
|
+
];
|
|
1043
|
+
var CloudWatchLoggingOption$ = [3, n0, _CWLO,
|
|
1044
|
+
0,
|
|
1045
|
+
[_LSARN],
|
|
1046
|
+
[0], 1
|
|
1047
|
+
];
|
|
1048
|
+
var CloudWatchLoggingOptionDescription$ = [3, n0, _CWLODl,
|
|
1049
|
+
0,
|
|
1050
|
+
[_LSARN, _CWLOI, _RARN],
|
|
1051
|
+
[0, 0, 0], 1
|
|
1052
|
+
];
|
|
1053
|
+
var CloudWatchLoggingOptionUpdate$ = [3, n0, _CWLOU,
|
|
1054
|
+
0,
|
|
1055
|
+
[_CWLOI, _LSARNU],
|
|
1056
|
+
[0, 0], 1
|
|
1057
|
+
];
|
|
1058
|
+
var CodeContent$ = [3, n0, _CC,
|
|
1059
|
+
0,
|
|
1060
|
+
[_TC, _ZFC, _SCL],
|
|
1061
|
+
[0, 21, () => S3ContentLocation$]
|
|
1062
|
+
];
|
|
1063
|
+
var CodeContentDescription$ = [3, n0, _CCD,
|
|
1064
|
+
0,
|
|
1065
|
+
[_TC, _CMD, _CS, _SACLD],
|
|
1066
|
+
[0, 0, 1, () => S3ApplicationCodeLocationDescription$]
|
|
1067
|
+
];
|
|
1068
|
+
var CodeContentUpdate$ = [3, n0, _CCU,
|
|
1069
|
+
0,
|
|
1070
|
+
[_TCU, _ZFCU, _SCLU],
|
|
1071
|
+
[0, 21, () => S3ContentLocationUpdate$]
|
|
1072
|
+
];
|
|
1073
|
+
var CreateApplicationPresignedUrlRequest$ = [3, n0, _CAPUR,
|
|
1074
|
+
0,
|
|
1075
|
+
[_AN, _UT, _SEDIS],
|
|
1076
|
+
[0, 0, 1], 2
|
|
1077
|
+
];
|
|
1078
|
+
var CreateApplicationPresignedUrlResponse$ = [3, n0, _CAPURr,
|
|
1079
|
+
0,
|
|
1080
|
+
[_AU],
|
|
1081
|
+
[0]
|
|
1082
|
+
];
|
|
1083
|
+
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
1084
|
+
0,
|
|
1085
|
+
[_AN, _RE, _SER, _ADp, _AC, _CWLOl, _T, _AM],
|
|
1086
|
+
[0, 0, 0, 0, () => ApplicationConfiguration$, () => CloudWatchLoggingOptions, () => Tags, 0], 3
|
|
1087
|
+
];
|
|
1088
|
+
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
1089
|
+
0,
|
|
1090
|
+
[_AD],
|
|
1091
|
+
[() => ApplicationDetail$], 1
|
|
1092
|
+
];
|
|
1093
|
+
var CreateApplicationSnapshotRequest$ = [3, n0, _CASR,
|
|
1094
|
+
0,
|
|
1095
|
+
[_AN, _SN],
|
|
1096
|
+
[0, 0], 2
|
|
1097
|
+
];
|
|
1098
|
+
var CreateApplicationSnapshotResponse$ = [3, n0, _CASRr,
|
|
1099
|
+
0,
|
|
1100
|
+
[],
|
|
1101
|
+
[]
|
|
1102
|
+
];
|
|
1103
|
+
var CSVMappingParameters$ = [3, n0, _CSVMP,
|
|
1104
|
+
0,
|
|
1105
|
+
[_RRD, _RCDe],
|
|
1106
|
+
[0, 0], 2
|
|
1107
|
+
];
|
|
1108
|
+
var CustomArtifactConfiguration$ = [3, n0, _CAC,
|
|
1109
|
+
0,
|
|
1110
|
+
[_AT, _SCL, _MR],
|
|
1111
|
+
[0, () => S3ContentLocation$, () => MavenReference$], 1
|
|
1112
|
+
];
|
|
1113
|
+
var CustomArtifactConfigurationDescription$ = [3, n0, _CACD,
|
|
1114
|
+
0,
|
|
1115
|
+
[_AT, _SCLD, _MRD],
|
|
1116
|
+
[0, () => S3ContentLocation$, () => MavenReference$]
|
|
1117
|
+
];
|
|
1118
|
+
var DeleteApplicationCloudWatchLoggingOptionRequest$ = [3, n0, _DACWLOR,
|
|
1119
|
+
0,
|
|
1120
|
+
[_AN, _CWLOI, _CAVI, _CT],
|
|
1121
|
+
[0, 0, 1, 0], 2
|
|
1122
|
+
];
|
|
1123
|
+
var DeleteApplicationCloudWatchLoggingOptionResponse$ = [3, n0, _DACWLORe,
|
|
1124
|
+
0,
|
|
1125
|
+
[_AARN, _AVI, _CWLOD, _OI],
|
|
1126
|
+
[0, 1, () => CloudWatchLoggingOptionDescriptions, 0]
|
|
1127
|
+
];
|
|
1128
|
+
var DeleteApplicationInputProcessingConfigurationRequest$ = [3, n0, _DAIPCR,
|
|
1129
|
+
0,
|
|
1130
|
+
[_AN, _CAVI, _II],
|
|
1131
|
+
[0, 1, 0], 3
|
|
1132
|
+
];
|
|
1133
|
+
var DeleteApplicationInputProcessingConfigurationResponse$ = [3, n0, _DAIPCRe,
|
|
1134
|
+
0,
|
|
1135
|
+
[_AARN, _AVI],
|
|
1136
|
+
[0, 1]
|
|
1137
|
+
];
|
|
1138
|
+
var DeleteApplicationOutputRequest$ = [3, n0, _DAOR,
|
|
1139
|
+
0,
|
|
1140
|
+
[_AN, _CAVI, _OIu],
|
|
1141
|
+
[0, 1, 0], 3
|
|
1142
|
+
];
|
|
1143
|
+
var DeleteApplicationOutputResponse$ = [3, n0, _DAORe,
|
|
1144
|
+
0,
|
|
1145
|
+
[_AARN, _AVI],
|
|
1146
|
+
[0, 1]
|
|
1147
|
+
];
|
|
1148
|
+
var DeleteApplicationReferenceDataSourceRequest$ = [3, n0, _DARDSR,
|
|
1149
|
+
0,
|
|
1150
|
+
[_AN, _CAVI, _RI],
|
|
1151
|
+
[0, 1, 0], 3
|
|
1152
|
+
];
|
|
1153
|
+
var DeleteApplicationReferenceDataSourceResponse$ = [3, n0, _DARDSRe,
|
|
1154
|
+
0,
|
|
1155
|
+
[_AARN, _AVI],
|
|
1156
|
+
[0, 1]
|
|
1157
|
+
];
|
|
1158
|
+
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
1159
|
+
0,
|
|
1160
|
+
[_AN, _CTr],
|
|
1161
|
+
[0, 4], 2
|
|
1162
|
+
];
|
|
1163
|
+
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
1164
|
+
0,
|
|
1165
|
+
[],
|
|
1166
|
+
[]
|
|
1167
|
+
];
|
|
1168
|
+
var DeleteApplicationSnapshotRequest$ = [3, n0, _DASR,
|
|
1169
|
+
0,
|
|
1170
|
+
[_AN, _SN, _SCT],
|
|
1171
|
+
[0, 0, 4], 3
|
|
1172
|
+
];
|
|
1173
|
+
var DeleteApplicationSnapshotResponse$ = [3, n0, _DASRe,
|
|
1174
|
+
0,
|
|
1175
|
+
[],
|
|
1176
|
+
[]
|
|
1177
|
+
];
|
|
1178
|
+
var DeleteApplicationVpcConfigurationRequest$ = [3, n0, _DAVCR,
|
|
1179
|
+
0,
|
|
1180
|
+
[_AN, _VCI, _CAVI, _CT],
|
|
1181
|
+
[0, 0, 1, 0], 2
|
|
1182
|
+
];
|
|
1183
|
+
var DeleteApplicationVpcConfigurationResponse$ = [3, n0, _DAVCRe,
|
|
1184
|
+
0,
|
|
1185
|
+
[_AARN, _AVI, _OI],
|
|
1186
|
+
[0, 1, 0]
|
|
1187
|
+
];
|
|
1188
|
+
var DeployAsApplicationConfiguration$ = [3, n0, _DAAC,
|
|
1189
|
+
0,
|
|
1190
|
+
[_SCL],
|
|
1191
|
+
[() => S3ContentBaseLocation$], 1
|
|
1192
|
+
];
|
|
1193
|
+
var DeployAsApplicationConfigurationDescription$ = [3, n0, _DAACD,
|
|
1194
|
+
0,
|
|
1195
|
+
[_SCLD],
|
|
1196
|
+
[() => S3ContentBaseLocationDescription$], 1
|
|
1197
|
+
];
|
|
1198
|
+
var DeployAsApplicationConfigurationUpdate$ = [3, n0, _DAACU,
|
|
1199
|
+
0,
|
|
1200
|
+
[_SCLU],
|
|
1201
|
+
[() => S3ContentBaseLocationUpdate$]
|
|
1202
|
+
];
|
|
1203
|
+
var DescribeApplicationOperationRequest$ = [3, n0, _DAORes,
|
|
1204
|
+
0,
|
|
1205
|
+
[_AN, _OI],
|
|
1206
|
+
[0, 0], 2
|
|
1207
|
+
];
|
|
1208
|
+
var DescribeApplicationOperationResponse$ = [3, n0, _DAOResc,
|
|
1209
|
+
0,
|
|
1210
|
+
[_AOID],
|
|
1211
|
+
[() => ApplicationOperationInfoDetails$]
|
|
1212
|
+
];
|
|
1213
|
+
var DescribeApplicationRequest$ = [3, n0, _DARes,
|
|
1214
|
+
0,
|
|
1215
|
+
[_AN, _IAD],
|
|
1216
|
+
[0, 2], 1
|
|
1217
|
+
];
|
|
1218
|
+
var DescribeApplicationResponse$ = [3, n0, _DAResc,
|
|
1219
|
+
0,
|
|
1220
|
+
[_AD],
|
|
1221
|
+
[() => ApplicationDetail$], 1
|
|
1222
|
+
];
|
|
1223
|
+
var DescribeApplicationSnapshotRequest$ = [3, n0, _DASRes,
|
|
1224
|
+
0,
|
|
1225
|
+
[_AN, _SN],
|
|
1226
|
+
[0, 0], 2
|
|
1227
|
+
];
|
|
1228
|
+
var DescribeApplicationSnapshotResponse$ = [3, n0, _DASResc,
|
|
1229
|
+
0,
|
|
1230
|
+
[_SD],
|
|
1231
|
+
[() => SnapshotDetails$], 1
|
|
1232
|
+
];
|
|
1233
|
+
var DescribeApplicationVersionRequest$ = [3, n0, _DAVR,
|
|
1234
|
+
0,
|
|
1235
|
+
[_AN, _AVI],
|
|
1236
|
+
[0, 1], 2
|
|
1237
|
+
];
|
|
1238
|
+
var DescribeApplicationVersionResponse$ = [3, n0, _DAVRe,
|
|
1239
|
+
0,
|
|
1240
|
+
[_AVD],
|
|
1241
|
+
[() => ApplicationDetail$]
|
|
1242
|
+
];
|
|
1243
|
+
var DestinationSchema$ = [3, n0, _DS,
|
|
1244
|
+
0,
|
|
1245
|
+
[_RFT],
|
|
1246
|
+
[0], 1
|
|
1247
|
+
];
|
|
1248
|
+
var DiscoverInputSchemaRequest$ = [3, n0, _DISR,
|
|
1249
|
+
0,
|
|
1250
|
+
[_SER, _RARNe, _ISPC, _SC, _IPC],
|
|
1251
|
+
[0, 0, () => InputStartingPositionConfiguration$, () => S3Configuration$, () => InputProcessingConfiguration$], 1
|
|
1252
|
+
];
|
|
1253
|
+
var DiscoverInputSchemaResponse$ = [3, n0, _DISRi,
|
|
1254
|
+
0,
|
|
1255
|
+
[_IS, _PIRa, _PIR, _RIR],
|
|
1256
|
+
[() => SourceSchema$, [1, n0, _PIRa, 0, 64 | 0], 64 | 0, 64 | 0]
|
|
1257
|
+
];
|
|
1258
|
+
var EnvironmentProperties$ = [3, n0, _EP,
|
|
1259
|
+
0,
|
|
1260
|
+
[_PG],
|
|
1261
|
+
[() => PropertyGroups], 1
|
|
1262
|
+
];
|
|
1263
|
+
var EnvironmentPropertyDescriptions$ = [3, n0, _EPD,
|
|
1264
|
+
0,
|
|
1265
|
+
[_PGD],
|
|
1266
|
+
[() => PropertyGroups]
|
|
1267
|
+
];
|
|
1268
|
+
var EnvironmentPropertyUpdates$ = [3, n0, _EPU,
|
|
1269
|
+
0,
|
|
1270
|
+
[_PG],
|
|
1271
|
+
[() => PropertyGroups], 1
|
|
1272
|
+
];
|
|
1273
|
+
var ErrorInfo$ = [3, n0, _EI,
|
|
1274
|
+
0,
|
|
1275
|
+
[_ES],
|
|
1276
|
+
[0]
|
|
1277
|
+
];
|
|
1278
|
+
var FlinkApplicationConfiguration$ = [3, n0, _FAC,
|
|
1279
|
+
0,
|
|
1280
|
+
[_CCh, _MC, _PC],
|
|
1281
|
+
[() => CheckpointConfiguration$, () => MonitoringConfiguration$, () => ParallelismConfiguration$]
|
|
1282
|
+
];
|
|
1283
|
+
var FlinkApplicationConfigurationDescription$ = [3, n0, _FACD,
|
|
1284
|
+
0,
|
|
1285
|
+
[_CCDh, _MCD, _PCD, _JPD],
|
|
1286
|
+
[() => CheckpointConfigurationDescription$, () => MonitoringConfigurationDescription$, () => ParallelismConfigurationDescription$, 0]
|
|
1287
|
+
];
|
|
1288
|
+
var FlinkApplicationConfigurationUpdate$ = [3, n0, _FACU,
|
|
1289
|
+
0,
|
|
1290
|
+
[_CCUh, _MCU, _PCU],
|
|
1291
|
+
[() => CheckpointConfigurationUpdate$, () => MonitoringConfigurationUpdate$, () => ParallelismConfigurationUpdate$]
|
|
1292
|
+
];
|
|
1293
|
+
var FlinkRunConfiguration$ = [3, n0, _FRC,
|
|
1294
|
+
0,
|
|
1295
|
+
[_ANRS],
|
|
1296
|
+
[2]
|
|
1297
|
+
];
|
|
1298
|
+
var GlueDataCatalogConfiguration$ = [3, n0, _GDCC,
|
|
1299
|
+
0,
|
|
1300
|
+
[_DARN],
|
|
1301
|
+
[0], 1
|
|
1302
|
+
];
|
|
1303
|
+
var GlueDataCatalogConfigurationDescription$ = [3, n0, _GDCCD,
|
|
1304
|
+
0,
|
|
1305
|
+
[_DARN],
|
|
1306
|
+
[0], 1
|
|
1307
|
+
];
|
|
1308
|
+
var GlueDataCatalogConfigurationUpdate$ = [3, n0, _GDCCU,
|
|
1309
|
+
0,
|
|
1310
|
+
[_DARNU],
|
|
1311
|
+
[0], 1
|
|
1312
|
+
];
|
|
1313
|
+
var Input$ = [3, n0, _I,
|
|
1314
|
+
0,
|
|
1315
|
+
[_NP, _IS, _IPC, _KSI, _KFI, _IP],
|
|
1316
|
+
[0, () => SourceSchema$, () => InputProcessingConfiguration$, () => KinesisStreamsInput$, () => KinesisFirehoseInput$, () => InputParallelism$], 2
|
|
1317
|
+
];
|
|
1318
|
+
var InputDescription$ = [3, n0, _IDn,
|
|
1319
|
+
0,
|
|
1320
|
+
[_II, _NP, _IASN, _IPCD, _KSID, _KFID, _IS, _IP, _ISPC],
|
|
1321
|
+
[0, 0, 64 | 0, () => InputProcessingConfigurationDescription$, () => KinesisStreamsInputDescription$, () => KinesisFirehoseInputDescription$, () => SourceSchema$, () => InputParallelism$, () => InputStartingPositionConfiguration$]
|
|
1322
|
+
];
|
|
1323
|
+
var InputLambdaProcessor$ = [3, n0, _ILP,
|
|
1324
|
+
0,
|
|
1325
|
+
[_RARNe],
|
|
1326
|
+
[0], 1
|
|
1327
|
+
];
|
|
1328
|
+
var InputLambdaProcessorDescription$ = [3, n0, _ILPD,
|
|
1329
|
+
0,
|
|
1330
|
+
[_RARNe, _RARN],
|
|
1331
|
+
[0, 0], 1
|
|
1332
|
+
];
|
|
1333
|
+
var InputLambdaProcessorUpdate$ = [3, n0, _ILPU,
|
|
1334
|
+
0,
|
|
1335
|
+
[_RARNU],
|
|
1336
|
+
[0], 1
|
|
1337
|
+
];
|
|
1338
|
+
var InputParallelism$ = [3, n0, _IP,
|
|
1339
|
+
0,
|
|
1340
|
+
[_C],
|
|
1341
|
+
[1]
|
|
1342
|
+
];
|
|
1343
|
+
var InputParallelismUpdate$ = [3, n0, _IPU,
|
|
1344
|
+
0,
|
|
1345
|
+
[_CU],
|
|
1346
|
+
[1], 1
|
|
1347
|
+
];
|
|
1348
|
+
var InputProcessingConfiguration$ = [3, n0, _IPC,
|
|
1349
|
+
0,
|
|
1350
|
+
[_ILP],
|
|
1351
|
+
[() => InputLambdaProcessor$], 1
|
|
1352
|
+
];
|
|
1353
|
+
var InputProcessingConfigurationDescription$ = [3, n0, _IPCD,
|
|
1354
|
+
0,
|
|
1355
|
+
[_ILPD],
|
|
1356
|
+
[() => InputLambdaProcessorDescription$]
|
|
1357
|
+
];
|
|
1358
|
+
var InputProcessingConfigurationUpdate$ = [3, n0, _IPCU,
|
|
1359
|
+
0,
|
|
1360
|
+
[_ILPU],
|
|
1361
|
+
[() => InputLambdaProcessorUpdate$], 1
|
|
1362
|
+
];
|
|
1363
|
+
var InputSchemaUpdate$ = [3, n0, _ISU,
|
|
1364
|
+
0,
|
|
1365
|
+
[_RFU, _REUe, _RCU],
|
|
1366
|
+
[() => RecordFormat$, 0, () => RecordColumns]
|
|
1367
|
+
];
|
|
1368
|
+
var InputStartingPositionConfiguration$ = [3, n0, _ISPC,
|
|
1369
|
+
0,
|
|
1370
|
+
[_ISP],
|
|
1371
|
+
[0]
|
|
1372
|
+
];
|
|
1373
|
+
var InputUpdate$ = [3, n0, _IU,
|
|
1374
|
+
0,
|
|
1375
|
+
[_II, _NPU, _IPCU, _KSIU, _KFIU, _ISU, _IPU],
|
|
1376
|
+
[0, 0, () => InputProcessingConfigurationUpdate$, () => KinesisStreamsInputUpdate$, () => KinesisFirehoseInputUpdate$, () => InputSchemaUpdate$, () => InputParallelismUpdate$], 1
|
|
1377
|
+
];
|
|
1378
|
+
var JSONMappingParameters$ = [3, n0, _JSONMP,
|
|
1379
|
+
0,
|
|
1380
|
+
[_RRP],
|
|
1381
|
+
[0], 1
|
|
1382
|
+
];
|
|
1383
|
+
var KinesisFirehoseInput$ = [3, n0, _KFI,
|
|
1384
|
+
0,
|
|
1385
|
+
[_RARNe],
|
|
1386
|
+
[0], 1
|
|
1387
|
+
];
|
|
1388
|
+
var KinesisFirehoseInputDescription$ = [3, n0, _KFID,
|
|
1389
|
+
0,
|
|
1390
|
+
[_RARNe, _RARN],
|
|
1391
|
+
[0, 0], 1
|
|
1392
|
+
];
|
|
1393
|
+
var KinesisFirehoseInputUpdate$ = [3, n0, _KFIU,
|
|
1394
|
+
0,
|
|
1395
|
+
[_RARNU],
|
|
1396
|
+
[0], 1
|
|
1397
|
+
];
|
|
1398
|
+
var KinesisFirehoseOutput$ = [3, n0, _KFO,
|
|
1399
|
+
0,
|
|
1400
|
+
[_RARNe],
|
|
1401
|
+
[0], 1
|
|
1402
|
+
];
|
|
1403
|
+
var KinesisFirehoseOutputDescription$ = [3, n0, _KFOD,
|
|
1404
|
+
0,
|
|
1405
|
+
[_RARNe, _RARN],
|
|
1406
|
+
[0, 0], 1
|
|
1407
|
+
];
|
|
1408
|
+
var KinesisFirehoseOutputUpdate$ = [3, n0, _KFOU,
|
|
1409
|
+
0,
|
|
1410
|
+
[_RARNU],
|
|
1411
|
+
[0], 1
|
|
1412
|
+
];
|
|
1413
|
+
var KinesisStreamsInput$ = [3, n0, _KSI,
|
|
1414
|
+
0,
|
|
1415
|
+
[_RARNe],
|
|
1416
|
+
[0], 1
|
|
1417
|
+
];
|
|
1418
|
+
var KinesisStreamsInputDescription$ = [3, n0, _KSID,
|
|
1419
|
+
0,
|
|
1420
|
+
[_RARNe, _RARN],
|
|
1421
|
+
[0, 0], 1
|
|
1422
|
+
];
|
|
1423
|
+
var KinesisStreamsInputUpdate$ = [3, n0, _KSIU,
|
|
1424
|
+
0,
|
|
1425
|
+
[_RARNU],
|
|
1426
|
+
[0], 1
|
|
1427
|
+
];
|
|
1428
|
+
var KinesisStreamsOutput$ = [3, n0, _KSO,
|
|
1429
|
+
0,
|
|
1430
|
+
[_RARNe],
|
|
1431
|
+
[0], 1
|
|
1432
|
+
];
|
|
1433
|
+
var KinesisStreamsOutputDescription$ = [3, n0, _KSOD,
|
|
1434
|
+
0,
|
|
1435
|
+
[_RARNe, _RARN],
|
|
1436
|
+
[0, 0], 1
|
|
1437
|
+
];
|
|
1438
|
+
var KinesisStreamsOutputUpdate$ = [3, n0, _KSOU,
|
|
1439
|
+
0,
|
|
1440
|
+
[_RARNU],
|
|
1441
|
+
[0], 1
|
|
1442
|
+
];
|
|
1443
|
+
var LambdaOutput$ = [3, n0, _LO,
|
|
1444
|
+
0,
|
|
1445
|
+
[_RARNe],
|
|
1446
|
+
[0], 1
|
|
1447
|
+
];
|
|
1448
|
+
var LambdaOutputDescription$ = [3, n0, _LOD,
|
|
1449
|
+
0,
|
|
1450
|
+
[_RARNe, _RARN],
|
|
1451
|
+
[0, 0], 1
|
|
1452
|
+
];
|
|
1453
|
+
var LambdaOutputUpdate$ = [3, n0, _LOU,
|
|
1454
|
+
0,
|
|
1455
|
+
[_RARNU],
|
|
1456
|
+
[0], 1
|
|
1457
|
+
];
|
|
1458
|
+
var ListApplicationOperationsRequest$ = [3, n0, _LAOR,
|
|
1459
|
+
0,
|
|
1460
|
+
[_AN, _L, _NT, _Op, _OS],
|
|
1461
|
+
[0, 1, 0, 0, 0], 1
|
|
1462
|
+
];
|
|
1463
|
+
var ListApplicationOperationsResponse$ = [3, n0, _LAORi,
|
|
1464
|
+
0,
|
|
1465
|
+
[_AOIL, _NT],
|
|
1466
|
+
[() => ApplicationOperationInfoList, 0]
|
|
1467
|
+
];
|
|
1468
|
+
var ListApplicationSnapshotsRequest$ = [3, n0, _LASR,
|
|
1469
|
+
0,
|
|
1470
|
+
[_AN, _L, _NT],
|
|
1471
|
+
[0, 1, 0], 1
|
|
1472
|
+
];
|
|
1473
|
+
var ListApplicationSnapshotsResponse$ = [3, n0, _LASRi,
|
|
1474
|
+
0,
|
|
1475
|
+
[_SS, _NT],
|
|
1476
|
+
[() => SnapshotSummaries, 0]
|
|
1477
|
+
];
|
|
1478
|
+
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
1479
|
+
0,
|
|
1480
|
+
[_L, _NT],
|
|
1481
|
+
[1, 0]
|
|
1482
|
+
];
|
|
1483
|
+
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
1484
|
+
0,
|
|
1485
|
+
[_ASpp, _NT],
|
|
1486
|
+
[() => ApplicationSummaries, 0], 1
|
|
1487
|
+
];
|
|
1488
|
+
var ListApplicationVersionsRequest$ = [3, n0, _LAVR,
|
|
1489
|
+
0,
|
|
1490
|
+
[_AN, _L, _NT],
|
|
1491
|
+
[0, 1, 0], 1
|
|
1492
|
+
];
|
|
1493
|
+
var ListApplicationVersionsResponse$ = [3, n0, _LAVRi,
|
|
1494
|
+
0,
|
|
1495
|
+
[_AVSp, _NT],
|
|
1496
|
+
[() => ApplicationVersionSummaries, 0]
|
|
1497
|
+
];
|
|
1498
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1499
|
+
0,
|
|
1500
|
+
[_RARNe],
|
|
1501
|
+
[0], 1
|
|
1502
|
+
];
|
|
1503
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1504
|
+
0,
|
|
1505
|
+
[_T],
|
|
1506
|
+
[() => Tags]
|
|
1507
|
+
];
|
|
1508
|
+
var MappingParameters$ = [3, n0, _MP,
|
|
1509
|
+
0,
|
|
1510
|
+
[_JSONMP, _CSVMP],
|
|
1511
|
+
[() => JSONMappingParameters$, () => CSVMappingParameters$]
|
|
1512
|
+
];
|
|
1513
|
+
var MavenReference$ = [3, n0, _MR,
|
|
1514
|
+
0,
|
|
1515
|
+
[_GI, _AI, _V],
|
|
1516
|
+
[0, 0, 0], 3
|
|
1517
|
+
];
|
|
1518
|
+
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
1519
|
+
0,
|
|
1520
|
+
[_CTo, _ML, _LL],
|
|
1521
|
+
[0, 0, 0], 1
|
|
1522
|
+
];
|
|
1523
|
+
var MonitoringConfigurationDescription$ = [3, n0, _MCD,
|
|
1524
|
+
0,
|
|
1525
|
+
[_CTo, _ML, _LL],
|
|
1526
|
+
[0, 0, 0]
|
|
1527
|
+
];
|
|
1528
|
+
var MonitoringConfigurationUpdate$ = [3, n0, _MCU,
|
|
1529
|
+
0,
|
|
1530
|
+
[_CTU, _MLU, _LLU],
|
|
1531
|
+
[0, 0, 0]
|
|
1532
|
+
];
|
|
1533
|
+
var OperationFailureDetails$ = [3, n0, _OFD,
|
|
1534
|
+
0,
|
|
1535
|
+
[_ROI, _EI],
|
|
1536
|
+
[0, () => ErrorInfo$]
|
|
1537
|
+
];
|
|
1538
|
+
var Output$ = [3, n0, _O,
|
|
1539
|
+
0,
|
|
1540
|
+
[_N, _DS, _KSO, _KFO, _LO],
|
|
1541
|
+
[0, () => DestinationSchema$, () => KinesisStreamsOutput$, () => KinesisFirehoseOutput$, () => LambdaOutput$], 2
|
|
1542
|
+
];
|
|
1543
|
+
var OutputDescription$ = [3, n0, _ODu,
|
|
1544
|
+
0,
|
|
1545
|
+
[_OIu, _N, _KSOD, _KFOD, _LOD, _DS],
|
|
1546
|
+
[0, 0, () => KinesisStreamsOutputDescription$, () => KinesisFirehoseOutputDescription$, () => LambdaOutputDescription$, () => DestinationSchema$]
|
|
1547
|
+
];
|
|
1548
|
+
var OutputUpdate$ = [3, n0, _OU,
|
|
1549
|
+
0,
|
|
1550
|
+
[_OIu, _NU, _KSOU, _KFOU, _LOU, _DSU],
|
|
1551
|
+
[0, 0, () => KinesisStreamsOutputUpdate$, () => KinesisFirehoseOutputUpdate$, () => LambdaOutputUpdate$, () => DestinationSchema$], 1
|
|
1552
|
+
];
|
|
1553
|
+
var ParallelismConfiguration$ = [3, n0, _PC,
|
|
1554
|
+
0,
|
|
1555
|
+
[_CTo, _P, _PPKPU, _ASE],
|
|
1556
|
+
[0, 1, 1, 2], 1
|
|
1557
|
+
];
|
|
1558
|
+
var ParallelismConfigurationDescription$ = [3, n0, _PCD,
|
|
1559
|
+
0,
|
|
1560
|
+
[_CTo, _P, _PPKPU, _CP, _ASE],
|
|
1561
|
+
[0, 1, 1, 1, 2]
|
|
1562
|
+
];
|
|
1563
|
+
var ParallelismConfigurationUpdate$ = [3, n0, _PCU,
|
|
1564
|
+
0,
|
|
1565
|
+
[_CTU, _PU, _PPKPUU, _ASEU],
|
|
1566
|
+
[0, 1, 1, 2]
|
|
1567
|
+
];
|
|
1568
|
+
var PropertyGroup$ = [3, n0, _PGr,
|
|
1569
|
+
0,
|
|
1570
|
+
[_PGI, _PM],
|
|
1571
|
+
[0, 128 | 0], 2
|
|
1572
|
+
];
|
|
1573
|
+
var RecordColumn$ = [3, n0, _RC,
|
|
1574
|
+
0,
|
|
1575
|
+
[_N, _STq, _Ma],
|
|
1576
|
+
[0, 0, 0], 2
|
|
1577
|
+
];
|
|
1578
|
+
var RecordFormat$ = [3, n0, _RF,
|
|
1579
|
+
0,
|
|
1580
|
+
[_RFT, _MP],
|
|
1581
|
+
[0, () => MappingParameters$], 1
|
|
1582
|
+
];
|
|
1583
|
+
var ReferenceDataSource$ = [3, n0, _RDS,
|
|
1584
|
+
0,
|
|
1585
|
+
[_TN, _RS, _SRDS],
|
|
1586
|
+
[0, () => SourceSchema$, () => S3ReferenceDataSource$], 2
|
|
1587
|
+
];
|
|
1588
|
+
var ReferenceDataSourceDescription$ = [3, n0, _RDSDe,
|
|
1589
|
+
0,
|
|
1590
|
+
[_RI, _TN, _SRDSD, _RS],
|
|
1591
|
+
[0, 0, () => S3ReferenceDataSourceDescription$, () => SourceSchema$], 3
|
|
1592
|
+
];
|
|
1593
|
+
var ReferenceDataSourceUpdate$ = [3, n0, _RDSU,
|
|
1594
|
+
0,
|
|
1595
|
+
[_RI, _TNU, _SRDSU, _RSU],
|
|
1596
|
+
[0, 0, () => S3ReferenceDataSourceUpdate$, () => SourceSchema$], 1
|
|
1597
|
+
];
|
|
1598
|
+
var RollbackApplicationRequest$ = [3, n0, _RAR,
|
|
1599
|
+
0,
|
|
1600
|
+
[_AN, _CAVI],
|
|
1601
|
+
[0, 1], 2
|
|
1602
|
+
];
|
|
1603
|
+
var RollbackApplicationResponse$ = [3, n0, _RARo,
|
|
1604
|
+
0,
|
|
1605
|
+
[_AD, _OI],
|
|
1606
|
+
[() => ApplicationDetail$, 0], 1
|
|
1607
|
+
];
|
|
1608
|
+
var RunConfiguration$ = [3, n0, _RCu,
|
|
1609
|
+
0,
|
|
1610
|
+
[_FRC, _SRC, _ARC],
|
|
1611
|
+
[() => FlinkRunConfiguration$, () => SqlRunConfigurations, () => ApplicationRestoreConfiguration$]
|
|
1612
|
+
];
|
|
1613
|
+
var RunConfigurationDescription$ = [3, n0, _RCD,
|
|
1614
|
+
0,
|
|
1615
|
+
[_ARCD, _FRCD],
|
|
1616
|
+
[() => ApplicationRestoreConfiguration$, () => FlinkRunConfiguration$]
|
|
1617
|
+
];
|
|
1618
|
+
var RunConfigurationUpdate$ = [3, n0, _RCUu,
|
|
1619
|
+
0,
|
|
1620
|
+
[_FRC, _ARC],
|
|
1621
|
+
[() => FlinkRunConfiguration$, () => ApplicationRestoreConfiguration$]
|
|
1622
|
+
];
|
|
1623
|
+
var S3ApplicationCodeLocationDescription$ = [3, n0, _SACLD,
|
|
1624
|
+
0,
|
|
1625
|
+
[_BARN, _FK, _OV],
|
|
1626
|
+
[0, 0, 0], 2
|
|
1627
|
+
];
|
|
1628
|
+
var S3Configuration$ = [3, n0, _SC,
|
|
1629
|
+
0,
|
|
1630
|
+
[_BARN, _FK],
|
|
1631
|
+
[0, 0], 2
|
|
1632
|
+
];
|
|
1633
|
+
var S3ContentBaseLocation$ = [3, n0, _SCBL,
|
|
1634
|
+
0,
|
|
1635
|
+
[_BARN, _BP],
|
|
1636
|
+
[0, 0], 1
|
|
1637
|
+
];
|
|
1638
|
+
var S3ContentBaseLocationDescription$ = [3, n0, _SCBLD,
|
|
1639
|
+
0,
|
|
1640
|
+
[_BARN, _BP],
|
|
1641
|
+
[0, 0], 1
|
|
1642
|
+
];
|
|
1643
|
+
var S3ContentBaseLocationUpdate$ = [3, n0, _SCBLU,
|
|
1644
|
+
0,
|
|
1645
|
+
[_BARNU, _BPU],
|
|
1646
|
+
[0, 0]
|
|
1647
|
+
];
|
|
1648
|
+
var S3ContentLocation$ = [3, n0, _SCL,
|
|
1649
|
+
0,
|
|
1650
|
+
[_BARN, _FK, _OV],
|
|
1651
|
+
[0, 0, 0], 2
|
|
1652
|
+
];
|
|
1653
|
+
var S3ContentLocationUpdate$ = [3, n0, _SCLU,
|
|
1654
|
+
0,
|
|
1655
|
+
[_BARNU, _FKU, _OVU],
|
|
1656
|
+
[0, 0, 0]
|
|
1657
|
+
];
|
|
1658
|
+
var S3ReferenceDataSource$ = [3, n0, _SRDS,
|
|
1659
|
+
0,
|
|
1660
|
+
[_BARN, _FK],
|
|
1661
|
+
[0, 0]
|
|
1662
|
+
];
|
|
1663
|
+
var S3ReferenceDataSourceDescription$ = [3, n0, _SRDSD,
|
|
1664
|
+
0,
|
|
1665
|
+
[_BARN, _FK, _RRARN],
|
|
1666
|
+
[0, 0, 0], 2
|
|
1667
|
+
];
|
|
1668
|
+
var S3ReferenceDataSourceUpdate$ = [3, n0, _SRDSU,
|
|
1669
|
+
0,
|
|
1670
|
+
[_BARNU, _FKU],
|
|
1671
|
+
[0, 0]
|
|
1672
|
+
];
|
|
1673
|
+
var SnapshotDetails$ = [3, n0, _SD,
|
|
1674
|
+
0,
|
|
1675
|
+
[_SN, _SSn, _AVI, _SCT, _RE, _AECD],
|
|
1676
|
+
[0, 0, 1, 4, 0, () => ApplicationEncryptionConfigurationDescription$], 3
|
|
1677
|
+
];
|
|
1678
|
+
var SourceSchema$ = [3, n0, _SSo,
|
|
1679
|
+
0,
|
|
1680
|
+
[_RF, _RCe, _REe],
|
|
1681
|
+
[() => RecordFormat$, () => RecordColumns, 0], 2
|
|
1682
|
+
];
|
|
1683
|
+
var SqlApplicationConfiguration$ = [3, n0, _SAC,
|
|
1684
|
+
0,
|
|
1685
|
+
[_In, _Ou, _RDSe],
|
|
1686
|
+
[() => Inputs, () => Outputs, () => ReferenceDataSources]
|
|
1687
|
+
];
|
|
1688
|
+
var SqlApplicationConfigurationDescription$ = [3, n0, _SACD,
|
|
1689
|
+
0,
|
|
1690
|
+
[_ID, _OD, _RDSD],
|
|
1691
|
+
[() => InputDescriptions, () => OutputDescriptions, () => ReferenceDataSourceDescriptions]
|
|
1692
|
+
];
|
|
1693
|
+
var SqlApplicationConfigurationUpdate$ = [3, n0, _SACU,
|
|
1694
|
+
0,
|
|
1695
|
+
[_IUn, _OUu, _RDSUe],
|
|
1696
|
+
[() => InputUpdates, () => OutputUpdates, () => ReferenceDataSourceUpdates]
|
|
1697
|
+
];
|
|
1698
|
+
var SqlRunConfiguration$ = [3, n0, _SRCq,
|
|
1699
|
+
0,
|
|
1700
|
+
[_II, _ISPC],
|
|
1701
|
+
[0, () => InputStartingPositionConfiguration$], 2
|
|
1702
|
+
];
|
|
1703
|
+
var StartApplicationRequest$ = [3, n0, _SAR,
|
|
1704
|
+
0,
|
|
1705
|
+
[_AN, _RCu],
|
|
1706
|
+
[0, () => RunConfiguration$], 1
|
|
1707
|
+
];
|
|
1708
|
+
var StartApplicationResponse$ = [3, n0, _SARt,
|
|
1709
|
+
0,
|
|
1710
|
+
[_OI],
|
|
1711
|
+
[0]
|
|
1712
|
+
];
|
|
1713
|
+
var StopApplicationRequest$ = [3, n0, _SARto,
|
|
1714
|
+
0,
|
|
1715
|
+
[_AN, _F],
|
|
1716
|
+
[0, 2], 1
|
|
1717
|
+
];
|
|
1718
|
+
var StopApplicationResponse$ = [3, n0, _SARtop,
|
|
1719
|
+
0,
|
|
1720
|
+
[_OI],
|
|
1721
|
+
[0]
|
|
1722
|
+
];
|
|
1723
|
+
var Tag$ = [3, n0, _Ta,
|
|
1724
|
+
0,
|
|
1725
|
+
[_K, _Va],
|
|
1726
|
+
[0, 0], 1
|
|
1727
|
+
];
|
|
1728
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1729
|
+
0,
|
|
1730
|
+
[_RARNe, _T],
|
|
1731
|
+
[0, () => Tags], 2
|
|
1732
|
+
];
|
|
1733
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1734
|
+
0,
|
|
1735
|
+
[],
|
|
1736
|
+
[]
|
|
1737
|
+
];
|
|
1738
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1739
|
+
0,
|
|
1740
|
+
[_RARNe, _TK],
|
|
1741
|
+
[0, 64 | 0], 2
|
|
1742
|
+
];
|
|
1743
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1744
|
+
0,
|
|
1745
|
+
[],
|
|
1746
|
+
[]
|
|
1747
|
+
];
|
|
1748
|
+
var UpdateApplicationMaintenanceConfigurationRequest$ = [3, n0, _UAMCR,
|
|
1749
|
+
0,
|
|
1750
|
+
[_AN, _AMCU],
|
|
1751
|
+
[0, () => ApplicationMaintenanceConfigurationUpdate$], 2
|
|
1752
|
+
];
|
|
1753
|
+
var UpdateApplicationMaintenanceConfigurationResponse$ = [3, n0, _UAMCRp,
|
|
1754
|
+
0,
|
|
1755
|
+
[_AARN, _AMCD],
|
|
1756
|
+
[0, () => ApplicationMaintenanceConfigurationDescription$]
|
|
1757
|
+
];
|
|
1758
|
+
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
1759
|
+
0,
|
|
1760
|
+
[_AN, _CAVI, _ACU, _SERU, _RCUu, _CWLOUl, _CT, _REUu],
|
|
1761
|
+
[0, 1, () => ApplicationConfigurationUpdate$, 0, () => RunConfigurationUpdate$, () => CloudWatchLoggingOptionUpdates, 0, 0], 1
|
|
1762
|
+
];
|
|
1763
|
+
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
1764
|
+
0,
|
|
1765
|
+
[_AD, _OI],
|
|
1766
|
+
[() => ApplicationDetail$, 0], 1
|
|
1767
|
+
];
|
|
1768
|
+
var VpcConfiguration$ = [3, n0, _VC,
|
|
1769
|
+
0,
|
|
1770
|
+
[_SI, _SGI],
|
|
1771
|
+
[64 | 0, 64 | 0], 2
|
|
1772
|
+
];
|
|
1773
|
+
var VpcConfigurationDescription$ = [3, n0, _VCD,
|
|
1774
|
+
0,
|
|
1775
|
+
[_VCI, _VI, _SI, _SGI],
|
|
1776
|
+
[0, 0, 64 | 0, 64 | 0], 4
|
|
1777
|
+
];
|
|
1778
|
+
var VpcConfigurationUpdate$ = [3, n0, _VCUp,
|
|
1779
|
+
0,
|
|
1780
|
+
[_VCI, _SIU, _SGIU],
|
|
1781
|
+
[0, 64 | 0, 64 | 0], 1
|
|
1782
|
+
];
|
|
1783
|
+
var ZeppelinApplicationConfiguration$ = [3, n0, _ZAC,
|
|
1784
|
+
0,
|
|
1785
|
+
[_MC, _CCa, _DAAC, _CACu],
|
|
1786
|
+
[() => ZeppelinMonitoringConfiguration$, () => CatalogConfiguration$, () => DeployAsApplicationConfiguration$, () => CustomArtifactsConfigurationList]
|
|
1787
|
+
];
|
|
1788
|
+
var ZeppelinApplicationConfigurationDescription$ = [3, n0, _ZACD,
|
|
1789
|
+
0,
|
|
1790
|
+
[_MCD, _CCDa, _DAACD, _CACDu],
|
|
1791
|
+
[() => ZeppelinMonitoringConfigurationDescription$, () => CatalogConfigurationDescription$, () => DeployAsApplicationConfigurationDescription$, () => CustomArtifactsConfigurationDescriptionList], 1
|
|
1792
|
+
];
|
|
1793
|
+
var ZeppelinApplicationConfigurationUpdate$ = [3, n0, _ZACU,
|
|
1794
|
+
0,
|
|
1795
|
+
[_MCU, _CCUa, _DAACU, _CACU],
|
|
1796
|
+
[() => ZeppelinMonitoringConfigurationUpdate$, () => CatalogConfigurationUpdate$, () => DeployAsApplicationConfigurationUpdate$, () => CustomArtifactsConfigurationList]
|
|
1797
|
+
];
|
|
1798
|
+
var ZeppelinMonitoringConfiguration$ = [3, n0, _ZMC,
|
|
1799
|
+
0,
|
|
1800
|
+
[_LL],
|
|
1801
|
+
[0], 1
|
|
1802
|
+
];
|
|
1803
|
+
var ZeppelinMonitoringConfigurationDescription$ = [3, n0, _ZMCD,
|
|
1804
|
+
0,
|
|
1805
|
+
[_LL],
|
|
1806
|
+
[0]
|
|
1807
|
+
];
|
|
1808
|
+
var ZeppelinMonitoringConfigurationUpdate$ = [3, n0, _ZMCU,
|
|
1809
|
+
0,
|
|
1810
|
+
[_LLU],
|
|
1811
|
+
[0], 1
|
|
1812
|
+
];
|
|
1813
|
+
var ApplicationOperationInfoList = [1, n0, _AOIL,
|
|
1814
|
+
0, () => ApplicationOperationInfo$
|
|
1815
|
+
];
|
|
1816
|
+
var ApplicationSummaries = [1, n0, _ASpp,
|
|
1817
|
+
0, () => ApplicationSummary$
|
|
1818
|
+
];
|
|
1819
|
+
var ApplicationVersionSummaries = [1, n0, _AVSp,
|
|
1820
|
+
0, () => ApplicationVersionSummary$
|
|
1821
|
+
];
|
|
1822
|
+
var CloudWatchLoggingOptionDescriptions = [1, n0, _CWLOD,
|
|
1823
|
+
0, () => CloudWatchLoggingOptionDescription$
|
|
1824
|
+
];
|
|
1825
|
+
var CloudWatchLoggingOptions = [1, n0, _CWLOl,
|
|
1826
|
+
0, () => CloudWatchLoggingOption$
|
|
1827
|
+
];
|
|
1828
|
+
var CloudWatchLoggingOptionUpdates = [1, n0, _CWLOUl,
|
|
1829
|
+
0, () => CloudWatchLoggingOptionUpdate$
|
|
1830
|
+
];
|
|
1831
|
+
var CustomArtifactsConfigurationDescriptionList = [1, n0, _CACDL,
|
|
1832
|
+
0, () => CustomArtifactConfigurationDescription$
|
|
1833
|
+
];
|
|
1834
|
+
var CustomArtifactsConfigurationList = [1, n0, _CACL,
|
|
1835
|
+
0, () => CustomArtifactConfiguration$
|
|
1836
|
+
];
|
|
1837
|
+
var InputDescriptions = [1, n0, _ID,
|
|
1838
|
+
0, () => InputDescription$
|
|
1839
|
+
];
|
|
1840
|
+
var Inputs = [1, n0, _In,
|
|
1841
|
+
0, () => Input$
|
|
1842
|
+
];
|
|
1843
|
+
var InputUpdates = [1, n0, _IUn,
|
|
1844
|
+
0, () => InputUpdate$
|
|
1845
|
+
];
|
|
1846
|
+
var OutputDescriptions = [1, n0, _OD,
|
|
1847
|
+
0, () => OutputDescription$
|
|
1848
|
+
];
|
|
1849
|
+
var Outputs = [1, n0, _Ou,
|
|
1850
|
+
0, () => Output$
|
|
1851
|
+
];
|
|
1852
|
+
var OutputUpdates = [1, n0, _OUu,
|
|
1853
|
+
0, () => OutputUpdate$
|
|
1854
|
+
];
|
|
1855
|
+
var PropertyGroups = [1, n0, _PG,
|
|
1856
|
+
0, () => PropertyGroup$
|
|
1857
|
+
];
|
|
1858
|
+
var RecordColumns = [1, n0, _RCe,
|
|
1859
|
+
0, () => RecordColumn$
|
|
1860
|
+
];
|
|
1861
|
+
var ReferenceDataSourceDescriptions = [1, n0, _RDSD,
|
|
1862
|
+
0, () => ReferenceDataSourceDescription$
|
|
1863
|
+
];
|
|
1864
|
+
var ReferenceDataSources = [1, n0, _RDSe,
|
|
1865
|
+
0, () => ReferenceDataSource$
|
|
1866
|
+
];
|
|
1867
|
+
var ReferenceDataSourceUpdates = [1, n0, _RDSUe,
|
|
1868
|
+
0, () => ReferenceDataSourceUpdate$
|
|
1869
|
+
];
|
|
1870
|
+
var SnapshotSummaries = [1, n0, _SS,
|
|
1871
|
+
0, () => SnapshotDetails$
|
|
1872
|
+
];
|
|
1873
|
+
var SqlRunConfigurations = [1, n0, _SRC,
|
|
1874
|
+
0, () => SqlRunConfiguration$
|
|
1875
|
+
];
|
|
1876
|
+
var Tags = [1, n0, _T,
|
|
1877
|
+
0, () => Tag$
|
|
1878
|
+
];
|
|
1879
|
+
var VpcConfigurationDescriptions = [1, n0, _VCDp,
|
|
1880
|
+
0, () => VpcConfigurationDescription$
|
|
1881
|
+
];
|
|
1882
|
+
var VpcConfigurations = [1, n0, _VCp,
|
|
1883
|
+
0, () => VpcConfiguration$
|
|
1884
|
+
];
|
|
1885
|
+
var VpcConfigurationUpdates = [1, n0, _VCU,
|
|
1886
|
+
0, () => VpcConfigurationUpdate$
|
|
1887
|
+
];
|
|
1888
|
+
var AddApplicationCloudWatchLoggingOption$ = [9, n0, _AACWLO,
|
|
1889
|
+
0, () => AddApplicationCloudWatchLoggingOptionRequest$, () => AddApplicationCloudWatchLoggingOptionResponse$
|
|
1890
|
+
];
|
|
1891
|
+
var AddApplicationInput$ = [9, n0, _AAI,
|
|
1892
|
+
0, () => AddApplicationInputRequest$, () => AddApplicationInputResponse$
|
|
1893
|
+
];
|
|
1894
|
+
var AddApplicationInputProcessingConfiguration$ = [9, n0, _AAIPC,
|
|
1895
|
+
0, () => AddApplicationInputProcessingConfigurationRequest$, () => AddApplicationInputProcessingConfigurationResponse$
|
|
1896
|
+
];
|
|
1897
|
+
var AddApplicationOutput$ = [9, n0, _AAO,
|
|
1898
|
+
0, () => AddApplicationOutputRequest$, () => AddApplicationOutputResponse$
|
|
1899
|
+
];
|
|
1900
|
+
var AddApplicationReferenceDataSource$ = [9, n0, _AARDS,
|
|
1901
|
+
0, () => AddApplicationReferenceDataSourceRequest$, () => AddApplicationReferenceDataSourceResponse$
|
|
1902
|
+
];
|
|
1903
|
+
var AddApplicationVpcConfiguration$ = [9, n0, _AAVC,
|
|
1904
|
+
0, () => AddApplicationVpcConfigurationRequest$, () => AddApplicationVpcConfigurationResponse$
|
|
1905
|
+
];
|
|
1906
|
+
var CreateApplication$ = [9, n0, _CA,
|
|
1907
|
+
0, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
1908
|
+
];
|
|
1909
|
+
var CreateApplicationPresignedUrl$ = [9, n0, _CAPU,
|
|
1910
|
+
0, () => CreateApplicationPresignedUrlRequest$, () => CreateApplicationPresignedUrlResponse$
|
|
1911
|
+
];
|
|
1912
|
+
var CreateApplicationSnapshot$ = [9, n0, _CAS,
|
|
1913
|
+
0, () => CreateApplicationSnapshotRequest$, () => CreateApplicationSnapshotResponse$
|
|
1914
|
+
];
|
|
1915
|
+
var DeleteApplication$ = [9, n0, _DA,
|
|
1916
|
+
0, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
1917
|
+
];
|
|
1918
|
+
var DeleteApplicationCloudWatchLoggingOption$ = [9, n0, _DACWLO,
|
|
1919
|
+
0, () => DeleteApplicationCloudWatchLoggingOptionRequest$, () => DeleteApplicationCloudWatchLoggingOptionResponse$
|
|
1920
|
+
];
|
|
1921
|
+
var DeleteApplicationInputProcessingConfiguration$ = [9, n0, _DAIPC,
|
|
1922
|
+
0, () => DeleteApplicationInputProcessingConfigurationRequest$, () => DeleteApplicationInputProcessingConfigurationResponse$
|
|
1923
|
+
];
|
|
1924
|
+
var DeleteApplicationOutput$ = [9, n0, _DAO,
|
|
1925
|
+
0, () => DeleteApplicationOutputRequest$, () => DeleteApplicationOutputResponse$
|
|
1926
|
+
];
|
|
1927
|
+
var DeleteApplicationReferenceDataSource$ = [9, n0, _DARDS,
|
|
1928
|
+
0, () => DeleteApplicationReferenceDataSourceRequest$, () => DeleteApplicationReferenceDataSourceResponse$
|
|
1929
|
+
];
|
|
1930
|
+
var DeleteApplicationSnapshot$ = [9, n0, _DAS,
|
|
1931
|
+
0, () => DeleteApplicationSnapshotRequest$, () => DeleteApplicationSnapshotResponse$
|
|
1932
|
+
];
|
|
1933
|
+
var DeleteApplicationVpcConfiguration$ = [9, n0, _DAVC,
|
|
1934
|
+
0, () => DeleteApplicationVpcConfigurationRequest$, () => DeleteApplicationVpcConfigurationResponse$
|
|
1935
|
+
];
|
|
1936
|
+
var DescribeApplication$ = [9, n0, _DAe,
|
|
1937
|
+
0, () => DescribeApplicationRequest$, () => DescribeApplicationResponse$
|
|
1938
|
+
];
|
|
1939
|
+
var DescribeApplicationOperation$ = [9, n0, _DAOe,
|
|
1940
|
+
0, () => DescribeApplicationOperationRequest$, () => DescribeApplicationOperationResponse$
|
|
1941
|
+
];
|
|
1942
|
+
var DescribeApplicationSnapshot$ = [9, n0, _DASe,
|
|
1943
|
+
0, () => DescribeApplicationSnapshotRequest$, () => DescribeApplicationSnapshotResponse$
|
|
1944
|
+
];
|
|
1945
|
+
var DescribeApplicationVersion$ = [9, n0, _DAV,
|
|
1946
|
+
0, () => DescribeApplicationVersionRequest$, () => DescribeApplicationVersionResponse$
|
|
1947
|
+
];
|
|
1948
|
+
var DiscoverInputSchema$ = [9, n0, _DIS,
|
|
1949
|
+
0, () => DiscoverInputSchemaRequest$, () => DiscoverInputSchemaResponse$
|
|
1950
|
+
];
|
|
1951
|
+
var ListApplicationOperations$ = [9, n0, _LAO,
|
|
1952
|
+
0, () => ListApplicationOperationsRequest$, () => ListApplicationOperationsResponse$
|
|
1953
|
+
];
|
|
1954
|
+
var ListApplications$ = [9, n0, _LA,
|
|
1955
|
+
0, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
1956
|
+
];
|
|
1957
|
+
var ListApplicationSnapshots$ = [9, n0, _LAS,
|
|
1958
|
+
0, () => ListApplicationSnapshotsRequest$, () => ListApplicationSnapshotsResponse$
|
|
1959
|
+
];
|
|
1960
|
+
var ListApplicationVersions$ = [9, n0, _LAV,
|
|
1961
|
+
0, () => ListApplicationVersionsRequest$, () => ListApplicationVersionsResponse$
|
|
1962
|
+
];
|
|
1963
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1964
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1965
|
+
];
|
|
1966
|
+
var RollbackApplication$ = [9, n0, _RA,
|
|
1967
|
+
0, () => RollbackApplicationRequest$, () => RollbackApplicationResponse$
|
|
1968
|
+
];
|
|
1969
|
+
var StartApplication$ = [9, n0, _SA,
|
|
1970
|
+
0, () => StartApplicationRequest$, () => StartApplicationResponse$
|
|
1971
|
+
];
|
|
1972
|
+
var StopApplication$ = [9, n0, _SAt,
|
|
1973
|
+
0, () => StopApplicationRequest$, () => StopApplicationResponse$
|
|
1974
|
+
];
|
|
1975
|
+
var TagResource$ = [9, n0, _TR,
|
|
1976
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1977
|
+
];
|
|
1978
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1979
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1980
|
+
];
|
|
1981
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
1982
|
+
0, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
1983
|
+
];
|
|
1984
|
+
var UpdateApplicationMaintenanceConfiguration$ = [9, n0, _UAMC,
|
|
1985
|
+
0, () => UpdateApplicationMaintenanceConfigurationRequest$, () => UpdateApplicationMaintenanceConfigurationResponse$
|
|
1986
|
+
];
|
|
1987
|
+
|
|
1988
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1989
|
+
return {
|
|
1990
|
+
apiVersion: "2018-05-23",
|
|
1991
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1992
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1993
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1994
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1995
|
+
extensions: config?.extensions ?? [],
|
|
1996
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultKinesisAnalyticsV2HttpAuthSchemeProvider,
|
|
1997
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1998
|
+
{
|
|
1999
|
+
schemeId: "aws.auth#sigv4",
|
|
2000
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2001
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2002
|
+
},
|
|
2003
|
+
],
|
|
2004
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2005
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2006
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2007
|
+
defaultNamespace: "com.amazonaws.kinesisanalyticsv2",
|
|
2008
|
+
errorTypeRegistries,
|
|
2009
|
+
xmlNamespace: "http://analytics.kinesis.amazonaws.com/doc/2018-05-23",
|
|
2010
|
+
version: "2018-05-23",
|
|
2011
|
+
serviceTarget: "KinesisAnalytics_20180523",
|
|
2012
|
+
},
|
|
2013
|
+
serviceId: config?.serviceId ?? "Kinesis Analytics V2",
|
|
2014
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2015
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2016
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2017
|
+
};
|
|
2018
|
+
};
|
|
2019
|
+
|
|
2020
|
+
const getRuntimeConfig = (config) => {
|
|
2021
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2022
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2023
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2024
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2025
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2026
|
+
const loaderConfig = {
|
|
2027
|
+
profile: config?.profile,
|
|
2028
|
+
logger: clientSharedValues.logger,
|
|
2029
|
+
};
|
|
2030
|
+
return {
|
|
2031
|
+
...clientSharedValues,
|
|
2032
|
+
...config,
|
|
2033
|
+
runtime: "node",
|
|
2034
|
+
defaultsMode,
|
|
2035
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2036
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2037
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2038
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2039
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2040
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2041
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2042
|
+
retryMode: config?.retryMode ??
|
|
2043
|
+
loadConfig({
|
|
2044
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2045
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2046
|
+
}, config),
|
|
2047
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2048
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2049
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2050
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2051
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
|
|
34
2055
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2056
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2057
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -651,56 +2672,314 @@ const SnapshotStatus = {
|
|
|
651
2672
|
READY: "READY",
|
|
652
2673
|
};
|
|
653
2674
|
|
|
2675
|
+
exports.AddApplicationCloudWatchLoggingOption$ = AddApplicationCloudWatchLoggingOption$;
|
|
654
2676
|
exports.AddApplicationCloudWatchLoggingOptionCommand = AddApplicationCloudWatchLoggingOptionCommand;
|
|
2677
|
+
exports.AddApplicationCloudWatchLoggingOptionRequest$ = AddApplicationCloudWatchLoggingOptionRequest$;
|
|
2678
|
+
exports.AddApplicationCloudWatchLoggingOptionResponse$ = AddApplicationCloudWatchLoggingOptionResponse$;
|
|
2679
|
+
exports.AddApplicationInput$ = AddApplicationInput$;
|
|
655
2680
|
exports.AddApplicationInputCommand = AddApplicationInputCommand;
|
|
2681
|
+
exports.AddApplicationInputProcessingConfiguration$ = AddApplicationInputProcessingConfiguration$;
|
|
656
2682
|
exports.AddApplicationInputProcessingConfigurationCommand = AddApplicationInputProcessingConfigurationCommand;
|
|
2683
|
+
exports.AddApplicationInputProcessingConfigurationRequest$ = AddApplicationInputProcessingConfigurationRequest$;
|
|
2684
|
+
exports.AddApplicationInputProcessingConfigurationResponse$ = AddApplicationInputProcessingConfigurationResponse$;
|
|
2685
|
+
exports.AddApplicationInputRequest$ = AddApplicationInputRequest$;
|
|
2686
|
+
exports.AddApplicationInputResponse$ = AddApplicationInputResponse$;
|
|
2687
|
+
exports.AddApplicationOutput$ = AddApplicationOutput$;
|
|
657
2688
|
exports.AddApplicationOutputCommand = AddApplicationOutputCommand;
|
|
2689
|
+
exports.AddApplicationOutputRequest$ = AddApplicationOutputRequest$;
|
|
2690
|
+
exports.AddApplicationOutputResponse$ = AddApplicationOutputResponse$;
|
|
2691
|
+
exports.AddApplicationReferenceDataSource$ = AddApplicationReferenceDataSource$;
|
|
658
2692
|
exports.AddApplicationReferenceDataSourceCommand = AddApplicationReferenceDataSourceCommand;
|
|
2693
|
+
exports.AddApplicationReferenceDataSourceRequest$ = AddApplicationReferenceDataSourceRequest$;
|
|
2694
|
+
exports.AddApplicationReferenceDataSourceResponse$ = AddApplicationReferenceDataSourceResponse$;
|
|
2695
|
+
exports.AddApplicationVpcConfiguration$ = AddApplicationVpcConfiguration$;
|
|
659
2696
|
exports.AddApplicationVpcConfigurationCommand = AddApplicationVpcConfigurationCommand;
|
|
2697
|
+
exports.AddApplicationVpcConfigurationRequest$ = AddApplicationVpcConfigurationRequest$;
|
|
2698
|
+
exports.AddApplicationVpcConfigurationResponse$ = AddApplicationVpcConfigurationResponse$;
|
|
2699
|
+
exports.ApplicationCodeConfiguration$ = ApplicationCodeConfiguration$;
|
|
2700
|
+
exports.ApplicationCodeConfigurationDescription$ = ApplicationCodeConfigurationDescription$;
|
|
2701
|
+
exports.ApplicationCodeConfigurationUpdate$ = ApplicationCodeConfigurationUpdate$;
|
|
2702
|
+
exports.ApplicationConfiguration$ = ApplicationConfiguration$;
|
|
2703
|
+
exports.ApplicationConfigurationDescription$ = ApplicationConfigurationDescription$;
|
|
2704
|
+
exports.ApplicationConfigurationUpdate$ = ApplicationConfigurationUpdate$;
|
|
2705
|
+
exports.ApplicationDetail$ = ApplicationDetail$;
|
|
2706
|
+
exports.ApplicationEncryptionConfiguration$ = ApplicationEncryptionConfiguration$;
|
|
2707
|
+
exports.ApplicationEncryptionConfigurationDescription$ = ApplicationEncryptionConfigurationDescription$;
|
|
2708
|
+
exports.ApplicationEncryptionConfigurationUpdate$ = ApplicationEncryptionConfigurationUpdate$;
|
|
2709
|
+
exports.ApplicationMaintenanceConfigurationDescription$ = ApplicationMaintenanceConfigurationDescription$;
|
|
2710
|
+
exports.ApplicationMaintenanceConfigurationUpdate$ = ApplicationMaintenanceConfigurationUpdate$;
|
|
660
2711
|
exports.ApplicationMode = ApplicationMode;
|
|
2712
|
+
exports.ApplicationOperationInfo$ = ApplicationOperationInfo$;
|
|
2713
|
+
exports.ApplicationOperationInfoDetails$ = ApplicationOperationInfoDetails$;
|
|
2714
|
+
exports.ApplicationRestoreConfiguration$ = ApplicationRestoreConfiguration$;
|
|
661
2715
|
exports.ApplicationRestoreType = ApplicationRestoreType;
|
|
2716
|
+
exports.ApplicationSnapshotConfiguration$ = ApplicationSnapshotConfiguration$;
|
|
2717
|
+
exports.ApplicationSnapshotConfigurationDescription$ = ApplicationSnapshotConfigurationDescription$;
|
|
2718
|
+
exports.ApplicationSnapshotConfigurationUpdate$ = ApplicationSnapshotConfigurationUpdate$;
|
|
662
2719
|
exports.ApplicationStatus = ApplicationStatus;
|
|
2720
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
2721
|
+
exports.ApplicationSystemRollbackConfiguration$ = ApplicationSystemRollbackConfiguration$;
|
|
2722
|
+
exports.ApplicationSystemRollbackConfigurationDescription$ = ApplicationSystemRollbackConfigurationDescription$;
|
|
2723
|
+
exports.ApplicationSystemRollbackConfigurationUpdate$ = ApplicationSystemRollbackConfigurationUpdate$;
|
|
2724
|
+
exports.ApplicationVersionChangeDetails$ = ApplicationVersionChangeDetails$;
|
|
2725
|
+
exports.ApplicationVersionSummary$ = ApplicationVersionSummary$;
|
|
663
2726
|
exports.ArtifactType = ArtifactType;
|
|
2727
|
+
exports.CSVMappingParameters$ = CSVMappingParameters$;
|
|
2728
|
+
exports.CatalogConfiguration$ = CatalogConfiguration$;
|
|
2729
|
+
exports.CatalogConfigurationDescription$ = CatalogConfigurationDescription$;
|
|
2730
|
+
exports.CatalogConfigurationUpdate$ = CatalogConfigurationUpdate$;
|
|
2731
|
+
exports.CheckpointConfiguration$ = CheckpointConfiguration$;
|
|
2732
|
+
exports.CheckpointConfigurationDescription$ = CheckpointConfigurationDescription$;
|
|
2733
|
+
exports.CheckpointConfigurationUpdate$ = CheckpointConfigurationUpdate$;
|
|
2734
|
+
exports.CloudWatchLoggingOption$ = CloudWatchLoggingOption$;
|
|
2735
|
+
exports.CloudWatchLoggingOptionDescription$ = CloudWatchLoggingOptionDescription$;
|
|
2736
|
+
exports.CloudWatchLoggingOptionUpdate$ = CloudWatchLoggingOptionUpdate$;
|
|
2737
|
+
exports.CodeContent$ = CodeContent$;
|
|
2738
|
+
exports.CodeContentDescription$ = CodeContentDescription$;
|
|
664
2739
|
exports.CodeContentType = CodeContentType;
|
|
2740
|
+
exports.CodeContentUpdate$ = CodeContentUpdate$;
|
|
2741
|
+
exports.CodeValidationException = CodeValidationException;
|
|
2742
|
+
exports.CodeValidationException$ = CodeValidationException$;
|
|
2743
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
2744
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
665
2745
|
exports.ConfigurationType = ConfigurationType;
|
|
2746
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
666
2747
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
2748
|
+
exports.CreateApplicationPresignedUrl$ = CreateApplicationPresignedUrl$;
|
|
667
2749
|
exports.CreateApplicationPresignedUrlCommand = CreateApplicationPresignedUrlCommand;
|
|
2750
|
+
exports.CreateApplicationPresignedUrlRequest$ = CreateApplicationPresignedUrlRequest$;
|
|
2751
|
+
exports.CreateApplicationPresignedUrlResponse$ = CreateApplicationPresignedUrlResponse$;
|
|
2752
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
2753
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
2754
|
+
exports.CreateApplicationSnapshot$ = CreateApplicationSnapshot$;
|
|
668
2755
|
exports.CreateApplicationSnapshotCommand = CreateApplicationSnapshotCommand;
|
|
2756
|
+
exports.CreateApplicationSnapshotRequest$ = CreateApplicationSnapshotRequest$;
|
|
2757
|
+
exports.CreateApplicationSnapshotResponse$ = CreateApplicationSnapshotResponse$;
|
|
2758
|
+
exports.CustomArtifactConfiguration$ = CustomArtifactConfiguration$;
|
|
2759
|
+
exports.CustomArtifactConfigurationDescription$ = CustomArtifactConfigurationDescription$;
|
|
2760
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
2761
|
+
exports.DeleteApplicationCloudWatchLoggingOption$ = DeleteApplicationCloudWatchLoggingOption$;
|
|
669
2762
|
exports.DeleteApplicationCloudWatchLoggingOptionCommand = DeleteApplicationCloudWatchLoggingOptionCommand;
|
|
2763
|
+
exports.DeleteApplicationCloudWatchLoggingOptionRequest$ = DeleteApplicationCloudWatchLoggingOptionRequest$;
|
|
2764
|
+
exports.DeleteApplicationCloudWatchLoggingOptionResponse$ = DeleteApplicationCloudWatchLoggingOptionResponse$;
|
|
670
2765
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
2766
|
+
exports.DeleteApplicationInputProcessingConfiguration$ = DeleteApplicationInputProcessingConfiguration$;
|
|
671
2767
|
exports.DeleteApplicationInputProcessingConfigurationCommand = DeleteApplicationInputProcessingConfigurationCommand;
|
|
2768
|
+
exports.DeleteApplicationInputProcessingConfigurationRequest$ = DeleteApplicationInputProcessingConfigurationRequest$;
|
|
2769
|
+
exports.DeleteApplicationInputProcessingConfigurationResponse$ = DeleteApplicationInputProcessingConfigurationResponse$;
|
|
2770
|
+
exports.DeleteApplicationOutput$ = DeleteApplicationOutput$;
|
|
672
2771
|
exports.DeleteApplicationOutputCommand = DeleteApplicationOutputCommand;
|
|
2772
|
+
exports.DeleteApplicationOutputRequest$ = DeleteApplicationOutputRequest$;
|
|
2773
|
+
exports.DeleteApplicationOutputResponse$ = DeleteApplicationOutputResponse$;
|
|
2774
|
+
exports.DeleteApplicationReferenceDataSource$ = DeleteApplicationReferenceDataSource$;
|
|
673
2775
|
exports.DeleteApplicationReferenceDataSourceCommand = DeleteApplicationReferenceDataSourceCommand;
|
|
2776
|
+
exports.DeleteApplicationReferenceDataSourceRequest$ = DeleteApplicationReferenceDataSourceRequest$;
|
|
2777
|
+
exports.DeleteApplicationReferenceDataSourceResponse$ = DeleteApplicationReferenceDataSourceResponse$;
|
|
2778
|
+
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
2779
|
+
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
2780
|
+
exports.DeleteApplicationSnapshot$ = DeleteApplicationSnapshot$;
|
|
674
2781
|
exports.DeleteApplicationSnapshotCommand = DeleteApplicationSnapshotCommand;
|
|
2782
|
+
exports.DeleteApplicationSnapshotRequest$ = DeleteApplicationSnapshotRequest$;
|
|
2783
|
+
exports.DeleteApplicationSnapshotResponse$ = DeleteApplicationSnapshotResponse$;
|
|
2784
|
+
exports.DeleteApplicationVpcConfiguration$ = DeleteApplicationVpcConfiguration$;
|
|
675
2785
|
exports.DeleteApplicationVpcConfigurationCommand = DeleteApplicationVpcConfigurationCommand;
|
|
2786
|
+
exports.DeleteApplicationVpcConfigurationRequest$ = DeleteApplicationVpcConfigurationRequest$;
|
|
2787
|
+
exports.DeleteApplicationVpcConfigurationResponse$ = DeleteApplicationVpcConfigurationResponse$;
|
|
2788
|
+
exports.DeployAsApplicationConfiguration$ = DeployAsApplicationConfiguration$;
|
|
2789
|
+
exports.DeployAsApplicationConfigurationDescription$ = DeployAsApplicationConfigurationDescription$;
|
|
2790
|
+
exports.DeployAsApplicationConfigurationUpdate$ = DeployAsApplicationConfigurationUpdate$;
|
|
2791
|
+
exports.DescribeApplication$ = DescribeApplication$;
|
|
676
2792
|
exports.DescribeApplicationCommand = DescribeApplicationCommand;
|
|
2793
|
+
exports.DescribeApplicationOperation$ = DescribeApplicationOperation$;
|
|
677
2794
|
exports.DescribeApplicationOperationCommand = DescribeApplicationOperationCommand;
|
|
2795
|
+
exports.DescribeApplicationOperationRequest$ = DescribeApplicationOperationRequest$;
|
|
2796
|
+
exports.DescribeApplicationOperationResponse$ = DescribeApplicationOperationResponse$;
|
|
2797
|
+
exports.DescribeApplicationRequest$ = DescribeApplicationRequest$;
|
|
2798
|
+
exports.DescribeApplicationResponse$ = DescribeApplicationResponse$;
|
|
2799
|
+
exports.DescribeApplicationSnapshot$ = DescribeApplicationSnapshot$;
|
|
678
2800
|
exports.DescribeApplicationSnapshotCommand = DescribeApplicationSnapshotCommand;
|
|
2801
|
+
exports.DescribeApplicationSnapshotRequest$ = DescribeApplicationSnapshotRequest$;
|
|
2802
|
+
exports.DescribeApplicationSnapshotResponse$ = DescribeApplicationSnapshotResponse$;
|
|
2803
|
+
exports.DescribeApplicationVersion$ = DescribeApplicationVersion$;
|
|
679
2804
|
exports.DescribeApplicationVersionCommand = DescribeApplicationVersionCommand;
|
|
2805
|
+
exports.DescribeApplicationVersionRequest$ = DescribeApplicationVersionRequest$;
|
|
2806
|
+
exports.DescribeApplicationVersionResponse$ = DescribeApplicationVersionResponse$;
|
|
2807
|
+
exports.DestinationSchema$ = DestinationSchema$;
|
|
2808
|
+
exports.DiscoverInputSchema$ = DiscoverInputSchema$;
|
|
680
2809
|
exports.DiscoverInputSchemaCommand = DiscoverInputSchemaCommand;
|
|
2810
|
+
exports.DiscoverInputSchemaRequest$ = DiscoverInputSchemaRequest$;
|
|
2811
|
+
exports.DiscoverInputSchemaResponse$ = DiscoverInputSchemaResponse$;
|
|
2812
|
+
exports.EnvironmentProperties$ = EnvironmentProperties$;
|
|
2813
|
+
exports.EnvironmentPropertyDescriptions$ = EnvironmentPropertyDescriptions$;
|
|
2814
|
+
exports.EnvironmentPropertyUpdates$ = EnvironmentPropertyUpdates$;
|
|
2815
|
+
exports.ErrorInfo$ = ErrorInfo$;
|
|
2816
|
+
exports.FlinkApplicationConfiguration$ = FlinkApplicationConfiguration$;
|
|
2817
|
+
exports.FlinkApplicationConfigurationDescription$ = FlinkApplicationConfigurationDescription$;
|
|
2818
|
+
exports.FlinkApplicationConfigurationUpdate$ = FlinkApplicationConfigurationUpdate$;
|
|
2819
|
+
exports.FlinkRunConfiguration$ = FlinkRunConfiguration$;
|
|
2820
|
+
exports.GlueDataCatalogConfiguration$ = GlueDataCatalogConfiguration$;
|
|
2821
|
+
exports.GlueDataCatalogConfigurationDescription$ = GlueDataCatalogConfigurationDescription$;
|
|
2822
|
+
exports.GlueDataCatalogConfigurationUpdate$ = GlueDataCatalogConfigurationUpdate$;
|
|
2823
|
+
exports.Input$ = Input$;
|
|
2824
|
+
exports.InputDescription$ = InputDescription$;
|
|
2825
|
+
exports.InputLambdaProcessor$ = InputLambdaProcessor$;
|
|
2826
|
+
exports.InputLambdaProcessorDescription$ = InputLambdaProcessorDescription$;
|
|
2827
|
+
exports.InputLambdaProcessorUpdate$ = InputLambdaProcessorUpdate$;
|
|
2828
|
+
exports.InputParallelism$ = InputParallelism$;
|
|
2829
|
+
exports.InputParallelismUpdate$ = InputParallelismUpdate$;
|
|
2830
|
+
exports.InputProcessingConfiguration$ = InputProcessingConfiguration$;
|
|
2831
|
+
exports.InputProcessingConfigurationDescription$ = InputProcessingConfigurationDescription$;
|
|
2832
|
+
exports.InputProcessingConfigurationUpdate$ = InputProcessingConfigurationUpdate$;
|
|
2833
|
+
exports.InputSchemaUpdate$ = InputSchemaUpdate$;
|
|
681
2834
|
exports.InputStartingPosition = InputStartingPosition;
|
|
2835
|
+
exports.InputStartingPositionConfiguration$ = InputStartingPositionConfiguration$;
|
|
2836
|
+
exports.InputUpdate$ = InputUpdate$;
|
|
2837
|
+
exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException;
|
|
2838
|
+
exports.InvalidApplicationConfigurationException$ = InvalidApplicationConfigurationException$;
|
|
2839
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2840
|
+
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2841
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
2842
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2843
|
+
exports.JSONMappingParameters$ = JSONMappingParameters$;
|
|
682
2844
|
exports.KeyType = KeyType;
|
|
683
2845
|
exports.KinesisAnalyticsV2 = KinesisAnalyticsV2;
|
|
684
2846
|
exports.KinesisAnalyticsV2Client = KinesisAnalyticsV2Client;
|
|
2847
|
+
exports.KinesisAnalyticsV2ServiceException = KinesisAnalyticsV2ServiceException;
|
|
2848
|
+
exports.KinesisAnalyticsV2ServiceException$ = KinesisAnalyticsV2ServiceException$;
|
|
2849
|
+
exports.KinesisFirehoseInput$ = KinesisFirehoseInput$;
|
|
2850
|
+
exports.KinesisFirehoseInputDescription$ = KinesisFirehoseInputDescription$;
|
|
2851
|
+
exports.KinesisFirehoseInputUpdate$ = KinesisFirehoseInputUpdate$;
|
|
2852
|
+
exports.KinesisFirehoseOutput$ = KinesisFirehoseOutput$;
|
|
2853
|
+
exports.KinesisFirehoseOutputDescription$ = KinesisFirehoseOutputDescription$;
|
|
2854
|
+
exports.KinesisFirehoseOutputUpdate$ = KinesisFirehoseOutputUpdate$;
|
|
2855
|
+
exports.KinesisStreamsInput$ = KinesisStreamsInput$;
|
|
2856
|
+
exports.KinesisStreamsInputDescription$ = KinesisStreamsInputDescription$;
|
|
2857
|
+
exports.KinesisStreamsInputUpdate$ = KinesisStreamsInputUpdate$;
|
|
2858
|
+
exports.KinesisStreamsOutput$ = KinesisStreamsOutput$;
|
|
2859
|
+
exports.KinesisStreamsOutputDescription$ = KinesisStreamsOutputDescription$;
|
|
2860
|
+
exports.KinesisStreamsOutputUpdate$ = KinesisStreamsOutputUpdate$;
|
|
2861
|
+
exports.LambdaOutput$ = LambdaOutput$;
|
|
2862
|
+
exports.LambdaOutputDescription$ = LambdaOutputDescription$;
|
|
2863
|
+
exports.LambdaOutputUpdate$ = LambdaOutputUpdate$;
|
|
2864
|
+
exports.LimitExceededException = LimitExceededException;
|
|
2865
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2866
|
+
exports.ListApplicationOperations$ = ListApplicationOperations$;
|
|
685
2867
|
exports.ListApplicationOperationsCommand = ListApplicationOperationsCommand;
|
|
2868
|
+
exports.ListApplicationOperationsRequest$ = ListApplicationOperationsRequest$;
|
|
2869
|
+
exports.ListApplicationOperationsResponse$ = ListApplicationOperationsResponse$;
|
|
2870
|
+
exports.ListApplicationSnapshots$ = ListApplicationSnapshots$;
|
|
686
2871
|
exports.ListApplicationSnapshotsCommand = ListApplicationSnapshotsCommand;
|
|
2872
|
+
exports.ListApplicationSnapshotsRequest$ = ListApplicationSnapshotsRequest$;
|
|
2873
|
+
exports.ListApplicationSnapshotsResponse$ = ListApplicationSnapshotsResponse$;
|
|
2874
|
+
exports.ListApplicationVersions$ = ListApplicationVersions$;
|
|
687
2875
|
exports.ListApplicationVersionsCommand = ListApplicationVersionsCommand;
|
|
2876
|
+
exports.ListApplicationVersionsRequest$ = ListApplicationVersionsRequest$;
|
|
2877
|
+
exports.ListApplicationVersionsResponse$ = ListApplicationVersionsResponse$;
|
|
2878
|
+
exports.ListApplications$ = ListApplications$;
|
|
688
2879
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
2880
|
+
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
2881
|
+
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
2882
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
689
2883
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2884
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2885
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
690
2886
|
exports.LogLevel = LogLevel;
|
|
2887
|
+
exports.MappingParameters$ = MappingParameters$;
|
|
2888
|
+
exports.MavenReference$ = MavenReference$;
|
|
691
2889
|
exports.MetricsLevel = MetricsLevel;
|
|
2890
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
2891
|
+
exports.MonitoringConfigurationDescription$ = MonitoringConfigurationDescription$;
|
|
2892
|
+
exports.MonitoringConfigurationUpdate$ = MonitoringConfigurationUpdate$;
|
|
2893
|
+
exports.OperationFailureDetails$ = OperationFailureDetails$;
|
|
692
2894
|
exports.OperationStatus = OperationStatus;
|
|
2895
|
+
exports.Output$ = Output$;
|
|
2896
|
+
exports.OutputDescription$ = OutputDescription$;
|
|
2897
|
+
exports.OutputUpdate$ = OutputUpdate$;
|
|
2898
|
+
exports.ParallelismConfiguration$ = ParallelismConfiguration$;
|
|
2899
|
+
exports.ParallelismConfigurationDescription$ = ParallelismConfigurationDescription$;
|
|
2900
|
+
exports.ParallelismConfigurationUpdate$ = ParallelismConfigurationUpdate$;
|
|
2901
|
+
exports.PropertyGroup$ = PropertyGroup$;
|
|
2902
|
+
exports.RecordColumn$ = RecordColumn$;
|
|
2903
|
+
exports.RecordFormat$ = RecordFormat$;
|
|
693
2904
|
exports.RecordFormatType = RecordFormatType;
|
|
2905
|
+
exports.ReferenceDataSource$ = ReferenceDataSource$;
|
|
2906
|
+
exports.ReferenceDataSourceDescription$ = ReferenceDataSourceDescription$;
|
|
2907
|
+
exports.ReferenceDataSourceUpdate$ = ReferenceDataSourceUpdate$;
|
|
2908
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
2909
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2910
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2911
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2912
|
+
exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException;
|
|
2913
|
+
exports.ResourceProvisionedThroughputExceededException$ = ResourceProvisionedThroughputExceededException$;
|
|
2914
|
+
exports.RollbackApplication$ = RollbackApplication$;
|
|
694
2915
|
exports.RollbackApplicationCommand = RollbackApplicationCommand;
|
|
2916
|
+
exports.RollbackApplicationRequest$ = RollbackApplicationRequest$;
|
|
2917
|
+
exports.RollbackApplicationResponse$ = RollbackApplicationResponse$;
|
|
2918
|
+
exports.RunConfiguration$ = RunConfiguration$;
|
|
2919
|
+
exports.RunConfigurationDescription$ = RunConfigurationDescription$;
|
|
2920
|
+
exports.RunConfigurationUpdate$ = RunConfigurationUpdate$;
|
|
695
2921
|
exports.RuntimeEnvironment = RuntimeEnvironment;
|
|
2922
|
+
exports.S3ApplicationCodeLocationDescription$ = S3ApplicationCodeLocationDescription$;
|
|
2923
|
+
exports.S3Configuration$ = S3Configuration$;
|
|
2924
|
+
exports.S3ContentBaseLocation$ = S3ContentBaseLocation$;
|
|
2925
|
+
exports.S3ContentBaseLocationDescription$ = S3ContentBaseLocationDescription$;
|
|
2926
|
+
exports.S3ContentBaseLocationUpdate$ = S3ContentBaseLocationUpdate$;
|
|
2927
|
+
exports.S3ContentLocation$ = S3ContentLocation$;
|
|
2928
|
+
exports.S3ContentLocationUpdate$ = S3ContentLocationUpdate$;
|
|
2929
|
+
exports.S3ReferenceDataSource$ = S3ReferenceDataSource$;
|
|
2930
|
+
exports.S3ReferenceDataSourceDescription$ = S3ReferenceDataSourceDescription$;
|
|
2931
|
+
exports.S3ReferenceDataSourceUpdate$ = S3ReferenceDataSourceUpdate$;
|
|
2932
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2933
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2934
|
+
exports.SnapshotDetails$ = SnapshotDetails$;
|
|
696
2935
|
exports.SnapshotStatus = SnapshotStatus;
|
|
2936
|
+
exports.SourceSchema$ = SourceSchema$;
|
|
2937
|
+
exports.SqlApplicationConfiguration$ = SqlApplicationConfiguration$;
|
|
2938
|
+
exports.SqlApplicationConfigurationDescription$ = SqlApplicationConfigurationDescription$;
|
|
2939
|
+
exports.SqlApplicationConfigurationUpdate$ = SqlApplicationConfigurationUpdate$;
|
|
2940
|
+
exports.SqlRunConfiguration$ = SqlRunConfiguration$;
|
|
2941
|
+
exports.StartApplication$ = StartApplication$;
|
|
697
2942
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
2943
|
+
exports.StartApplicationRequest$ = StartApplicationRequest$;
|
|
2944
|
+
exports.StartApplicationResponse$ = StartApplicationResponse$;
|
|
2945
|
+
exports.StopApplication$ = StopApplication$;
|
|
698
2946
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
2947
|
+
exports.StopApplicationRequest$ = StopApplicationRequest$;
|
|
2948
|
+
exports.StopApplicationResponse$ = StopApplicationResponse$;
|
|
2949
|
+
exports.Tag$ = Tag$;
|
|
2950
|
+
exports.TagResource$ = TagResource$;
|
|
699
2951
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2952
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2953
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2954
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
2955
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2956
|
+
exports.UnableToDetectSchemaException = UnableToDetectSchemaException;
|
|
2957
|
+
exports.UnableToDetectSchemaException$ = UnableToDetectSchemaException$;
|
|
2958
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
2959
|
+
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
2960
|
+
exports.UntagResource$ = UntagResource$;
|
|
700
2961
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2962
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2963
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2964
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
701
2965
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
2966
|
+
exports.UpdateApplicationMaintenanceConfiguration$ = UpdateApplicationMaintenanceConfiguration$;
|
|
702
2967
|
exports.UpdateApplicationMaintenanceConfigurationCommand = UpdateApplicationMaintenanceConfigurationCommand;
|
|
2968
|
+
exports.UpdateApplicationMaintenanceConfigurationRequest$ = UpdateApplicationMaintenanceConfigurationRequest$;
|
|
2969
|
+
exports.UpdateApplicationMaintenanceConfigurationResponse$ = UpdateApplicationMaintenanceConfigurationResponse$;
|
|
2970
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
2971
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
703
2972
|
exports.UrlType = UrlType;
|
|
2973
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
2974
|
+
exports.VpcConfigurationDescription$ = VpcConfigurationDescription$;
|
|
2975
|
+
exports.VpcConfigurationUpdate$ = VpcConfigurationUpdate$;
|
|
2976
|
+
exports.ZeppelinApplicationConfiguration$ = ZeppelinApplicationConfiguration$;
|
|
2977
|
+
exports.ZeppelinApplicationConfigurationDescription$ = ZeppelinApplicationConfigurationDescription$;
|
|
2978
|
+
exports.ZeppelinApplicationConfigurationUpdate$ = ZeppelinApplicationConfigurationUpdate$;
|
|
2979
|
+
exports.ZeppelinMonitoringConfiguration$ = ZeppelinMonitoringConfiguration$;
|
|
2980
|
+
exports.ZeppelinMonitoringConfigurationDescription$ = ZeppelinMonitoringConfigurationDescription$;
|
|
2981
|
+
exports.ZeppelinMonitoringConfigurationUpdate$ = ZeppelinMonitoringConfigurationUpdate$;
|
|
2982
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
704
2983
|
exports.paginateListApplicationOperations = paginateListApplicationOperations;
|
|
705
2984
|
exports.paginateListApplicationSnapshots = paginateListApplicationSnapshots;
|
|
706
2985
|
exports.paginateListApplicationVersions = paginateListApplicationVersions;
|