@aws-sdk/client-kinesis-analytics 3.952.0 → 3.953.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 (40) hide show
  1. package/dist-cjs/index.js +432 -292
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -2
  4. package/dist-es/commands/AddApplicationInputCommand.js +2 -2
  5. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -2
  6. package/dist-es/commands/AddApplicationOutputCommand.js +2 -2
  7. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +2 -2
  8. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  9. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -2
  10. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  11. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -2
  12. package/dist-es/commands/DeleteApplicationOutputCommand.js +2 -2
  13. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -2
  14. package/dist-es/commands/DescribeApplicationCommand.js +2 -2
  15. package/dist-es/commands/DiscoverInputSchemaCommand.js +2 -2
  16. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/StartApplicationCommand.js +2 -2
  19. package/dist-es/commands/StopApplicationCommand.js +2 -2
  20. package/dist-es/commands/TagResourceCommand.js +2 -2
  21. package/dist-es/commands/UntagResourceCommand.js +2 -2
  22. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  23. package/dist-es/index.js +1 -0
  24. package/dist-es/runtimeConfig.shared.js +7 -6
  25. package/dist-es/schemas/schemas_0.js +257 -243
  26. package/dist-types/KinesisAnalyticsClient.d.ts +1 -10
  27. package/dist-types/index.d.ts +1 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  29. package/dist-types/runtimeConfig.d.ts +6 -2
  30. package/dist-types/runtimeConfig.native.d.ts +6 -2
  31. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  32. package/dist-types/schemas/schemas_0.d.ts +127 -148
  33. package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +0 -4
  34. package/dist-types/ts3.4/index.d.ts +1 -0
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +126 -148
  40. package/package.json +34 -34
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.kinesisanalytics",
32
- serviceTarget: "KinesisAnalytics_20150814",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.kinesisanalytics",
32
+ xmlNamespace: "http://analytics.kinesis.amazonaws.com/doc/2015-08-14",
33
+ version: "2015-08-14",
34
+ serviceTarget: "KinesisAnalytics_20150814",
35
+ },
35
36
  serviceId: config?.serviceId ?? "Kinesis Analytics",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddApplicationCloudWatchLoggingOption } from "../schemas/schemas_0";
4
+ import { AddApplicationCloudWatchLoggingOption$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddApplicationCloudWatchLoggingOptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddApplicationCloudWatchLoggingOptionCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "AddApplicationCloudWatchLoggingOption", {})
13
13
  .n("KinesisAnalyticsClient", "AddApplicationCloudWatchLoggingOptionCommand")
14
- .sc(AddApplicationCloudWatchLoggingOption)
14
+ .sc(AddApplicationCloudWatchLoggingOption$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddApplicationInput } from "../schemas/schemas_0";
4
+ import { AddApplicationInput$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddApplicationInputCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddApplicationInputCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "AddApplicationInput", {})
13
13
  .n("KinesisAnalyticsClient", "AddApplicationInputCommand")
14
- .sc(AddApplicationInput)
14
+ .sc(AddApplicationInput$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddApplicationInputProcessingConfiguration } from "../schemas/schemas_0";
4
+ import { AddApplicationInputProcessingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddApplicationInputProcessingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddApplicationInputProcessingConfigurationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "AddApplicationInputProcessingConfiguration", {})
13
13
  .n("KinesisAnalyticsClient", "AddApplicationInputProcessingConfigurationCommand")
14
- .sc(AddApplicationInputProcessingConfiguration)
14
+ .sc(AddApplicationInputProcessingConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddApplicationOutput } from "../schemas/schemas_0";
4
+ import { AddApplicationOutput$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddApplicationOutputCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddApplicationOutputCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "AddApplicationOutput", {})
13
13
  .n("KinesisAnalyticsClient", "AddApplicationOutputCommand")
14
- .sc(AddApplicationOutput)
14
+ .sc(AddApplicationOutput$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddApplicationReferenceDataSource } from "../schemas/schemas_0";
4
+ import { AddApplicationReferenceDataSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddApplicationReferenceDataSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddApplicationReferenceDataSourceCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "AddApplicationReferenceDataSource", {})
13
13
  .n("KinesisAnalyticsClient", "AddApplicationReferenceDataSourceCommand")
14
- .sc(AddApplicationReferenceDataSource)
14
+ .sc(AddApplicationReferenceDataSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateApplication } from "../schemas/schemas_0";
4
+ import { CreateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "CreateApplication", {})
13
13
  .n("KinesisAnalyticsClient", "CreateApplicationCommand")
