@aws-sdk/client-kinesis-analytics 3.169.0 → 3.170.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/KinesisAnalytics.d.ts +400 -105
  3. package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +250 -93
  4. package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/index.d.ts +20 -20
  25. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  26. package/dist-types/ts3.4/index.d.ts +5 -5
  27. package/dist-types/ts3.4/models/KinesisAnalyticsServiceException.d.ts +8 -6
  28. package/dist-types/ts3.4/models/index.d.ts +1 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +1099 -987
  30. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  35. package/package.json +34 -34
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
- export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
- }
7
- export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: CreateApplicationCommandInput;
12
- constructor(input: CreateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ CreateApplicationRequest,
15
+ CreateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateApplicationCommandInput
18
+ extends CreateApplicationRequest {}
19
+ export interface CreateApplicationCommandOutput
20
+ extends CreateApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateApplicationCommand extends $Command<
24
+ CreateApplicationCommandInput,
25
+ CreateApplicationCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateApplicationCommandInput;
29
+ constructor(input: CreateApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DeleteApplicationCloudWatchLoggingOptionRequest, DeleteApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
5
- export interface DeleteApplicationCloudWatchLoggingOptionCommandInput extends DeleteApplicationCloudWatchLoggingOptionRequest {
6
- }
7
- export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends DeleteApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DeleteApplicationCloudWatchLoggingOptionCommandInput;
12
- constructor(input: DeleteApplicationCloudWatchLoggingOptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DeleteApplicationCloudWatchLoggingOptionRequest,
15
+ DeleteApplicationCloudWatchLoggingOptionResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCloudWatchLoggingOptionCommandInput
18
+ extends DeleteApplicationCloudWatchLoggingOptionRequest {}
19
+ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput
20
+ extends DeleteApplicationCloudWatchLoggingOptionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<
24
+ DeleteApplicationCloudWatchLoggingOptionCommandInput,
25
+ DeleteApplicationCloudWatchLoggingOptionCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationCloudWatchLoggingOptionCommandInput;
29
+ constructor(input: DeleteApplicationCloudWatchLoggingOptionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteApplicationCloudWatchLoggingOptionCommandInput,
37
+ DeleteApplicationCloudWatchLoggingOptionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
- export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
- }
7
- export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DeleteApplicationCommandInput;
12
- constructor(input: DeleteApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DeleteApplicationRequest,
15
+ DeleteApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCommandInput
18
+ extends DeleteApplicationRequest {}
19
+ export interface DeleteApplicationCommandOutput
20
+ extends DeleteApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationCommand extends $Command<
24
+ DeleteApplicationCommandInput,
25
+ DeleteApplicationCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationCommandInput;
29
+ constructor(input: DeleteApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DeleteApplicationInputProcessingConfigurationRequest, DeleteApplicationInputProcessingConfigurationResponse } from "../models/models_0";
5
- export interface DeleteApplicationInputProcessingConfigurationCommandInput extends DeleteApplicationInputProcessingConfigurationRequest {
6
- }
7
- export interface DeleteApplicationInputProcessingConfigurationCommandOutput extends DeleteApplicationInputProcessingConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationInputProcessingConfigurationCommand extends $Command<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DeleteApplicationInputProcessingConfigurationCommandInput;
12
- constructor(input: DeleteApplicationInputProcessingConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DeleteApplicationInputProcessingConfigurationRequest,
15
+ DeleteApplicationInputProcessingConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationInputProcessingConfigurationCommandInput
18
+ extends DeleteApplicationInputProcessingConfigurationRequest {}
19
+ export interface DeleteApplicationInputProcessingConfigurationCommandOutput
20
+ extends DeleteApplicationInputProcessingConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationInputProcessingConfigurationCommand extends $Command<
24
+ DeleteApplicationInputProcessingConfigurationCommandInput,
25
+ DeleteApplicationInputProcessingConfigurationCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationInputProcessingConfigurationCommandInput;
29
+ constructor(input: DeleteApplicationInputProcessingConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteApplicationInputProcessingConfigurationCommandInput,
37
+ DeleteApplicationInputProcessingConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0";
5
- export interface DeleteApplicationOutputCommandInput extends DeleteApplicationOutputRequest {
6
- }
7
- export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationOutputResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationOutputCommand extends $Command<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DeleteApplicationOutputCommandInput;
12
- constructor(input: DeleteApplicationOutputCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DeleteApplicationOutputRequest,
15
+ DeleteApplicationOutputResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationOutputCommandInput
18
+ extends DeleteApplicationOutputRequest {}
19
+ export interface DeleteApplicationOutputCommandOutput
20
+ extends DeleteApplicationOutputResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationOutputCommand extends $Command<
24
+ DeleteApplicationOutputCommandInput,
25
+ DeleteApplicationOutputCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationOutputCommandInput;
29
+ constructor(input: DeleteApplicationOutputCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteApplicationOutputCommandInput,
37
+ DeleteApplicationOutputCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DeleteApplicationReferenceDataSourceRequest, DeleteApplicationReferenceDataSourceResponse } from "../models/models_0";
5
- export interface DeleteApplicationReferenceDataSourceCommandInput extends DeleteApplicationReferenceDataSourceRequest {
6
- }
7
- export interface DeleteApplicationReferenceDataSourceCommandOutput extends DeleteApplicationReferenceDataSourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationReferenceDataSourceCommand extends $Command<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DeleteApplicationReferenceDataSourceCommandInput;
12
- constructor(input: DeleteApplicationReferenceDataSourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DeleteApplicationReferenceDataSourceRequest,
15
+ DeleteApplicationReferenceDataSourceResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationReferenceDataSourceCommandInput
18
+ extends DeleteApplicationReferenceDataSourceRequest {}
19
+ export interface DeleteApplicationReferenceDataSourceCommandOutput
20
+ extends DeleteApplicationReferenceDataSourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationReferenceDataSourceCommand extends $Command<
24
+ DeleteApplicationReferenceDataSourceCommandInput,
25
+ DeleteApplicationReferenceDataSourceCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationReferenceDataSourceCommandInput;
29
+ constructor(input: DeleteApplicationReferenceDataSourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteApplicationReferenceDataSourceCommandInput,
37
+ DeleteApplicationReferenceDataSourceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0";
5
- export interface DescribeApplicationCommandInput extends DescribeApplicationRequest {
6
- }
7
- export interface DescribeApplicationCommandOutput extends DescribeApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeApplicationCommand extends $Command<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DescribeApplicationCommandInput;
12
- constructor(input: DescribeApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DescribeApplicationRequest,
15
+ DescribeApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeApplicationCommandInput
18
+ extends DescribeApplicationRequest {}
19
+ export interface DescribeApplicationCommandOutput
20
+ extends DescribeApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeApplicationCommand extends $Command<
24
+ DescribeApplicationCommandInput,
25
+ DescribeApplicationCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeApplicationCommandInput;
29
+ constructor(input: DescribeApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { DiscoverInputSchemaRequest, DiscoverInputSchemaResponse } from "../models/models_0";
5
- export interface DiscoverInputSchemaCommandInput extends DiscoverInputSchemaRequest {
6
- }
7
- export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DiscoverInputSchemaCommand extends $Command<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: DiscoverInputSchemaCommandInput;
12
- constructor(input: DiscoverInputSchemaCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ DiscoverInputSchemaRequest,
15
+ DiscoverInputSchemaResponse,
16
+ } from "../models/models_0";
17
+ export interface DiscoverInputSchemaCommandInput
18
+ extends DiscoverInputSchemaRequest {}
19
+ export interface DiscoverInputSchemaCommandOutput
20
+ extends DiscoverInputSchemaResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DiscoverInputSchemaCommand extends $Command<
24
+ DiscoverInputSchemaCommandInput,
25
+ DiscoverInputSchemaCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: DiscoverInputSchemaCommandInput;
29
+ constructor(input: DiscoverInputSchemaCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
5
- export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
- }
7
- export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: ListApplicationsCommandInput;
12
- constructor(input: ListApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ ListApplicationsRequest,
15
+ ListApplicationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
18
+ export interface ListApplicationsCommandOutput
19
+ extends ListApplicationsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListApplicationsCommand extends $Command<
23
+ ListApplicationsCommandInput,
24
+ ListApplicationsCommandOutput,
25
+ KinesisAnalyticsClientResolvedConfig
26
+ > {
27
+ readonly input: ListApplicationsCommandInput;
28
+ constructor(input: ListApplicationsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: KinesisAnalyticsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ KinesisAnalyticsClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KinesisAnalyticsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
4
- import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0";
5
- export interface StartApplicationCommandInput extends StartApplicationRequest {
6
- }
7
- export interface StartApplicationCommandOutput extends StartApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartApplicationCommand extends $Command<StartApplicationCommandInput, StartApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
11
- readonly input: StartApplicationCommandInput;
12
- constructor(input: StartApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ KinesisAnalyticsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../KinesisAnalyticsClient";
13
+ import {
14
+ StartApplicationRequest,
15
+ StartApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface StartApplicationCommandInput extends StartApplicationRequest {}
18
+ export interface StartApplicationCommandOutput
19
+ extends StartApplicationResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StartApplicationCommand extends $Command<
23
+ StartApplicationCommandInput,
24
+ StartApplicationCommandOutput,
25
+ KinesisAnalyticsClientResolvedConfig
26
+ > {
27
+ readonly input: StartApplicationCommandInput;
28
+ constructor(input: StartApplicationCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: KinesisAnalyticsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }