@aws-sdk/client-kinesis-analytics 3.686.0 → 3.691.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-types/models/models_0.d.ts +114 -114
- package/dist-types/ts3.4/models/models_0.d.ts +128 -114
- package/package.json +7 -7
|
@@ -120,7 +120,7 @@ export interface InputParallelism {
|
|
|
120
120
|
* </p>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
Count?: number;
|
|
123
|
+
Count?: number | undefined;
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* <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
|
|
@@ -177,7 +177,7 @@ export interface RecordColumn {
|
|
|
177
177
|
* is required if the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_RecordFormat.html#analytics-Type-RecordFormat-RecordFormatTypel">RecordFormatType</a> is <code>JSON</code>.</p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
Mapping?: string;
|
|
180
|
+
Mapping?: string | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* <p>Type of column created in the in-application input stream or reference table.</p>
|
|
183
183
|
* @public
|
|
@@ -234,13 +234,13 @@ export interface MappingParameters {
|
|
|
234
234
|
* <p>Provides additional mapping information when JSON is the record format on the streaming source.</p>
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
JSONMappingParameters?: JSONMappingParameters;
|
|
237
|
+
JSONMappingParameters?: JSONMappingParameters | undefined;
|
|
238
238
|
/**
|
|
239
239
|
* <p>Provides additional mapping information when the record format uses delimiters
|
|
240
240
|
* (for example, CSV).</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
CSVMappingParameters?: CSVMappingParameters;
|
|
243
|
+
CSVMappingParameters?: CSVMappingParameters | undefined;
|
|
244
244
|
}
|
|
245
245
|
/**
|
|
246
246
|
* @public
|
|
@@ -271,7 +271,7 @@ export interface RecordFormat {
|
|
|
271
271
|
* <p>When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
MappingParameters?: MappingParameters;
|
|
274
|
+
MappingParameters?: MappingParameters | undefined;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* <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>
|
|
@@ -287,7 +287,7 @@ export interface SourceSchema {
|
|
|
287
287
|
* <p>Specifies the encoding of the records in the streaming source. For example, UTF-8.</p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
RecordEncoding?: string;
|
|
290
|
+
RecordEncoding?: string | undefined;
|
|
291
291
|
/**
|
|
292
292
|
* <p>A list of <code>RecordColumn</code> objects.</p>
|
|
293
293
|
* @public
|
|
@@ -355,7 +355,7 @@ export interface Input {
|
|
|
355
355
|
* available is <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html">InputLambdaProcessor</a>.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
358
|
+
InputProcessingConfiguration?: InputProcessingConfiguration | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>If the streaming source is an Amazon Kinesis stream,
|
|
361
361
|
* identifies the stream's Amazon Resource Name (ARN) and an IAM role
|
|
@@ -363,7 +363,7 @@ export interface Input {
|
|
|
363
363
|
* <p>Note: Either <code>KinesisStreamsInput</code> or <code>KinesisFirehoseInput</code> is required.</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
KinesisStreamsInput?: KinesisStreamsInput;
|
|
366
|
+
KinesisStreamsInput?: KinesisStreamsInput | undefined;
|
|
367
367
|
/**
|
|
368
368
|
* <p>If the streaming source is an Amazon Kinesis Firehose delivery stream, identifies
|
|
369
369
|
* the delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics to
|
|
@@ -371,14 +371,14 @@ export interface Input {
|
|
|
371
371
|
* <p>Note: Either <code>KinesisStreamsInput</code> or <code>KinesisFirehoseInput</code> is required.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
KinesisFirehoseInput?: KinesisFirehoseInput;
|
|
374
|
+
KinesisFirehoseInput?: KinesisFirehoseInput | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>Describes the number of in-application streams to create. </p>
|
|
377
377
|
* <p>Data from your source is routed to these in-application input streams.</p>
|
|
378
378
|
* <p> (see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html">Configuring Application Input</a>.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
InputParallelism?: InputParallelism;
|
|
381
|
+
InputParallelism?: InputParallelism | undefined;
|
|
382
382
|
/**
|
|
383
383
|
* <p>Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.</p>
|
|
384
384
|
* <p>Also used to describe the format of the reference data source.</p>
|
|
@@ -561,17 +561,17 @@ export interface Output {
|
|
|
561
561
|
* as the destination.</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
KinesisStreamsOutput?: KinesisStreamsOutput;
|
|
564
|
+
KinesisStreamsOutput?: KinesisStreamsOutput | undefined;
|
|
565
565
|
/**
|
|
566
566
|
* <p>Identifies an Amazon Kinesis Firehose delivery stream as the destination.</p>
|
|
567
567
|
* @public
|
|
568
568
|
*/
|
|
569
|
-
KinesisFirehoseOutput?: KinesisFirehoseOutput;
|
|
569
|
+
KinesisFirehoseOutput?: KinesisFirehoseOutput | undefined;
|
|
570
570
|
/**
|
|
571
571
|
* <p>Identifies an AWS Lambda function as the destination.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
LambdaOutput?: LambdaOutput;
|
|
574
|
+
LambdaOutput?: LambdaOutput | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>Describes the data format when records are written to the destination. For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html">Configuring Application Output</a>.</p>
|
|
577
577
|
* @public
|
|
@@ -651,7 +651,7 @@ export interface ReferenceDataSource {
|
|
|
651
651
|
* An Amazon Kinesis Analytics application loads reference data only once. If the data changes, you call the <code>UpdateApplication</code> operation to trigger reloading of data into your application. </p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
S3ReferenceDataSource?: S3ReferenceDataSource;
|
|
654
|
+
S3ReferenceDataSource?: S3ReferenceDataSource | undefined;
|
|
655
655
|
/**
|
|
656
656
|
* <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>
|
|
657
657
|
* @public
|
|
@@ -713,7 +713,7 @@ export interface CloudWatchLoggingOptionDescription {
|
|
|
713
713
|
* <p>ID of the CloudWatch logging option description.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
CloudWatchLoggingOptionId?: string;
|
|
716
|
+
CloudWatchLoggingOptionId?: string | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* <p>ARN of the CloudWatch log to receive application messages.</p>
|
|
719
719
|
* @public
|
|
@@ -736,12 +736,12 @@ export interface InputLambdaProcessorDescription {
|
|
|
736
736
|
* <p>The ARN of the <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a> function that is used to preprocess the records in the stream.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
ResourceARN?: string;
|
|
739
|
+
ResourceARN?: string | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The ARN of the IAM role that is used to access the AWS Lambda function.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
RoleARN?: string;
|
|
744
|
+
RoleARN?: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
/**
|
|
747
747
|
* <p>Provides configuration information about an input processor. Currently, the only input processor available is
|
|
@@ -753,7 +753,7 @@ export interface InputProcessingConfigurationDescription {
|
|
|
753
753
|
* <p>Provides configuration information about the associated <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessorDescription.html">InputLambdaProcessorDescription</a>.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
756
|
+
InputLambdaProcessorDescription?: InputLambdaProcessorDescription | undefined;
|
|
757
757
|
}
|
|
758
758
|
/**
|
|
759
759
|
* @public
|
|
@@ -797,7 +797,7 @@ export interface InputStartingPositionConfiguration {
|
|
|
797
797
|
* </ul>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
InputStartingPosition?: InputStartingPosition;
|
|
800
|
+
InputStartingPosition?: InputStartingPosition | undefined;
|
|
801
801
|
}
|
|
802
802
|
/**
|
|
803
803
|
* <p>
|
|
@@ -811,12 +811,12 @@ export interface KinesisFirehoseInputDescription {
|
|
|
811
811
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream.</p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
ResourceARN?: string;
|
|
814
|
+
ResourceARN?: string | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics assumes to access the stream.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
RoleARN?: string;
|
|
819
|
+
RoleARN?: string | undefined;
|
|
820
820
|
}
|
|
821
821
|
/**
|
|
822
822
|
* <p>
|
|
@@ -830,12 +830,12 @@ export interface KinesisStreamsInputDescription {
|
|
|
830
830
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
ResourceARN?: string;
|
|
833
|
+
ResourceARN?: string | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
RoleARN?: string;
|
|
838
|
+
RoleARN?: string | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* <p>Describes the application input configuration.
|
|
@@ -851,54 +851,54 @@ export interface InputDescription {
|
|
|
851
851
|
* input configuration you add to your application. </p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
InputId?: string;
|
|
854
|
+
InputId?: string | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>In-application name prefix.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
NamePrefix?: string;
|
|
859
|
+
NamePrefix?: string | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>Returns the in-application stream names that are mapped to the
|
|
862
862
|
* stream source.</p>
|
|
863
863
|
* @public
|
|
864
864
|
*/
|
|
865
|
-
InAppStreamNames?: string[];
|
|
865
|
+
InAppStreamNames?: string[] | undefined;
|
|
866
866
|
/**
|
|
867
867
|
* <p>The description of the preprocessor that executes on records in this input before the application's code is run.</p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription;
|
|
870
|
+
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription | undefined;
|
|
871
871
|
/**
|
|
872
872
|
* <p>If an Amazon Kinesis stream is configured as streaming source, provides Amazon
|
|
873
873
|
* Kinesis stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis
|
|
874
874
|
* Analytics to access the stream on your behalf.</p>
|
|
875
875
|
* @public
|
|
876
876
|
*/
|
|
877
|
-
KinesisStreamsInputDescription?: KinesisStreamsInputDescription;
|
|
877
|
+
KinesisStreamsInputDescription?: KinesisStreamsInputDescription | undefined;
|
|
878
878
|
/**
|
|
879
879
|
* <p>If an Amazon Kinesis Firehose delivery stream is configured as a streaming source,
|
|
880
880
|
* provides the delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics
|
|
881
881
|
* to access the stream on your behalf.</p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription;
|
|
884
|
+
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p>Describes the format of the data in the streaming source, and how each data element maps to corresponding
|
|
887
887
|
* columns in the in-application stream that is being created. </p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
InputSchema?: SourceSchema;
|
|
890
|
+
InputSchema?: SourceSchema | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>Describes the configured parallelism (number of in-application streams
|
|
893
893
|
* mapped to the streaming source).</p>
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
InputParallelism?: InputParallelism;
|
|
896
|
+
InputParallelism?: InputParallelism | undefined;
|
|
897
897
|
/**
|
|
898
898
|
* <p>Point at which the application is configured to read from the input stream.</p>
|
|
899
899
|
* @public
|
|
900
900
|
*/
|
|
901
|
-
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
901
|
+
InputStartingPositionConfiguration?: InputStartingPositionConfiguration | undefined;
|
|
902
902
|
}
|
|
903
903
|
/**
|
|
904
904
|
* <p>
|
|
@@ -912,12 +912,12 @@ export interface KinesisFirehoseOutputDescription {
|
|
|
912
912
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream.</p>
|
|
913
913
|
* @public
|
|
914
914
|
*/
|
|
915
|
-
ResourceARN?: string;
|
|
915
|
+
ResourceARN?: string | undefined;
|
|
916
916
|
/**
|
|
917
917
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
RoleARN?: string;
|
|
920
|
+
RoleARN?: string | undefined;
|
|
921
921
|
}
|
|
922
922
|
/**
|
|
923
923
|
* <p>
|
|
@@ -931,12 +931,12 @@ export interface KinesisStreamsOutputDescription {
|
|
|
931
931
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>
|
|
932
932
|
* @public
|
|
933
933
|
*/
|
|
934
|
-
ResourceARN?: string;
|
|
934
|
+
ResourceARN?: string | undefined;
|
|
935
935
|
/**
|
|
936
936
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
RoleARN?: string;
|
|
939
|
+
RoleARN?: string | undefined;
|
|
940
940
|
}
|
|
941
941
|
/**
|
|
942
942
|
* <p>For an application output, describes the AWS Lambda function configured as its
|
|
@@ -948,12 +948,12 @@ export interface LambdaOutputDescription {
|
|
|
948
948
|
* <p>Amazon Resource Name (ARN) of the destination Lambda function.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
ResourceARN?: string;
|
|
951
|
+
ResourceARN?: string | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
RoleARN?: string;
|
|
956
|
+
RoleARN?: string | undefined;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
* <p>Describes the application output configuration, which includes
|
|
@@ -968,35 +968,35 @@ export interface OutputDescription {
|
|
|
968
968
|
* <p>A unique identifier for the output configuration.</p>
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
OutputId?: string;
|
|
971
|
+
OutputId?: string | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* <p>Name of the in-application stream configured as output.</p>
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
Name?: string;
|
|
976
|
+
Name?: string | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* <p>Describes Amazon Kinesis stream configured as the
|
|
979
979
|
* destination where output is written.</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription;
|
|
982
|
+
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription | undefined;
|
|
983
983
|
/**
|
|
984
984
|
* <p>Describes the Amazon Kinesis Firehose delivery stream configured as the
|
|
985
985
|
* destination where output is written.</p>
|
|
986
986
|
* @public
|
|
987
987
|
*/
|
|
988
|
-
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription;
|
|
988
|
+
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription | undefined;
|
|
989
989
|
/**
|
|
990
990
|
* <p>Describes the AWS Lambda function configured as the destination where output is
|
|
991
991
|
* written.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
LambdaOutputDescription?: LambdaOutputDescription;
|
|
994
|
+
LambdaOutputDescription?: LambdaOutputDescription | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>Data format used for writing data to the destination.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
DestinationSchema?: DestinationSchema;
|
|
999
|
+
DestinationSchema?: DestinationSchema | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>Provides the bucket name and object key name that stores the reference data.</p>
|
|
@@ -1045,7 +1045,7 @@ export interface ReferenceDataSourceDescription {
|
|
|
1045
1045
|
* <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>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
ReferenceSchema?: SourceSchema;
|
|
1048
|
+
ReferenceSchema?: SourceSchema | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <note>
|
|
@@ -1064,7 +1064,7 @@ export interface ApplicationDetail {
|
|
|
1064
1064
|
* <p>Description of the application.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
ApplicationDescription?: string;
|
|
1067
|
+
ApplicationDescription?: string | undefined;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* <p>ARN of the application.</p>
|
|
1070
1070
|
* @public
|
|
@@ -1079,12 +1079,12 @@ export interface ApplicationDetail {
|
|
|
1079
1079
|
* <p>Time stamp when the application version was created.</p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
CreateTimestamp?: Date;
|
|
1082
|
+
CreateTimestamp?: Date | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>Time stamp when the application was last updated.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
LastUpdateTimestamp?: Date;
|
|
1087
|
+
LastUpdateTimestamp?: Date | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* <p>Describes the application input configuration.
|
|
1090
1090
|
* For more information,
|
|
@@ -1093,7 +1093,7 @@ export interface ApplicationDetail {
|
|
|
1093
1093
|
* </p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
InputDescriptions?: InputDescription[];
|
|
1096
|
+
InputDescriptions?: InputDescription[] | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* <p>Describes the application output configuration.
|
|
1099
1099
|
* For more information,
|
|
@@ -1102,7 +1102,7 @@ export interface ApplicationDetail {
|
|
|
1102
1102
|
* </p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
OutputDescriptions?: OutputDescription[];
|
|
1105
|
+
OutputDescriptions?: OutputDescription[] | undefined;
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>Describes reference data sources configured for the application.
|
|
1108
1108
|
*
|
|
@@ -1112,7 +1112,7 @@ export interface ApplicationDetail {
|
|
|
1112
1112
|
* </p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[];
|
|
1115
|
+
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[] | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* <p>Describes the CloudWatch log streams that are configured to receive application
|
|
1118
1118
|
* messages. For more information about using CloudWatch log streams with Amazon Kinesis
|
|
@@ -1120,12 +1120,12 @@ export interface ApplicationDetail {
|
|
|
1120
1120
|
* CloudWatch Logs</a>. </p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[];
|
|
1123
|
+
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[] | undefined;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* <p>Returns the application code that you provided to perform data analysis on any of the in-application streams in your application.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
ApplicationCode?: string;
|
|
1128
|
+
ApplicationCode?: string | undefined;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>Provides the current application version.</p>
|
|
1131
1131
|
* @public
|
|
@@ -1170,12 +1170,12 @@ export interface CloudWatchLoggingOptionUpdate {
|
|
|
1170
1170
|
* <p>ARN of the CloudWatch log to receive application messages.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
LogStreamARNUpdate?: string;
|
|
1173
|
+
LogStreamARNUpdate?: string | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the <code>PutLogEvents</code> policy action enabled.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
RoleARNUpdate?: string;
|
|
1178
|
+
RoleARNUpdate?: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>Provides updates to the parallelism count.</p>
|
|
@@ -1187,7 +1187,7 @@ export interface InputParallelismUpdate {
|
|
|
1187
1187
|
* streaming source.</p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
CountUpdate?: number;
|
|
1190
|
+
CountUpdate?: number | undefined;
|
|
1191
1191
|
}
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <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>
|
|
@@ -1203,13 +1203,13 @@ export interface InputLambdaProcessorUpdate {
|
|
|
1203
1203
|
* </note>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
ResourceARNUpdate?: string;
|
|
1206
|
+
ResourceARNUpdate?: string | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>The ARN of the new IAM role that is used to access the AWS Lambda
|
|
1209
1209
|
* function.</p>
|
|
1210
1210
|
* @public
|
|
1211
1211
|
*/
|
|
1212
|
-
RoleARNUpdate?: string;
|
|
1212
|
+
RoleARNUpdate?: string | undefined;
|
|
1213
1213
|
}
|
|
1214
1214
|
/**
|
|
1215
1215
|
* <p>Describes updates to an <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html">InputProcessingConfiguration</a>. </p>
|
|
@@ -1231,18 +1231,18 @@ export interface InputSchemaUpdate {
|
|
|
1231
1231
|
* <p>Specifies the format of the records on the streaming source.</p>
|
|
1232
1232
|
* @public
|
|
1233
1233
|
*/
|
|
1234
|
-
RecordFormatUpdate?: RecordFormat;
|
|
1234
|
+
RecordFormatUpdate?: RecordFormat | undefined;
|
|
1235
1235
|
/**
|
|
1236
1236
|
* <p>Specifies the encoding of the records in the streaming source. For example, UTF-8.</p>
|
|
1237
1237
|
* @public
|
|
1238
1238
|
*/
|
|
1239
|
-
RecordEncodingUpdate?: string;
|
|
1239
|
+
RecordEncodingUpdate?: string | undefined;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* <p>A list of <code>RecordColumn</code> objects. Each object describes the mapping
|
|
1242
1242
|
* of the streaming source element to the corresponding column in the in-application stream. </p>
|
|
1243
1243
|
* @public
|
|
1244
1244
|
*/
|
|
1245
|
-
RecordColumnUpdates?: RecordColumn[];
|
|
1245
|
+
RecordColumnUpdates?: RecordColumn[] | undefined;
|
|
1246
1246
|
}
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>When updating application input configuration, provides information about an
|
|
@@ -1255,13 +1255,13 @@ export interface KinesisFirehoseInputUpdate {
|
|
|
1255
1255
|
* read.</p>
|
|
1256
1256
|
* @public
|
|
1257
1257
|
*/
|
|
1258
|
-
ResourceARNUpdate?: string;
|
|
1258
|
+
ResourceARNUpdate?: string | undefined;
|
|
1259
1259
|
/**
|
|
1260
1260
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream
|
|
1261
1261
|
* on your behalf. You need to grant the necessary permissions to this role.</p>
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
RoleARNUpdate?: string;
|
|
1264
|
+
RoleARNUpdate?: string | undefined;
|
|
1265
1265
|
}
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>When updating application input configuration, provides information about an
|
|
@@ -1273,12 +1273,12 @@ export interface KinesisStreamsInputUpdate {
|
|
|
1273
1273
|
* <p>Amazon Resource Name (ARN) of the input Amazon Kinesis stream to read.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
ResourceARNUpdate?: string;
|
|
1276
|
+
ResourceARNUpdate?: string | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
RoleARNUpdate?: string;
|
|
1281
|
+
RoleARNUpdate?: string | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
/**
|
|
1284
1284
|
* <p>Describes updates to a specific input configuration (identified by the
|
|
@@ -1296,36 +1296,36 @@ export interface InputUpdate {
|
|
|
1296
1296
|
* for the specific streaming source.</p>
|
|
1297
1297
|
* @public
|
|
1298
1298
|
*/
|
|
1299
|
-
NamePrefixUpdate?: string;
|
|
1299
|
+
NamePrefixUpdate?: string | undefined;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* <p>Describes updates for an input processing configuration.</p>
|
|
1302
1302
|
* @public
|
|
1303
1303
|
*/
|
|
1304
|
-
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate;
|
|
1304
|
+
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate | undefined;
|
|
1305
1305
|
/**
|
|
1306
1306
|
* <p>If an Amazon Kinesis stream is the streaming source to be updated, provides an
|
|
1307
1307
|
* updated stream Amazon Resource Name (ARN) and IAM role ARN.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate;
|
|
1310
|
+
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate | undefined;
|
|
1311
1311
|
/**
|
|
1312
1312
|
* <p>If an Amazon Kinesis Firehose delivery stream is the streaming source to be
|
|
1313
1313
|
* updated, provides an updated stream ARN and IAM role ARN.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate;
|
|
1316
|
+
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate | undefined;
|
|
1317
1317
|
/**
|
|
1318
1318
|
* <p>Describes the data format on the streaming source, and
|
|
1319
1319
|
* how record elements on the streaming source map to columns of the in-application stream that is created.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
InputSchemaUpdate?: InputSchemaUpdate;
|
|
1322
|
+
InputSchemaUpdate?: InputSchemaUpdate | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>Describes the parallelism updates (the number in-application
|
|
1325
1325
|
* streams Amazon Kinesis Analytics creates for the specific streaming source).</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
InputParallelismUpdate?: InputParallelismUpdate;
|
|
1328
|
+
InputParallelismUpdate?: InputParallelismUpdate | undefined;
|
|
1329
1329
|
}
|
|
1330
1330
|
/**
|
|
1331
1331
|
* <p>
|
|
@@ -1341,13 +1341,13 @@ export interface KinesisFirehoseOutputUpdate {
|
|
|
1341
1341
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream to write to.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
ResourceARNUpdate?: string;
|
|
1344
|
+
ResourceARNUpdate?: string | undefined;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream
|
|
1347
1347
|
* on your behalf. You need to grant the necessary permissions to this role.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
RoleARNUpdate?: string;
|
|
1350
|
+
RoleARNUpdate?: string | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>
|
|
@@ -1363,12 +1363,12 @@ export interface KinesisStreamsOutputUpdate {
|
|
|
1363
1363
|
* <p>Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
ResourceARNUpdate?: string;
|
|
1366
|
+
ResourceARNUpdate?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
RoleARNUpdate?: string;
|
|
1371
|
+
RoleARNUpdate?: string | undefined;
|
|
1372
1372
|
}
|
|
1373
1373
|
/**
|
|
1374
1374
|
* <p>When updating an output configuration using the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a>
|
|
@@ -1385,12 +1385,12 @@ export interface LambdaOutputUpdate {
|
|
|
1385
1385
|
* </note>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
ResourceARNUpdate?: string;
|
|
1388
|
+
ResourceARNUpdate?: string | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf. You need to grant the necessary permissions to this role. </p>
|
|
1391
1391
|
* @public
|
|
1392
1392
|
*/
|
|
1393
|
-
RoleARNUpdate?: string;
|
|
1393
|
+
RoleARNUpdate?: string | undefined;
|
|
1394
1394
|
}
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>
|
|
@@ -1411,28 +1411,28 @@ export interface OutputUpdate {
|
|
|
1411
1411
|
* specify the new in-application stream name.</p>
|
|
1412
1412
|
* @public
|
|
1413
1413
|
*/
|
|
1414
|
-
NameUpdate?: string;
|
|
1414
|
+
NameUpdate?: string | undefined;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* <p>Describes an Amazon Kinesis stream as the destination for the output.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate;
|
|
1419
|
+
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>Describes an Amazon Kinesis Firehose delivery stream as the destination for the
|
|
1422
1422
|
* output.</p>
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate;
|
|
1425
|
+
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>Describes an AWS Lambda function as the destination for the output.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
LambdaOutputUpdate?: LambdaOutputUpdate;
|
|
1430
|
+
LambdaOutputUpdate?: LambdaOutputUpdate | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* <p>Describes the data format when records are written to the destination. For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html">Configuring Application Output</a>.</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
DestinationSchemaUpdate?: DestinationSchema;
|
|
1435
|
+
DestinationSchemaUpdate?: DestinationSchema | undefined;
|
|
1436
1436
|
}
|
|
1437
1437
|
/**
|
|
1438
1438
|
* <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>
|
|
@@ -1443,17 +1443,17 @@ export interface S3ReferenceDataSourceUpdate {
|
|
|
1443
1443
|
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
BucketARNUpdate?: string;
|
|
1446
|
+
BucketARNUpdate?: string | undefined;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* <p>Object key name.</p>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
FileKeyUpdate?: string;
|
|
1451
|
+
FileKeyUpdate?: string | undefined;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
ReferenceRoleARNUpdate?: string;
|
|
1456
|
+
ReferenceRoleARNUpdate?: string | undefined;
|
|
1457
1457
|
}
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <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>
|
|
@@ -1470,17 +1470,17 @@ export interface ReferenceDataSourceUpdate {
|
|
|
1470
1470
|
* <p>In-application table name that is created by this update.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
TableNameUpdate?: string;
|
|
1473
|
+
TableNameUpdate?: string | undefined;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <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>
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate;
|
|
1478
|
+
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <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>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
ReferenceSchemaUpdate?: SourceSchema;
|
|
1483
|
+
ReferenceSchemaUpdate?: SourceSchema | undefined;
|
|
1484
1484
|
}
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>Describes updates to apply to an existing Amazon Kinesis Analytics application.</p>
|
|
@@ -1491,27 +1491,27 @@ export interface ApplicationUpdate {
|
|
|
1491
1491
|
* <p>Describes application input configuration updates.</p>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
InputUpdates?: InputUpdate[];
|
|
1494
|
+
InputUpdates?: InputUpdate[] | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>Describes application code updates.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
ApplicationCodeUpdate?: string;
|
|
1499
|
+
ApplicationCodeUpdate?: string | undefined;
|
|
1500
1500
|
/**
|
|
1501
1501
|
* <p>Describes application output configuration updates.</p>
|
|
1502
1502
|
* @public
|
|
1503
1503
|
*/
|
|
1504
|
-
OutputUpdates?: OutputUpdate[];
|
|
1504
|
+
OutputUpdates?: OutputUpdate[] | undefined;
|
|
1505
1505
|
/**
|
|
1506
1506
|
* <p>Describes application reference data source updates.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[];
|
|
1509
|
+
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[] | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>Describes application CloudWatch logging option updates.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
|
|
1514
|
+
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[] | undefined;
|
|
1515
1515
|
}
|
|
1516
1516
|
/**
|
|
1517
1517
|
* <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
|
|
@@ -1529,7 +1529,7 @@ export interface Tag {
|
|
|
1529
1529
|
* <p>The value of the key-value tag. The value is optional.</p>
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
Value?: string;
|
|
1532
|
+
Value?: string | undefined;
|
|
1533
1533
|
}
|
|
1534
1534
|
/**
|
|
1535
1535
|
* <p>TBD</p>
|
|
@@ -1545,7 +1545,7 @@ export interface CreateApplicationRequest {
|
|
|
1545
1545
|
* <p>Summary description of the application.</p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
ApplicationDescription?: string;
|
|
1548
|
+
ApplicationDescription?: string | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>Use this parameter to configure the application input.</p>
|
|
1551
1551
|
* <p>You can configure your application to receive input from a single streaming source. In this configuration, you map this streaming source to an in-application stream that is created. Your application code can then query the in-application stream like a table (you can think of it as a constantly updating table).</p>
|
|
@@ -1555,7 +1555,7 @@ export interface CreateApplicationRequest {
|
|
|
1555
1555
|
* <p>To create the in-application stream, you need to specify a schema to transform your data into a schematized version used in SQL. In the schema, you provide the necessary mapping of the data elements in the streaming source to record columns in the in-app stream.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
Inputs?: Input[];
|
|
1558
|
+
Inputs?: Input[] | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>You can configure application output to write data from any of the in-application streams to up to three destinations.</p>
|
|
1561
1561
|
* <p>These destinations can be Amazon Kinesis streams, Amazon Kinesis Firehose delivery
|
|
@@ -1567,14 +1567,14 @@ export interface CreateApplicationRequest {
|
|
|
1567
1567
|
* Amazon Kinesis Analytics can assume to write to the stream or Lambda function on your behalf.</p>
|
|
1568
1568
|
* @public
|
|
1569
1569
|
*/
|
|
1570
|
-
Outputs?: Output[];
|
|
1570
|
+
Outputs?: Output[] | undefined;
|
|
1571
1571
|
/**
|
|
1572
1572
|
* <p>Use this parameter to configure a CloudWatch log stream to monitor application
|
|
1573
1573
|
* configuration errors. For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-logs.html">Working with Amazon
|
|
1574
1574
|
* CloudWatch Logs</a>.</p>
|
|
1575
1575
|
* @public
|
|
1576
1576
|
*/
|
|
1577
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOption[];
|
|
1577
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOption[] | undefined;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* <p>One or more SQL statements that read input data, transform it, and generate output.
|
|
1580
1580
|
* For example, you can write a SQL statement that reads data from one in-application
|
|
@@ -1595,13 +1595,13 @@ export interface CreateApplicationRequest {
|
|
|
1595
1595
|
* then your application code must create these streams. </p>
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
ApplicationCode?: string;
|
|
1598
|
+
ApplicationCode?: string | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* <p>A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
1601
1601
|
* For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
1602
1602
|
* @public
|
|
1603
1603
|
*/
|
|
1604
|
-
Tags?: Tag[];
|
|
1604
|
+
Tags?: Tag[] | undefined;
|
|
1605
1605
|
}
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>TBD</p>
|
|
@@ -1839,28 +1839,28 @@ export interface DiscoverInputSchemaRequest {
|
|
|
1839
1839
|
* <p>Amazon Resource Name (ARN) of the streaming source.</p>
|
|
1840
1840
|
* @public
|
|
1841
1841
|
*/
|
|
1842
|
-
ResourceARN?: string;
|
|
1842
|
+
ResourceARN?: string | undefined;
|
|
1843
1843
|
/**
|
|
1844
1844
|
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.</p>
|
|
1845
1845
|
* @public
|
|
1846
1846
|
*/
|
|
1847
|
-
RoleARN?: string;
|
|
1847
|
+
RoleARN?: string | undefined;
|
|
1848
1848
|
/**
|
|
1849
1849
|
* <p>Point at which you want Amazon Kinesis Analytics to start reading records from the specified streaming source discovery purposes.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
1852
|
+
InputStartingPositionConfiguration?: InputStartingPositionConfiguration | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>Specify this parameter to discover a schema from data in an Amazon S3
|
|
1855
1855
|
* object.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
S3Configuration?: S3Configuration;
|
|
1858
|
+
S3Configuration?: S3Configuration | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html">InputProcessingConfiguration</a> to use to preprocess the records before discovering the schema of the records.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
1863
|
+
InputProcessingConfiguration?: InputProcessingConfiguration | undefined;
|
|
1864
1864
|
}
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p></p>
|
|
@@ -1871,22 +1871,22 @@ export interface DiscoverInputSchemaResponse {
|
|
|
1871
1871
|
* <p>Schema inferred from the streaming source. It identifies the format of the data in the streaming source and how each data element maps to corresponding columns in the in-application stream that you can create.</p>
|
|
1872
1872
|
* @public
|
|
1873
1873
|
*/
|
|
1874
|
-
InputSchema?: SourceSchema;
|
|
1874
|
+
InputSchema?: SourceSchema | undefined;
|
|
1875
1875
|
/**
|
|
1876
1876
|
* <p>An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).</p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
ParsedInputRecords?: string[][];
|
|
1879
|
+
ParsedInputRecords?: string[][] | undefined;
|
|
1880
1880
|
/**
|
|
1881
1881
|
* <p>Stream data that was modified by the processor specified in the <code>InputProcessingConfiguration</code> parameter.</p>
|
|
1882
1882
|
* @public
|
|
1883
1883
|
*/
|
|
1884
|
-
ProcessedInputRecords?: string[];
|
|
1884
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
1885
1885
|
/**
|
|
1886
1886
|
* <p>Raw stream data that was sampled to infer the schema.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
RawInputRecords?: string[];
|
|
1889
|
+
RawInputRecords?: string[] | undefined;
|
|
1890
1890
|
}
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>Discovery failed to get a record from the
|
|
@@ -1924,8 +1924,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
1924
1924
|
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
1925
1925
|
readonly name: "UnableToDetectSchemaException";
|
|
1926
1926
|
readonly $fault: "client";
|
|
1927
|
-
RawInputRecords?: string[];
|
|
1928
|
-
ProcessedInputRecords?: string[];
|
|
1927
|
+
RawInputRecords?: string[] | undefined;
|
|
1928
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* @internal
|
|
1931
1931
|
*/
|
|
@@ -1972,12 +1972,12 @@ export interface ListApplicationsRequest {
|
|
|
1972
1972
|
* <p>Maximum number of applications to list.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
Limit?: number;
|
|
1975
|
+
Limit?: number | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>Name of the application to start the list with. When using pagination to retrieve the list, you don't need to specify this parameter in the first request. However, in subsequent requests, you add the last application name from the previous response to get the next page of applications.</p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
ExclusiveStartApplicationName?: string;
|
|
1980
|
+
ExclusiveStartApplicationName?: string | undefined;
|
|
1981
1981
|
}
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p></p>
|
|
@@ -2013,7 +2013,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2013
2013
|
* <p>The key-value tags assigned to the application.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
Tags?: Tag[];
|
|
2016
|
+
Tags?: Tag[] | undefined;
|
|
2017
2017
|
}
|
|
2018
2018
|
/**
|
|
2019
2019
|
* <p></p>
|
|
@@ -49,7 +49,7 @@ export declare class UnsupportedOperationException extends __BaseException {
|
|
|
49
49
|
);
|
|
50
50
|
}
|
|
51
51
|
export interface InputParallelism {
|
|
52
|
-
Count?: number;
|
|
52
|
+
Count?: number | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface InputLambdaProcessor {
|
|
55
55
|
ResourceARN: string | undefined;
|
|
@@ -60,7 +60,7 @@ export interface InputProcessingConfiguration {
|
|
|
60
60
|
}
|
|
61
61
|
export interface RecordColumn {
|
|
62
62
|
Name: string | undefined;
|
|
63
|
-
Mapping?: string;
|
|
63
|
+
Mapping?: string | undefined;
|
|
64
64
|
SqlType: string | undefined;
|
|
65
65
|
}
|
|
66
66
|
export interface CSVMappingParameters {
|
|
@@ -71,8 +71,8 @@ export interface JSONMappingParameters {
|
|
|
71
71
|
RecordRowPath: string | undefined;
|
|
72
72
|
}
|
|
73
73
|
export interface MappingParameters {
|
|
74
|
-
JSONMappingParameters?: JSONMappingParameters;
|
|
75
|
-
CSVMappingParameters?: CSVMappingParameters;
|
|
74
|
+
JSONMappingParameters?: JSONMappingParameters | undefined;
|
|
75
|
+
CSVMappingParameters?: CSVMappingParameters | undefined;
|
|
76
76
|
}
|
|
77
77
|
export declare const RecordFormatType: {
|
|
78
78
|
readonly CSV: "CSV";
|
|
@@ -82,11 +82,11 @@ export type RecordFormatType =
|
|
|
82
82
|
(typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
83
83
|
export interface RecordFormat {
|
|
84
84
|
RecordFormatType: RecordFormatType | undefined;
|
|
85
|
-
MappingParameters?: MappingParameters;
|
|
85
|
+
MappingParameters?: MappingParameters | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface SourceSchema {
|
|
88
88
|
RecordFormat: RecordFormat | undefined;
|
|
89
|
-
RecordEncoding?: string;
|
|
89
|
+
RecordEncoding?: string | undefined;
|
|
90
90
|
RecordColumns: RecordColumn[] | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface KinesisFirehoseInput {
|
|
@@ -99,10 +99,10 @@ export interface KinesisStreamsInput {
|
|
|
99
99
|
}
|
|
100
100
|
export interface Input {
|
|
101
101
|
NamePrefix: string | undefined;
|
|
102
|
-
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
103
|
-
KinesisStreamsInput?: KinesisStreamsInput;
|
|
104
|
-
KinesisFirehoseInput?: KinesisFirehoseInput;
|
|
105
|
-
InputParallelism?: InputParallelism;
|
|
102
|
+
InputProcessingConfiguration?: InputProcessingConfiguration | undefined;
|
|
103
|
+
KinesisStreamsInput?: KinesisStreamsInput | undefined;
|
|
104
|
+
KinesisFirehoseInput?: KinesisFirehoseInput | undefined;
|
|
105
|
+
InputParallelism?: InputParallelism | undefined;
|
|
106
106
|
InputSchema: SourceSchema | undefined;
|
|
107
107
|
}
|
|
108
108
|
export interface AddApplicationInputRequest {
|
|
@@ -142,9 +142,9 @@ export interface LambdaOutput {
|
|
|
142
142
|
}
|
|
143
143
|
export interface Output {
|
|
144
144
|
Name: string | undefined;
|
|
145
|
-
KinesisStreamsOutput?: KinesisStreamsOutput;
|
|
146
|
-
KinesisFirehoseOutput?: KinesisFirehoseOutput;
|
|
147
|
-
LambdaOutput?: LambdaOutput;
|
|
145
|
+
KinesisStreamsOutput?: KinesisStreamsOutput | undefined;
|
|
146
|
+
KinesisFirehoseOutput?: KinesisFirehoseOutput | undefined;
|
|
147
|
+
LambdaOutput?: LambdaOutput | undefined;
|
|
148
148
|
DestinationSchema: DestinationSchema | undefined;
|
|
149
149
|
}
|
|
150
150
|
export interface AddApplicationOutputRequest {
|
|
@@ -160,7 +160,7 @@ export interface S3ReferenceDataSource {
|
|
|
160
160
|
}
|
|
161
161
|
export interface ReferenceDataSource {
|
|
162
162
|
TableName: string | undefined;
|
|
163
|
-
S3ReferenceDataSource?: S3ReferenceDataSource;
|
|
163
|
+
S3ReferenceDataSource?: S3ReferenceDataSource | undefined;
|
|
164
164
|
ReferenceSchema: SourceSchema | undefined;
|
|
165
165
|
}
|
|
166
166
|
export interface AddApplicationReferenceDataSourceRequest {
|
|
@@ -180,16 +180,16 @@ export declare const ApplicationStatus: {
|
|
|
180
180
|
export type ApplicationStatus =
|
|
181
181
|
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
182
182
|
export interface CloudWatchLoggingOptionDescription {
|
|
183
|
-
CloudWatchLoggingOptionId?: string;
|
|
183
|
+
CloudWatchLoggingOptionId?: string | undefined;
|
|
184
184
|
LogStreamARN: string | undefined;
|
|
185
185
|
RoleARN: string | undefined;
|
|
186
186
|
}
|
|
187
187
|
export interface InputLambdaProcessorDescription {
|
|
188
|
-
ResourceARN?: string;
|
|
189
|
-
RoleARN?: string;
|
|
188
|
+
ResourceARN?: string | undefined;
|
|
189
|
+
RoleARN?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface InputProcessingConfigurationDescription {
|
|
192
|
-
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
192
|
+
InputLambdaProcessorDescription?: InputLambdaProcessorDescription | undefined;
|
|
193
193
|
}
|
|
194
194
|
export declare const InputStartingPosition: {
|
|
195
195
|
readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
|
|
@@ -199,46 +199,52 @@ export declare const InputStartingPosition: {
|
|
|
199
199
|
export type InputStartingPosition =
|
|
200
200
|
(typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
201
201
|
export interface InputStartingPositionConfiguration {
|
|
202
|
-
InputStartingPosition?: InputStartingPosition;
|
|
202
|
+
InputStartingPosition?: InputStartingPosition | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface KinesisFirehoseInputDescription {
|
|
205
|
-
ResourceARN?: string;
|
|
206
|
-
RoleARN?: string;
|
|
205
|
+
ResourceARN?: string | undefined;
|
|
206
|
+
RoleARN?: string | undefined;
|
|
207
207
|
}
|
|
208
208
|
export interface KinesisStreamsInputDescription {
|
|
209
|
-
ResourceARN?: string;
|
|
210
|
-
RoleARN?: string;
|
|
209
|
+
ResourceARN?: string | undefined;
|
|
210
|
+
RoleARN?: string | undefined;
|
|
211
211
|
}
|
|
212
212
|
export interface InputDescription {
|
|
213
|
-
InputId?: string;
|
|
214
|
-
NamePrefix?: string;
|
|
215
|
-
InAppStreamNames?: string[];
|
|
216
|
-
InputProcessingConfigurationDescription?:
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
213
|
+
InputId?: string | undefined;
|
|
214
|
+
NamePrefix?: string | undefined;
|
|
215
|
+
InAppStreamNames?: string[] | undefined;
|
|
216
|
+
InputProcessingConfigurationDescription?:
|
|
217
|
+
| InputProcessingConfigurationDescription
|
|
218
|
+
| undefined;
|
|
219
|
+
KinesisStreamsInputDescription?: KinesisStreamsInputDescription | undefined;
|
|
220
|
+
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription | undefined;
|
|
221
|
+
InputSchema?: SourceSchema | undefined;
|
|
222
|
+
InputParallelism?: InputParallelism | undefined;
|
|
223
|
+
InputStartingPositionConfiguration?:
|
|
224
|
+
| InputStartingPositionConfiguration
|
|
225
|
+
| undefined;
|
|
222
226
|
}
|
|
223
227
|
export interface KinesisFirehoseOutputDescription {
|
|
224
|
-
ResourceARN?: string;
|
|
225
|
-
RoleARN?: string;
|
|
228
|
+
ResourceARN?: string | undefined;
|
|
229
|
+
RoleARN?: string | undefined;
|
|
226
230
|
}
|
|
227
231
|
export interface KinesisStreamsOutputDescription {
|
|
228
|
-
ResourceARN?: string;
|
|
229
|
-
RoleARN?: string;
|
|
232
|
+
ResourceARN?: string | undefined;
|
|
233
|
+
RoleARN?: string | undefined;
|
|
230
234
|
}
|
|
231
235
|
export interface LambdaOutputDescription {
|
|
232
|
-
ResourceARN?: string;
|
|
233
|
-
RoleARN?: string;
|
|
236
|
+
ResourceARN?: string | undefined;
|
|
237
|
+
RoleARN?: string | undefined;
|
|
234
238
|
}
|
|
235
239
|
export interface OutputDescription {
|
|
236
|
-
OutputId?: string;
|
|
237
|
-
Name?: string;
|
|
238
|
-
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription;
|
|
239
|
-
KinesisFirehoseOutputDescription?:
|
|
240
|
-
|
|
241
|
-
|
|
240
|
+
OutputId?: string | undefined;
|
|
241
|
+
Name?: string | undefined;
|
|
242
|
+
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription | undefined;
|
|
243
|
+
KinesisFirehoseOutputDescription?:
|
|
244
|
+
| KinesisFirehoseOutputDescription
|
|
245
|
+
| undefined;
|
|
246
|
+
LambdaOutputDescription?: LambdaOutputDescription | undefined;
|
|
247
|
+
DestinationSchema?: DestinationSchema | undefined;
|
|
242
248
|
}
|
|
243
249
|
export interface S3ReferenceDataSourceDescription {
|
|
244
250
|
BucketARN: string | undefined;
|
|
@@ -251,20 +257,24 @@ export interface ReferenceDataSourceDescription {
|
|
|
251
257
|
S3ReferenceDataSourceDescription:
|
|
252
258
|
| S3ReferenceDataSourceDescription
|
|
253
259
|
| undefined;
|
|
254
|
-
ReferenceSchema?: SourceSchema;
|
|
260
|
+
ReferenceSchema?: SourceSchema | undefined;
|
|
255
261
|
}
|
|
256
262
|
export interface ApplicationDetail {
|
|
257
263
|
ApplicationName: string | undefined;
|
|
258
|
-
ApplicationDescription?: string;
|
|
264
|
+
ApplicationDescription?: string | undefined;
|
|
259
265
|
ApplicationARN: string | undefined;
|
|
260
266
|
ApplicationStatus: ApplicationStatus | undefined;
|
|
261
|
-
CreateTimestamp?: Date;
|
|
262
|
-
LastUpdateTimestamp?: Date;
|
|
263
|
-
InputDescriptions?: InputDescription[];
|
|
264
|
-
OutputDescriptions?: OutputDescription[];
|
|
265
|
-
ReferenceDataSourceDescriptions?:
|
|
266
|
-
|
|
267
|
-
|
|
267
|
+
CreateTimestamp?: Date | undefined;
|
|
268
|
+
LastUpdateTimestamp?: Date | undefined;
|
|
269
|
+
InputDescriptions?: InputDescription[] | undefined;
|
|
270
|
+
OutputDescriptions?: OutputDescription[] | undefined;
|
|
271
|
+
ReferenceDataSourceDescriptions?:
|
|
272
|
+
| ReferenceDataSourceDescription[]
|
|
273
|
+
| undefined;
|
|
274
|
+
CloudWatchLoggingOptionDescriptions?:
|
|
275
|
+
| CloudWatchLoggingOptionDescription[]
|
|
276
|
+
| undefined;
|
|
277
|
+
ApplicationCode?: string | undefined;
|
|
268
278
|
ApplicationVersionId: number | undefined;
|
|
269
279
|
}
|
|
270
280
|
export interface ApplicationSummary {
|
|
@@ -274,91 +284,93 @@ export interface ApplicationSummary {
|
|
|
274
284
|
}
|
|
275
285
|
export interface CloudWatchLoggingOptionUpdate {
|
|
276
286
|
CloudWatchLoggingOptionId: string | undefined;
|
|
277
|
-
LogStreamARNUpdate?: string;
|
|
278
|
-
RoleARNUpdate?: string;
|
|
287
|
+
LogStreamARNUpdate?: string | undefined;
|
|
288
|
+
RoleARNUpdate?: string | undefined;
|
|
279
289
|
}
|
|
280
290
|
export interface InputParallelismUpdate {
|
|
281
|
-
CountUpdate?: number;
|
|
291
|
+
CountUpdate?: number | undefined;
|
|
282
292
|
}
|
|
283
293
|
export interface InputLambdaProcessorUpdate {
|
|
284
|
-
ResourceARNUpdate?: string;
|
|
285
|
-
RoleARNUpdate?: string;
|
|
294
|
+
ResourceARNUpdate?: string | undefined;
|
|
295
|
+
RoleARNUpdate?: string | undefined;
|
|
286
296
|
}
|
|
287
297
|
export interface InputProcessingConfigurationUpdate {
|
|
288
298
|
InputLambdaProcessorUpdate: InputLambdaProcessorUpdate | undefined;
|
|
289
299
|
}
|
|
290
300
|
export interface InputSchemaUpdate {
|
|
291
|
-
RecordFormatUpdate?: RecordFormat;
|
|
292
|
-
RecordEncodingUpdate?: string;
|
|
293
|
-
RecordColumnUpdates?: RecordColumn[];
|
|
301
|
+
RecordFormatUpdate?: RecordFormat | undefined;
|
|
302
|
+
RecordEncodingUpdate?: string | undefined;
|
|
303
|
+
RecordColumnUpdates?: RecordColumn[] | undefined;
|
|
294
304
|
}
|
|
295
305
|
export interface KinesisFirehoseInputUpdate {
|
|
296
|
-
ResourceARNUpdate?: string;
|
|
297
|
-
RoleARNUpdate?: string;
|
|
306
|
+
ResourceARNUpdate?: string | undefined;
|
|
307
|
+
RoleARNUpdate?: string | undefined;
|
|
298
308
|
}
|
|
299
309
|
export interface KinesisStreamsInputUpdate {
|
|
300
|
-
ResourceARNUpdate?: string;
|
|
301
|
-
RoleARNUpdate?: string;
|
|
310
|
+
ResourceARNUpdate?: string | undefined;
|
|
311
|
+
RoleARNUpdate?: string | undefined;
|
|
302
312
|
}
|
|
303
313
|
export interface InputUpdate {
|
|
304
314
|
InputId: string | undefined;
|
|
305
|
-
NamePrefixUpdate?: string;
|
|
306
|
-
InputProcessingConfigurationUpdate?:
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
315
|
+
NamePrefixUpdate?: string | undefined;
|
|
316
|
+
InputProcessingConfigurationUpdate?:
|
|
317
|
+
| InputProcessingConfigurationUpdate
|
|
318
|
+
| undefined;
|
|
319
|
+
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate | undefined;
|
|
320
|
+
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate | undefined;
|
|
321
|
+
InputSchemaUpdate?: InputSchemaUpdate | undefined;
|
|
322
|
+
InputParallelismUpdate?: InputParallelismUpdate | undefined;
|
|
311
323
|
}
|
|
312
324
|
export interface KinesisFirehoseOutputUpdate {
|
|
313
|
-
ResourceARNUpdate?: string;
|
|
314
|
-
RoleARNUpdate?: string;
|
|
325
|
+
ResourceARNUpdate?: string | undefined;
|
|
326
|
+
RoleARNUpdate?: string | undefined;
|
|
315
327
|
}
|
|
316
328
|
export interface KinesisStreamsOutputUpdate {
|
|
317
|
-
ResourceARNUpdate?: string;
|
|
318
|
-
RoleARNUpdate?: string;
|
|
329
|
+
ResourceARNUpdate?: string | undefined;
|
|
330
|
+
RoleARNUpdate?: string | undefined;
|
|
319
331
|
}
|
|
320
332
|
export interface LambdaOutputUpdate {
|
|
321
|
-
ResourceARNUpdate?: string;
|
|
322
|
-
RoleARNUpdate?: string;
|
|
333
|
+
ResourceARNUpdate?: string | undefined;
|
|
334
|
+
RoleARNUpdate?: string | undefined;
|
|
323
335
|
}
|
|
324
336
|
export interface OutputUpdate {
|
|
325
337
|
OutputId: string | undefined;
|
|
326
|
-
NameUpdate?: string;
|
|
327
|
-
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate;
|
|
328
|
-
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate;
|
|
329
|
-
LambdaOutputUpdate?: LambdaOutputUpdate;
|
|
330
|
-
DestinationSchemaUpdate?: DestinationSchema;
|
|
338
|
+
NameUpdate?: string | undefined;
|
|
339
|
+
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate | undefined;
|
|
340
|
+
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate | undefined;
|
|
341
|
+
LambdaOutputUpdate?: LambdaOutputUpdate | undefined;
|
|
342
|
+
DestinationSchemaUpdate?: DestinationSchema | undefined;
|
|
331
343
|
}
|
|
332
344
|
export interface S3ReferenceDataSourceUpdate {
|
|
333
|
-
BucketARNUpdate?: string;
|
|
334
|
-
FileKeyUpdate?: string;
|
|
335
|
-
ReferenceRoleARNUpdate?: string;
|
|
345
|
+
BucketARNUpdate?: string | undefined;
|
|
346
|
+
FileKeyUpdate?: string | undefined;
|
|
347
|
+
ReferenceRoleARNUpdate?: string | undefined;
|
|
336
348
|
}
|
|
337
349
|
export interface ReferenceDataSourceUpdate {
|
|
338
350
|
ReferenceId: string | undefined;
|
|
339
|
-
TableNameUpdate?: string;
|
|
340
|
-
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate;
|
|
341
|
-
ReferenceSchemaUpdate?: SourceSchema;
|
|
351
|
+
TableNameUpdate?: string | undefined;
|
|
352
|
+
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate | undefined;
|
|
353
|
+
ReferenceSchemaUpdate?: SourceSchema | undefined;
|
|
342
354
|
}
|
|
343
355
|
export interface ApplicationUpdate {
|
|
344
|
-
InputUpdates?: InputUpdate[];
|
|
345
|
-
ApplicationCodeUpdate?: string;
|
|
346
|
-
OutputUpdates?: OutputUpdate[];
|
|
347
|
-
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[];
|
|
348
|
-
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
|
|
356
|
+
InputUpdates?: InputUpdate[] | undefined;
|
|
357
|
+
ApplicationCodeUpdate?: string | undefined;
|
|
358
|
+
OutputUpdates?: OutputUpdate[] | undefined;
|
|
359
|
+
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[] | undefined;
|
|
360
|
+
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[] | undefined;
|
|
349
361
|
}
|
|
350
362
|
export interface Tag {
|
|
351
363
|
Key: string | undefined;
|
|
352
|
-
Value?: string;
|
|
364
|
+
Value?: string | undefined;
|
|
353
365
|
}
|
|
354
366
|
export interface CreateApplicationRequest {
|
|
355
367
|
ApplicationName: string | undefined;
|
|
356
|
-
ApplicationDescription?: string;
|
|
357
|
-
Inputs?: Input[];
|
|
358
|
-
Outputs?: Output[];
|
|
359
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOption[];
|
|
360
|
-
ApplicationCode?: string;
|
|
361
|
-
Tags?: Tag[];
|
|
368
|
+
ApplicationDescription?: string | undefined;
|
|
369
|
+
Inputs?: Input[] | undefined;
|
|
370
|
+
Outputs?: Output[] | undefined;
|
|
371
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOption[] | undefined;
|
|
372
|
+
ApplicationCode?: string | undefined;
|
|
373
|
+
Tags?: Tag[] | undefined;
|
|
362
374
|
}
|
|
363
375
|
export interface CreateApplicationResponse {
|
|
364
376
|
ApplicationSummary: ApplicationSummary | undefined;
|
|
@@ -418,17 +430,19 @@ export interface S3Configuration {
|
|
|
418
430
|
FileKey: string | undefined;
|
|
419
431
|
}
|
|
420
432
|
export interface DiscoverInputSchemaRequest {
|
|
421
|
-
ResourceARN?: string;
|
|
422
|
-
RoleARN?: string;
|
|
423
|
-
InputStartingPositionConfiguration?:
|
|
424
|
-
|
|
425
|
-
|
|
433
|
+
ResourceARN?: string | undefined;
|
|
434
|
+
RoleARN?: string | undefined;
|
|
435
|
+
InputStartingPositionConfiguration?:
|
|
436
|
+
| InputStartingPositionConfiguration
|
|
437
|
+
| undefined;
|
|
438
|
+
S3Configuration?: S3Configuration | undefined;
|
|
439
|
+
InputProcessingConfiguration?: InputProcessingConfiguration | undefined;
|
|
426
440
|
}
|
|
427
441
|
export interface DiscoverInputSchemaResponse {
|
|
428
|
-
InputSchema?: SourceSchema;
|
|
429
|
-
ParsedInputRecords?: string[][];
|
|
430
|
-
ProcessedInputRecords?: string[];
|
|
431
|
-
RawInputRecords?: string[];
|
|
442
|
+
InputSchema?: SourceSchema | undefined;
|
|
443
|
+
ParsedInputRecords?: string[][] | undefined;
|
|
444
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
445
|
+
RawInputRecords?: string[] | undefined;
|
|
432
446
|
}
|
|
433
447
|
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
434
448
|
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
@@ -450,8 +464,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
450
464
|
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
451
465
|
readonly name: "UnableToDetectSchemaException";
|
|
452
466
|
readonly $fault: "client";
|
|
453
|
-
RawInputRecords?: string[];
|
|
454
|
-
ProcessedInputRecords?: string[];
|
|
467
|
+
RawInputRecords?: string[] | undefined;
|
|
468
|
+
ProcessedInputRecords?: string[] | undefined;
|
|
455
469
|
constructor(
|
|
456
470
|
opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>
|
|
457
471
|
);
|
|
@@ -473,8 +487,8 @@ export declare class InvalidApplicationConfigurationException extends __BaseExce
|
|
|
473
487
|
);
|
|
474
488
|
}
|
|
475
489
|
export interface ListApplicationsRequest {
|
|
476
|
-
Limit?: number;
|
|
477
|
-
ExclusiveStartApplicationName?: string;
|
|
490
|
+
Limit?: number | undefined;
|
|
491
|
+
ExclusiveStartApplicationName?: string | undefined;
|
|
478
492
|
}
|
|
479
493
|
export interface ListApplicationsResponse {
|
|
480
494
|
ApplicationSummaries: ApplicationSummary[] | undefined;
|
|
@@ -484,7 +498,7 @@ export interface ListTagsForResourceRequest {
|
|
|
484
498
|
ResourceARN: string | undefined;
|
|
485
499
|
}
|
|
486
500
|
export interface ListTagsForResourceResponse {
|
|
487
|
-
Tags?: Tag[];
|
|
501
|
+
Tags?: Tag[] | undefined;
|
|
488
502
|
}
|
|
489
503
|
export interface StartApplicationRequest {
|
|
490
504
|
ApplicationName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-analytics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kinesis-analytics",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|