@aws-sdk/client-kinesis-analytics 3.300.0 → 3.303.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 (25) hide show
  1. package/dist-cjs/models/models_0.js +17 -20
  2. package/dist-es/models/models_0.js +17 -20
  3. package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +2 -2
  4. package/dist-types/commands/AddApplicationInputCommand.d.ts +14 -14
  5. package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +3 -3
  6. package/dist-types/commands/AddApplicationOutputCommand.d.ts +6 -6
  7. package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +10 -10
  8. package/dist-types/commands/CreateApplicationCommand.d.ts +25 -25
  9. package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeApplicationCommand.d.ts +1 -1
  15. package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +5 -5
  16. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  18. package/dist-types/commands/StartApplicationCommand.d.ts +4 -4
  19. package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
  20. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  21. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  22. package/dist-types/commands/UpdateApplicationCommand.d.ts +28 -28
  23. package/dist-types/models/models_0.d.ts +32 -17
  24. package/dist-types/ts3.4/models/models_0.d.ts +23 -17
  25. package/package.json +34 -34
@@ -67,11 +67,10 @@ class UnsupportedOperationException extends KinesisAnalyticsServiceException_1.K
67
67
  }
68
68
  }
69
69
  exports.UnsupportedOperationException = UnsupportedOperationException;
70
- var RecordFormatType;
71
- (function (RecordFormatType) {
72
- RecordFormatType["CSV"] = "CSV";
73
- RecordFormatType["JSON"] = "JSON";
74
- })(RecordFormatType = exports.RecordFormatType || (exports.RecordFormatType = {}));
70
+ exports.RecordFormatType = {
71
+ CSV: "CSV",
72
+ JSON: "JSON",
73
+ };
75
74
  class CodeValidationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
