@aws-sdk/client-kinesis-analytics 3.50.0 → 3.51.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 +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 +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1167 -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 +8 -8
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from "./AddApplicationCloudWatchLoggingOptionCommand";
|
|
2
|
+
export * from "./AddApplicationInputCommand";
|
|
3
|
+
export * from "./AddApplicationInputProcessingConfigurationCommand";
|
|
4
|
+
export * from "./AddApplicationOutputCommand";
|
|
5
|
+
export * from "./AddApplicationReferenceDataSourceCommand";
|
|
6
|
+
export * from "./CreateApplicationCommand";
|
|
7
|
+
export * from "./DeleteApplicationCloudWatchLoggingOptionCommand";
|
|
8
|
+
export * from "./DeleteApplicationCommand";
|
|
9
|
+
export * from "./DeleteApplicationInputProcessingConfigurationCommand";
|
|
10
|
+
export * from "./DeleteApplicationOutputCommand";
|
|
11
|
+
export * from "./DeleteApplicationReferenceDataSourceCommand";
|
|
12
|
+
export * from "./DescribeApplicationCommand";
|
|
13
|
+
export * from "./DiscoverInputSchemaCommand";
|
|
14
|
+
export * from "./ListApplicationsCommand";
|
|
15
|
+
export * from "./ListTagsForResourceCommand";
|
|
16
|
+
export * from "./StartApplicationCommand";
|
|
17
|
+
export * from "./StopApplicationCommand";
|
|
18
|
+
export * from "./TagResourceCommand";
|
|
19
|
+
export * from "./UntagResourceCommand";
|
|
20
|
+
export * from "./UpdateApplicationCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|