@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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.KinesisAnalyticsServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./KinesisAnalytics"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./KinesisAnalyticsClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
9
|
+
var KinesisAnalyticsServiceException_1 = require("./models/KinesisAnalyticsServiceException");
|
|
10
|
+
Object.defineProperty(exports, "KinesisAnalyticsServiceException", { enumerable: true, get: function () { return KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.KinesisAnalyticsServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class KinesisAnalyticsServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, KinesisAnalyticsServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.KinesisAnalyticsServiceException = KinesisAnalyticsServiceException;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.OutputDescription = exports.LambdaOutputDescription = exports.KinesisStreamsOutputDescription = exports.KinesisFirehoseOutputDescription = exports.InputDescription = exports.KinesisStreamsInputDescription = exports.KinesisFirehoseInputDescription = exports.InputStartingPositionConfiguration = exports.InputStartingPosition = exports.InputProcessingConfigurationDescription = exports.InputLambdaProcessorDescription = exports.CloudWatchLoggingOptionDescription = exports.ApplicationStatus = exports.AddApplicationReferenceDataSourceResponse = exports.AddApplicationReferenceDataSourceRequest = exports.ReferenceDataSource = exports.S3ReferenceDataSource = exports.AddApplicationOutputResponse = exports.AddApplicationOutputRequest = exports.Output = exports.LambdaOutput = exports.KinesisStreamsOutput = exports.KinesisFirehoseOutput = exports.DestinationSchema = exports.AddApplicationInputProcessingConfigurationResponse = exports.AddApplicationInputProcessingConfigurationRequest = exports.CodeValidationException = exports.AddApplicationInputResponse = exports.AddApplicationInputRequest = exports.Input = exports.KinesisStreamsInput = exports.KinesisFirehoseInput = exports.SourceSchema = exports.RecordFormat = exports.RecordFormatType = exports.MappingParameters = exports.JSONMappingParameters = exports.CSVMappingParameters = exports.RecordColumn = exports.InputProcessingConfiguration = exports.InputLambdaProcessor = exports.InputParallelism = exports.UnsupportedOperationException = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InvalidArgumentException = exports.ConcurrentModificationException = exports.AddApplicationCloudWatchLoggingOptionResponse = exports.AddApplicationCloudWatchLoggingOptionRequest = exports.CloudWatchLoggingOption = void 0;
|
|
4
|
+
exports.StartApplicationResponse = exports.StartApplicationRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListApplicationsResponse = exports.ListApplicationsRequest = exports.InvalidApplicationConfigurationException = exports.InputConfiguration = exports.UnableToDetectSchemaException = exports.ServiceUnavailableException = exports.ResourceProvisionedThroughputExceededException = exports.DiscoverInputSchemaResponse = exports.DiscoverInputSchemaRequest = exports.S3Configuration = exports.DescribeApplicationResponse = exports.DescribeApplicationRequest = exports.DeleteApplicationReferenceDataSourceResponse = exports.DeleteApplicationReferenceDataSourceRequest = exports.DeleteApplicationOutputResponse = exports.DeleteApplicationOutputRequest = exports.DeleteApplicationInputProcessingConfigurationResponse = exports.DeleteApplicationInputProcessingConfigurationRequest = exports.DeleteApplicationCloudWatchLoggingOptionResponse = exports.DeleteApplicationCloudWatchLoggingOptionRequest = exports.DeleteApplicationResponse = exports.DeleteApplicationRequest = exports.TooManyTagsException = exports.LimitExceededException = exports.CreateApplicationResponse = exports.CreateApplicationRequest = exports.Tag = exports.ApplicationUpdate = exports.ReferenceDataSourceUpdate = exports.S3ReferenceDataSourceUpdate = exports.OutputUpdate = exports.LambdaOutputUpdate = exports.KinesisStreamsOutputUpdate = exports.KinesisFirehoseOutputUpdate = exports.InputUpdate = exports.KinesisStreamsInputUpdate = exports.KinesisFirehoseInputUpdate = exports.InputSchemaUpdate = exports.InputProcessingConfigurationUpdate = exports.InputLambdaProcessorUpdate = exports.InputParallelismUpdate = exports.CloudWatchLoggingOptionUpdate = exports.ApplicationSummary = exports.ApplicationDetail = exports.ReferenceDataSourceDescription = exports.S3ReferenceDataSourceDescription = void 0;
|
|
5
|
+
exports.UpdateApplicationResponse = exports.UpdateApplicationRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopApplicationResponse = exports.StopApplicationRequest = void 0;
|
|
6
|
+
const KinesisAnalyticsServiceException_1 = require("./KinesisAnalyticsServiceException");
|
|
5
7
|
var CloudWatchLoggingOption;
|
|
6
8
|
(function (CloudWatchLoggingOption) {
|
|
7
9
|
CloudWatchLoggingOption.filterSensitiveLog = (obj) => ({
|
|
@@ -20,6 +22,71 @@ var AddApplicationCloudWatchLoggingOptionResponse;
|
|
|
20
22
|
...obj,
|
|
21
23
|
});
|
|
22
24
|
})(AddApplicationCloudWatchLoggingOptionResponse = exports.AddApplicationCloudWatchLoggingOptionResponse || (exports.AddApplicationCloudWatchLoggingOptionResponse = {}));
|
|
25
|
+
class ConcurrentModificationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
26
|
+
constructor(opts) {
|
|
27
|
+
super({
|
|
28
|
+
name: "ConcurrentModificationException",
|
|
29
|
+
$fault: "client",
|
|
30
|
+
...opts,
|
|
31
|
+
});
|
|
32
|
+
this.name = "ConcurrentModificationException";
|
|
33
|
+
this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
38
|
+
class InvalidArgumentException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
39
|
+
constructor(opts) {
|
|
40
|
+
super({
|
|
41
|
+
name: "InvalidArgumentException",
|
|
42
|
+
$fault: "client",
|
|
43
|
+
...opts,
|
|
44
|
+
});
|
|
45
|
+
this.name = "InvalidArgumentException";
|
|
46
|
+
this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
51
|
+
class ResourceInUseException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "ResourceInUseException",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
this.name = "ResourceInUseException";
|
|
59
|
+
this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
64
|
+
class ResourceNotFoundException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ResourceNotFoundException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
this.name = "ResourceNotFoundException";
|
|
72
|
+
this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
77
|
+
class UnsupportedOperationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
78
|
+
constructor(opts) {
|
|
79
|
+
super({
|
|
80
|
+
name: "UnsupportedOperationException",
|
|
81
|
+
$fault: "client",
|
|
82
|
+
...opts,
|
|
83
|
+
});
|
|
84
|
+
this.name = "UnsupportedOperationException";
|
|
85
|
+
this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
23
90
|
var InputParallelism;
|
|
24
91
|
(function (InputParallelism) {
|
|
25
92
|
InputParallelism.filterSensitiveLog = (obj) => ({
|
|
@@ -109,6 +176,19 @@ var AddApplicationInputResponse;
|
|
|
109
176
|
...obj,
|
|
110
177
|
});
|
|
111
178
|
})(AddApplicationInputResponse = exports.AddApplicationInputResponse || (exports.AddApplicationInputResponse = {}));
|
|
179
|
+
class CodeValidationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "CodeValidationException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
this.name = "CodeValidationException";
|
|
187
|
+
this.$fault = "client";
|
|
188
|
+
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
exports.CodeValidationException = CodeValidationException;
|
|
112
192
|
var AddApplicationInputProcessingConfigurationRequest;
|
|
113
193
|
(function (AddApplicationInputProcessingConfigurationRequest) {
|
|
114
194
|
AddApplicationInputProcessingConfigurationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -400,6 +480,32 @@ var CreateApplicationResponse;
|
|
|
400
480
|
...obj,
|
|
401
481
|
});
|
|
402
482
|
})(CreateApplicationResponse = exports.CreateApplicationResponse || (exports.CreateApplicationResponse = {}));
|
|
483
|
+
class LimitExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
484
|
+
constructor(opts) {
|
|
485
|
+
super({
|
|
486
|
+
name: "LimitExceededException",
|
|
487
|
+
$fault: "client",
|
|
488
|
+
...opts,
|
|
489
|
+
});
|
|
490
|
+
this.name = "LimitExceededException";
|
|
491
|
+
this.$fault = "client";
|
|
492
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
exports.LimitExceededException = LimitExceededException;
|
|
496
|
+
class TooManyTagsException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
497
|
+
constructor(opts) {
|
|
498
|
+
super({
|
|
499
|
+
name: "TooManyTagsException",
|
|
500
|
+
$fault: "client",
|
|
501
|
+
...opts,
|
|
502
|
+
});
|
|
503
|
+
this.name = "TooManyTagsException";
|
|
504
|
+
this.$fault = "client";
|
|
505
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
403
509
|
var DeleteApplicationRequest;
|
|
404
510
|
(function (DeleteApplicationRequest) {
|
|
405
511
|
DeleteApplicationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -490,12 +596,66 @@ var DiscoverInputSchemaResponse;
|
|
|
490
596
|
...obj,
|
|
491
597
|
});
|
|
492
598
|
})(DiscoverInputSchemaResponse = exports.DiscoverInputSchemaResponse || (exports.DiscoverInputSchemaResponse = {}));
|
|
599
|
+
class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
600
|
+
constructor(opts) {
|
|
601
|
+
super({
|
|
602
|
+
name: "ResourceProvisionedThroughputExceededException",
|
|
603
|
+
$fault: "client",
|
|
604
|
+
...opts,
|
|
605
|
+
});
|
|
606
|
+
this.name = "ResourceProvisionedThroughputExceededException";
|
|
607
|
+
this.$fault = "client";
|
|
608
|
+
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException;
|
|
612
|
+
class ServiceUnavailableException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
613
|
+
constructor(opts) {
|
|
614
|
+
super({
|
|
615
|
+
name: "ServiceUnavailableException",
|
|
616
|
+
$fault: "server",
|
|
617
|
+
...opts,
|
|
618
|
+
});
|
|
619
|
+
this.name = "ServiceUnavailableException";
|
|
620
|
+
this.$fault = "server";
|
|
621
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
625
|
+
class UnableToDetectSchemaException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
626
|
+
constructor(opts) {
|
|
627
|
+
super({
|
|
628
|
+
name: "UnableToDetectSchemaException",
|
|
629
|
+
$fault: "client",
|
|
630
|
+
...opts,
|
|
631
|
+
});
|
|
632
|
+
this.name = "UnableToDetectSchemaException";
|
|
633
|
+
this.$fault = "client";
|
|
634
|
+
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
635
|
+
this.RawInputRecords = opts.RawInputRecords;
|
|
636
|
+
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
exports.UnableToDetectSchemaException = UnableToDetectSchemaException;
|
|
493
640
|
var InputConfiguration;
|
|
494
641
|
(function (InputConfiguration) {
|
|
495
642
|
InputConfiguration.filterSensitiveLog = (obj) => ({
|
|
496
643
|
...obj,
|
|
497
644
|
});
|
|
498
645
|
})(InputConfiguration = exports.InputConfiguration || (exports.InputConfiguration = {}));
|
|
646
|
+
class InvalidApplicationConfigurationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
|
|
647
|
+
constructor(opts) {
|
|
648
|
+
super({
|
|
649
|
+
name: "InvalidApplicationConfigurationException",
|
|
650
|
+
$fault: "client",
|
|
651
|
+
...opts,
|
|
652
|
+
});
|
|
653
|
+
this.name = "InvalidApplicationConfigurationException";
|
|
654
|
+
this.$fault = "client";
|
|
655
|
+
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException;
|
|
499
659
|
var ListApplicationsRequest;
|
|
500
660
|
(function (ListApplicationsRequest) {
|
|
501
661
|
ListApplicationsRequest.filterSensitiveLog = (obj) => ({
|