@aws-sdk/client-kinesis-analytics-v2 3.321.1 → 3.326.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/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +14 -0
- package/dist-types/commands/AddApplicationInputCommand.d.ts +58 -0
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +14 -0
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +28 -0
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +40 -0
- package/dist-types/commands/AddApplicationVpcConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +240 -0
- package/dist-types/commands/CreateApplicationPresignedUrlCommand.d.ts +6 -0
- package/dist-types/commands/CreateApplicationSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +14 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +7 -0
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +7 -0
- package/dist-types/commands/DeleteApplicationSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationVpcConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +240 -0
- package/dist-types/commands/DescribeApplicationSnapshotCommand.d.ts +11 -0
- package/dist-types/commands/DescribeApplicationVersionCommand.d.ts +240 -0
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +38 -0
- package/dist-types/commands/ListApplicationSnapshotsCommand.d.ts +14 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +12 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/RollbackApplicationCommand.d.ts +240 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +4 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +240 -0
- package/dist-types/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +10 -0
- package/package.json +16 -16
|
@@ -36,6 +36,18 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new AddApplicationCloudWatchLoggingOptionCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // AddApplicationCloudWatchLoggingOptionResponse
|
|
40
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
41
|
+
* // ApplicationVersionId: Number("long"),
|
|
42
|
+
* // CloudWatchLoggingOptionDescriptions: [ // CloudWatchLoggingOptionDescriptions
|
|
43
|
+
* // { // CloudWatchLoggingOptionDescription
|
|
44
|
+
* // CloudWatchLoggingOptionId: "STRING_VALUE",
|
|
45
|
+
* // LogStreamARN: "STRING_VALUE", // required
|
|
46
|
+
* // RoleARN: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
39
51
|
* ```
|
|
40
52
|
*
|
|
41
53
|
* @param AddApplicationCloudWatchLoggingOptionCommandInput - {@link AddApplicationCloudWatchLoggingOptionCommandInput}
|
|
@@ -64,6 +76,8 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
64
76
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
77
|
* <p>Specified application can't be found.</p>
|
|
66
78
|
*
|
|
79
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
67
81
|
*
|
|
68
82
|
*/
|
|
69
83
|
export declare class AddApplicationCloudWatchLoggingOptionCommand extends $Command<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -80,6 +80,62 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
80
80
|
* };
|
|
81
81
|
* const command = new AddApplicationInputCommand(input);
|
|
82
82
|
* const response = await client.send(command);
|
|
83
|
+
* // { // AddApplicationInputResponse
|
|
84
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
85
|
+
* // ApplicationVersionId: Number("long"),
|
|
86
|
+
* // InputDescriptions: [ // InputDescriptions
|
|
87
|
+
* // { // InputDescription
|
|
88
|
+
* // InputId: "STRING_VALUE",
|
|
89
|
+
* // NamePrefix: "STRING_VALUE",
|
|
90
|
+
* // InAppStreamNames: [ // InAppStreamNames
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
93
|
+
* // InputProcessingConfigurationDescription: { // InputProcessingConfigurationDescription
|
|
94
|
+
* // InputLambdaProcessorDescription: { // InputLambdaProcessorDescription
|
|
95
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
96
|
+
* // RoleARN: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // KinesisStreamsInputDescription: { // KinesisStreamsInputDescription
|
|
100
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
101
|
+
* // RoleARN: "STRING_VALUE",
|
|
102
|
+
* // },
|
|
103
|
+
* // KinesisFirehoseInputDescription: { // KinesisFirehoseInputDescription
|
|
104
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
105
|
+
* // RoleARN: "STRING_VALUE",
|
|
106
|
+
* // },
|
|
107
|
+
* // InputSchema: { // SourceSchema
|
|
108
|
+
* // RecordFormat: { // RecordFormat
|
|
109
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
110
|
+
* // MappingParameters: { // MappingParameters
|
|
111
|
+
* // JSONMappingParameters: { // JSONMappingParameters
|
|
112
|
+
* // RecordRowPath: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // CSVMappingParameters: { // CSVMappingParameters
|
|
115
|
+
* // RecordRowDelimiter: "STRING_VALUE", // required
|
|
116
|
+
* // RecordColumnDelimiter: "STRING_VALUE", // required
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // },
|
|
120
|
+
* // RecordEncoding: "STRING_VALUE",
|
|
121
|
+
* // RecordColumns: [ // RecordColumns // required
|
|
122
|
+
* // { // RecordColumn
|
|
123
|
+
* // Name: "STRING_VALUE", // required
|
|
124
|
+
* // Mapping: "STRING_VALUE",
|
|
125
|
+
* // SqlType: "STRING_VALUE", // required
|
|
126
|
+
* // },
|
|
127
|
+
* // ],
|
|
128
|
+
* // },
|
|
129
|
+
* // InputParallelism: { // InputParallelism
|
|
130
|
+
* // Count: Number("int"),
|
|
131
|
+
* // },
|
|
132
|
+
* // InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
|
|
133
|
+
* // InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
|
|
134
|
+
* // },
|
|
135
|
+
* // },
|
|
136
|
+
* // ],
|
|
137
|
+
* // };
|
|
138
|
+
*
|
|
83
139
|
* ```
|
|
84
140
|
*
|
|
85
141
|
* @param AddApplicationInputCommandInput - {@link AddApplicationInputCommandInput}
|
|
@@ -109,6 +165,8 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
109
165
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
110
166
|
* <p>Specified application can't be found.</p>
|
|
111
167
|
*
|
|
168
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
169
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
112
170
|
*
|
|
113
171
|
*/
|
|
114
172
|
export declare class AddApplicationInputCommand extends $Command<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -40,6 +40,18 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new AddApplicationInputProcessingConfigurationCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // AddApplicationInputProcessingConfigurationResponse
|
|
44
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
45
|
+
* // ApplicationVersionId: Number("long"),
|
|
46
|
+
* // InputId: "STRING_VALUE",
|
|
47
|
+
* // InputProcessingConfigurationDescription: { // InputProcessingConfigurationDescription
|
|
48
|
+
* // InputLambdaProcessorDescription: { // InputLambdaProcessorDescription
|
|
49
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
50
|
+
* // RoleARN: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
43
55
|
* ```
|
|
44
56
|
*
|
|
45
57
|
* @param AddApplicationInputProcessingConfigurationCommandInput - {@link AddApplicationInputProcessingConfigurationCommandInput}
|
|
@@ -65,6 +77,8 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
65
77
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
78
|
* <p>Specified application can't be found.</p>
|
|
67
79
|
*
|
|
80
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
68
82
|
*
|
|
69
83
|
*/
|
|
70
84
|
export declare class AddApplicationInputProcessingConfigurationCommand extends $Command<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -59,6 +59,32 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new AddApplicationOutputCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // AddApplicationOutputResponse
|
|
63
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
64
|
+
* // ApplicationVersionId: Number("long"),
|
|
65
|
+
* // OutputDescriptions: [ // OutputDescriptions
|
|
66
|
+
* // { // OutputDescription
|
|
67
|
+
* // OutputId: "STRING_VALUE",
|
|
68
|
+
* // Name: "STRING_VALUE",
|
|
69
|
+
* // KinesisStreamsOutputDescription: { // KinesisStreamsOutputDescription
|
|
70
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
71
|
+
* // RoleARN: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // KinesisFirehoseOutputDescription: { // KinesisFirehoseOutputDescription
|
|
74
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
75
|
+
* // RoleARN: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // LambdaOutputDescription: { // LambdaOutputDescription
|
|
78
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
79
|
+
* // RoleARN: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // DestinationSchema: { // DestinationSchema
|
|
82
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // };
|
|
87
|
+
*
|
|
62
88
|
* ```
|
|
63
89
|
*
|
|
64
90
|
* @param AddApplicationOutputCommandInput - {@link AddApplicationOutputCommandInput}
|
|
@@ -84,6 +110,8 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
84
110
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
111
|
* <p>Specified application can't be found.</p>
|
|
86
112
|
*
|
|
113
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
87
115
|
*
|
|
88
116
|
*/
|
|
89
117
|
export declare class AddApplicationOutputCommand extends $Command<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -66,6 +66,44 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new AddApplicationReferenceDataSourceCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // { // AddApplicationReferenceDataSourceResponse
|
|
70
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
71
|
+
* // ApplicationVersionId: Number("long"),
|
|
72
|
+
* // ReferenceDataSourceDescriptions: [ // ReferenceDataSourceDescriptions
|
|
73
|
+
* // { // ReferenceDataSourceDescription
|
|
74
|
+
* // ReferenceId: "STRING_VALUE", // required
|
|
75
|
+
* // TableName: "STRING_VALUE", // required
|
|
76
|
+
* // S3ReferenceDataSourceDescription: { // S3ReferenceDataSourceDescription
|
|
77
|
+
* // BucketARN: "STRING_VALUE", // required
|
|
78
|
+
* // FileKey: "STRING_VALUE", // required
|
|
79
|
+
* // ReferenceRoleARN: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // ReferenceSchema: { // SourceSchema
|
|
82
|
+
* // RecordFormat: { // RecordFormat
|
|
83
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
84
|
+
* // MappingParameters: { // MappingParameters
|
|
85
|
+
* // JSONMappingParameters: { // JSONMappingParameters
|
|
86
|
+
* // RecordRowPath: "STRING_VALUE", // required
|
|
87
|
+
* // },
|
|
88
|
+
* // CSVMappingParameters: { // CSVMappingParameters
|
|
89
|
+
* // RecordRowDelimiter: "STRING_VALUE", // required
|
|
90
|
+
* // RecordColumnDelimiter: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // RecordEncoding: "STRING_VALUE",
|
|
95
|
+
* // RecordColumns: [ // RecordColumns // required
|
|
96
|
+
* // { // RecordColumn
|
|
97
|
+
* // Name: "STRING_VALUE", // required
|
|
98
|
+
* // Mapping: "STRING_VALUE",
|
|
99
|
+
* // SqlType: "STRING_VALUE", // required
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // ],
|
|
105
|
+
* // };
|
|
106
|
+
*
|
|
69
107
|
* ```
|
|
70
108
|
*
|
|
71
109
|
* @param AddApplicationReferenceDataSourceCommandInput - {@link AddApplicationReferenceDataSourceCommandInput}
|
|
@@ -91,6 +129,8 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
91
129
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
92
130
|
* <p>Specified application can't be found.</p>
|
|
93
131
|
*
|
|
132
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
94
134
|
*
|
|
95
135
|
*/
|
|
96
136
|
export declare class AddApplicationReferenceDataSourceCommand extends $Command<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -52,6 +52,21 @@ export interface AddApplicationVpcConfigurationCommandOutput extends AddApplicat
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new AddApplicationVpcConfigurationCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // AddApplicationVpcConfigurationResponse
|
|
56
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
57
|
+
* // ApplicationVersionId: Number("long"),
|
|
58
|
+
* // VpcConfigurationDescription: { // VpcConfigurationDescription
|
|
59
|
+
* // VpcConfigurationId: "STRING_VALUE", // required
|
|
60
|
+
* // VpcId: "STRING_VALUE", // required
|
|
61
|
+
* // SubnetIds: [ // SubnetIds // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // SecurityGroupIds: [ // SecurityGroupIds // required
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
55
70
|
* ```
|
|
56
71
|
*
|
|
57
72
|
* @param AddApplicationVpcConfigurationCommandInput - {@link AddApplicationVpcConfigurationCommandInput}
|
|
@@ -77,6 +92,8 @@ export interface AddApplicationVpcConfigurationCommandOutput extends AddApplicat
|
|
|
77
92
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
93
|
* <p>Specified application can't be found.</p>
|
|
79
94
|
*
|
|
95
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
80
97
|
*
|
|
81
98
|
*/
|
|
82
99
|
export declare class AddApplicationVpcConfigurationCommand extends $Command<AddApplicationVpcConfigurationCommandInput, AddApplicationVpcConfigurationCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -226,6 +226,244 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
226
226
|
* };
|
|
227
227
|
* const command = new CreateApplicationCommand(input);
|
|
228
228
|
* const response = await client.send(command);
|
|
229
|
+
* // { // CreateApplicationResponse
|
|
230
|
+
* // ApplicationDetail: { // ApplicationDetail
|
|
231
|
+
* // ApplicationARN: "STRING_VALUE", // required
|
|
232
|
+
* // ApplicationDescription: "STRING_VALUE",
|
|
233
|
+
* // ApplicationName: "STRING_VALUE", // required
|
|
234
|
+
* // RuntimeEnvironment: "SQL-1_0" || "FLINK-1_6" || "FLINK-1_8" || "ZEPPELIN-FLINK-1_0" || "FLINK-1_11" || "FLINK-1_13" || "ZEPPELIN-FLINK-2_0" || "FLINK-1_15", // required
|
|
235
|
+
* // ServiceExecutionRole: "STRING_VALUE",
|
|
236
|
+
* // ApplicationStatus: "DELETING" || "STARTING" || "STOPPING" || "READY" || "RUNNING" || "UPDATING" || "AUTOSCALING" || "FORCE_STOPPING" || "ROLLING_BACK" || "MAINTENANCE" || "ROLLED_BACK", // required
|
|
237
|
+
* // ApplicationVersionId: Number("long"), // required
|
|
238
|
+
* // CreateTimestamp: new Date("TIMESTAMP"),
|
|
239
|
+
* // LastUpdateTimestamp: new Date("TIMESTAMP"),
|
|
240
|
+
* // ApplicationConfigurationDescription: { // ApplicationConfigurationDescription
|
|
241
|
+
* // SqlApplicationConfigurationDescription: { // SqlApplicationConfigurationDescription
|
|
242
|
+
* // InputDescriptions: [ // InputDescriptions
|
|
243
|
+
* // { // InputDescription
|
|
244
|
+
* // InputId: "STRING_VALUE",
|
|
245
|
+
* // NamePrefix: "STRING_VALUE",
|
|
246
|
+
* // InAppStreamNames: [ // InAppStreamNames
|
|
247
|
+
* // "STRING_VALUE",
|
|
248
|
+
* // ],
|
|
249
|
+
* // InputProcessingConfigurationDescription: { // InputProcessingConfigurationDescription
|
|
250
|
+
* // InputLambdaProcessorDescription: { // InputLambdaProcessorDescription
|
|
251
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
252
|
+
* // RoleARN: "STRING_VALUE",
|
|
253
|
+
* // },
|
|
254
|
+
* // },
|
|
255
|
+
* // KinesisStreamsInputDescription: { // KinesisStreamsInputDescription
|
|
256
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
257
|
+
* // RoleARN: "STRING_VALUE",
|
|
258
|
+
* // },
|
|
259
|
+
* // KinesisFirehoseInputDescription: { // KinesisFirehoseInputDescription
|
|
260
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
261
|
+
* // RoleARN: "STRING_VALUE",
|
|
262
|
+
* // },
|
|
263
|
+
* // InputSchema: { // SourceSchema
|
|
264
|
+
* // RecordFormat: { // RecordFormat
|
|
265
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
266
|
+
* // MappingParameters: { // MappingParameters
|
|
267
|
+
* // JSONMappingParameters: { // JSONMappingParameters
|
|
268
|
+
* // RecordRowPath: "STRING_VALUE", // required
|
|
269
|
+
* // },
|
|
270
|
+
* // CSVMappingParameters: { // CSVMappingParameters
|
|
271
|
+
* // RecordRowDelimiter: "STRING_VALUE", // required
|
|
272
|
+
* // RecordColumnDelimiter: "STRING_VALUE", // required
|
|
273
|
+
* // },
|
|
274
|
+
* // },
|
|
275
|
+
* // },
|
|
276
|
+
* // RecordEncoding: "STRING_VALUE",
|
|
277
|
+
* // RecordColumns: [ // RecordColumns // required
|
|
278
|
+
* // { // RecordColumn
|
|
279
|
+
* // Name: "STRING_VALUE", // required
|
|
280
|
+
* // Mapping: "STRING_VALUE",
|
|
281
|
+
* // SqlType: "STRING_VALUE", // required
|
|
282
|
+
* // },
|
|
283
|
+
* // ],
|
|
284
|
+
* // },
|
|
285
|
+
* // InputParallelism: { // InputParallelism
|
|
286
|
+
* // Count: Number("int"),
|
|
287
|
+
* // },
|
|
288
|
+
* // InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
|
|
289
|
+
* // InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
|
|
290
|
+
* // },
|
|
291
|
+
* // },
|
|
292
|
+
* // ],
|
|
293
|
+
* // OutputDescriptions: [ // OutputDescriptions
|
|
294
|
+
* // { // OutputDescription
|
|
295
|
+
* // OutputId: "STRING_VALUE",
|
|
296
|
+
* // Name: "STRING_VALUE",
|
|
297
|
+
* // KinesisStreamsOutputDescription: { // KinesisStreamsOutputDescription
|
|
298
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
299
|
+
* // RoleARN: "STRING_VALUE",
|
|
300
|
+
* // },
|
|
301
|
+
* // KinesisFirehoseOutputDescription: { // KinesisFirehoseOutputDescription
|
|
302
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
303
|
+
* // RoleARN: "STRING_VALUE",
|
|
304
|
+
* // },
|
|
305
|
+
* // LambdaOutputDescription: { // LambdaOutputDescription
|
|
306
|
+
* // ResourceARN: "STRING_VALUE", // required
|
|
307
|
+
* // RoleARN: "STRING_VALUE",
|
|
308
|
+
* // },
|
|
309
|
+
* // DestinationSchema: { // DestinationSchema
|
|
310
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
311
|
+
* // },
|
|
312
|
+
* // },
|
|
313
|
+
* // ],
|
|
314
|
+
* // ReferenceDataSourceDescriptions: [ // ReferenceDataSourceDescriptions
|
|
315
|
+
* // { // ReferenceDataSourceDescription
|
|
316
|
+
* // ReferenceId: "STRING_VALUE", // required
|
|
317
|
+
* // TableName: "STRING_VALUE", // required
|
|
318
|
+
* // S3ReferenceDataSourceDescription: { // S3ReferenceDataSourceDescription
|
|
319
|
+
* // BucketARN: "STRING_VALUE", // required
|
|
320
|
+
* // FileKey: "STRING_VALUE", // required
|
|
321
|
+
* // ReferenceRoleARN: "STRING_VALUE",
|
|
322
|
+
* // },
|
|
323
|
+
* // ReferenceSchema: {
|
|
324
|
+
* // RecordFormat: {
|
|
325
|
+
* // RecordFormatType: "JSON" || "CSV", // required
|
|
326
|
+
* // MappingParameters: {
|
|
327
|
+
* // JSONMappingParameters: {
|
|
328
|
+
* // RecordRowPath: "STRING_VALUE", // required
|
|
329
|
+
* // },
|
|
330
|
+
* // CSVMappingParameters: {
|
|
331
|
+
* // RecordRowDelimiter: "STRING_VALUE", // required
|
|
332
|
+
* // RecordColumnDelimiter: "STRING_VALUE", // required
|
|
333
|
+
* // },
|
|
334
|
+
* // },
|
|
335
|
+
* // },
|
|
336
|
+
* // RecordEncoding: "STRING_VALUE",
|
|
337
|
+
* // RecordColumns: [ // required
|
|
338
|
+
* // {
|
|
339
|
+
* // Name: "STRING_VALUE", // required
|
|
340
|
+
* // Mapping: "STRING_VALUE",
|
|
341
|
+
* // SqlType: "STRING_VALUE", // required
|
|
342
|
+
* // },
|
|
343
|
+
* // ],
|
|
344
|
+
* // },
|
|
345
|
+
* // },
|
|
346
|
+
* // ],
|
|
347
|
+
* // },
|
|
348
|
+
* // ApplicationCodeConfigurationDescription: { // ApplicationCodeConfigurationDescription
|
|
349
|
+
* // CodeContentType: "PLAINTEXT" || "ZIPFILE", // required
|
|
350
|
+
* // CodeContentDescription: { // CodeContentDescription
|
|
351
|
+
* // TextContent: "STRING_VALUE",
|
|
352
|
+
* // CodeMD5: "STRING_VALUE",
|
|
353
|
+
* // CodeSize: Number("long"),
|
|
354
|
+
* // S3ApplicationCodeLocationDescription: { // S3ApplicationCodeLocationDescription
|
|
355
|
+
* // BucketARN: "STRING_VALUE", // required
|
|
356
|
+
* // FileKey: "STRING_VALUE", // required
|
|
357
|
+
* // ObjectVersion: "STRING_VALUE",
|
|
358
|
+
* // },
|
|
359
|
+
* // },
|
|
360
|
+
* // },
|
|
361
|
+
* // RunConfigurationDescription: { // RunConfigurationDescription
|
|
362
|
+
* // ApplicationRestoreConfigurationDescription: { // ApplicationRestoreConfiguration
|
|
363
|
+
* // ApplicationRestoreType: "SKIP_RESTORE_FROM_SNAPSHOT" || "RESTORE_FROM_LATEST_SNAPSHOT" || "RESTORE_FROM_CUSTOM_SNAPSHOT", // required
|
|
364
|
+
* // SnapshotName: "STRING_VALUE",
|
|
365
|
+
* // },
|
|
366
|
+
* // FlinkRunConfigurationDescription: { // FlinkRunConfiguration
|
|
367
|
+
* // AllowNonRestoredState: true || false,
|
|
368
|
+
* // },
|
|
369
|
+
* // },
|
|
370
|
+
* // FlinkApplicationConfigurationDescription: { // FlinkApplicationConfigurationDescription
|
|
371
|
+
* // CheckpointConfigurationDescription: { // CheckpointConfigurationDescription
|
|
372
|
+
* // ConfigurationType: "DEFAULT" || "CUSTOM",
|
|
373
|
+
* // CheckpointingEnabled: true || false,
|
|
374
|
+
* // CheckpointInterval: Number("long"),
|
|
375
|
+
* // MinPauseBetweenCheckpoints: Number("long"),
|
|
376
|
+
* // },
|
|
377
|
+
* // MonitoringConfigurationDescription: { // MonitoringConfigurationDescription
|
|
378
|
+
* // ConfigurationType: "DEFAULT" || "CUSTOM",
|
|
379
|
+
* // MetricsLevel: "APPLICATION" || "TASK" || "OPERATOR" || "PARALLELISM",
|
|
380
|
+
* // LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG",
|
|
381
|
+
* // },
|
|
382
|
+
* // ParallelismConfigurationDescription: { // ParallelismConfigurationDescription
|
|
383
|
+
* // ConfigurationType: "DEFAULT" || "CUSTOM",
|
|
384
|
+
* // Parallelism: Number("int"),
|
|
385
|
+
* // ParallelismPerKPU: Number("int"),
|
|
386
|
+
* // CurrentParallelism: Number("int"),
|
|
387
|
+
* // AutoScalingEnabled: true || false,
|
|
388
|
+
* // },
|
|
389
|
+
* // JobPlanDescription: "STRING_VALUE",
|
|
390
|
+
* // },
|
|
391
|
+
* // EnvironmentPropertyDescriptions: { // EnvironmentPropertyDescriptions
|
|
392
|
+
* // PropertyGroupDescriptions: [ // PropertyGroups
|
|
393
|
+
* // { // PropertyGroup
|
|
394
|
+
* // PropertyGroupId: "STRING_VALUE", // required
|
|
395
|
+
* // PropertyMap: { // PropertyMap // required
|
|
396
|
+
* // "<keys>": "STRING_VALUE",
|
|
397
|
+
* // },
|
|
398
|
+
* // },
|
|
399
|
+
* // ],
|
|
400
|
+
* // },
|
|
401
|
+
* // ApplicationSnapshotConfigurationDescription: { // ApplicationSnapshotConfigurationDescription
|
|
402
|
+
* // SnapshotsEnabled: true || false, // required
|
|
403
|
+
* // },
|
|
404
|
+
* // VpcConfigurationDescriptions: [ // VpcConfigurationDescriptions
|
|
405
|
+
* // { // VpcConfigurationDescription
|
|
406
|
+
* // VpcConfigurationId: "STRING_VALUE", // required
|
|
407
|
+
* // VpcId: "STRING_VALUE", // required
|
|
408
|
+
* // SubnetIds: [ // SubnetIds // required
|
|
409
|
+
* // "STRING_VALUE",
|
|
410
|
+
* // ],
|
|
411
|
+
* // SecurityGroupIds: [ // SecurityGroupIds // required
|
|
412
|
+
* // "STRING_VALUE",
|
|
413
|
+
* // ],
|
|
414
|
+
* // },
|
|
415
|
+
* // ],
|
|
416
|
+
* // ZeppelinApplicationConfigurationDescription: { // ZeppelinApplicationConfigurationDescription
|
|
417
|
+
* // MonitoringConfigurationDescription: { // ZeppelinMonitoringConfigurationDescription
|
|
418
|
+
* // LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG",
|
|
419
|
+
* // },
|
|
420
|
+
* // CatalogConfigurationDescription: { // CatalogConfigurationDescription
|
|
421
|
+
* // GlueDataCatalogConfigurationDescription: { // GlueDataCatalogConfigurationDescription
|
|
422
|
+
* // DatabaseARN: "STRING_VALUE", // required
|
|
423
|
+
* // },
|
|
424
|
+
* // },
|
|
425
|
+
* // DeployAsApplicationConfigurationDescription: { // DeployAsApplicationConfigurationDescription
|
|
426
|
+
* // S3ContentLocationDescription: { // S3ContentBaseLocationDescription
|
|
427
|
+
* // BucketARN: "STRING_VALUE", // required
|
|
428
|
+
* // BasePath: "STRING_VALUE",
|
|
429
|
+
* // },
|
|
430
|
+
* // },
|
|
431
|
+
* // CustomArtifactsConfigurationDescription: [ // CustomArtifactsConfigurationDescriptionList
|
|
432
|
+
* // { // CustomArtifactConfigurationDescription
|
|
433
|
+
* // ArtifactType: "UDF" || "DEPENDENCY_JAR",
|
|
434
|
+
* // S3ContentLocationDescription: { // S3ContentLocation
|
|
435
|
+
* // BucketARN: "STRING_VALUE", // required
|
|
436
|
+
* // FileKey: "STRING_VALUE", // required
|
|
437
|
+
* // ObjectVersion: "STRING_VALUE",
|
|
438
|
+
* // },
|
|
439
|
+
* // MavenReferenceDescription: { // MavenReference
|
|
440
|
+
* // GroupId: "STRING_VALUE", // required
|
|
441
|
+
* // ArtifactId: "STRING_VALUE", // required
|
|
442
|
+
* // Version: "STRING_VALUE", // required
|
|
443
|
+
* // },
|
|
444
|
+
* // },
|
|
445
|
+
* // ],
|
|
446
|
+
* // },
|
|
447
|
+
* // },
|
|
448
|
+
* // CloudWatchLoggingOptionDescriptions: [ // CloudWatchLoggingOptionDescriptions
|
|
449
|
+
* // { // CloudWatchLoggingOptionDescription
|
|
450
|
+
* // CloudWatchLoggingOptionId: "STRING_VALUE",
|
|
451
|
+
* // LogStreamARN: "STRING_VALUE", // required
|
|
452
|
+
* // RoleARN: "STRING_VALUE",
|
|
453
|
+
* // },
|
|
454
|
+
* // ],
|
|
455
|
+
* // ApplicationMaintenanceConfigurationDescription: { // ApplicationMaintenanceConfigurationDescription
|
|
456
|
+
* // ApplicationMaintenanceWindowStartTime: "STRING_VALUE", // required
|
|
457
|
+
* // ApplicationMaintenanceWindowEndTime: "STRING_VALUE", // required
|
|
458
|
+
* // },
|
|
459
|
+
* // ApplicationVersionUpdatedFrom: Number("long"),
|
|
460
|
+
* // ApplicationVersionRolledBackFrom: Number("long"),
|
|
461
|
+
* // ConditionalToken: "STRING_VALUE",
|
|
462
|
+
* // ApplicationVersionRolledBackTo: Number("long"),
|
|
463
|
+
* // ApplicationMode: "STREAMING" || "INTERACTIVE",
|
|
464
|
+
* // },
|
|
465
|
+
* // };
|
|
466
|
+
*
|
|
229
467
|
* ```
|
|
230
468
|
*
|
|
231
469
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -263,6 +501,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
263
501
|
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this
|
|
264
502
|
* operation. </p>
|
|
265
503
|
*
|
|
504
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
505
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
266
506
|
*
|
|
267
507
|
*/
|
|
268
508
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -45,6 +45,10 @@ export interface CreateApplicationPresignedUrlCommandOutput extends CreateApplic
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new CreateApplicationPresignedUrlCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // CreateApplicationPresignedUrlResponse
|
|
49
|
+
* // AuthorizedUrl: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
48
52
|
* ```
|
|
49
53
|
*
|
|
50
54
|
* @param CreateApplicationPresignedUrlCommandInput - {@link CreateApplicationPresignedUrlCommandInput}
|
|
@@ -62,6 +66,8 @@ export interface CreateApplicationPresignedUrlCommandOutput extends CreateApplic
|
|
|
62
66
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
67
|
* <p>Specified application can't be found.</p>
|
|
64
68
|
*
|
|
69
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
65
71
|
*
|
|
66
72
|
*/
|
|
67
73
|
export declare class CreateApplicationPresignedUrlCommand extends $Command<CreateApplicationPresignedUrlCommandInput, CreateApplicationPresignedUrlCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface CreateApplicationSnapshotCommandOutput extends CreateApplicatio
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CreateApplicationSnapshotCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param CreateApplicationSnapshotCommandInput - {@link CreateApplicationSnapshotCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface CreateApplicationSnapshotCommandOutput extends CreateApplicatio
|
|
|
62
64
|
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this
|
|
63
65
|
* operation. </p>
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class CreateApplicationSnapshotCommand extends $Command<CreateApplicationSnapshotCommandInput, CreateApplicationSnapshotCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,18 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteApplicationCloudWatchLoggingOptionCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteApplicationCloudWatchLoggingOptionResponse
|
|
38
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
39
|
+
* // ApplicationVersionId: Number("long"),
|
|
40
|
+
* // CloudWatchLoggingOptionDescriptions: [ // CloudWatchLoggingOptionDescriptions
|
|
41
|
+
* // { // CloudWatchLoggingOptionDescription
|
|
42
|
+
* // CloudWatchLoggingOptionId: "STRING_VALUE",
|
|
43
|
+
* // LogStreamARN: "STRING_VALUE", // required
|
|
44
|
+
* // RoleARN: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* @param DeleteApplicationCloudWatchLoggingOptionCommandInput - {@link DeleteApplicationCloudWatchLoggingOptionCommandInput}
|
|
@@ -62,6 +74,8 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
62
74
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
75
|
* <p>Specified application can't be found.</p>
|
|
64
76
|
*
|
|
77
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
65
79
|
*
|
|
66
80
|
*/
|
|
67
81
|
export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
60
62
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
63
|
* <p>Specified application can't be found.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteApplicationInputProcessingConfigurationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteApplicationInputProcessingConfigurationResponse
|
|
37
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
38
|
+
* // ApplicationVersionId: Number("long"),
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param DeleteApplicationInputProcessingConfigurationCommandInput - {@link DeleteApplicationInputProcessingConfigurationCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
|
|
|
58
63
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
64
|
* <p>Specified application can't be found.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class DeleteApplicationInputProcessingConfigurationCommand extends $Command<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteApplicationOutputCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DeleteApplicationOutputResponse
|
|
39
|
+
* // ApplicationARN: "STRING_VALUE",
|
|
40
|
+
* // ApplicationVersionId: Number("long"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param DeleteApplicationOutputCommandInput - {@link DeleteApplicationOutputCommandInput}
|
|
@@ -60,6 +65,8 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
|
|
|
60
65
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
66
|
* <p>Specified application can't be found.</p>
|
|
62
67
|
*
|
|
68
|
+
* @throws {@link KinesisAnalyticsV2ServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from KinesisAnalyticsV2 service.</p>
|
|
63
70
|
*
|
|
64
71
|
*/
|
|
65
72
|
export declare class DeleteApplicationOutputCommand extends $Command<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput, KinesisAnalyticsV2ClientResolvedConfig> {
|