@aws-sdk/client-kinesis-analytics 3.295.0 → 3.297.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/KinesisAnalytics.d.ts +21 -0
- package/dist-types/KinesisAnalyticsClient.d.ts +24 -4
- package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/KinesisAnalyticsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +152 -0
- package/package.json +29 -29
|
@@ -21,6 +21,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
21
21
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
22
22
|
import { KinesisAnalyticsClient } from "./KinesisAnalyticsClient";
|
|
23
23
|
/**
|
|
24
|
+
* @public
|
|
24
25
|
* <fullname>Amazon Kinesis Analytics</fullname>
|
|
25
26
|
* <p>
|
|
26
27
|
* <b>Overview</b>
|
|
@@ -34,6 +35,7 @@ import { KinesisAnalyticsClient } from "./KinesisAnalyticsClient";
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
36
37
|
/**
|
|
38
|
+
* @public
|
|
37
39
|
* <note>
|
|
38
40
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
39
41
|
* </note>
|
|
@@ -46,6 +48,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
46
48
|
addApplicationCloudWatchLoggingOption(args: AddApplicationCloudWatchLoggingOptionCommandInput, cb: (err: any, data?: AddApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
47
49
|
addApplicationCloudWatchLoggingOption(args: AddApplicationCloudWatchLoggingOptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
48
50
|
/**
|
|
51
|
+
* @public
|
|
49
52
|
* <note>
|
|
50
53
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
51
54
|
* </note>
|
|
@@ -68,6 +71,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
68
71
|
addApplicationInput(args: AddApplicationInputCommandInput, cb: (err: any, data?: AddApplicationInputCommandOutput) => void): void;
|
|
69
72
|
addApplicationInput(args: AddApplicationInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationInputCommandOutput) => void): void;
|
|
70
73
|
/**
|
|
74
|
+
* @public
|
|
71
75
|
* <note>
|
|
72
76
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
73
77
|
* </note>
|
|
@@ -79,6 +83,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
79
83
|
addApplicationInputProcessingConfiguration(args: AddApplicationInputProcessingConfigurationCommandInput, cb: (err: any, data?: AddApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
80
84
|
addApplicationInputProcessingConfiguration(args: AddApplicationInputProcessingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
81
85
|
/**
|
|
86
|
+
* @public
|
|
82
87
|
* <note>
|
|
83
88
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
84
89
|
* </note>
|
|
@@ -104,6 +109,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
104
109
|
addApplicationOutput(args: AddApplicationOutputCommandInput, cb: (err: any, data?: AddApplicationOutputCommandOutput) => void): void;
|
|
105
110
|
addApplicationOutput(args: AddApplicationOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationOutputCommandOutput) => void): void;
|
|
106
111
|
/**
|
|
112
|
+
* @public
|
|
107
113
|
* <note>
|
|
108
114
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
109
115
|
* </note>
|
|
@@ -123,6 +129,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
123
129
|
addApplicationReferenceDataSource(args: AddApplicationReferenceDataSourceCommandInput, cb: (err: any, data?: AddApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
124
130
|
addApplicationReferenceDataSource(args: AddApplicationReferenceDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
125
131
|
/**
|
|
132
|
+
* @public
|
|
126
133
|
* <note>
|
|
127
134
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
128
135
|
* </note>
|
|
@@ -155,6 +162,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
155
162
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
156
163
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
157
164
|
/**
|
|
165
|
+
* @public
|
|
158
166
|
* <note>
|
|
159
167
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
160
168
|
* </note>
|
|
@@ -166,6 +174,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
166
174
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
167
175
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
168
176
|
/**
|
|
177
|
+
* @public
|
|
169
178
|
* <note>
|
|
170
179
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
171
180
|
* </note>
|
|
@@ -177,6 +186,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
177
186
|
deleteApplicationCloudWatchLoggingOption(args: DeleteApplicationCloudWatchLoggingOptionCommandInput, cb: (err: any, data?: DeleteApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
178
187
|
deleteApplicationCloudWatchLoggingOption(args: DeleteApplicationCloudWatchLoggingOptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
179
188
|
/**
|
|
189
|
+
* @public
|
|
180
190
|
* <note>
|
|
181
191
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
182
192
|
* </note>
|
|
@@ -186,6 +196,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
186
196
|
deleteApplicationInputProcessingConfiguration(args: DeleteApplicationInputProcessingConfigurationCommandInput, cb: (err: any, data?: DeleteApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
187
197
|
deleteApplicationInputProcessingConfiguration(args: DeleteApplicationInputProcessingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
188
198
|
/**
|
|
199
|
+
* @public
|
|
189
200
|
* <note>
|
|
190
201
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
191
202
|
* </note>
|
|
@@ -197,6 +208,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
197
208
|
deleteApplicationOutput(args: DeleteApplicationOutputCommandInput, cb: (err: any, data?: DeleteApplicationOutputCommandOutput) => void): void;
|
|
198
209
|
deleteApplicationOutput(args: DeleteApplicationOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationOutputCommandOutput) => void): void;
|
|
199
210
|
/**
|
|
211
|
+
* @public
|
|
200
212
|
* <note>
|
|
201
213
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
202
214
|
* </note>
|
|
@@ -211,6 +223,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
211
223
|
deleteApplicationReferenceDataSource(args: DeleteApplicationReferenceDataSourceCommandInput, cb: (err: any, data?: DeleteApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
212
224
|
deleteApplicationReferenceDataSource(args: DeleteApplicationReferenceDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
213
225
|
/**
|
|
226
|
+
* @public
|
|
214
227
|
* <note>
|
|
215
228
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
216
229
|
* </note>
|
|
@@ -226,6 +239,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
226
239
|
describeApplication(args: DescribeApplicationCommandInput, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
227
240
|
describeApplication(args: DescribeApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
228
241
|
/**
|
|
242
|
+
* @public
|
|
229
243
|
* <note>
|
|
230
244
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
231
245
|
* </note>
|
|
@@ -246,6 +260,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
246
260
|
discoverInputSchema(args: DiscoverInputSchemaCommandInput, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
247
261
|
discoverInputSchema(args: DiscoverInputSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
248
262
|
/**
|
|
263
|
+
* @public
|
|
249
264
|
* <note>
|
|
250
265
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
251
266
|
* </note>
|
|
@@ -268,12 +283,14 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
268
283
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
269
284
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
270
285
|
/**
|
|
286
|
+
* @public
|
|
271
287
|
* <p>Retrieves the list of key-value tags assigned to the application. For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
272
288
|
*/
|
|
273
289
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
274
290
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
275
291
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
276
292
|
/**
|
|
293
|
+
* @public
|
|
277
294
|
* <note>
|
|
278
295
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
279
296
|
* </note>
|
|
@@ -291,6 +308,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
291
308
|
startApplication(args: StartApplicationCommandInput, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
292
309
|
startApplication(args: StartApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
293
310
|
/**
|
|
311
|
+
* @public
|
|
294
312
|
* <note>
|
|
295
313
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
296
314
|
* </note>
|
|
@@ -307,6 +325,7 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
307
325
|
stopApplication(args: StopApplicationCommandInput, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
308
326
|
stopApplication(args: StopApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
309
327
|
/**
|
|
328
|
+
* @public
|
|
310
329
|
* <p>Adds one or more key-value tags to a Kinesis Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
311
330
|
* For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
312
331
|
*/
|
|
@@ -314,12 +333,14 @@ export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
|
314
333
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
315
334
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
316
335
|
/**
|
|
336
|
+
* @public
|
|
317
337
|
* <p>Removes one or more tags from a Kinesis Analytics application. For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
318
338
|
*/
|
|
319
339
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
320
340
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
321
341
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
322
342
|
/**
|
|
343
|
+
* @public
|
|
323
344
|
* <note>
|
|
324
345
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
325
346
|
* </note>
|
|
@@ -28,15 +28,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
28
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
29
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
30
30
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
31
34
|
export type ServiceInputTypes = AddApplicationCloudWatchLoggingOptionCommandInput | AddApplicationInputCommandInput | AddApplicationInputProcessingConfigurationCommandInput | AddApplicationOutputCommandInput | AddApplicationReferenceDataSourceCommandInput | CreateApplicationCommandInput | DeleteApplicationCloudWatchLoggingOptionCommandInput | DeleteApplicationCommandInput | DeleteApplicationInputProcessingConfigurationCommandInput | DeleteApplicationOutputCommandInput | DeleteApplicationReferenceDataSourceCommandInput | DescribeApplicationCommandInput | DiscoverInputSchemaCommandInput | ListApplicationsCommandInput | ListTagsForResourceCommandInput | StartApplicationCommandInput | StopApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
32
38
|
export type ServiceOutputTypes = AddApplicationCloudWatchLoggingOptionCommandOutput | AddApplicationInputCommandOutput | AddApplicationInputProcessingConfigurationCommandOutput | AddApplicationOutputCommandOutput | AddApplicationReferenceDataSourceCommandOutput | CreateApplicationCommandOutput | DeleteApplicationCloudWatchLoggingOptionCommandOutput | DeleteApplicationCommandOutput | DeleteApplicationInputProcessingConfigurationCommandOutput | DeleteApplicationOutputCommandOutput | DeleteApplicationReferenceDataSourceCommandOutput | DescribeApplicationCommandOutput | DiscoverInputSchemaCommandOutput | ListApplicationsCommandOutput | ListTagsForResourceCommandOutput | StartApplicationCommandOutput | StopApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
33
42
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
34
43
|
/**
|
|
35
44
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
36
45
|
*/
|
|
37
46
|
requestHandler?: __HttpHandler;
|
|
38
47
|
/**
|
|
39
|
-
* A constructor for a class implementing the {@link
|
|
48
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
40
49
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
41
50
|
* @internal
|
|
42
51
|
*/
|
|
@@ -126,23 +135,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
126
135
|
*/
|
|
127
136
|
logger?: __Logger;
|
|
128
137
|
/**
|
|
129
|
-
* The {@link
|
|
138
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
130
139
|
*/
|
|
131
140
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
132
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
133
145
|
type KinesisAnalyticsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
134
146
|
/**
|
|
135
|
-
*
|
|
147
|
+
* @public
|
|
148
|
+
*
|
|
149
|
+
* The configuration interface of KinesisAnalyticsClient class constructor that set the region, credentials and other options.
|
|
136
150
|
*/
|
|
137
151
|
export interface KinesisAnalyticsClientConfig extends KinesisAnalyticsClientConfigType {
|
|
138
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
139
156
|
type KinesisAnalyticsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
140
157
|
/**
|
|
141
|
-
*
|
|
158
|
+
* @public
|
|
159
|
+
*
|
|
160
|
+
* The resolved configuration interface of KinesisAnalyticsClient class. This is resolved and normalized from the {@link KinesisAnalyticsClientConfig | constructor configuration interface}.
|
|
142
161
|
*/
|
|
143
162
|
export interface KinesisAnalyticsClientResolvedConfig extends KinesisAnalyticsClientResolvedConfigType {
|
|
144
163
|
}
|
|
145
164
|
/**
|
|
165
|
+
* @public
|
|
146
166
|
* <fullname>Amazon Kinesis Analytics</fullname>
|
|
147
167
|
* <p>
|
|
148
168
|
* <b>Overview</b>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { AddApplicationCloudWatchLoggingOptionRequest, AddApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddApplicationCloudWatchLoggingOptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddApplicationCloudWatchLoggingOptionCommandInput extends AddApplicationCloudWatchLoggingOptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddApplicationCloudWatchLoggingOptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -31,6 +36,8 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param AddApplicationCloudWatchLoggingOptionCommandInput - {@link AddApplicationCloudWatchLoggingOptionCommandInput}
|
|
40
|
+
* @returns {@link AddApplicationCloudWatchLoggingOptionCommandOutput}
|
|
34
41
|
* @see {@link AddApplicationCloudWatchLoggingOptionCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link AddApplicationCloudWatchLoggingOptionCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
55
62
|
export declare class AddApplicationCloudWatchLoggingOptionCommand extends $Command<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
56
63
|
readonly input: AddApplicationCloudWatchLoggingOptionCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: AddApplicationCloudWatchLoggingOptionCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddApplicationInputCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddApplicationInputCommandInput extends AddApplicationInputRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddApplicationInputCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddApplicationInputCommandOutput extends AddApplicationInputResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -41,6 +46,8 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
41
46
|
* const response = await client.send(command);
|
|
42
47
|
* ```
|
|
43
48
|
*
|
|
49
|
+
* @param AddApplicationInputCommandInput - {@link AddApplicationInputCommandInput}
|
|
50
|
+
* @returns {@link AddApplicationInputCommandOutput}
|
|
44
51
|
* @see {@link AddApplicationInputCommandInput} for command's `input` shape.
|
|
45
52
|
* @see {@link AddApplicationInputCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
68
75
|
export declare class AddApplicationInputCommand extends $Command<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
69
76
|
readonly input: AddApplicationInputCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: AddApplicationInputCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputCommandInput, AddApplicationInputCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { AddApplicationInputProcessingConfigurationRequest, AddApplicationInputProcessingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddApplicationInputProcessingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddApplicationInputProcessingConfigurationCommandInput extends AddApplicationInputProcessingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddApplicationInputProcessingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddApplicationInputProcessingConfigurationCommandOutput extends AddApplicationInputProcessingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -30,6 +35,8 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param AddApplicationInputProcessingConfigurationCommandInput - {@link AddApplicationInputProcessingConfigurationCommandInput}
|
|
39
|
+
* @returns {@link AddApplicationInputProcessingConfigurationCommandOutput}
|
|
33
40
|
* @see {@link AddApplicationInputProcessingConfigurationCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link AddApplicationInputProcessingConfigurationCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
54
61
|
export declare class AddApplicationInputProcessingConfigurationCommand extends $Command<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
55
62
|
readonly input: AddApplicationInputProcessingConfigurationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: AddApplicationInputProcessingConfigurationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddApplicationOutputCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddApplicationOutputCommandInput extends AddApplicationOutputRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddApplicationOutputCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddApplicationOutputCommandOutput extends AddApplicationOutputResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -44,6 +49,8 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param AddApplicationOutputCommandInput - {@link AddApplicationOutputCommandInput}
|
|
53
|
+
* @returns {@link AddApplicationOutputCommandOutput}
|
|
47
54
|
* @see {@link AddApplicationOutputCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link AddApplicationOutputCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
68
75
|
export declare class AddApplicationOutputCommand extends $Command<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
69
76
|
readonly input: AddApplicationOutputCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: AddApplicationOutputCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { AddApplicationReferenceDataSourceRequest, AddApplicationReferenceDataSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddApplicationReferenceDataSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddApplicationReferenceDataSourceCommandInput extends AddApplicationReferenceDataSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddApplicationReferenceDataSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddApplicationReferenceDataSourceCommandOutput extends AddApplicationReferenceDataSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -38,6 +43,8 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param AddApplicationReferenceDataSourceCommandInput - {@link AddApplicationReferenceDataSourceCommandInput}
|
|
47
|
+
* @returns {@link AddApplicationReferenceDataSourceCommandOutput}
|
|
41
48
|
* @see {@link AddApplicationReferenceDataSourceCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link AddApplicationReferenceDataSourceCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
62
69
|
export declare class AddApplicationReferenceDataSourceCommand extends $Command<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
63
70
|
readonly input: AddApplicationReferenceDataSourceCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: AddApplicationReferenceDataSourceCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -51,6 +56,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
60
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
54
61
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
78
85
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
79
86
|
readonly input: CreateApplicationCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: CreateApplicationCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
|
|
5
5
|
import { DeleteApplicationCloudWatchLoggingOptionRequest, DeleteApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCloudWatchLoggingOptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCloudWatchLoggingOptionCommandInput extends DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCloudWatchLoggingOptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends DeleteApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
|
|
19
24
|
* </note>
|
|
@@ -30,6 +35,8 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteApplicationCloudWatchLoggingOptionCommandInput - {@link DeleteApplicationCloudWatchLoggingOptionCommandInput}
|
|
39
|
+
* @returns {@link DeleteApplicationCloudWatchLoggingOptionCommandOutput}
|
|
33
40
|
* @see {@link DeleteApplicationCloudWatchLoggingOptionCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteApplicationCloudWatchLoggingOptionCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
54
61
|
export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteApplicationCloudWatchLoggingOptionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteApplicationCloudWatchLoggingOptionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|