@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/KinesisAnalytics.d.ts +400 -105
- package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +250 -93
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/KinesisAnalyticsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1099 -987
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|