@aws-sdk/client-kinesis-analytics 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/KinesisAnalyticsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +162 -2
- package/dist-cjs/protocols/Aws_json1_1.js +231 -806
- package/dist-es/index.js +1 -0
- package/dist-es/models/KinesisAnalyticsServiceException.js +12 -0
- package/dist-es/models/models_0.js +148 -1
- package/dist-es/protocols/Aws_json1_1.js +477 -856
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/KinesisAnalyticsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -56
- package/dist-types/ts3.4/KinesisAnalytics.d.ts +105 -0
- package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +93 -0
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/KinesisAnalyticsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1173 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +62 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from KinesisAnalytics service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class KinesisAnalyticsServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Provides a description of CloudWatch logging options, including the log stream
|
|
4
5
|
* Amazon Resource Name (ARN) and the role ARN.</p>
|
|
@@ -54,54 +55,57 @@ export declare namespace AddApplicationCloudWatchLoggingOptionResponse {
|
|
|
54
55
|
/**
|
|
55
56
|
* <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
|
|
56
57
|
*/
|
|
57
|
-
export
|
|
58
|
-
name: "ConcurrentModificationException";
|
|
59
|
-
$fault: "client";
|
|
58
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
59
|
+
readonly name: "ConcurrentModificationException";
|
|
60
|
+
readonly $fault: "client";
|
|
60
61
|
/**
|
|
61
|
-
*
|
|
62
|
+
* @internal
|
|
62
63
|
*/
|
|
63
|
-
|
|
64
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
64
65
|
}
|
|
65
66
|
/**
|
|
66
67
|
* <p>Specified input parameter value is invalid.</p>
|
|
67
68
|
*/
|
|
68
|
-
export
|
|
69
|
-
name: "InvalidArgumentException";
|
|
70
|
-
$fault: "client";
|
|
69
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
70
|
+
readonly name: "InvalidArgumentException";
|
|
71
|
+
readonly $fault: "client";
|
|
71
72
|
/**
|
|
72
|
-
*
|
|
73
|
+
* @internal
|
|
73
74
|
*/
|
|
74
|
-
|
|
75
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
75
76
|
}
|
|
76
77
|
/**
|
|
77
78
|
* <p>Application is not available for this operation.</p>
|
|
78
79
|
*/
|
|
79
|
-
export
|
|
80
|
-
name: "ResourceInUseException";
|
|
81
|
-
$fault: "client";
|
|
80
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
81
|
+
readonly name: "ResourceInUseException";
|
|
82
|
+
readonly $fault: "client";
|
|
82
83
|
/**
|
|
83
|
-
*
|
|
84
|
+
* @internal
|
|
84
85
|
*/
|
|
85
|
-
|
|
86
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
86
87
|
}
|
|
87
88
|
/**
|
|
88
89
|
* <p>Specified application can't be found.</p>
|
|
89
90
|
*/
|
|
90
|
-
export
|
|
91
|
-
name: "ResourceNotFoundException";
|
|
92
|
-
$fault: "client";
|
|
91
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
92
|
+
readonly name: "ResourceNotFoundException";
|
|
93
|
+
readonly $fault: "client";
|
|
93
94
|
/**
|
|
94
|
-
*
|
|
95
|
+
* @internal
|
|
95
96
|
*/
|
|
96
|
-
|
|
97
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
97
98
|
}
|
|
98
99
|
/**
|
|
99
100
|
* <p>The request was rejected because a specified parameter is not supported or a specified resource is not valid for this operation. </p>
|
|
100
101
|
*/
|
|
101
|
-
export
|
|
102
|
-
name: "UnsupportedOperationException";
|
|
103
|
-
$fault: "client";
|
|
104
|
-
|
|
102
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
103
|
+
readonly name: "UnsupportedOperationException";
|
|
104
|
+
readonly $fault: "client";
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
108
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
105
109
|
}
|
|
106
110
|
/**
|
|
107
111
|
* <p>Describes the number of in-application streams to create for a given
|
|
@@ -446,13 +450,13 @@ export declare namespace AddApplicationInputResponse {
|
|
|
446
450
|
/**
|
|
447
451
|
* <p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
|
|
448
452
|
*/
|
|
449
|
-
export
|
|
450
|
-
name: "CodeValidationException";
|
|
451
|
-
$fault: "client";
|
|
453
|
+
export declare class CodeValidationException extends __BaseException {
|
|
454
|
+
readonly name: "CodeValidationException";
|
|
455
|
+
readonly $fault: "client";
|
|
452
456
|
/**
|
|
453
|
-
*
|
|
457
|
+
* @internal
|
|
454
458
|
*/
|
|
455
|
-
|
|
459
|
+
constructor(opts: __ExceptionOptionType<CodeValidationException, __BaseException>);
|
|
456
460
|
}
|
|
457
461
|
export interface AddApplicationInputProcessingConfigurationRequest {
|
|
458
462
|
/**
|
|
@@ -1720,21 +1724,24 @@ export declare namespace CreateApplicationResponse {
|
|
|
1720
1724
|
/**
|
|
1721
1725
|
* <p>Exceeded the number of applications allowed.</p>
|
|
1722
1726
|
*/
|
|
1723
|
-
export
|
|
1724
|
-
name: "LimitExceededException";
|
|
1725
|
-
$fault: "client";
|
|
1727
|
+
export declare class LimitExceededException extends __BaseException {
|
|
1728
|
+
readonly name: "LimitExceededException";
|
|
1729
|
+
readonly $fault: "client";
|
|
1726
1730
|
/**
|
|
1727
|
-
*
|
|
1731
|
+
* @internal
|
|
1728
1732
|
*/
|
|
1729
|
-
|
|
1733
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1730
1734
|
}
|
|
1731
1735
|
/**
|
|
1732
1736
|
* <p>Application created with too many tags, or too many tags added to an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.</p>
|
|
1733
1737
|
*/
|
|
1734
|
-
export
|
|
1735
|
-
name: "TooManyTagsException";
|
|
1736
|
-
$fault: "client";
|
|
1737
|
-
|
|
1738
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1739
|
+
readonly name: "TooManyTagsException";
|
|
1740
|
+
readonly $fault: "client";
|
|
1741
|
+
/**
|
|
1742
|
+
* @internal
|
|
1743
|
+
*/
|
|
1744
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1738
1745
|
}
|
|
1739
1746
|
/**
|
|
1740
1747
|
* <p></p>
|
|
@@ -2024,29 +2031,38 @@ export declare namespace DiscoverInputSchemaResponse {
|
|
|
2024
2031
|
* see <a href="https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html">GetRecords</a>
|
|
2025
2032
|
* in the Amazon Kinesis Streams API Reference.</p>
|
|
2026
2033
|
*/
|
|
2027
|
-
export
|
|
2028
|
-
name: "ResourceProvisionedThroughputExceededException";
|
|
2029
|
-
$fault: "client";
|
|
2030
|
-
|
|
2034
|
+
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
2035
|
+
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
2036
|
+
readonly $fault: "client";
|
|
2037
|
+
/**
|
|
2038
|
+
* @internal
|
|
2039
|
+
*/
|
|
2040
|
+
constructor(opts: __ExceptionOptionType<ResourceProvisionedThroughputExceededException, __BaseException>);
|
|
2031
2041
|
}
|
|
2032
2042
|
/**
|
|
2033
2043
|
* <p>The service is unavailable. Back off and retry the operation. </p>
|
|
2034
2044
|
*/
|
|
2035
|
-
export
|
|
2036
|
-
name: "ServiceUnavailableException";
|
|
2037
|
-
$fault: "server";
|
|
2038
|
-
|
|
2045
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
2046
|
+
readonly name: "ServiceUnavailableException";
|
|
2047
|
+
readonly $fault: "server";
|
|
2048
|
+
/**
|
|
2049
|
+
* @internal
|
|
2050
|
+
*/
|
|
2051
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
2039
2052
|
}
|
|
2040
2053
|
/**
|
|
2041
2054
|
* <p>Data format is not valid. Amazon Kinesis Analytics is not able to detect schema for
|
|
2042
2055
|
* the given streaming source.</p>
|
|
2043
2056
|
*/
|
|
2044
|
-
export
|
|
2045
|
-
name: "UnableToDetectSchemaException";
|
|
2046
|
-
$fault: "client";
|
|
2047
|
-
message?: string;
|
|
2057
|
+
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
2058
|
+
readonly name: "UnableToDetectSchemaException";
|
|
2059
|
+
readonly $fault: "client";
|
|
2048
2060
|
RawInputRecords?: string[];
|
|
2049
2061
|
ProcessedInputRecords?: string[];
|
|
2062
|
+
/**
|
|
2063
|
+
* @internal
|
|
2064
|
+
*/
|
|
2065
|
+
constructor(opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>);
|
|
2050
2066
|
}
|
|
2051
2067
|
/**
|
|
2052
2068
|
* <p>When you start your application,
|
|
@@ -2074,13 +2090,13 @@ export declare namespace InputConfiguration {
|
|
|
2074
2090
|
/**
|
|
2075
2091
|
* <p>User-provided application configuration is not valid.</p>
|
|
2076
2092
|
*/
|
|
2077
|
-
export
|
|
2078
|
-
name: "InvalidApplicationConfigurationException";
|
|
2079
|
-
$fault: "client";
|
|
2093
|
+
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
2094
|
+
readonly name: "InvalidApplicationConfigurationException";
|
|
2095
|
+
readonly $fault: "client";
|
|
2080
2096
|
/**
|
|
2081
|
-
*
|
|
2097
|
+
* @internal
|
|
2082
2098
|
*/
|
|
2083
|
-
|
|
2099
|
+
constructor(opts: __ExceptionOptionType<InvalidApplicationConfigurationException, __BaseException>);
|
|
2084
2100
|
}
|
|
2085
2101
|
/**
|
|
2086
2102
|
* <p></p>
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput } from "./commands/AddApplicationCloudWatchLoggingOptionCommand";
|
|
3
|
+
import { AddApplicationInputCommandInput, AddApplicationInputCommandOutput } from "./commands/AddApplicationInputCommand";
|
|
4
|
+
import { AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput } from "./commands/AddApplicationInputProcessingConfigurationCommand";
|
|
5
|
+
import { AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput } from "./commands/AddApplicationOutputCommand";
|
|
6
|
+
import { AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput } from "./commands/AddApplicationReferenceDataSourceCommand";
|
|
7
|
+
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
8
|
+
import { DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput } from "./commands/DeleteApplicationCloudWatchLoggingOptionCommand";
|
|
9
|
+
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
10
|
+
import { DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput } from "./commands/DeleteApplicationInputProcessingConfigurationCommand";
|
|
11
|
+
import { DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput } from "./commands/DeleteApplicationOutputCommand";
|
|
12
|
+
import { DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput } from "./commands/DeleteApplicationReferenceDataSourceCommand";
|
|
13
|
+
import { DescribeApplicationCommandInput, DescribeApplicationCommandOutput } from "./commands/DescribeApplicationCommand";
|
|
14
|
+
import { DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput } from "./commands/DiscoverInputSchemaCommand";
|
|
15
|
+
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
16
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { StartApplicationCommandInput, StartApplicationCommandOutput } from "./commands/StartApplicationCommand";
|
|
18
|
+
import { StopApplicationCommandInput, StopApplicationCommandOutput } from "./commands/StopApplicationCommand";
|
|
19
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
20
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
|
+
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
22
|
+
import { KinesisAnalyticsClient } from "./KinesisAnalyticsClient";
|
|
23
|
+
|
|
24
|
+
export declare class KinesisAnalytics extends KinesisAnalyticsClient {
|
|
25
|
+
|
|
26
|
+
addApplicationCloudWatchLoggingOption(args: AddApplicationCloudWatchLoggingOptionCommandInput, options?: __HttpHandlerOptions): Promise<AddApplicationCloudWatchLoggingOptionCommandOutput>;
|
|
27
|
+
addApplicationCloudWatchLoggingOption(args: AddApplicationCloudWatchLoggingOptionCommandInput, cb: (err: any, data?: AddApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
28
|
+
addApplicationCloudWatchLoggingOption(args: AddApplicationCloudWatchLoggingOptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
29
|
+
|
|
30
|
+
addApplicationInput(args: AddApplicationInputCommandInput, options?: __HttpHandlerOptions): Promise<AddApplicationInputCommandOutput>;
|
|
31
|
+
addApplicationInput(args: AddApplicationInputCommandInput, cb: (err: any, data?: AddApplicationInputCommandOutput) => void): void;
|
|
32
|
+
addApplicationInput(args: AddApplicationInputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationInputCommandOutput) => void): void;
|
|
33
|
+
|
|
34
|
+
addApplicationInputProcessingConfiguration(args: AddApplicationInputProcessingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<AddApplicationInputProcessingConfigurationCommandOutput>;
|
|
35
|
+
addApplicationInputProcessingConfiguration(args: AddApplicationInputProcessingConfigurationCommandInput, cb: (err: any, data?: AddApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
36
|
+
addApplicationInputProcessingConfiguration(args: AddApplicationInputProcessingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
37
|
+
|
|
38
|
+
addApplicationOutput(args: AddApplicationOutputCommandInput, options?: __HttpHandlerOptions): Promise<AddApplicationOutputCommandOutput>;
|
|
39
|
+
addApplicationOutput(args: AddApplicationOutputCommandInput, cb: (err: any, data?: AddApplicationOutputCommandOutput) => void): void;
|
|
40
|
+
addApplicationOutput(args: AddApplicationOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationOutputCommandOutput) => void): void;
|
|
41
|
+
|
|
42
|
+
addApplicationReferenceDataSource(args: AddApplicationReferenceDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<AddApplicationReferenceDataSourceCommandOutput>;
|
|
43
|
+
addApplicationReferenceDataSource(args: AddApplicationReferenceDataSourceCommandInput, cb: (err: any, data?: AddApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
44
|
+
addApplicationReferenceDataSource(args: AddApplicationReferenceDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
45
|
+
|
|
46
|
+
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
47
|
+
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
48
|
+
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
49
|
+
|
|
50
|
+
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
51
|
+
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
52
|
+
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
53
|
+
|
|
54
|
+
deleteApplicationCloudWatchLoggingOption(args: DeleteApplicationCloudWatchLoggingOptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCloudWatchLoggingOptionCommandOutput>;
|
|
55
|
+
deleteApplicationCloudWatchLoggingOption(args: DeleteApplicationCloudWatchLoggingOptionCommandInput, cb: (err: any, data?: DeleteApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
56
|
+
deleteApplicationCloudWatchLoggingOption(args: DeleteApplicationCloudWatchLoggingOptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCloudWatchLoggingOptionCommandOutput) => void): void;
|
|
57
|
+
|
|
58
|
+
deleteApplicationInputProcessingConfiguration(args: DeleteApplicationInputProcessingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationInputProcessingConfigurationCommandOutput>;
|
|
59
|
+
deleteApplicationInputProcessingConfiguration(args: DeleteApplicationInputProcessingConfigurationCommandInput, cb: (err: any, data?: DeleteApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
60
|
+
deleteApplicationInputProcessingConfiguration(args: DeleteApplicationInputProcessingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationInputProcessingConfigurationCommandOutput) => void): void;
|
|
61
|
+
|
|
62
|
+
deleteApplicationOutput(args: DeleteApplicationOutputCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationOutputCommandOutput>;
|
|
63
|
+
deleteApplicationOutput(args: DeleteApplicationOutputCommandInput, cb: (err: any, data?: DeleteApplicationOutputCommandOutput) => void): void;
|
|
64
|
+
deleteApplicationOutput(args: DeleteApplicationOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationOutputCommandOutput) => void): void;
|
|
65
|
+
|
|
66
|
+
deleteApplicationReferenceDataSource(args: DeleteApplicationReferenceDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationReferenceDataSourceCommandOutput>;
|
|
67
|
+
deleteApplicationReferenceDataSource(args: DeleteApplicationReferenceDataSourceCommandInput, cb: (err: any, data?: DeleteApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
68
|
+
deleteApplicationReferenceDataSource(args: DeleteApplicationReferenceDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationReferenceDataSourceCommandOutput) => void): void;
|
|
69
|
+
|
|
70
|
+
describeApplication(args: DescribeApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationCommandOutput>;
|
|
71
|
+
describeApplication(args: DescribeApplicationCommandInput, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
72
|
+
describeApplication(args: DescribeApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
73
|
+
|
|
74
|
+
discoverInputSchema(args: DiscoverInputSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DiscoverInputSchemaCommandOutput>;
|
|
75
|
+
discoverInputSchema(args: DiscoverInputSchemaCommandInput, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
76
|
+
discoverInputSchema(args: DiscoverInputSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DiscoverInputSchemaCommandOutput) => void): void;
|
|
77
|
+
|
|
78
|
+
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
79
|
+
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
80
|
+
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
81
|
+
|
|
82
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
83
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
84
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
85
|
+
|
|
86
|
+
startApplication(args: StartApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartApplicationCommandOutput>;
|
|
87
|
+
startApplication(args: StartApplicationCommandInput, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
88
|
+
startApplication(args: StartApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
89
|
+
|
|
90
|
+
stopApplication(args: StopApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StopApplicationCommandOutput>;
|
|
91
|
+
stopApplication(args: StopApplicationCommandInput, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
92
|
+
stopApplication(args: StopApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
93
|
+
|
|
94
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
95
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
96
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
97
|
+
|
|
98
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
99
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
100
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
101
|
+
|
|
102
|
+
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
103
|
+
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
104
|
+
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
105
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput } from "./commands/AddApplicationCloudWatchLoggingOptionCommand";
|
|
10
|
+
import { AddApplicationInputCommandInput, AddApplicationInputCommandOutput } from "./commands/AddApplicationInputCommand";
|
|
11
|
+
import { AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput } from "./commands/AddApplicationInputProcessingConfigurationCommand";
|
|
12
|
+
import { AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput } from "./commands/AddApplicationOutputCommand";
|
|
13
|
+
import { AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput } from "./commands/AddApplicationReferenceDataSourceCommand";
|
|
14
|
+
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
15
|
+
import { DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput } from "./commands/DeleteApplicationCloudWatchLoggingOptionCommand";
|
|
16
|
+
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
17
|
+
import { DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput } from "./commands/DeleteApplicationInputProcessingConfigurationCommand";
|
|
18
|
+
import { DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput } from "./commands/DeleteApplicationOutputCommand";
|
|
19
|
+
import { DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput } from "./commands/DeleteApplicationReferenceDataSourceCommand";
|
|
20
|
+
import { DescribeApplicationCommandInput, DescribeApplicationCommandOutput } from "./commands/DescribeApplicationCommand";
|
|
21
|
+
import { DiscoverInputSchemaCommandInput, DiscoverInputSchemaCommandOutput } from "./commands/DiscoverInputSchemaCommand";
|
|
22
|
+
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
23
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { StartApplicationCommandInput, StartApplicationCommandOutput } from "./commands/StartApplicationCommand";
|
|
25
|
+
import { StopApplicationCommandInput, StopApplicationCommandOutput } from "./commands/StopApplicationCommand";
|
|
26
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
28
|
+
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
29
|
+
export declare type ServiceInputTypes = AddApplicationCloudWatchLoggingOptionCommandInput | AddApplicationInputCommandInput | AddApplicationInputProcessingConfigurationCommandInput | AddApplicationOutputCommandInput | AddApplicationReferenceDataSourceCommandInput | CreateApplicationCommandInput | DeleteApplicationCloudWatchLoggingOptionCommandInput | DeleteApplicationCommandInput | DeleteApplicationInputProcessingConfigurationCommandInput | DeleteApplicationOutputCommandInput | DeleteApplicationReferenceDataSourceCommandInput | DescribeApplicationCommandInput | DiscoverInputSchemaCommandInput | ListApplicationsCommandInput | ListTagsForResourceCommandInput | StartApplicationCommandInput | StopApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput;
|
|
30
|
+
export declare type ServiceOutputTypes = AddApplicationCloudWatchLoggingOptionCommandOutput | AddApplicationInputCommandOutput | AddApplicationInputProcessingConfigurationCommandOutput | AddApplicationOutputCommandOutput | AddApplicationReferenceDataSourceCommandOutput | CreateApplicationCommandOutput | DeleteApplicationCloudWatchLoggingOptionCommandOutput | DeleteApplicationCommandOutput | DeleteApplicationInputProcessingConfigurationCommandOutput | DeleteApplicationOutputCommandOutput | DeleteApplicationReferenceDataSourceCommandOutput | DescribeApplicationCommandOutput | DiscoverInputSchemaCommandOutput | ListApplicationsCommandOutput | ListTagsForResourceCommandOutput | StartApplicationCommandOutput | StopApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput;
|
|
31
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
32
|
+
|
|
33
|
+
requestHandler?: __HttpHandler;
|
|
34
|
+
|
|
35
|
+
sha256?: __HashConstructor;
|
|
36
|
+
|
|
37
|
+
urlParser?: __UrlParser;
|
|
38
|
+
|
|
39
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
40
|
+
|
|
41
|
+
streamCollector?: __StreamCollector;
|
|
42
|
+
|
|
43
|
+
base64Decoder?: __Decoder;
|
|
44
|
+
|
|
45
|
+
base64Encoder?: __Encoder;
|
|
46
|
+
|
|
47
|
+
utf8Decoder?: __Decoder;
|
|
48
|
+
|
|
49
|
+
utf8Encoder?: __Encoder;
|
|
50
|
+
|
|
51
|
+
runtime?: string;
|
|
52
|
+
|
|
53
|
+
disableHostPrefix?: boolean;
|
|
54
|
+
|
|
55
|
+
maxAttempts?: number | __Provider<number>;
|
|
56
|
+
|
|
57
|
+
retryMode?: string | __Provider<string>;
|
|
58
|
+
|
|
59
|
+
logger?: __Logger;
|
|
60
|
+
|
|
61
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
62
|
+
|
|
63
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
64
|
+
|
|
65
|
+
serviceId?: string;
|
|
66
|
+
|
|
67
|
+
region?: string | __Provider<string>;
|
|
68
|
+
|
|
69
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
70
|
+
|
|
71
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
72
|
+
|
|
73
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
74
|
+
|
|
75
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
76
|
+
}
|
|
77
|
+
declare type KinesisAnalyticsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
78
|
+
|
|
79
|
+
export interface KinesisAnalyticsClientConfig extends KinesisAnalyticsClientConfigType {
|
|
80
|
+
}
|
|
81
|
+
declare type KinesisAnalyticsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
82
|
+
|
|
83
|
+
export interface KinesisAnalyticsClientResolvedConfig extends KinesisAnalyticsClientResolvedConfigType {
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export declare class KinesisAnalyticsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KinesisAnalyticsClientResolvedConfig> {
|
|
87
|
+
|
|
88
|
+
readonly config: KinesisAnalyticsClientResolvedConfig;
|
|
89
|
+
constructor(configuration: KinesisAnalyticsClientConfig);
|
|
90
|
+
|
|
91
|
+
destroy(): void;
|
|
92
|
+
}
|
|
93
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AddApplicationCloudWatchLoggingOptionRequest, AddApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
|
|
5
|
+
export interface AddApplicationCloudWatchLoggingOptionCommandInput extends AddApplicationCloudWatchLoggingOptionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddApplicationCloudWatchLoggingOptionCommand extends $Command<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
11
|
+
readonly input: AddApplicationCloudWatchLoggingOptionCommandInput;
|
|
12
|
+
constructor(input: AddApplicationCloudWatchLoggingOptionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0";
|
|
5
|
+
export interface AddApplicationInputCommandInput extends AddApplicationInputRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddApplicationInputCommandOutput extends AddApplicationInputResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddApplicationInputCommand extends $Command<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
11
|
+
readonly input: AddApplicationInputCommandInput;
|
|
12
|
+
constructor(input: AddApplicationInputCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputCommandInput, AddApplicationInputCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AddApplicationInputProcessingConfigurationRequest, AddApplicationInputProcessingConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface AddApplicationInputProcessingConfigurationCommandInput extends AddApplicationInputProcessingConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddApplicationInputProcessingConfigurationCommandOutput extends AddApplicationInputProcessingConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddApplicationInputProcessingConfigurationCommand extends $Command<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
11
|
+
readonly input: AddApplicationInputProcessingConfigurationCommandInput;
|
|
12
|
+
constructor(input: AddApplicationInputProcessingConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0";
|
|
5
|
+
export interface AddApplicationOutputCommandInput extends AddApplicationOutputRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddApplicationOutputCommandOutput extends AddApplicationOutputResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddApplicationOutputCommand extends $Command<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
11
|
+
readonly input: AddApplicationOutputCommandInput;
|
|
12
|
+
constructor(input: AddApplicationOutputCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AddApplicationReferenceDataSourceRequest, AddApplicationReferenceDataSourceResponse } from "../models/models_0";
|
|
5
|
+
export interface AddApplicationReferenceDataSourceCommandInput extends AddApplicationReferenceDataSourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddApplicationReferenceDataSourceCommandOutput extends AddApplicationReferenceDataSourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddApplicationReferenceDataSourceCommand extends $Command<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
|
|
11
|
+
readonly input: AddApplicationReferenceDataSourceCommandInput;
|
|
12
|
+
constructor(input: AddApplicationReferenceDataSourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|