76
75
  constructor(opts) {
77
76
  super({
@@ -85,21 +84,19 @@ class CodeValidationException extends KinesisAnalyticsServiceException_1.Kinesis
85
84
  }
86
85
  }
87
86
  exports.CodeValidationException = CodeValidationException;
88
- var ApplicationStatus;
89
- (function (ApplicationStatus) {
90
- ApplicationStatus["DELETING"] = "DELETING";
91
- ApplicationStatus["READY"] = "READY";
92
- ApplicationStatus["RUNNING"] = "RUNNING";
93
- ApplicationStatus["STARTING"] = "STARTING";
94
- ApplicationStatus["STOPPING"] = "STOPPING";
95
- ApplicationStatus["UPDATING"] = "UPDATING";
96
- })(ApplicationStatus = exports.ApplicationStatus || (exports.ApplicationStatus = {}));
97
- var InputStartingPosition;
98
- (function (InputStartingPosition) {
99
- InputStartingPosition["LAST_STOPPED_POINT"] = "LAST_STOPPED_POINT";
100
- InputStartingPosition["NOW"] = "NOW";
101
- InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
102
- })(InputStartingPosition = exports.InputStartingPosition || (exports.InputStartingPosition = {}));
87
+ exports.ApplicationStatus = {
88
+ DELETING: "DELETING",
89
+ READY: "READY",
90
+ RUNNING: "RUNNING",
91
+ STARTING: "STARTING",
92
+ STOPPING: "STOPPING",
93
+ UPDATING: "UPDATING",
94
+ };
95
+ exports.InputStartingPosition = {
96
+ LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
97
+ NOW: "NOW",
98
+ TRIM_HORIZON: "TRIM_HORIZON",
99
+ };
103
100
  class LimitExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
104
101
  constructor(opts) {
105
102
  super({
@@ -59,11 +59,10 @@ export class UnsupportedOperationException extends __BaseException {
59
59
  Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
60
60
  }
61
61
  }
62
- export var RecordFormatType;
63
- (function (RecordFormatType) {
64
- RecordFormatType["CSV"] = "CSV";
65
- RecordFormatType["JSON"] = "JSON";
66
- })(RecordFormatType || (RecordFormatType = {}));
62
+ export const RecordFormatType = {
63
+ CSV: "CSV",
64
+ JSON: "JSON",
65
+ };
67
66
  export class CodeValidationException extends __BaseException {
68
67
  constructor(opts) {
69
68
  super({
@@ -76,21 +75,19 @@ export class CodeValidationException extends __BaseException {
76
75
  Object.setPrototypeOf(this, CodeValidationException.prototype);
77
76
  }
78
77
  }
79
- export var ApplicationStatus;
80
- (function (ApplicationStatus) {
81
- ApplicationStatus["DELETING"] = "DELETING";
82
- ApplicationStatus["READY"] = "READY";
83
- ApplicationStatus["RUNNING"] = "RUNNING";
84
- ApplicationStatus["STARTING"] = "STARTING";
85
- ApplicationStatus["STOPPING"] = "STOPPING";
86
- ApplicationStatus["UPDATING"] = "UPDATING";
87
- })(ApplicationStatus || (ApplicationStatus = {}));
88
- export var InputStartingPosition;
89
- (function (InputStartingPosition) {
90
- InputStartingPosition["LAST_STOPPED_POINT"] = "LAST_STOPPED_POINT";
91
- InputStartingPosition["NOW"] = "NOW";
92
- InputStartingPosition["TRIM_HORIZON"] = "TRIM_HORIZON";
93
- })(InputStartingPosition || (InputStartingPosition = {}));
78
+ export const ApplicationStatus = {
79
+ DELETING: "DELETING",
80
+ READY: "READY",
81
+ RUNNING: "RUNNING",
82
+ STARTING: "STARTING",
83
+ STOPPING: "STOPPING",
84
+ UPDATING: "UPDATING",
85
+ };
86
+ export const InputStartingPosition = {
87
+ LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
88
+ NOW: "NOW",
89
+ TRIM_HORIZON: "TRIM_HORIZON",
90
+ };
94
91
  export class LimitExceededException extends __BaseException {
95
92
  constructor(opts) {
96
93
  super({
@@ -32,10 +32,10 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
32
32
  * import { KinesisAnalyticsClient, AddApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
33
33
  * // const { KinesisAnalyticsClient, AddApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
34
34
  * const client = new KinesisAnalyticsClient(config);
35
- * const input = {
35
+ * const input = { // AddApplicationCloudWatchLoggingOptionRequest
36
36
  * ApplicationName: "STRING_VALUE", // required
37
37
  * CurrentApplicationVersionId: Number("long"), // required
38
- * CloudWatchLoggingOption: {
38
+ * CloudWatchLoggingOption: { // CloudWatchLoggingOption
39
39
  * LogStreamARN: "STRING_VALUE", // required
40
40
  * RoleARN: "STRING_VALUE", // required
41
41
  * },
@@ -42,44 +42,44 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
42
42
  * import { KinesisAnalyticsClient, AddApplicationInputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
43
43
  * // const { KinesisAnalyticsClient, AddApplicationInputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
44
44
  * const client = new KinesisAnalyticsClient(config);
45
- * const input = {
45
+ * const input = { // AddApplicationInputRequest
46
46
  * ApplicationName: "STRING_VALUE", // required
47
47
  * CurrentApplicationVersionId: Number("long"), // required
48
- * Input: {
48
+ * Input: { // Input
49
49
  * NamePrefix: "STRING_VALUE", // required
50
- * InputProcessingConfiguration: {
51
- * InputLambdaProcessor: {
50
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
51
+ * InputLambdaProcessor: { // InputLambdaProcessor
52
52
  * ResourceARN: "STRING_VALUE", // required
53
53
  * RoleARN: "STRING_VALUE", // required
54
54
  * },
55
55
  * },
56
- * KinesisStreamsInput: {
56
+ * KinesisStreamsInput: { // KinesisStreamsInput
57
57
  * ResourceARN: "STRING_VALUE", // required
58
58
  * RoleARN: "STRING_VALUE", // required
59
59
  * },
60
- * KinesisFirehoseInput: {
60
+ * KinesisFirehoseInput: { // KinesisFirehoseInput
61
61
  * ResourceARN: "STRING_VALUE", // required
62
62
  * RoleARN: "STRING_VALUE", // required
63
63
  * },
64
- * InputParallelism: {
64
+ * InputParallelism: { // InputParallelism
65
65
  * Count: Number("int"),
66
66
  * },
67
- * InputSchema: {
68
- * RecordFormat: {
67
+ * InputSchema: { // SourceSchema
68
+ * RecordFormat: { // RecordFormat
69
69
  * RecordFormatType: "STRING_VALUE", // required
70
- * MappingParameters: {
71
- * JSONMappingParameters: {
70
+ * MappingParameters: { // MappingParameters
71
+ * JSONMappingParameters: { // JSONMappingParameters
72
72
  * RecordRowPath: "STRING_VALUE", // required
73
73
  * },
74
- * CSVMappingParameters: {
74
+ * CSVMappingParameters: { // CSVMappingParameters
75
75
  * RecordRowDelimiter: "STRING_VALUE", // required
76
76
  * RecordColumnDelimiter: "STRING_VALUE", // required
77
77
  * },
78
78
  * },
79
79
  * },
80
80
  * RecordEncoding: "STRING_VALUE",
81
- * RecordColumns: [ // required
82
- * {
81
+ * RecordColumns: [ // RecordColumns // required
82
+ * { // RecordColumn
83
83
  * Name: "STRING_VALUE", // required
84
84
  * Mapping: "STRING_VALUE",
85
85
  * SqlType: "STRING_VALUE", // required
@@ -31,12 +31,12 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
31
31
  * import { KinesisAnalyticsClient, AddApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
32
32
  * // const { KinesisAnalyticsClient, AddApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
33
33
  * const client = new KinesisAnalyticsClient(config);
34
- * const input = {
34
+ * const input = { // AddApplicationInputProcessingConfigurationRequest
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * CurrentApplicationVersionId: Number("long"), // required
37
37
  * InputId: "STRING_VALUE", // required
38
- * InputProcessingConfiguration: {
39
- * InputLambdaProcessor: {
38
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
39
+ * InputLambdaProcessor: { // InputLambdaProcessor
40
40
  * ResourceARN: "STRING_VALUE", // required
41
41
  * RoleARN: "STRING_VALUE", // required
42
42
  * },
@@ -45,24 +45,24 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
45
45
  * import { KinesisAnalyticsClient, AddApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
46
46
  * // const { KinesisAnalyticsClient, AddApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
47
47
  * const client = new KinesisAnalyticsClient(config);
48
- * const input = {
48
+ * const input = { // AddApplicationOutputRequest
49
49
  * ApplicationName: "STRING_VALUE", // required
50
50
  * CurrentApplicationVersionId: Number("long"), // required
51
- * Output: {
51
+ * Output: { // Output
52
52
  * Name: "STRING_VALUE", // required
53
- * KinesisStreamsOutput: {
53
+ * KinesisStreamsOutput: { // KinesisStreamsOutput
54
54
  * ResourceARN: "STRING_VALUE", // required
55
55
  * RoleARN: "STRING_VALUE", // required
56
56
  * },
57
- * KinesisFirehoseOutput: {
57
+ * KinesisFirehoseOutput: { // KinesisFirehoseOutput
58
58
  * ResourceARN: "STRING_VALUE", // required
59
59
  * RoleARN: "STRING_VALUE", // required
60
60
  * },
61
- * LambdaOutput: {
61
+ * LambdaOutput: { // LambdaOutput
62
62
  * ResourceARN: "STRING_VALUE", // required
63
63
  * RoleARN: "STRING_VALUE", // required
64
64
  * },
65
- * DestinationSchema: {
65
+ * DestinationSchema: { // DestinationSchema
66
66
  * RecordFormatType: "STRING_VALUE", // required
67
67
  * },
68
68
  * },
@@ -39,32 +39,32 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
39
39
  * import { KinesisAnalyticsClient, AddApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
40
40
  * // const { KinesisAnalyticsClient, AddApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
41
41
  * const client = new KinesisAnalyticsClient(config);
42
- * const input = {
42
+ * const input = { // AddApplicationReferenceDataSourceRequest
43
43
  * ApplicationName: "STRING_VALUE", // required
44
44
  * CurrentApplicationVersionId: Number("long"), // required
45
- * ReferenceDataSource: {
45
+ * ReferenceDataSource: { // ReferenceDataSource
46
46
  * TableName: "STRING_VALUE", // required
47
- * S3ReferenceDataSource: {
47
+ * S3ReferenceDataSource: { // S3ReferenceDataSource
48
48
  * BucketARN: "STRING_VALUE", // required
49
49
  * FileKey: "STRING_VALUE", // required
50
50
  * ReferenceRoleARN: "STRING_VALUE", // required
51
51
  * },
52
- * ReferenceSchema: {
53
- * RecordFormat: {
52
+ * ReferenceSchema: { // SourceSchema
53
+ * RecordFormat: { // RecordFormat
54
54
  * RecordFormatType: "STRING_VALUE", // required
55
- * MappingParameters: {
56
- * JSONMappingParameters: {
55
+ * MappingParameters: { // MappingParameters
56
+ * JSONMappingParameters: { // JSONMappingParameters
57
57
  * RecordRowPath: "STRING_VALUE", // required
58
58
  * },
59
- * CSVMappingParameters: {
59
+ * CSVMappingParameters: { // CSVMappingParameters
60
60
  * RecordRowDelimiter: "STRING_VALUE", // required
61
61
  * RecordColumnDelimiter: "STRING_VALUE", // required
62
62
  * },
63
63
  * },
64
64
  * },
65
65
  * RecordEncoding: "STRING_VALUE",
66
- * RecordColumns: [ // required
67
- * {
66
+ * RecordColumns: [ // RecordColumns // required
67
+ * { // RecordColumn
68
68
  * Name: "STRING_VALUE", // required
69
69
  * Mapping: "STRING_VALUE",
70
70
  * SqlType: "STRING_VALUE", // required
@@ -52,45 +52,45 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
52
52
  * import { KinesisAnalyticsClient, CreateApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
53
53
  * // const { KinesisAnalyticsClient, CreateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
54
54
  * const client = new KinesisAnalyticsClient(config);
55
- * const input = {
55
+ * const input = { // CreateApplicationRequest
56
56
  * ApplicationName: "STRING_VALUE", // required
57
57
  * ApplicationDescription: "STRING_VALUE",
58
- * Inputs: [
59
- * {
58
+ * Inputs: [ // Inputs
59
+ * { // Input
60
60
  * NamePrefix: "STRING_VALUE", // required
61
- * InputProcessingConfiguration: {
62
- * InputLambdaProcessor: {
61
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
62
+ * InputLambdaProcessor: { // InputLambdaProcessor
63
63
  * ResourceARN: "STRING_VALUE", // required
64
64
  * RoleARN: "STRING_VALUE", // required
65
65
  * },
66
66
  * },
67
- * KinesisStreamsInput: {
67
+ * KinesisStreamsInput: { // KinesisStreamsInput
68
68
  * ResourceARN: "STRING_VALUE", // required
69
69
  * RoleARN: "STRING_VALUE", // required
70
70
  * },
71
- * KinesisFirehoseInput: {
71
+ * KinesisFirehoseInput: { // KinesisFirehoseInput
72
72
  * ResourceARN: "STRING_VALUE", // required
73
73
  * RoleARN: "STRING_VALUE", // required
74
74
  * },
75
- * InputParallelism: {
75
+ * InputParallelism: { // InputParallelism
76
76
  * Count: Number("int"),
77
77
  * },
78
- * InputSchema: {
79
- * RecordFormat: {
78
+ * InputSchema: { // SourceSchema
79
+ * RecordFormat: { // RecordFormat
80
80
  * RecordFormatType: "STRING_VALUE", // required
81
- * MappingParameters: {
82
- * JSONMappingParameters: {
81
+ * MappingParameters: { // MappingParameters
82
+ * JSONMappingParameters: { // JSONMappingParameters
83
83
  * RecordRowPath: "STRING_VALUE", // required
84
84
  * },
85
- * CSVMappingParameters: {
85
+ * CSVMappingParameters: { // CSVMappingParameters
86
86
  * RecordRowDelimiter: "STRING_VALUE", // required
87
87
  * RecordColumnDelimiter: "STRING_VALUE", // required
88
88
  * },
89
89
  * },
90
90
  * },
91
91
  * RecordEncoding: "STRING_VALUE",
92
- * RecordColumns: [ // required
93
- * {
92
+ * RecordColumns: [ // RecordColumns // required
93
+ * { // RecordColumn
94
94
  * Name: "STRING_VALUE", // required
95
95
  * Mapping: "STRING_VALUE",
96
96
  * SqlType: "STRING_VALUE", // required
@@ -99,35 +99,35 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
99
99
  * },
100
100
  * },
101
101
  * ],
102
- * Outputs: [
103
- * {
102
+ * Outputs: [ // Outputs
103
+ * { // Output
104
104
  * Name: "STRING_VALUE", // required
105
- * KinesisStreamsOutput: {
105
+ * KinesisStreamsOutput: { // KinesisStreamsOutput
106
106
  * ResourceARN: "STRING_VALUE", // required
107
107
  * RoleARN: "STRING_VALUE", // required
108
108
  * },
109
- * KinesisFirehoseOutput: {
109
+ * KinesisFirehoseOutput: { // KinesisFirehoseOutput
110
110
  * ResourceARN: "STRING_VALUE", // required
111
111
  * RoleARN: "STRING_VALUE", // required
112
112
  * },
113
- * LambdaOutput: {
113
+ * LambdaOutput: { // LambdaOutput
114
114
  * ResourceARN: "STRING_VALUE", // required
115
115
  * RoleARN: "STRING_VALUE", // required
116
116
  * },
117
- * DestinationSchema: {
117
+ * DestinationSchema: { // DestinationSchema
118
118
  * RecordFormatType: "STRING_VALUE", // required
119
119
  * },
120
120
  * },
121
121
  * ],
122
- * CloudWatchLoggingOptions: [
123
- * {
122
+ * CloudWatchLoggingOptions: [ // CloudWatchLoggingOptions
123
+ * { // CloudWatchLoggingOption
124
124
  * LogStreamARN: "STRING_VALUE", // required
125
125
  * RoleARN: "STRING_VALUE", // required
126
126
  * },
127
127
  * ],
128
128
  * ApplicationCode: "STRING_VALUE",
129
- * Tags: [
130
- * {
129
+ * Tags: [ // Tags
130
+ * { // Tag
131
131
  * Key: "STRING_VALUE", // required
132
132
  * Value: "STRING_VALUE",
133
133
  * },
@@ -31,7 +31,7 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
31
31
  * import { KinesisAnalyticsClient, DeleteApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
32
32
  * // const { KinesisAnalyticsClient, DeleteApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
33
33
  * const client = new KinesisAnalyticsClient(config);
34
- * const input = {
34
+ * const input = { // DeleteApplicationCloudWatchLoggingOptionRequest
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * CurrentApplicationVersionId: Number("long"), // required
37
37
  * CloudWatchLoggingOptionId: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
31
31
  * import { KinesisAnalyticsClient, DeleteApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
32
32
  * // const { KinesisAnalyticsClient, DeleteApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
33
33
  * const client = new KinesisAnalyticsClient(config);
34
- * const input = {
34
+ * const input = { // DeleteApplicationRequest
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * CreateTimestamp: new Date("TIMESTAMP"), // required
37
37
  * };
@@ -29,7 +29,7 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
29
29
  * import { KinesisAnalyticsClient, DeleteApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
30
30
  * // const { KinesisAnalyticsClient, DeleteApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
31
31
  * const client = new KinesisAnalyticsClient(config);
32
- * const input = {
32
+ * const input = { // DeleteApplicationInputProcessingConfigurationRequest
33
33
  * ApplicationName: "STRING_VALUE", // required
34
34
  * CurrentApplicationVersionId: Number("long"), // required
35
35
  * InputId: "STRING_VALUE", // required
@@ -31,7 +31,7 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
31
31
  * import { KinesisAnalyticsClient, DeleteApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
32
32
  * // const { KinesisAnalyticsClient, DeleteApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
33
33
  * const client = new KinesisAnalyticsClient(config);
34
- * const input = {
34
+ * const input = { // DeleteApplicationOutputRequest
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * CurrentApplicationVersionId: Number("long"), // required
37
37
  * OutputId: "STRING_VALUE", // required
@@ -34,7 +34,7 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
34
34
  * import { KinesisAnalyticsClient, DeleteApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
35
35
  * // const { KinesisAnalyticsClient, DeleteApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
36
36
  * const client = new KinesisAnalyticsClient(config);
37
- * const input = {
37
+ * const input = { // DeleteApplicationReferenceDataSourceRequest
38
38
  * ApplicationName: "STRING_VALUE", // required
39
39
  * CurrentApplicationVersionId: Number("long"), // required
40
40
  * ReferenceId: "STRING_VALUE", // required
@@ -35,7 +35,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
35
35
  * import { KinesisAnalyticsClient, DescribeApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
36
36
  * // const { KinesisAnalyticsClient, DescribeApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
37
37
  * const client = new KinesisAnalyticsClient(config);
38
- * const input = {
38
+ * const input = { // DescribeApplicationRequest
39
39
  * ApplicationName: "STRING_VALUE", // required
40
40
  * };
41
41
  * const command = new DescribeApplicationCommand(input);
@@ -40,19 +40,19 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes
40
40
  * import { KinesisAnalyticsClient, DiscoverInputSchemaCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
41
41
  * // const { KinesisAnalyticsClient, DiscoverInputSchemaCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
42
42
  * const client = new KinesisAnalyticsClient(config);
43
- * const input = {
43
+ * const input = { // DiscoverInputSchemaRequest
44
44
  * ResourceARN: "STRING_VALUE",
45
45
  * RoleARN: "STRING_VALUE",
46
- * InputStartingPositionConfiguration: {
46
+ * InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
47
47
  * InputStartingPosition: "STRING_VALUE",
48
48
  * },
49
- * S3Configuration: {
49
+ * S3Configuration: { // S3Configuration
50
50
  * RoleARN: "STRING_VALUE", // required
51
51
  * BucketARN: "STRING_VALUE", // required
52
52
  * FileKey: "STRING_VALUE", // required
53
53
  * },
54
- * InputProcessingConfiguration: {
55
- * InputLambdaProcessor: {
54
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
55
+ * InputLambdaProcessor: { // InputLambdaProcessor
56
56
  * ResourceARN: "STRING_VALUE", // required
57
57
  * RoleARN: "STRING_VALUE", // required
58
58
  * },
@@ -42,7 +42,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
42
42
  * import { KinesisAnalyticsClient, ListApplicationsCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
43
43
  * // const { KinesisAnalyticsClient, ListApplicationsCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
44
44
  * const client = new KinesisAnalyticsClient(config);
45
- * const input = {
45
+ * const input = { // ListApplicationsRequest
46
46
  * Limit: Number("int"),
47
47
  * ExclusiveStartApplicationName: "STRING_VALUE",
48
48
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { KinesisAnalyticsClient, ListTagsForResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
27
27
  * // const { KinesisAnalyticsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -37,12 +37,12 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
37
37
  * import { KinesisAnalyticsClient, StartApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
38
38
  * // const { KinesisAnalyticsClient, StartApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
39
39
  * const client = new KinesisAnalyticsClient(config);
40
- * const input = {
40
+ * const input = { // StartApplicationRequest
41
41
  * ApplicationName: "STRING_VALUE", // required
42
- * InputConfigurations: [ // required
43
- * {
42
+ * InputConfigurations: [ // InputConfigurations // required
43
+ * { // InputConfiguration
44
44
  * Id: "STRING_VALUE", // required
45
- * InputStartingPositionConfiguration: {
45
+ * InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
46
46
  * InputStartingPosition: "STRING_VALUE",
47
47
  * },
48
48
  * },
@@ -36,7 +36,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
36
36
  * import { KinesisAnalyticsClient, StopApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
37
37
  * // const { KinesisAnalyticsClient, StopApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
38
38
  * const client = new KinesisAnalyticsClient(config);
39
- * const input = {
39
+ * const input = { // StopApplicationRequest
40
40
  * ApplicationName: "STRING_VALUE", // required
41
41
  * };
42
42
  * const command = new StopApplicationCommand(input);
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
27
  * import { KinesisAnalyticsClient, TagResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
28
28
  * // const { KinesisAnalyticsClient, TagResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
29
29
  * const client = new KinesisAnalyticsClient(config);
30
- * const input = {
30
+ * const input = { // TagResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
- * Tags: [ // required
33
- * {
32
+ * Tags: [ // Tags // required
33
+ * { // Tag
34
34
  * Key: "STRING_VALUE", // required
35
35
  * Value: "STRING_VALUE",
36
36
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { KinesisAnalyticsClient, UntagResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
27
27
  * // const { KinesisAnalyticsClient, UntagResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -35,87 +35,87 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
35
35
  * import { KinesisAnalyticsClient, UpdateApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
36
36
  * // const { KinesisAnalyticsClient, UpdateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
37
37
  * const client = new KinesisAnalyticsClient(config);
38
- * const input = {
38
+ * const input = { // UpdateApplicationRequest
39
39
  * ApplicationName: "STRING_VALUE", // required
40
40
  * CurrentApplicationVersionId: Number("long"), // required
41
- * ApplicationUpdate: {
42
- * InputUpdates: [
43
- * {
41
+ * ApplicationUpdate: { // ApplicationUpdate
42
+ * InputUpdates: [ // InputUpdates
43
+ * { // InputUpdate
44
44
  * InputId: "STRING_VALUE", // required
45
45
  * NamePrefixUpdate: "STRING_VALUE",
46
- * InputProcessingConfigurationUpdate: {
47
- * InputLambdaProcessorUpdate: {
46
+ * InputProcessingConfigurationUpdate: { // InputProcessingConfigurationUpdate
47
+ * InputLambdaProcessorUpdate: { // InputLambdaProcessorUpdate
48
48
  * ResourceARNUpdate: "STRING_VALUE",
49
49
  * RoleARNUpdate: "STRING_VALUE",
50
50
  * },
51
51
  * },
52
- * KinesisStreamsInputUpdate: {
52
+ * KinesisStreamsInputUpdate: { // KinesisStreamsInputUpdate
53
53
  * ResourceARNUpdate: "STRING_VALUE",
54
54
  * RoleARNUpdate: "STRING_VALUE",
55
55
  * },
56
- * KinesisFirehoseInputUpdate: {
56
+ * KinesisFirehoseInputUpdate: { // KinesisFirehoseInputUpdate
57
57
  * ResourceARNUpdate: "STRING_VALUE",
58
58
  * RoleARNUpdate: "STRING_VALUE",
59
59
  * },
60
- * InputSchemaUpdate: {
61
- * RecordFormatUpdate: {
60
+ * InputSchemaUpdate: { // InputSchemaUpdate
61
+ * RecordFormatUpdate: { // RecordFormat
62
62
  * RecordFormatType: "STRING_VALUE", // required
63
- * MappingParameters: {
64
- * JSONMappingParameters: {
63
+ * MappingParameters: { // MappingParameters
64
+ * JSONMappingParameters: { // JSONMappingParameters
65
65
  * RecordRowPath: "STRING_VALUE", // required
66
66
  * },
67
- * CSVMappingParameters: {
67
+ * CSVMappingParameters: { // CSVMappingParameters
68
68
  * RecordRowDelimiter: "STRING_VALUE", // required
69
69
  * RecordColumnDelimiter: "STRING_VALUE", // required
70
70
  * },
71
71
  * },
72
72
  * },
73
73
  * RecordEncodingUpdate: "STRING_VALUE",
74
- * RecordColumnUpdates: [
75
- * {
74
+ * RecordColumnUpdates: [ // RecordColumns
75
+ * { // RecordColumn
76
76
  * Name: "STRING_VALUE", // required
77
77
  * Mapping: "STRING_VALUE",
78
78
  * SqlType: "STRING_VALUE", // required
79
79
  * },
80
80
  * ],
81
81
  * },
82
- * InputParallelismUpdate: {
82
+ * InputParallelismUpdate: { // InputParallelismUpdate
83
83
  * CountUpdate: Number("int"),
84
84
  * },
85
85
  * },
86
86
  * ],
87
87
  * ApplicationCodeUpdate: "STRING_VALUE",
88
- * OutputUpdates: [
89
- * {
88
+ * OutputUpdates: [ // OutputUpdates
89
+ * { // OutputUpdate
90
90
  * OutputId: "STRING_VALUE", // required
91
91
  * NameUpdate: "STRING_VALUE",
92
- * KinesisStreamsOutputUpdate: {
92
+ * KinesisStreamsOutputUpdate: { // KinesisStreamsOutputUpdate
93
93
  * ResourceARNUpdate: "STRING_VALUE",
94
94
  * RoleARNUpdate: "STRING_VALUE",
95
95
  * },
96
- * KinesisFirehoseOutputUpdate: {
96
+ * KinesisFirehoseOutputUpdate: { // KinesisFirehoseOutputUpdate
97
97
  * ResourceARNUpdate: "STRING_VALUE",
98
98
  * RoleARNUpdate: "STRING_VALUE",
99
99
  * },
100
- * LambdaOutputUpdate: {
100
+ * LambdaOutputUpdate: { // LambdaOutputUpdate
101
101
  * ResourceARNUpdate: "STRING_VALUE",
102
102
  * RoleARNUpdate: "STRING_VALUE",
103
103
  * },
104
- * DestinationSchemaUpdate: {
104
+ * DestinationSchemaUpdate: { // DestinationSchema
105
105
  * RecordFormatType: "STRING_VALUE", // required
106
106
  * },
107
107
  * },
108
108
  * ],
109
- * ReferenceDataSourceUpdates: [
110
- * {
109
+ * ReferenceDataSourceUpdates: [ // ReferenceDataSourceUpdates
110
+ * { // ReferenceDataSourceUpdate
111
111
  * ReferenceId: "STRING_VALUE", // required
112
112
  * TableNameUpdate: "STRING_VALUE",
113
- * S3ReferenceDataSourceUpdate: {
113
+ * S3ReferenceDataSourceUpdate: { // S3ReferenceDataSourceUpdate
114
114
  * BucketARNUpdate: "STRING_VALUE",
115
115
  * FileKeyUpdate: "STRING_VALUE",
116
116
  * ReferenceRoleARNUpdate: "STRING_VALUE",
117
117
  * },
118
- * ReferenceSchemaUpdate: {
118
+ * ReferenceSchemaUpdate: { // SourceSchema
119
119
  * RecordFormat: {
120
120
  * RecordFormatType: "STRING_VALUE", // required
121
121
  * MappingParameters: {
@@ -139,8 +139,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
139
139
  * },
140
140
  * },
141
141
  * ],
142
- * CloudWatchLoggingOptionUpdates: [
143
- * {
142
+ * CloudWatchLoggingOptionUpdates: [ // CloudWatchLoggingOptionUpdates
143
+ * { // CloudWatchLoggingOptionUpdate
144
144
  * CloudWatchLoggingOptionId: "STRING_VALUE", // required
145
145
  * LogStreamARNUpdate: "STRING_VALUE",
146
146
  * RoleARNUpdate: "STRING_VALUE",
@@ -227,11 +227,16 @@ export interface MappingParameters {
227
227
  }
228
228
  /**
229
229
  * @public
230
+ * @enum
230
231
  */
231
- export declare enum RecordFormatType {
232
- CSV = "CSV",
233
- JSON = "JSON"
234
- }
232
+ export declare const RecordFormatType: {
233
+ readonly CSV: "CSV";
234
+ readonly JSON: "JSON";
235
+ };
236
+ /**
237
+ * @public
238
+ */
239
+ export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType];
235
240
  /**
236
241
  * @public
237
242
  * <p>
@@ -622,15 +627,20 @@ export interface AddApplicationReferenceDataSourceResponse {
622
627
  }
623
628
  /**
624
629
  * @public
630
+ * @enum
625
631
  */
626
- export declare enum ApplicationStatus {
627
- DELETING = "DELETING",
628
- READY = "READY",
629
- RUNNING = "RUNNING",
630
- STARTING = "STARTING",
631
- STOPPING = "STOPPING",
632
- UPDATING = "UPDATING"
633
- }
632
+ export declare const ApplicationStatus: {
633
+ readonly DELETING: "DELETING";
634
+ readonly READY: "READY";
635
+ readonly RUNNING: "RUNNING";
636
+ readonly STARTING: "STARTING";
637
+ readonly STOPPING: "STOPPING";
638
+ readonly UPDATING: "UPDATING";
639
+ };
640
+ /**
641
+ * @public
642
+ */
643
+ export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
634
644
  /**
635
645
  * @public
636
646
  * <p>Description of the CloudWatch logging option.</p>
@@ -678,12 +688,17 @@ export interface InputProcessingConfigurationDescription {
678
688
  }
679
689
  /**
680
690
  * @public
691
+ * @enum
681
692
  */
682
- export declare enum InputStartingPosition {
683
- LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
684
- NOW = "NOW",
685
- TRIM_HORIZON = "TRIM_HORIZON"
686
- }
693
+ export declare const InputStartingPosition: {
694
+ readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
695
+ readonly NOW: "NOW";
696
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
697
+ };
698
+ /**
699
+ * @public
700
+ */
701
+ export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
687
702
  /**
688
703
  * @public
689
704
  * <p>Describes the point at which the application reads from
@@ -74,10 +74,12 @@ export interface MappingParameters {
74
74
  JSONMappingParameters?: JSONMappingParameters;
75
75
  CSVMappingParameters?: CSVMappingParameters;
76
76
  }
77
- export declare enum RecordFormatType {
78
- CSV = "CSV",
79
- JSON = "JSON",
80
- }
77
+ export declare const RecordFormatType: {
78
+ readonly CSV: "CSV";
79
+ readonly JSON: "JSON";
80
+ };
81
+ export type RecordFormatType =
82
+ (typeof RecordFormatType)[keyof typeof RecordFormatType];
81
83
  export interface RecordFormat {
82
84
  RecordFormatType: RecordFormatType | string | undefined;
83
85
  MappingParameters?: MappingParameters;
@@ -167,14 +169,16 @@ export interface AddApplicationReferenceDataSourceRequest {
167
169
  ReferenceDataSource: ReferenceDataSource | undefined;
168
170
  }
169
171
  export interface AddApplicationReferenceDataSourceResponse {}
170
- export declare enum ApplicationStatus {
171
- DELETING = "DELETING",
172
- READY = "READY",
173
- RUNNING = "RUNNING",
174
- STARTING = "STARTING",
175
- STOPPING = "STOPPING",
176
- UPDATING = "UPDATING",
177
- }
172
+ export declare const ApplicationStatus: {
173
+ readonly DELETING: "DELETING";
174
+ readonly READY: "READY";
175
+ readonly RUNNING: "RUNNING";
176
+ readonly STARTING: "STARTING";
177
+ readonly STOPPING: "STOPPING";
178
+ readonly UPDATING: "UPDATING";
179
+ };
180
+ export type ApplicationStatus =
181
+ (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
178
182
  export interface CloudWatchLoggingOptionDescription {
179
183
  CloudWatchLoggingOptionId?: string;
180
184
  LogStreamARN: string | undefined;
@@ -187,11 +191,13 @@ export interface InputLambdaProcessorDescription {
187
191
  export interface InputProcessingConfigurationDescription {
188
192
  InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
189
193
  }
190
- export declare enum InputStartingPosition {
191
- LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
192
- NOW = "NOW",
193
- TRIM_HORIZON = "TRIM_HORIZON",
194
- }
194
+ export declare const InputStartingPosition: {
195
+ readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
196
+ readonly NOW: "NOW";
197
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
198
+ };
199
+ export type InputStartingPosition =
200
+ (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
195
201
  export interface InputStartingPositionConfiguration {
196
202
  InputStartingPosition?: InputStartingPosition | string;
197
203
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-analytics",
3
3
  "description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",