14
- .sc(CreateApplication)
14
+ .sc(CreateApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplicationCloudWatchLoggingOption } from "../schemas/schemas_0";
4
+ import { DeleteApplicationCloudWatchLoggingOption$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DeleteApplicationCloudWatchLoggingOption", {})
13
13
  .n("KinesisAnalyticsClient", "DeleteApplicationCloudWatchLoggingOptionCommand")
14
- .sc(DeleteApplicationCloudWatchLoggingOption)
14
+ .sc(DeleteApplicationCloudWatchLoggingOption$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplication } from "../schemas/schemas_0";
4
+ import { DeleteApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DeleteApplication", {})
13
13
  .n("KinesisAnalyticsClient", "DeleteApplicationCommand")
14
- .sc(DeleteApplication)
14
+ .sc(DeleteApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplicationInputProcessingConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteApplicationInputProcessingConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationInputProcessingConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationInputProcessingConfigurationCommand extends $Comma
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DeleteApplicationInputProcessingConfiguration", {})
13
13
  .n("KinesisAnalyticsClient", "DeleteApplicationInputProcessingConfigurationCommand")
14
- .sc(DeleteApplicationInputProcessingConfiguration)
14
+ .sc(DeleteApplicationInputProcessingConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplicationOutput } from "../schemas/schemas_0";
4
+ import { DeleteApplicationOutput$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationOutputCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationOutputCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DeleteApplicationOutput", {})
13
13
  .n("KinesisAnalyticsClient", "DeleteApplicationOutputCommand")
14
- .sc(DeleteApplicationOutput)
14
+ .sc(DeleteApplicationOutput$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplicationReferenceDataSource } from "../schemas/schemas_0";
4
+ import { DeleteApplicationReferenceDataSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationReferenceDataSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationReferenceDataSourceCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DeleteApplicationReferenceDataSource", {})
13
13
  .n("KinesisAnalyticsClient", "DeleteApplicationReferenceDataSourceCommand")
14
- .sc(DeleteApplicationReferenceDataSource)
14
+ .sc(DeleteApplicationReferenceDataSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeApplication } from "../schemas/schemas_0";
4
+ import { DescribeApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DescribeApplication", {})
13
13
  .n("KinesisAnalyticsClient", "DescribeApplicationCommand")
14
- .sc(DescribeApplication)
14
+ .sc(DescribeApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DiscoverInputSchema } from "../schemas/schemas_0";
4
+ import { DiscoverInputSchema$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DiscoverInputSchemaCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DiscoverInputSchemaCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "DiscoverInputSchema", {})
13
13
  .n("KinesisAnalyticsClient", "DiscoverInputSchemaCommand")
14
- .sc(DiscoverInputSchema)
14
+ .sc(DiscoverInputSchema$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListApplications } from "../schemas/schemas_0";
4
+ import { ListApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "ListApplications", {})
13
13
  .n("KinesisAnalyticsClient", "ListApplicationsCommand")
14
- .sc(ListApplications)
14
+ .sc(ListApplications$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "ListTagsForResource", {})
13
13
  .n("KinesisAnalyticsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartApplication } from "../schemas/schemas_0";
4
+ import { StartApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "StartApplication", {})
13
13
  .n("KinesisAnalyticsClient", "StartApplicationCommand")
14
- .sc(StartApplication)
14
+ .sc(StartApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopApplication } from "../schemas/schemas_0";
4
+ import { StopApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "StopApplication", {})
13
13
  .n("KinesisAnalyticsClient", "StopApplicationCommand")
14
- .sc(StopApplication)
14
+ .sc(StopApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "TagResource", {})
13
13
  .n("KinesisAnalyticsClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "UntagResource", {})
13
13
  .n("KinesisAnalyticsClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateApplication } from "../schemas/schemas_0";
4
+ import { UpdateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
11
11
  })
12
12
  .s("KinesisAnalytics_20150814", "UpdateApplication", {})
13
13
  .n("KinesisAnalyticsClient", "UpdateApplicationCommand")
14
- .sc(UpdateApplication)
14
+ .sc(UpdateApplication$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./KinesisAnalyticsClient";
2
2
  export * from "./KinesisAnalytics";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { KinesisAnalyticsServiceException } from "./models/KinesisAnalyticsServiceException";
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_1Protocol({
28
- defaultNamespace: "com.amazonaws.kinesisanalytics",
29
- serviceTarget: "KinesisAnalytics_20150814",
30
- awsQueryCompatible: false,
31
- }),
26
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.kinesisanalytics",
29
+ xmlNamespace: "http://analytics.kinesis.amazonaws.com/doc/2015-08-14",
30
+ version: "2015-08-14",
31
+ serviceTarget: "KinesisAnalytics_20150814",
32
+ },
32
33
  serviceId: config?.serviceId ?? "Kinesis Analytics",
33
34
  urlParser: config?.urlParser ?? parseUrl,
34
35
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,