@aws-sdk/client-kinesis-analytics 3.296.0 → 3.298.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/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -3
- package/dist-cjs/commands/AddApplicationInputCommand.js +2 -3
- package/dist-cjs/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/AddApplicationOutputCommand.js +2 -3
- package/dist-cjs/commands/AddApplicationReferenceDataSourceCommand.js +2 -3
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationOutputCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -3
- package/dist-cjs/commands/DescribeApplicationCommand.js +2 -3
- package/dist-cjs/commands/DiscoverInputSchemaCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/StartApplicationCommand.js +2 -3
- package/dist-cjs/commands/StopApplicationCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -375
- package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -3
- package/dist-es/commands/AddApplicationInputCommand.js +2 -3
- package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -3
- package/dist-es/commands/AddApplicationOutputCommand.js +2 -3
- package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +2 -3
- package/dist-es/commands/CreateApplicationCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationOutputCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -3
- package/dist-es/commands/DescribeApplicationCommand.js +2 -3
- package/dist-es/commands/DiscoverInputSchemaCommand.js +2 -3
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/StartApplicationCommand.js +2 -3
- package/dist-es/commands/StopApplicationCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -279
- package/dist-types/KinesisAnalytics.d.ts +21 -0
- package/dist-types/KinesisAnalyticsClient.d.ts +24 -4
- package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/KinesisAnalyticsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +152 -372
- package/dist-types/ts3.4/models/models_0.d.ts +0 -261
- package/package.json +4 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Provides a description of CloudWatch logging options, including the log stream
|
|
5
6
|
* Amazon Resource Name (ARN) and the role ARN.</p>
|
|
6
7
|
*/
|
|
@@ -16,6 +17,9 @@ export interface CloudWatchLoggingOption {
|
|
|
16
17
|
*/
|
|
17
18
|
RoleARN: string | undefined;
|
|
18
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
19
23
|
export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
20
24
|
/**
|
|
21
25
|
* <p>The Kinesis Analytics application name.</p>
|
|
@@ -32,9 +36,13 @@ export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
|
32
36
|
*/
|
|
33
37
|
CloudWatchLoggingOption: CloudWatchLoggingOption | undefined;
|
|
34
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
35
42
|
export interface AddApplicationCloudWatchLoggingOptionResponse {
|
|
36
43
|
}
|
|
37
44
|
/**
|
|
45
|
+
* @public
|
|
38
46
|
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
|
|
39
47
|
*/
|
|
40
48
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
@@ -46,6 +54,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
46
54
|
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
47
55
|
}
|
|
48
56
|
/**
|
|
57
|
+
* @public
|
|
49
58
|
* <p>Specified input parameter value is invalid.</p>
|
|
50
59
|
*/
|
|
51
60
|
export declare class InvalidArgumentException extends __BaseException {
|
|
@@ -57,6 +66,7 @@ export declare class InvalidArgumentException extends __BaseException {
|
|
|
57
66
|
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
58
67
|
}
|
|
59
68
|
/**
|
|
69
|
+
* @public
|
|
60
70
|
* <p>Application is not available for this operation.</p>
|
|
61
71
|
*/
|
|
62
72
|
export declare class ResourceInUseException extends __BaseException {
|
|
@@ -68,6 +78,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
68
78
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
69
79
|
}
|
|
70
80
|
/**
|
|
81
|
+
* @public
|
|
71
82
|
* <p>Specified application can't be found.</p>
|
|
72
83
|
*/
|
|
73
84
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -79,6 +90,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
79
90
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
80
91
|
}
|
|
81
92
|
/**
|
|
93
|
+
* @public
|
|
82
94
|
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this operation. </p>
|
|
83
95
|
*/
|
|
84
96
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
@@ -90,6 +102,7 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
90
102
|
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
91
103
|
}
|
|
92
104
|
/**
|
|
105
|
+
* @public
|
|
93
106
|
* <p>Describes the number of in-application streams to create for a given
|
|
94
107
|
* streaming source. For information about parallelism,
|
|
95
108
|
* see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html">Configuring Application Input</a>.
|
|
@@ -104,6 +117,7 @@ export interface InputParallelism {
|
|
|
104
117
|
Count?: number;
|
|
105
118
|
}
|
|
106
119
|
/**
|
|
120
|
+
* @public
|
|
107
121
|
* <p>An object that contains the Amazon Resource Name (ARN) of the <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a> function that
|
|
108
122
|
* is used to preprocess records in the stream, and the ARN of the IAM role that is used to
|
|
109
123
|
* access the AWS Lambda function. </p>
|
|
@@ -124,6 +138,7 @@ export interface InputLambdaProcessor {
|
|
|
124
138
|
RoleARN: string | undefined;
|
|
125
139
|
}
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>Provides a description of a processor that is used to preprocess the records in the
|
|
128
143
|
* stream before being processed by your application code. Currently, the only input
|
|
129
144
|
* processor available is <a href="https://docs.aws.amazon.com/lambda/">AWS
|
|
@@ -137,6 +152,7 @@ export interface InputProcessingConfiguration {
|
|
|
137
152
|
InputLambdaProcessor: InputLambdaProcessor | undefined;
|
|
138
153
|
}
|
|
139
154
|
/**
|
|
155
|
+
* @public
|
|
140
156
|
* <p>Describes the mapping of each data element in the streaming
|
|
141
157
|
* source to the corresponding column in the in-application stream.</p>
|
|
142
158
|
* <p>Also used to describe the format of the reference data source.</p>
|
|
@@ -157,6 +173,7 @@ export interface RecordColumn {
|
|
|
157
173
|
SqlType: string | undefined;
|
|
158
174
|
}
|
|
159
175
|
/**
|
|
176
|
+
* @public
|
|
160
177
|
* <p>Provides additional mapping information when the record format
|
|
161
178
|
* uses delimiters, such as CSV. For example, the following sample records
|
|
162
179
|
* use CSV format, where the records use the <i>'\n'</i> as the row delimiter and a comma (",") as the column delimiter:
|
|
@@ -180,6 +197,7 @@ export interface CSVMappingParameters {
|
|
|
180
197
|
RecordColumnDelimiter: string | undefined;
|
|
181
198
|
}
|
|
182
199
|
/**
|
|
200
|
+
* @public
|
|
183
201
|
* <p>Provides additional mapping information when JSON is the record format on the streaming source.</p>
|
|
184
202
|
*/
|
|
185
203
|
export interface JSONMappingParameters {
|
|
@@ -189,6 +207,7 @@ export interface JSONMappingParameters {
|
|
|
189
207
|
RecordRowPath: string | undefined;
|
|
190
208
|
}
|
|
191
209
|
/**
|
|
210
|
+
* @public
|
|
192
211
|
* <p>When configuring application input
|
|
193
212
|
* at the time of creating or updating an application,
|
|
194
213
|
* provides additional mapping information specific to
|
|
@@ -206,11 +225,15 @@ export interface MappingParameters {
|
|
|
206
225
|
*/
|
|
207
226
|
CSVMappingParameters?: CSVMappingParameters;
|
|
208
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
209
231
|
export declare enum RecordFormatType {
|
|
210
232
|
CSV = "CSV",
|
|
211
233
|
JSON = "JSON"
|
|
212
234
|
}
|
|
213
235
|
/**
|
|
236
|
+
* @public
|
|
214
237
|
* <p>
|
|
215
238
|
* Describes the record format and relevant mapping information that
|
|
216
239
|
* should be applied to schematize the records on the stream.
|
|
@@ -227,6 +250,7 @@ export interface RecordFormat {
|
|
|
227
250
|
MappingParameters?: MappingParameters;
|
|
228
251
|
}
|
|
229
252
|
/**
|
|
253
|
+
* @public
|
|
230
254
|
* <p>Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.</p>
|
|
231
255
|
*/
|
|
232
256
|
export interface SourceSchema {
|
|
@@ -244,6 +268,7 @@ export interface SourceSchema {
|
|
|
244
268
|
RecordColumns: RecordColumn[] | undefined;
|
|
245
269
|
}
|
|
246
270
|
/**
|
|
271
|
+
* @public
|
|
247
272
|
* <p> Identifies an Amazon Kinesis Firehose delivery stream as the streaming source. You
|
|
248
273
|
* provide the delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that
|
|
249
274
|
* enables Amazon Kinesis Analytics to access the stream on your behalf.</p>
|
|
@@ -261,6 +286,7 @@ export interface KinesisFirehoseInput {
|
|
|
261
286
|
RoleARN: string | undefined;
|
|
262
287
|
}
|
|
263
288
|
/**
|
|
289
|
+
* @public
|
|
264
290
|
* <p> Identifies an Amazon Kinesis stream as the streaming source. You provide the
|
|
265
291
|
* stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis
|
|
266
292
|
* Analytics to access the stream on your behalf.</p>
|
|
@@ -276,6 +302,7 @@ export interface KinesisStreamsInput {
|
|
|
276
302
|
RoleARN: string | undefined;
|
|
277
303
|
}
|
|
278
304
|
/**
|
|
305
|
+
* @public
|
|
279
306
|
* <p>When you configure the application input, you specify the streaming source, the
|
|
280
307
|
* in-application stream name that is created, and the mapping between the two.
|
|
281
308
|
* For more information,
|
|
@@ -323,6 +350,7 @@ export interface Input {
|
|
|
323
350
|
InputSchema: SourceSchema | undefined;
|
|
324
351
|
}
|
|
325
352
|
/**
|
|
353
|
+
* @public
|
|
326
354
|
* <p></p>
|
|
327
355
|
*/
|
|
328
356
|
export interface AddApplicationInputRequest {
|
|
@@ -341,11 +369,13 @@ export interface AddApplicationInputRequest {
|
|
|
341
369
|
Input: Input | undefined;
|
|
342
370
|
}
|
|
343
371
|
/**
|
|
372
|
+
* @public
|
|
344
373
|
* <p></p>
|
|
345
374
|
*/
|
|
346
375
|
export interface AddApplicationInputResponse {
|
|
347
376
|
}
|
|
348
377
|
/**
|
|
378
|
+
* @public
|
|
349
379
|
* <p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
|
|
350
380
|
*/
|
|
351
381
|
export declare class CodeValidationException extends __BaseException {
|
|
@@ -356,6 +386,9 @@ export declare class CodeValidationException extends __BaseException {
|
|
|
356
386
|
*/
|
|
357
387
|
constructor(opts: __ExceptionOptionType<CodeValidationException, __BaseException>);
|
|
358
388
|
}
|
|
389
|
+
/**
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
359
392
|
export interface AddApplicationInputProcessingConfigurationRequest {
|
|
360
393
|
/**
|
|
361
394
|
* <p>Name of the application to which you want to add the input processing configuration.</p>
|
|
@@ -377,9 +410,13 @@ export interface AddApplicationInputProcessingConfigurationRequest {
|
|
|
377
410
|
*/
|
|
378
411
|
InputProcessingConfiguration: InputProcessingConfiguration | undefined;
|
|
379
412
|
}
|
|
413
|
+
/**
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
380
416
|
export interface AddApplicationInputProcessingConfigurationResponse {
|
|
381
417
|
}
|
|
382
418
|
/**
|
|
419
|
+
* @public
|
|
383
420
|
* <p>Describes the data format when records are written to the destination.
|
|
384
421
|
* For more information,
|
|
385
422
|
* see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html">Configuring Application Output</a>.
|
|
@@ -394,6 +431,7 @@ export interface DestinationSchema {
|
|
|
394
431
|
RecordFormatType: RecordFormatType | string | undefined;
|
|
395
432
|
}
|
|
396
433
|
/**
|
|
434
|
+
* @public
|
|
397
435
|
* <p>When configuring application output,
|
|
398
436
|
* identifies an Amazon Kinesis Firehose delivery stream as the destination.
|
|
399
437
|
* You provide the stream Amazon Resource Name (ARN) and an IAM role
|
|
@@ -410,6 +448,7 @@ export interface KinesisFirehoseOutput {
|
|
|
410
448
|
RoleARN: string | undefined;
|
|
411
449
|
}
|
|
412
450
|
/**
|
|
451
|
+
* @public
|
|
413
452
|
* <p>When configuring application output, identifies an Amazon Kinesis stream as the
|
|
414
453
|
* destination. You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN
|
|
415
454
|
* that Amazon Kinesis Analytics can use to write to the stream on your behalf.</p>
|
|
@@ -425,6 +464,7 @@ export interface KinesisStreamsOutput {
|
|
|
425
464
|
RoleARN: string | undefined;
|
|
426
465
|
}
|
|
427
466
|
/**
|
|
467
|
+
* @public
|
|
428
468
|
* <p>When configuring application output, identifies an AWS Lambda function as the
|
|
429
469
|
* destination. You provide the function Amazon Resource Name (ARN) and also an IAM role
|
|
430
470
|
* ARN that Amazon Kinesis Analytics can use to write to the function on your behalf. </p>
|
|
@@ -445,6 +485,7 @@ export interface LambdaOutput {
|
|
|
445
485
|
RoleARN: string | undefined;
|
|
446
486
|
}
|
|
447
487
|
/**
|
|
488
|
+
* @public
|
|
448
489
|
* <p>
|
|
449
490
|
* Describes application output configuration in which you identify
|
|
450
491
|
* an in-application stream and a destination where you want the
|
|
@@ -482,6 +523,7 @@ export interface Output {
|
|
|
482
523
|
DestinationSchema: DestinationSchema | undefined;
|
|
483
524
|
}
|
|
484
525
|
/**
|
|
526
|
+
* @public
|
|
485
527
|
* <p></p>
|
|
486
528
|
*/
|
|
487
529
|
export interface AddApplicationOutputRequest {
|
|
@@ -505,11 +547,13 @@ export interface AddApplicationOutputRequest {
|
|
|
505
547
|
Output: Output | undefined;
|
|
506
548
|
}
|
|
507
549
|
/**
|
|
550
|
+
* @public
|
|
508
551
|
* <p></p>
|
|
509
552
|
*/
|
|
510
553
|
export interface AddApplicationOutputResponse {
|
|
511
554
|
}
|
|
512
555
|
/**
|
|
556
|
+
* @public
|
|
513
557
|
* <p>Identifies the S3 bucket and object that contains the reference data. Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf.</p>
|
|
514
558
|
* <p>An Amazon Kinesis Analytics application loads reference data only once. If the data changes,
|
|
515
559
|
* you call the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a> operation to trigger
|
|
@@ -530,6 +574,7 @@ export interface S3ReferenceDataSource {
|
|
|
530
574
|
ReferenceRoleARN: string | undefined;
|
|
531
575
|
}
|
|
532
576
|
/**
|
|
577
|
+
* @public
|
|
533
578
|
* <p>Describes the reference data source by providing the source information (S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.</p>
|
|
534
579
|
*/
|
|
535
580
|
export interface ReferenceDataSource {
|
|
@@ -549,6 +594,7 @@ export interface ReferenceDataSource {
|
|
|
549
594
|
ReferenceSchema: SourceSchema | undefined;
|
|
550
595
|
}
|
|
551
596
|
/**
|
|
597
|
+
* @public
|
|
552
598
|
* <p></p>
|
|
553
599
|
*/
|
|
554
600
|
export interface AddApplicationReferenceDataSourceRequest {
|
|
@@ -569,10 +615,14 @@ export interface AddApplicationReferenceDataSourceRequest {
|
|
|
569
615
|
ReferenceDataSource: ReferenceDataSource | undefined;
|
|
570
616
|
}
|
|
571
617
|
/**
|
|
618
|
+
* @public
|
|
572
619
|
* <p></p>
|
|
573
620
|
*/
|
|
574
621
|
export interface AddApplicationReferenceDataSourceResponse {
|
|
575
622
|
}
|
|
623
|
+
/**
|
|
624
|
+
* @public
|
|
625
|
+
*/
|
|
576
626
|
export declare enum ApplicationStatus {
|
|
577
627
|
DELETING = "DELETING",
|
|
578
628
|
READY = "READY",
|
|
@@ -582,6 +632,7 @@ export declare enum ApplicationStatus {
|
|
|
582
632
|
UPDATING = "UPDATING"
|
|
583
633
|
}
|
|
584
634
|
/**
|
|
635
|
+
* @public
|
|
585
636
|
* <p>Description of the CloudWatch logging option.</p>
|
|
586
637
|
*/
|
|
587
638
|
export interface CloudWatchLoggingOptionDescription {
|
|
@@ -599,6 +650,7 @@ export interface CloudWatchLoggingOptionDescription {
|
|
|
599
650
|
RoleARN: string | undefined;
|
|
600
651
|
}
|
|
601
652
|
/**
|
|
653
|
+
* @public
|
|
602
654
|
* <p>An object that contains the Amazon Resource Name (ARN) of the <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a> function that
|
|
603
655
|
* is used to preprocess records in the stream, and the ARN of the IAM role that is used
|
|
604
656
|
* to access the AWS Lambda expression.</p>
|
|
@@ -614,6 +666,7 @@ export interface InputLambdaProcessorDescription {
|
|
|
614
666
|
RoleARN?: string;
|
|
615
667
|
}
|
|
616
668
|
/**
|
|
669
|
+
* @public
|
|
617
670
|
* <p>Provides configuration information about an input processor. Currently, the only input processor available is
|
|
618
671
|
* <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a>.</p>
|
|
619
672
|
*/
|
|
@@ -623,12 +676,16 @@ export interface InputProcessingConfigurationDescription {
|
|
|
623
676
|
*/
|
|
624
677
|
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
625
678
|
}
|
|
679
|
+
/**
|
|
680
|
+
* @public
|
|
681
|
+
*/
|
|
626
682
|
export declare enum InputStartingPosition {
|
|
627
683
|
LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
|
|
628
684
|
NOW = "NOW",
|
|
629
685
|
TRIM_HORIZON = "TRIM_HORIZON"
|
|
630
686
|
}
|
|
631
687
|
/**
|
|
688
|
+
* @public
|
|
632
689
|
* <p>Describes the point at which the application reads from
|
|
633
690
|
* the streaming source.</p>
|
|
634
691
|
*/
|
|
@@ -658,6 +715,7 @@ export interface InputStartingPositionConfiguration {
|
|
|
658
715
|
InputStartingPosition?: InputStartingPosition | string;
|
|
659
716
|
}
|
|
660
717
|
/**
|
|
718
|
+
* @public
|
|
661
719
|
* <p>
|
|
662
720
|
* Describes the Amazon Kinesis Firehose delivery stream that is configured as the streaming source
|
|
663
721
|
* in the application input configuration.
|
|
@@ -674,6 +732,7 @@ export interface KinesisFirehoseInputDescription {
|
|
|
674
732
|
RoleARN?: string;
|
|
675
733
|
}
|
|
676
734
|
/**
|
|
735
|
+
* @public
|
|
677
736
|
* <p>
|
|
678
737
|
* Describes the Amazon Kinesis stream that is configured as the streaming source
|
|
679
738
|
* in the application input configuration.
|
|
@@ -690,6 +749,7 @@ export interface KinesisStreamsInputDescription {
|
|
|
690
749
|
RoleARN?: string;
|
|
691
750
|
}
|
|
692
751
|
/**
|
|
752
|
+
* @public
|
|
693
753
|
* <p>Describes the application input configuration.
|
|
694
754
|
* For more information,
|
|
695
755
|
* see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html">Configuring Application Input</a>.
|
|
@@ -743,6 +803,7 @@ export interface InputDescription {
|
|
|
743
803
|
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
744
804
|
}
|
|
745
805
|
/**
|
|
806
|
+
* @public
|
|
746
807
|
* <p>
|
|
747
808
|
* For an application output, describes
|
|
748
809
|
* the Amazon Kinesis Firehose delivery stream configured as its destination.
|
|
@@ -759,6 +820,7 @@ export interface KinesisFirehoseOutputDescription {
|
|
|
759
820
|
RoleARN?: string;
|
|
760
821
|
}
|
|
761
822
|
/**
|
|
823
|
+
* @public
|
|
762
824
|
* <p>
|
|
763
825
|
* For an application output, describes
|
|
764
826
|
* the Amazon Kinesis stream configured as its destination.
|
|
@@ -775,6 +837,7 @@ export interface KinesisStreamsOutputDescription {
|
|
|
775
837
|
RoleARN?: string;
|
|
776
838
|
}
|
|
777
839
|
/**
|
|
840
|
+
* @public
|
|
778
841
|
* <p>For an application output, describes the AWS Lambda function configured as its
|
|
779
842
|
* destination. </p>
|
|
780
843
|
*/
|
|
@@ -789,6 +852,7 @@ export interface LambdaOutputDescription {
|
|
|
789
852
|
RoleARN?: string;
|
|
790
853
|
}
|
|
791
854
|
/**
|
|
855
|
+
* @public
|
|
792
856
|
* <p>Describes the application output configuration, which includes
|
|
793
857
|
* the in-application stream name and the destination where the stream data
|
|
794
858
|
* is written. The destination can be an Amazon Kinesis stream or an
|
|
@@ -825,6 +889,7 @@ export interface OutputDescription {
|
|
|
825
889
|
DestinationSchema?: DestinationSchema;
|
|
826
890
|
}
|
|
827
891
|
/**
|
|
892
|
+
* @public
|
|
828
893
|
* <p>Provides the bucket name and object key name that stores the reference data.</p>
|
|
829
894
|
*/
|
|
830
895
|
export interface S3ReferenceDataSourceDescription {
|
|
@@ -842,6 +907,7 @@ export interface S3ReferenceDataSourceDescription {
|
|
|
842
907
|
ReferenceRoleARN: string | undefined;
|
|
843
908
|
}
|
|
844
909
|
/**
|
|
910
|
+
* @public
|
|
845
911
|
* <p>Describes the reference data source configured for an application.</p>
|
|
846
912
|
*/
|
|
847
913
|
export interface ReferenceDataSourceDescription {
|
|
@@ -865,6 +931,7 @@ export interface ReferenceDataSourceDescription {
|
|
|
865
931
|
ReferenceSchema?: SourceSchema;
|
|
866
932
|
}
|
|
867
933
|
/**
|
|
934
|
+
* @public
|
|
868
935
|
* <note>
|
|
869
936
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
870
937
|
* </note>
|
|
@@ -937,6 +1004,7 @@ export interface ApplicationDetail {
|
|
|
937
1004
|
ApplicationVersionId: number | undefined;
|
|
938
1005
|
}
|
|
939
1006
|
/**
|
|
1007
|
+
* @public
|
|
940
1008
|
* <note>
|
|
941
1009
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
942
1010
|
* </note>
|
|
@@ -957,6 +1025,7 @@ export interface ApplicationSummary {
|
|
|
957
1025
|
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
958
1026
|
}
|
|
959
1027
|
/**
|
|
1028
|
+
* @public
|
|
960
1029
|
* <p>Describes CloudWatch logging option updates.</p>
|
|
961
1030
|
*/
|
|
962
1031
|
export interface CloudWatchLoggingOptionUpdate {
|
|
@@ -974,6 +1043,7 @@ export interface CloudWatchLoggingOptionUpdate {
|
|
|
974
1043
|
RoleARNUpdate?: string;
|
|
975
1044
|
}
|
|
976
1045
|
/**
|
|
1046
|
+
* @public
|
|
977
1047
|
* <p>Provides updates to the parallelism count.</p>
|
|
978
1048
|
*/
|
|
979
1049
|
export interface InputParallelismUpdate {
|
|
@@ -984,6 +1054,7 @@ export interface InputParallelismUpdate {
|
|
|
984
1054
|
CountUpdate?: number;
|
|
985
1055
|
}
|
|
986
1056
|
/**
|
|
1057
|
+
* @public
|
|
987
1058
|
* <p>Represents an update to the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html">InputLambdaProcessor</a> that is used to preprocess the records in the stream.</p>
|
|
988
1059
|
*/
|
|
989
1060
|
export interface InputLambdaProcessorUpdate {
|
|
@@ -1003,6 +1074,7 @@ export interface InputLambdaProcessorUpdate {
|
|
|
1003
1074
|
RoleARNUpdate?: string;
|
|
1004
1075
|
}
|
|
1005
1076
|
/**
|
|
1077
|
+
* @public
|
|
1006
1078
|
* <p>Describes updates to an <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html">InputProcessingConfiguration</a>. </p>
|
|
1007
1079
|
*/
|
|
1008
1080
|
export interface InputProcessingConfigurationUpdate {
|
|
@@ -1012,6 +1084,7 @@ export interface InputProcessingConfigurationUpdate {
|
|
|
1012
1084
|
InputLambdaProcessorUpdate: InputLambdaProcessorUpdate | undefined;
|
|
1013
1085
|
}
|
|
1014
1086
|
/**
|
|
1087
|
+
* @public
|
|
1015
1088
|
* <p>Describes updates for the application's input schema.</p>
|
|
1016
1089
|
*/
|
|
1017
1090
|
export interface InputSchemaUpdate {
|
|
@@ -1030,6 +1103,7 @@ export interface InputSchemaUpdate {
|
|
|
1030
1103
|
RecordColumnUpdates?: RecordColumn[];
|
|
1031
1104
|
}
|
|
1032
1105
|
/**
|
|
1106
|
+
* @public
|
|
1033
1107
|
* <p>When updating application input configuration, provides information about an
|
|
1034
1108
|
* Amazon Kinesis Firehose delivery stream as the streaming source.</p>
|
|
1035
1109
|
*/
|
|
@@ -1046,6 +1120,7 @@ export interface KinesisFirehoseInputUpdate {
|
|
|
1046
1120
|
RoleARNUpdate?: string;
|
|
1047
1121
|
}
|
|
1048
1122
|
/**
|
|
1123
|
+
* @public
|
|
1049
1124
|
* <p>When updating application input configuration, provides information about an
|
|
1050
1125
|
* Amazon Kinesis stream as the streaming source.</p>
|
|
1051
1126
|
*/
|
|
@@ -1060,6 +1135,7 @@ export interface KinesisStreamsInputUpdate {
|
|
|
1060
1135
|
RoleARNUpdate?: string;
|
|
1061
1136
|
}
|
|
1062
1137
|
/**
|
|
1138
|
+
* @public
|
|
1063
1139
|
* <p>Describes updates to a specific input configuration (identified by the
|
|
1064
1140
|
* <code>InputId</code> of an application). </p>
|
|
1065
1141
|
*/
|
|
@@ -1099,6 +1175,7 @@ export interface InputUpdate {
|
|
|
1099
1175
|
InputParallelismUpdate?: InputParallelismUpdate;
|
|
1100
1176
|
}
|
|
1101
1177
|
/**
|
|
1178
|
+
* @public
|
|
1102
1179
|
* <p>
|
|
1103
1180
|
* When updating an output configuration using the
|
|
1104
1181
|
* <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a> operation,
|
|
@@ -1118,6 +1195,7 @@ export interface KinesisFirehoseOutputUpdate {
|
|
|
1118
1195
|
RoleARNUpdate?: string;
|
|
1119
1196
|
}
|
|
1120
1197
|
/**
|
|
1198
|
+
* @public
|
|
1121
1199
|
* <p>
|
|
1122
1200
|
* When updating an output configuration using the
|
|
1123
1201
|
* <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a> operation,
|
|
@@ -1136,6 +1214,7 @@ export interface KinesisStreamsOutputUpdate {
|
|
|
1136
1214
|
RoleARNUpdate?: string;
|
|
1137
1215
|
}
|
|
1138
1216
|
/**
|
|
1217
|
+
* @public
|
|
1139
1218
|
* <p>When updating an output configuration using the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a>
|
|
1140
1219
|
* operation, provides information about an AWS Lambda function configured as the
|
|
1141
1220
|
* destination.</p>
|
|
@@ -1155,6 +1234,7 @@ export interface LambdaOutputUpdate {
|
|
|
1155
1234
|
RoleARNUpdate?: string;
|
|
1156
1235
|
}
|
|
1157
1236
|
/**
|
|
1237
|
+
* @public
|
|
1158
1238
|
* <p>
|
|
1159
1239
|
* Describes updates to the output configuration identified by
|
|
1160
1240
|
* the <code>OutputId</code>.
|
|
@@ -1190,6 +1270,7 @@ export interface OutputUpdate {
|
|
|
1190
1270
|
DestinationSchemaUpdate?: DestinationSchema;
|
|
1191
1271
|
}
|
|
1192
1272
|
/**
|
|
1273
|
+
* @public
|
|
1193
1274
|
* <p>Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.</p>
|
|
1194
1275
|
*/
|
|
1195
1276
|
export interface S3ReferenceDataSourceUpdate {
|
|
@@ -1207,6 +1288,7 @@ export interface S3ReferenceDataSourceUpdate {
|
|
|
1207
1288
|
ReferenceRoleARNUpdate?: string;
|
|
1208
1289
|
}
|
|
1209
1290
|
/**
|
|
1291
|
+
* @public
|
|
1210
1292
|
* <p>When you update a reference data source configuration for an application, this object provides all the updated values (such as the source bucket name and object key name), the in-application table name that is created, and updated mapping information that maps the data in the Amazon S3 object to the in-application reference table that is created.</p>
|
|
1211
1293
|
*/
|
|
1212
1294
|
export interface ReferenceDataSourceUpdate {
|
|
@@ -1229,6 +1311,7 @@ export interface ReferenceDataSourceUpdate {
|
|
|
1229
1311
|
ReferenceSchemaUpdate?: SourceSchema;
|
|
1230
1312
|
}
|
|
1231
1313
|
/**
|
|
1314
|
+
* @public
|
|
1232
1315
|
* <p>Describes updates to apply to an existing Amazon Kinesis Analytics application.</p>
|
|
1233
1316
|
*/
|
|
1234
1317
|
export interface ApplicationUpdate {
|
|
@@ -1254,6 +1337,7 @@ export interface ApplicationUpdate {
|
|
|
1254
1337
|
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
|
|
1255
1338
|
}
|
|
1256
1339
|
/**
|
|
1340
|
+
* @public
|
|
1257
1341
|
* <p>A key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Note that
|
|
1258
1342
|
* the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
1259
1343
|
* For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
@@ -1269,6 +1353,7 @@ export interface Tag {
|
|
|
1269
1353
|
Value?: string;
|
|
1270
1354
|
}
|
|
1271
1355
|
/**
|
|
1356
|
+
* @public
|
|
1272
1357
|
* <p>TBD</p>
|
|
1273
1358
|
*/
|
|
1274
1359
|
export interface CreateApplicationRequest {
|
|
@@ -1333,6 +1418,7 @@ export interface CreateApplicationRequest {
|
|
|
1333
1418
|
Tags?: Tag[];
|
|
1334
1419
|
}
|
|
1335
1420
|
/**
|
|
1421
|
+
* @public
|
|
1336
1422
|
* <p>TBD</p>
|
|
1337
1423
|
*/
|
|
1338
1424
|
export interface CreateApplicationResponse {
|
|
@@ -1344,6 +1430,7 @@ export interface CreateApplicationResponse {
|
|
|
1344
1430
|
ApplicationSummary: ApplicationSummary | undefined;
|
|
1345
1431
|
}
|
|
1346
1432
|
/**
|
|
1433
|
+
* @public
|
|
1347
1434
|
* <p>Exceeded the number of applications allowed.</p>
|
|
1348
1435
|
*/
|
|
1349
1436
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -1355,6 +1442,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
1355
1442
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1356
1443
|
}
|
|
1357
1444
|
/**
|
|
1445
|
+
* @public
|
|
1358
1446
|
* <p>Application created with too many tags, or too many tags added to an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.</p>
|
|
1359
1447
|
*/
|
|
1360
1448
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -1366,6 +1454,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
1366
1454
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1367
1455
|
}
|
|
1368
1456
|
/**
|
|
1457
|
+
* @public
|
|
1369
1458
|
* <p></p>
|
|
1370
1459
|
*/
|
|
1371
1460
|
export interface DeleteApplicationRequest {
|
|
@@ -1381,10 +1470,14 @@ export interface DeleteApplicationRequest {
|
|
|
1381
1470
|
CreateTimestamp: Date | undefined;
|
|
1382
1471
|
}
|
|
1383
1472
|
/**
|
|
1473
|
+
* @public
|
|
1384
1474
|
* <p></p>
|
|
1385
1475
|
*/
|
|
1386
1476
|
export interface DeleteApplicationResponse {
|
|
1387
1477
|
}
|
|
1478
|
+
/**
|
|
1479
|
+
* @public
|
|
1480
|
+
*/
|
|
1388
1481
|
export interface DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
1389
1482
|
/**
|
|
1390
1483
|
* <p>The Kinesis Analytics application name.</p>
|
|
@@ -1400,8 +1493,14 @@ export interface DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
|
1400
1493
|
*/
|
|
1401
1494
|
CloudWatchLoggingOptionId: string | undefined;
|
|
1402
1495
|
}
|
|
1496
|
+
/**
|
|
1497
|
+
* @public
|
|
1498
|
+
*/
|
|
1403
1499
|
export interface DeleteApplicationCloudWatchLoggingOptionResponse {
|
|
1404
1500
|
}
|
|
1501
|
+
/**
|
|
1502
|
+
* @public
|
|
1503
|
+
*/
|
|
1405
1504
|
export interface DeleteApplicationInputProcessingConfigurationRequest {
|
|
1406
1505
|
/**
|
|
1407
1506
|
* <p>The Kinesis Analytics application name.</p>
|
|
@@ -1417,9 +1516,13 @@ export interface DeleteApplicationInputProcessingConfigurationRequest {
|
|
|
1417
1516
|
*/
|
|
1418
1517
|
InputId: string | undefined;
|
|
1419
1518
|
}
|
|
1519
|
+
/**
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1420
1522
|
export interface DeleteApplicationInputProcessingConfigurationResponse {
|
|
1421
1523
|
}
|
|
1422
1524
|
/**
|
|
1525
|
+
* @public
|
|
1423
1526
|
* <p></p>
|
|
1424
1527
|
*/
|
|
1425
1528
|
export interface DeleteApplicationOutputRequest {
|
|
@@ -1448,10 +1551,14 @@ export interface DeleteApplicationOutputRequest {
|
|
|
1448
1551
|
OutputId: string | undefined;
|
|
1449
1552
|
}
|
|
1450
1553
|
/**
|
|
1554
|
+
* @public
|
|
1451
1555
|
* <p></p>
|
|
1452
1556
|
*/
|
|
1453
1557
|
export interface DeleteApplicationOutputResponse {
|
|
1454
1558
|
}
|
|
1559
|
+
/**
|
|
1560
|
+
* @public
|
|
1561
|
+
*/
|
|
1455
1562
|
export interface DeleteApplicationReferenceDataSourceRequest {
|
|
1456
1563
|
/**
|
|
1457
1564
|
* <p>Name of an existing application.</p>
|
|
@@ -1473,9 +1580,13 @@ export interface DeleteApplicationReferenceDataSourceRequest {
|
|
|
1473
1580
|
*/
|
|
1474
1581
|
ReferenceId: string | undefined;
|
|
1475
1582
|
}
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1476
1586
|
export interface DeleteApplicationReferenceDataSourceResponse {
|
|
1477
1587
|
}
|
|
1478
1588
|
/**
|
|
1589
|
+
* @public
|
|
1479
1590
|
* <p></p>
|
|
1480
1591
|
*/
|
|
1481
1592
|
export interface DescribeApplicationRequest {
|
|
@@ -1485,6 +1596,7 @@ export interface DescribeApplicationRequest {
|
|
|
1485
1596
|
ApplicationName: string | undefined;
|
|
1486
1597
|
}
|
|
1487
1598
|
/**
|
|
1599
|
+
* @public
|
|
1488
1600
|
* <p></p>
|
|
1489
1601
|
*/
|
|
1490
1602
|
export interface DescribeApplicationResponse {
|
|
@@ -1494,6 +1606,7 @@ export interface DescribeApplicationResponse {
|
|
|
1494
1606
|
ApplicationDetail: ApplicationDetail | undefined;
|
|
1495
1607
|
}
|
|
1496
1608
|
/**
|
|
1609
|
+
* @public
|
|
1497
1610
|
* <p>Provides a description of an Amazon S3 data source, including the Amazon Resource
|
|
1498
1611
|
* Name (ARN) of the S3 bucket, the ARN of the IAM role that is used to access the bucket,
|
|
1499
1612
|
* and the name of the Amazon S3 object that contains the data.</p>
|
|
@@ -1512,6 +1625,9 @@ export interface S3Configuration {
|
|
|
1512
1625
|
*/
|
|
1513
1626
|
FileKey: string | undefined;
|
|
1514
1627
|
}
|
|
1628
|
+
/**
|
|
1629
|
+
* @public
|
|
1630
|
+
*/
|
|
1515
1631
|
export interface DiscoverInputSchemaRequest {
|
|
1516
1632
|
/**
|
|
1517
1633
|
* <p>Amazon Resource Name (ARN) of the streaming source.</p>
|
|
@@ -1536,6 +1652,7 @@ export interface DiscoverInputSchemaRequest {
|
|
|
1536
1652
|
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
1537
1653
|
}
|
|
1538
1654
|
/**
|
|
1655
|
+
* @public
|
|
1539
1656
|
* <p></p>
|
|
1540
1657
|
*/
|
|
1541
1658
|
export interface DiscoverInputSchemaResponse {
|
|
@@ -1557,6 +1674,7 @@ export interface DiscoverInputSchemaResponse {
|
|
|
1557
1674
|
RawInputRecords?: string[];
|
|
1558
1675
|
}
|
|
1559
1676
|
/**
|
|
1677
|
+
* @public
|
|
1560
1678
|
* <p>Discovery failed to get a record from the
|
|
1561
1679
|
* streaming source because of the Amazon Kinesis Streams
|
|
1562
1680
|
* ProvisionedThroughputExceededException. For more information,
|
|
@@ -1572,6 +1690,7 @@ export declare class ResourceProvisionedThroughputExceededException extends __Ba
|
|
|
1572
1690
|
constructor(opts: __ExceptionOptionType<ResourceProvisionedThroughputExceededException, __BaseException>);
|
|
1573
1691
|
}
|
|
1574
1692
|
/**
|
|
1693
|
+
* @public
|
|
1575
1694
|
* <p>The service is unavailable. Back off and retry the operation. </p>
|
|
1576
1695
|
*/
|
|
1577
1696
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -1583,6 +1702,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1583
1702
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
1584
1703
|
}
|
|
1585
1704
|
/**
|
|
1705
|
+
* @public
|
|
1586
1706
|
* <p>Data format is not valid. Amazon Kinesis Analytics is not able to detect schema for
|
|
1587
1707
|
* the given streaming source.</p>
|
|
1588
1708
|
*/
|
|
@@ -1597,6 +1717,7 @@ export declare class UnableToDetectSchemaException extends __BaseException {
|
|
|
1597
1717
|
constructor(opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>);
|
|
1598
1718
|
}
|
|
1599
1719
|
/**
|
|
1720
|
+
* @public
|
|
1600
1721
|
* <p>When you start your application,
|
|
1601
1722
|
* you provide this configuration, which identifies the input source and the point
|
|
1602
1723
|
* in the input source at which you want the application to start processing records.</p>
|
|
@@ -1614,6 +1735,7 @@ export interface InputConfiguration {
|
|
|
1614
1735
|
InputStartingPositionConfiguration: InputStartingPositionConfiguration | undefined;
|
|
1615
1736
|
}
|
|
1616
1737
|
/**
|
|
1738
|
+
* @public
|
|
1617
1739
|
* <p>User-provided application configuration is not valid.</p>
|
|
1618
1740
|
*/
|
|
1619
1741
|
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
@@ -1625,6 +1747,7 @@ export declare class InvalidApplicationConfigurationException extends __BaseExce
|
|
|
1625
1747
|
constructor(opts: __ExceptionOptionType<InvalidApplicationConfigurationException, __BaseException>);
|
|
1626
1748
|
}
|
|
1627
1749
|
/**
|
|
1750
|
+
* @public
|
|
1628
1751
|
* <p></p>
|
|
1629
1752
|
*/
|
|
1630
1753
|
export interface ListApplicationsRequest {
|
|
@@ -1638,6 +1761,7 @@ export interface ListApplicationsRequest {
|
|
|
1638
1761
|
ExclusiveStartApplicationName?: string;
|
|
1639
1762
|
}
|
|
1640
1763
|
/**
|
|
1764
|
+
* @public
|
|
1641
1765
|
* <p></p>
|
|
1642
1766
|
*/
|
|
1643
1767
|
export interface ListApplicationsResponse {
|
|
@@ -1650,12 +1774,18 @@ export interface ListApplicationsResponse {
|
|
|
1650
1774
|
*/
|
|
1651
1775
|
HasMoreApplications: boolean | undefined;
|
|
1652
1776
|
}
|
|
1777
|
+
/**
|
|
1778
|
+
* @public
|
|
1779
|
+
*/
|
|
1653
1780
|
export interface ListTagsForResourceRequest {
|
|
1654
1781
|
/**
|
|
1655
1782
|
* <p>The ARN of the application for which to retrieve tags.</p>
|
|
1656
1783
|
*/
|
|
1657
1784
|
ResourceARN: string | undefined;
|
|
1658
1785
|
}
|
|
1786
|
+
/**
|
|
1787
|
+
* @public
|
|
1788
|
+
*/
|
|
1659
1789
|
export interface ListTagsForResourceResponse {
|
|
1660
1790
|
/**
|
|
1661
1791
|
* <p>The key-value tags assigned to the application.</p>
|
|
@@ -1663,6 +1793,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1663
1793
|
Tags?: Tag[];
|
|
1664
1794
|
}
|
|
1665
1795
|
/**
|
|
1796
|
+
* @public
|
|
1666
1797
|
* <p></p>
|
|
1667
1798
|
*/
|
|
1668
1799
|
export interface StartApplicationRequest {
|
|
@@ -1676,11 +1807,13 @@ export interface StartApplicationRequest {
|
|
|
1676
1807
|
InputConfigurations: InputConfiguration[] | undefined;
|
|
1677
1808
|
}
|
|
1678
1809
|
/**
|
|
1810
|
+
* @public
|
|
1679
1811
|
* <p></p>
|
|
1680
1812
|
*/
|
|
1681
1813
|
export interface StartApplicationResponse {
|
|
1682
1814
|
}
|
|
1683
1815
|
/**
|
|
1816
|
+
* @public
|
|
1684
1817
|
* <p></p>
|
|
1685
1818
|
*/
|
|
1686
1819
|
export interface StopApplicationRequest {
|
|
@@ -1690,10 +1823,14 @@ export interface StopApplicationRequest {
|
|
|
1690
1823
|
ApplicationName: string | undefined;
|
|
1691
1824
|
}
|
|
1692
1825
|
/**
|
|
1826
|
+
* @public
|
|
1693
1827
|
* <p></p>
|
|
1694
1828
|
*/
|
|
1695
1829
|
export interface StopApplicationResponse {
|
|
1696
1830
|
}
|
|
1831
|
+
/**
|
|
1832
|
+
* @public
|
|
1833
|
+
*/
|
|
1697
1834
|
export interface TagResourceRequest {
|
|
1698
1835
|
/**
|
|
1699
1836
|
* <p>The ARN of the application to assign the tags.</p>
|
|
@@ -1704,8 +1841,14 @@ export interface TagResourceRequest {
|
|
|
1704
1841
|
*/
|
|
1705
1842
|
Tags: Tag[] | undefined;
|
|
1706
1843
|
}
|
|
1844
|
+
/**
|
|
1845
|
+
* @public
|
|
1846
|
+
*/
|
|
1707
1847
|
export interface TagResourceResponse {
|
|
1708
1848
|
}
|
|
1849
|
+
/**
|
|
1850
|
+
* @public
|
|
1851
|
+
*/
|
|
1709
1852
|
export interface UntagResourceRequest {
|
|
1710
1853
|
/**
|
|
1711
1854
|
* <p>The ARN of the Kinesis Analytics application from which to remove the tags.</p>
|
|
@@ -1716,8 +1859,14 @@ export interface UntagResourceRequest {
|
|
|
1716
1859
|
*/
|
|
1717
1860
|
TagKeys: string[] | undefined;
|
|
1718
1861
|
}
|
|
1862
|
+
/**
|
|
1863
|
+
* @public
|
|
1864
|
+
*/
|
|
1719
1865
|
export interface UntagResourceResponse {
|
|
1720
1866
|
}
|
|
1867
|
+
/**
|
|
1868
|
+
* @public
|
|
1869
|
+
*/
|
|
1721
1870
|
export interface UpdateApplicationRequest {
|
|
1722
1871
|
/**
|
|
1723
1872
|
* <p>Name of the Amazon Kinesis Analytics application to update.</p>
|
|
@@ -1733,377 +1882,8 @@ export interface UpdateApplicationRequest {
|
|
|
1733
1882
|
*/
|
|
1734
1883
|
ApplicationUpdate: ApplicationUpdate | undefined;
|
|
1735
1884
|
}
|
|
1736
|
-
export interface UpdateApplicationResponse {
|
|
1737
|
-
}
|
|
1738
|
-
/**
|
|
1739
|
-
* @internal
|
|
1740
|
-
*/
|
|
1741
|
-
export declare const CloudWatchLoggingOptionFilterSensitiveLog: (obj: CloudWatchLoggingOption) => any;
|
|
1742
|
-
/**
|
|
1743
|
-
* @internal
|
|
1744
|
-
*/
|
|
1745
|
-
export declare const AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionRequest) => any;
|
|
1746
|
-
/**
|
|
1747
|
-
* @internal
|
|
1748
|
-
*/
|
|
1749
|
-
export declare const AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionResponse) => any;
|
|
1750
|
-
/**
|
|
1751
|
-
* @internal
|
|
1752
|
-
*/
|
|
1753
|
-
export declare const InputParallelismFilterSensitiveLog: (obj: InputParallelism) => any;
|
|
1754
|
-
/**
|
|
1755
|
-
* @internal
|
|
1756
|
-
*/
|
|
1757
|
-
export declare const InputLambdaProcessorFilterSensitiveLog: (obj: InputLambdaProcessor) => any;
|
|
1758
|
-
/**
|
|
1759
|
-
* @internal
|
|
1760
|
-
*/
|
|
1761
|
-
export declare const InputProcessingConfigurationFilterSensitiveLog: (obj: InputProcessingConfiguration) => any;
|
|
1762
|
-
/**
|
|
1763
|
-
* @internal
|
|
1764
|
-
*/
|
|
1765
|
-
export declare const RecordColumnFilterSensitiveLog: (obj: RecordColumn) => any;
|
|
1766
|
-
/**
|
|
1767
|
-
* @internal
|
|
1768
|
-
*/
|
|
1769
|
-
export declare const CSVMappingParametersFilterSensitiveLog: (obj: CSVMappingParameters) => any;
|
|
1770
|
-
/**
|
|
1771
|
-
* @internal
|
|
1772
|
-
*/
|
|
1773
|
-
export declare const JSONMappingParametersFilterSensitiveLog: (obj: JSONMappingParameters) => any;
|
|
1774
|
-
/**
|
|
1775
|
-
* @internal
|
|
1776
|
-
*/
|
|
1777
|
-
export declare const MappingParametersFilterSensitiveLog: (obj: MappingParameters) => any;
|
|
1778
|
-
/**
|
|
1779
|
-
* @internal
|
|
1780
|
-
*/
|
|
1781
|
-
export declare const RecordFormatFilterSensitiveLog: (obj: RecordFormat) => any;
|
|
1782
|
-
/**
|
|
1783
|
-
* @internal
|
|
1784
|
-
*/
|
|
1785
|
-
export declare const SourceSchemaFilterSensitiveLog: (obj: SourceSchema) => any;
|
|
1786
|
-
/**
|
|
1787
|
-
* @internal
|
|
1788
|
-
*/
|
|
1789
|
-
export declare const KinesisFirehoseInputFilterSensitiveLog: (obj: KinesisFirehoseInput) => any;
|
|
1790
|
-
/**
|
|
1791
|
-
* @internal
|
|
1792
|
-
*/
|
|
1793
|
-
export declare const KinesisStreamsInputFilterSensitiveLog: (obj: KinesisStreamsInput) => any;
|
|
1794
|
-
/**
|
|
1795
|
-
* @internal
|
|
1796
|
-
*/
|
|
1797
|
-
export declare const InputFilterSensitiveLog: (obj: Input) => any;
|
|
1798
|
-
/**
|
|
1799
|
-
* @internal
|
|
1800
|
-
*/
|
|
1801
|
-
export declare const AddApplicationInputRequestFilterSensitiveLog: (obj: AddApplicationInputRequest) => any;
|
|
1802
|
-
/**
|
|
1803
|
-
* @internal
|
|
1804
|
-
*/
|
|
1805
|
-
export declare const AddApplicationInputResponseFilterSensitiveLog: (obj: AddApplicationInputResponse) => any;
|
|
1806
|
-
/**
|
|
1807
|
-
* @internal
|
|
1808
|
-
*/
|
|
1809
|
-
export declare const AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationRequest) => any;
|
|
1810
|
-
/**
|
|
1811
|
-
* @internal
|
|
1812
|
-
*/
|
|
1813
|
-
export declare const AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationResponse) => any;
|
|
1814
|
-
/**
|
|
1815
|
-
* @internal
|
|
1816
|
-
*/
|
|
1817
|
-
export declare const DestinationSchemaFilterSensitiveLog: (obj: DestinationSchema) => any;
|
|
1818
|
-
/**
|
|
1819
|
-
* @internal
|
|
1820
|
-
*/
|
|
1821
|
-
export declare const KinesisFirehoseOutputFilterSensitiveLog: (obj: KinesisFirehoseOutput) => any;
|
|
1822
|
-
/**
|
|
1823
|
-
* @internal
|
|
1824
|
-
*/
|
|
1825
|
-
export declare const KinesisStreamsOutputFilterSensitiveLog: (obj: KinesisStreamsOutput) => any;
|
|
1826
|
-
/**
|
|
1827
|
-
* @internal
|
|
1828
|
-
*/
|
|
1829
|
-
export declare const LambdaOutputFilterSensitiveLog: (obj: LambdaOutput) => any;
|
|
1830
|
-
/**
|
|
1831
|
-
* @internal
|
|
1832
|
-
*/
|
|
1833
|
-
export declare const OutputFilterSensitiveLog: (obj: Output) => any;
|
|
1834
|
-
/**
|
|
1835
|
-
* @internal
|
|
1836
|
-
*/
|
|
1837
|
-
export declare const AddApplicationOutputRequestFilterSensitiveLog: (obj: AddApplicationOutputRequest) => any;
|
|
1838
|
-
/**
|
|
1839
|
-
* @internal
|
|
1840
|
-
*/
|
|
1841
|
-
export declare const AddApplicationOutputResponseFilterSensitiveLog: (obj: AddApplicationOutputResponse) => any;
|
|
1842
|
-
/**
|
|
1843
|
-
* @internal
|
|
1844
|
-
*/
|
|
1845
|
-
export declare const S3ReferenceDataSourceFilterSensitiveLog: (obj: S3ReferenceDataSource) => any;
|
|
1846
|
-
/**
|
|
1847
|
-
* @internal
|
|
1848
|
-
*/
|
|
1849
|
-
export declare const ReferenceDataSourceFilterSensitiveLog: (obj: ReferenceDataSource) => any;
|
|
1850
|
-
/**
|
|
1851
|
-
* @internal
|
|
1852
|
-
*/
|
|
1853
|
-
export declare const AddApplicationReferenceDataSourceRequestFilterSensitiveLog: (obj: AddApplicationReferenceDataSourceRequest) => any;
|
|
1854
|
-
/**
|
|
1855
|
-
* @internal
|
|
1856
|
-
*/
|
|
1857
|
-
export declare const AddApplicationReferenceDataSourceResponseFilterSensitiveLog: (obj: AddApplicationReferenceDataSourceResponse) => any;
|
|
1858
|
-
/**
|
|
1859
|
-
* @internal
|
|
1860
|
-
*/
|
|
1861
|
-
export declare const CloudWatchLoggingOptionDescriptionFilterSensitiveLog: (obj: CloudWatchLoggingOptionDescription) => any;
|
|
1862
|
-
/**
|
|
1863
|
-
* @internal
|
|
1864
|
-
*/
|
|
1865
|
-
export declare const InputLambdaProcessorDescriptionFilterSensitiveLog: (obj: InputLambdaProcessorDescription) => any;
|
|
1866
|
-
/**
|
|
1867
|
-
* @internal
|
|
1868
|
-
*/
|
|
1869
|
-
export declare const InputProcessingConfigurationDescriptionFilterSensitiveLog: (obj: InputProcessingConfigurationDescription) => any;
|
|
1870
|
-
/**
|
|
1871
|
-
* @internal
|
|
1872
|
-
*/
|
|
1873
|
-
export declare const InputStartingPositionConfigurationFilterSensitiveLog: (obj: InputStartingPositionConfiguration) => any;
|
|
1874
|
-
/**
|
|
1875
|
-
* @internal
|
|
1876
|
-
*/
|
|
1877
|
-
export declare const KinesisFirehoseInputDescriptionFilterSensitiveLog: (obj: KinesisFirehoseInputDescription) => any;
|
|
1878
|
-
/**
|
|
1879
|
-
* @internal
|
|
1880
|
-
*/
|
|
1881
|
-
export declare const KinesisStreamsInputDescriptionFilterSensitiveLog: (obj: KinesisStreamsInputDescription) => any;
|
|
1882
|
-
/**
|
|
1883
|
-
* @internal
|
|
1884
|
-
*/
|
|
1885
|
-
export declare const InputDescriptionFilterSensitiveLog: (obj: InputDescription) => any;
|
|
1886
|
-
/**
|
|
1887
|
-
* @internal
|
|
1888
|
-
*/
|
|
1889
|
-
export declare const KinesisFirehoseOutputDescriptionFilterSensitiveLog: (obj: KinesisFirehoseOutputDescription) => any;
|
|
1890
|
-
/**
|
|
1891
|
-
* @internal
|
|
1892
|
-
*/
|
|
1893
|
-
export declare const KinesisStreamsOutputDescriptionFilterSensitiveLog: (obj: KinesisStreamsOutputDescription) => any;
|
|
1894
|
-
/**
|
|
1895
|
-
* @internal
|
|
1896
|
-
*/
|
|
1897
|
-
export declare const LambdaOutputDescriptionFilterSensitiveLog: (obj: LambdaOutputDescription) => any;
|
|
1898
|
-
/**
|
|
1899
|
-
* @internal
|
|
1900
|
-
*/
|
|
1901
|
-
export declare const OutputDescriptionFilterSensitiveLog: (obj: OutputDescription) => any;
|
|
1902
|
-
/**
|
|
1903
|
-
* @internal
|
|
1904
|
-
*/
|
|
1905
|
-
export declare const S3ReferenceDataSourceDescriptionFilterSensitiveLog: (obj: S3ReferenceDataSourceDescription) => any;
|
|
1906
|
-
/**
|
|
1907
|
-
* @internal
|
|
1908
|
-
*/
|
|
1909
|
-
export declare const ReferenceDataSourceDescriptionFilterSensitiveLog: (obj: ReferenceDataSourceDescription) => any;
|
|
1910
|
-
/**
|
|
1911
|
-
* @internal
|
|
1912
|
-
*/
|
|
1913
|
-
export declare const ApplicationDetailFilterSensitiveLog: (obj: ApplicationDetail) => any;
|
|
1914
|
-
/**
|
|
1915
|
-
* @internal
|
|
1916
|
-
*/
|
|
1917
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
1918
|
-
/**
|
|
1919
|
-
* @internal
|
|
1920
|
-
*/
|
|
1921
|
-
export declare const CloudWatchLoggingOptionUpdateFilterSensitiveLog: (obj: CloudWatchLoggingOptionUpdate) => any;
|
|
1922
|
-
/**
|
|
1923
|
-
* @internal
|
|
1924
|
-
*/
|
|
1925
|
-
export declare const InputParallelismUpdateFilterSensitiveLog: (obj: InputParallelismUpdate) => any;
|
|
1926
|
-
/**
|
|
1927
|
-
* @internal
|
|
1928
|
-
*/
|
|
1929
|
-
export declare const InputLambdaProcessorUpdateFilterSensitiveLog: (obj: InputLambdaProcessorUpdate) => any;
|
|
1930
|
-
/**
|
|
1931
|
-
* @internal
|
|
1932
|
-
*/
|
|
1933
|
-
export declare const InputProcessingConfigurationUpdateFilterSensitiveLog: (obj: InputProcessingConfigurationUpdate) => any;
|
|
1934
|
-
/**
|
|
1935
|
-
* @internal
|
|
1936
|
-
*/
|
|
1937
|
-
export declare const InputSchemaUpdateFilterSensitiveLog: (obj: InputSchemaUpdate) => any;
|
|
1938
1885
|
/**
|
|
1939
|
-
* @
|
|
1886
|
+
* @public
|
|
1940
1887
|
*/
|
|
1941
|
-
export
|
|
1942
|
-
|
|
1943
|
-
* @internal
|
|
1944
|
-
*/
|
|
1945
|
-
export declare const KinesisStreamsInputUpdateFilterSensitiveLog: (obj: KinesisStreamsInputUpdate) => any;
|
|
1946
|
-
/**
|
|
1947
|
-
* @internal
|
|
1948
|
-
*/
|
|
1949
|
-
export declare const InputUpdateFilterSensitiveLog: (obj: InputUpdate) => any;
|
|
1950
|
-
/**
|
|
1951
|
-
* @internal
|
|
1952
|
-
*/
|
|
1953
|
-
export declare const KinesisFirehoseOutputUpdateFilterSensitiveLog: (obj: KinesisFirehoseOutputUpdate) => any;
|
|
1954
|
-
/**
|
|
1955
|
-
* @internal
|
|
1956
|
-
*/
|
|
1957
|
-
export declare const KinesisStreamsOutputUpdateFilterSensitiveLog: (obj: KinesisStreamsOutputUpdate) => any;
|
|
1958
|
-
/**
|
|
1959
|
-
* @internal
|
|
1960
|
-
*/
|
|
1961
|
-
export declare const LambdaOutputUpdateFilterSensitiveLog: (obj: LambdaOutputUpdate) => any;
|
|
1962
|
-
/**
|
|
1963
|
-
* @internal
|
|
1964
|
-
*/
|
|
1965
|
-
export declare const OutputUpdateFilterSensitiveLog: (obj: OutputUpdate) => any;
|
|
1966
|
-
/**
|
|
1967
|
-
* @internal
|
|
1968
|
-
*/
|
|
1969
|
-
export declare const S3ReferenceDataSourceUpdateFilterSensitiveLog: (obj: S3ReferenceDataSourceUpdate) => any;
|
|
1970
|
-
/**
|
|
1971
|
-
* @internal
|
|
1972
|
-
*/
|
|
1973
|
-
export declare const ReferenceDataSourceUpdateFilterSensitiveLog: (obj: ReferenceDataSourceUpdate) => any;
|
|
1974
|
-
/**
|
|
1975
|
-
* @internal
|
|
1976
|
-
*/
|
|
1977
|
-
export declare const ApplicationUpdateFilterSensitiveLog: (obj: ApplicationUpdate) => any;
|
|
1978
|
-
/**
|
|
1979
|
-
* @internal
|
|
1980
|
-
*/
|
|
1981
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1982
|
-
/**
|
|
1983
|
-
* @internal
|
|
1984
|
-
*/
|
|
1985
|
-
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
1986
|
-
/**
|
|
1987
|
-
* @internal
|
|
1988
|
-
*/
|
|
1989
|
-
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
1990
|
-
/**
|
|
1991
|
-
* @internal
|
|
1992
|
-
*/
|
|
1993
|
-
export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
1994
|
-
/**
|
|
1995
|
-
* @internal
|
|
1996
|
-
*/
|
|
1997
|
-
export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
1998
|
-
/**
|
|
1999
|
-
* @internal
|
|
2000
|
-
*/
|
|
2001
|
-
export declare const DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionRequest) => any;
|
|
2002
|
-
/**
|
|
2003
|
-
* @internal
|
|
2004
|
-
*/
|
|
2005
|
-
export declare const DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionResponse) => any;
|
|
2006
|
-
/**
|
|
2007
|
-
* @internal
|
|
2008
|
-
*/
|
|
2009
|
-
export declare const DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationRequest) => any;
|
|
2010
|
-
/**
|
|
2011
|
-
* @internal
|
|
2012
|
-
*/
|
|
2013
|
-
export declare const DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationResponse) => any;
|
|
2014
|
-
/**
|
|
2015
|
-
* @internal
|
|
2016
|
-
*/
|
|
2017
|
-
export declare const DeleteApplicationOutputRequestFilterSensitiveLog: (obj: DeleteApplicationOutputRequest) => any;
|
|
2018
|
-
/**
|
|
2019
|
-
* @internal
|
|
2020
|
-
*/
|
|
2021
|
-
export declare const DeleteApplicationOutputResponseFilterSensitiveLog: (obj: DeleteApplicationOutputResponse) => any;
|
|
2022
|
-
/**
|
|
2023
|
-
* @internal
|
|
2024
|
-
*/
|
|
2025
|
-
export declare const DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceRequest) => any;
|
|
2026
|
-
/**
|
|
2027
|
-
* @internal
|
|
2028
|
-
*/
|
|
2029
|
-
export declare const DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceResponse) => any;
|
|
2030
|
-
/**
|
|
2031
|
-
* @internal
|
|
2032
|
-
*/
|
|
2033
|
-
export declare const DescribeApplicationRequestFilterSensitiveLog: (obj: DescribeApplicationRequest) => any;
|
|
2034
|
-
/**
|
|
2035
|
-
* @internal
|
|
2036
|
-
*/
|
|
2037
|
-
export declare const DescribeApplicationResponseFilterSensitiveLog: (obj: DescribeApplicationResponse) => any;
|
|
2038
|
-
/**
|
|
2039
|
-
* @internal
|
|
2040
|
-
*/
|
|
2041
|
-
export declare const S3ConfigurationFilterSensitiveLog: (obj: S3Configuration) => any;
|
|
2042
|
-
/**
|
|
2043
|
-
* @internal
|
|
2044
|
-
*/
|
|
2045
|
-
export declare const DiscoverInputSchemaRequestFilterSensitiveLog: (obj: DiscoverInputSchemaRequest) => any;
|
|
2046
|
-
/**
|
|
2047
|
-
* @internal
|
|
2048
|
-
*/
|
|
2049
|
-
export declare const DiscoverInputSchemaResponseFilterSensitiveLog: (obj: DiscoverInputSchemaResponse) => any;
|
|
2050
|
-
/**
|
|
2051
|
-
* @internal
|
|
2052
|
-
*/
|
|
2053
|
-
export declare const InputConfigurationFilterSensitiveLog: (obj: InputConfiguration) => any;
|
|
2054
|
-
/**
|
|
2055
|
-
* @internal
|
|
2056
|
-
*/
|
|
2057
|
-
export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
2058
|
-
/**
|
|
2059
|
-
* @internal
|
|
2060
|
-
*/
|
|
2061
|
-
export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
2062
|
-
/**
|
|
2063
|
-
* @internal
|
|
2064
|
-
*/
|
|
2065
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2066
|
-
/**
|
|
2067
|
-
* @internal
|
|
2068
|
-
*/
|
|
2069
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2070
|
-
/**
|
|
2071
|
-
* @internal
|
|
2072
|
-
*/
|
|
2073
|
-
export declare const StartApplicationRequestFilterSensitiveLog: (obj: StartApplicationRequest) => any;
|
|
2074
|
-
/**
|
|
2075
|
-
* @internal
|
|
2076
|
-
*/
|
|
2077
|
-
export declare const StartApplicationResponseFilterSensitiveLog: (obj: StartApplicationResponse) => any;
|
|
2078
|
-
/**
|
|
2079
|
-
* @internal
|
|
2080
|
-
*/
|
|
2081
|
-
export declare const StopApplicationRequestFilterSensitiveLog: (obj: StopApplicationRequest) => any;
|
|
2082
|
-
/**
|
|
2083
|
-
* @internal
|
|
2084
|
-
*/
|
|
2085
|
-
export declare const StopApplicationResponseFilterSensitiveLog: (obj: StopApplicationResponse) => any;
|
|
2086
|
-
/**
|
|
2087
|
-
* @internal
|
|
2088
|
-
*/
|
|
2089
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2090
|
-
/**
|
|
2091
|
-
* @internal
|
|
2092
|
-
*/
|
|
2093
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2094
|
-
/**
|
|
2095
|
-
* @internal
|
|
2096
|
-
*/
|
|
2097
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2098
|
-
/**
|
|
2099
|
-
* @internal
|
|
2100
|
-
*/
|
|
2101
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2102
|
-
/**
|
|
2103
|
-
* @internal
|
|
2104
|
-
*/
|
|
2105
|
-
export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
2106
|
-
/**
|
|
2107
|
-
* @internal
|
|
2108
|
-
*/
|
|
2109
|
-
export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
1888
|
+
export interface UpdateApplicationResponse {
|
|
1889
|
+
}
|