@aws-sdk/client-kinesis-analytics 3.533.0 → 3.535.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 +3 -1
- package/dist-types/KinesisAnalyticsClient.d.ts +1 -1
- package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +2 -1
- package/dist-types/commands/AddApplicationInputCommand.d.ts +2 -1
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +2 -1
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartApplicationCommand.d.ts +2 -1
- package/dist-types/commands/StopApplicationCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +304 -304
- package/dist-types/ts3.4/KinesisAnalytics.d.ts +2 -0
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -96,12 +96,14 @@ export interface KinesisAnalytics {
|
|
|
96
96
|
/**
|
|
97
97
|
* @see {@link DiscoverInputSchemaCommand}
|
|
98
98
|
*/
|
|
99
|
+
discoverInputSchema(): Promise<DiscoverInputSchemaCommandOutput>;
|
|
99
100
|
discoverInputSchema(args: DiscoverInputSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DiscoverInputSchemaCommandOutput>;
|
|
100
101
|
discoverInputSchema(args: DiscoverInputSchemaCommandInput, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
101
102
|
discoverInputSchema(args: DiscoverInputSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
102
103
|
/**
|
|
103
104
|
* @see {@link ListApplicationsCommand}
|
|
104
105
|
*/
|
|
106
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
105
107
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
106
108
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
107
109
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
@@ -143,7 +145,6 @@ export interface KinesisAnalytics {
|
|
|
143
145
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
144
146
|
}
|
|
145
147
|
/**
|
|
146
|
-
* @public
|
|
147
148
|
* <fullname>Amazon Kinesis Analytics</fullname>
|
|
148
149
|
* <p>
|
|
149
150
|
* <b>Overview</b>
|
|
@@ -154,6 +155,7 @@ export interface KinesisAnalytics {
|
|
|
154
155
|
* <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>.
|
|
155
156
|
* The Amazon Kinesis Analytics Developer Guide provides additional information.
|
|
156
157
|
* </p>
|
|
158
|
+
* @public
|
|
157
159
|
*/
|
|
158
160
|
export declare class KinesisAnalytics extends KinesisAnalyticsClient implements KinesisAnalytics {
|
|
159
161
|
}
|
|
@@ -171,7 +171,6 @@ export type KinesisAnalyticsClientResolvedConfigType = __SmithyResolvedConfigura
|
|
|
171
171
|
export interface KinesisAnalyticsClientResolvedConfig extends KinesisAnalyticsClientResolvedConfigType {
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <fullname>Amazon Kinesis Analytics</fullname>
|
|
176
175
|
* <p>
|
|
177
176
|
* <b>Overview</b>
|
|
@@ -182,6 +181,7 @@ export interface KinesisAnalyticsClientResolvedConfig extends KinesisAnalyticsCl
|
|
|
182
181
|
* <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>.
|
|
183
182
|
* The Amazon Kinesis Analytics Developer Guide provides additional information.
|
|
184
183
|
* </p>
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class KinesisAnalyticsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KinesisAnalyticsClientResolvedConfig> {
|
|
187
187
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddApplicationCloudWatchLoggingOptionCommand_base: {
|
|
24
24
|
new (input: AddApplicationCloudWatchLoggingOptionCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddApplicationCloudWatchLoggingOptionCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -77,6 +77,7 @@ declare const AddApplicationCloudWatchLoggingOptionCommand_base: {
|
|
|
77
77
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class AddApplicationCloudWatchLoggingOptionCommand extends AddApplicationCloudWatchLoggingOptionCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddApplicationInputCommand_base: {
|
|
24
24
|
new (input: AddApplicationInputCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddApplicationInputCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -128,6 +128,7 @@ declare const AddApplicationInputCommand_base: {
|
|
|
128
128
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
129
129
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
130
130
|
*
|
|
131
|
+
* @public
|
|
131
132
|
*/
|
|
132
133
|
export declare class AddApplicationInputCommand extends AddApplicationInputCommand_base {
|
|
133
134
|
}
|
|
@@ -22,10 +22,10 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddApplicationInputProcessingConfigurationCommand_base: {
|
|
24
24
|
new (input: AddApplicationInputProcessingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddApplicationInputProcessingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -79,6 +79,7 @@ declare const AddApplicationInputProcessingConfigurationCommand_base: {
|
|
|
79
79
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class AddApplicationInputProcessingConfigurationCommand extends AddApplicationInputProcessingConfigurationCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddApplicationOutputCommand_base: {
|
|
24
24
|
new (input: AddApplicationOutputCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddApplicationOutputCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -104,6 +104,7 @@ declare const AddApplicationOutputCommand_base: {
|
|
|
104
104
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
106
106
|
*
|
|
107
|
+
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class AddApplicationOutputCommand extends AddApplicationOutputCommand_base {
|
|
109
110
|
}
|
|
@@ -22,10 +22,10 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddApplicationReferenceDataSourceCommand_base: {
|
|
24
24
|
new (input: AddApplicationReferenceDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddApplicationReferenceDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -110,6 +110,7 @@ declare const AddApplicationReferenceDataSourceCommand_base: {
|
|
|
110
110
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class AddApplicationReferenceDataSourceCommand extends AddApplicationReferenceDataSourceCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateApplicationCommand_base: {
|
|
24
24
|
new (input: CreateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -179,6 +179,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
179
179
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
180
180
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
181
181
|
*
|
|
182
|
+
* @public
|
|
182
183
|
*/
|
|
183
184
|
export declare class CreateApplicationCommand extends CreateApplicationCommand_base {
|
|
184
185
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationCloudWatchLoggingOptionCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationCloudWatchLoggingOptionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationCloudWatchLoggingOptionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -73,6 +73,7 @@ declare const DeleteApplicationCloudWatchLoggingOptionCommand_base: {
|
|
|
73
73
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends DeleteApplicationCloudWatchLoggingOptionCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -69,6 +69,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
69
69
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteApplicationCommand extends DeleteApplicationCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationInputProcessingConfigurationCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationInputProcessingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationInputProcessingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -71,6 +71,7 @@ declare const DeleteApplicationInputProcessingConfigurationCommand_base: {
|
|
|
71
71
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DeleteApplicationInputProcessingConfigurationCommand extends DeleteApplicationInputProcessingConfigurationCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationOutputCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationOutputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationOutputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -73,6 +73,7 @@ declare const DeleteApplicationOutputCommand_base: {
|
|
|
73
73
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeleteApplicationOutputCommand extends DeleteApplicationOutputCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationReferenceDataSourceCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationReferenceDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationReferenceDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -76,6 +76,7 @@ declare const DeleteApplicationReferenceDataSourceCommand_base: {
|
|
|
76
76
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class DeleteApplicationReferenceDataSourceCommand extends DeleteApplicationReferenceDataSourceCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeApplicationCommand_base: {
|
|
24
24
|
new (input: DescribeApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -189,6 +189,7 @@ declare const DescribeApplicationCommand_base: {
|
|
|
189
189
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
190
190
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
191
191
|
*
|
|
192
|
+
* @public
|
|
192
193
|
*/
|
|
193
194
|
export declare class DescribeApplicationCommand extends DescribeApplicationCommand_base {
|
|
194
195
|
}
|
|
@@ -22,10 +22,10 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DiscoverInputSchemaCommand_base: {
|
|
24
24
|
new (input: DiscoverInputSchemaCommandInput): import("@smithy/smithy-client").CommandImpl<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DiscoverInputSchemaCommandInput]): import("@smithy/smithy-client").CommandImpl<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -131,6 +131,7 @@ declare const DiscoverInputSchemaCommand_base: {
|
|
|
131
131
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
132
132
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
133
133
|
*
|
|
134
|
+
* @public
|
|
134
135
|
*/
|
|
135
136
|
export declare class DiscoverInputSchemaCommand extends DiscoverInputSchemaCommand_base {
|
|
136
137
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListApplicationsCommand_base: {
|
|
24
24
|
new (input: ListApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListApplicationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -77,6 +77,7 @@ declare const ListApplicationsCommand_base: {
|
|
|
77
77
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <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>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
67
67
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartApplicationCommand_base: {
|
|
24
24
|
new (input: StartApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<StartApplicationCommandInput, StartApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<StartApplicationCommandInput, StartApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -85,6 +85,7 @@ declare const StartApplicationCommand_base: {
|
|
|
85
85
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class StartApplicationCommand extends StartApplicationCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopApplicationCommand_base: {
|
|
24
24
|
new (input: StopApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<StopApplicationCommandInput, StopApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<StopApplicationCommandInput, StopApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -70,6 +70,7 @@ declare const StopApplicationCommand_base: {
|
|
|
70
70
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class StopApplicationCommand extends StopApplicationCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <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.
|
|
30
30
|
* For more information, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html">Using Tagging</a>.</p>
|
|
31
31
|
* @example
|
|
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <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>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateApplicationCommand_base: {
|
|
24
24
|
new (input: UpdateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <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>
|
|
31
31
|
* </note>
|
|
@@ -188,6 +188,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
188
188
|
* @throws {@link KinesisAnalyticsServiceException}
|
|
189
189
|
* <p>Base exception class for all service exceptions from KinesisAnalytics service.</p>
|
|
190
190
|
*
|
|
191
|
+
* @public
|
|
191
192
|
*/
|
|
192
193
|
export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
|
|
193
194
|
}
|