@aws-sdk/client-kinesis-analytics-v2 3.300.0 → 3.301.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 (32) hide show
  1. package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +2 -2
  2. package/dist-types/commands/AddApplicationInputCommand.d.ts +14 -14
  3. package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +3 -3
  4. package/dist-types/commands/AddApplicationOutputCommand.d.ts +6 -6
  5. package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +10 -10
  6. package/dist-types/commands/AddApplicationVpcConfigurationCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateApplicationCommand.d.ts +55 -55
  8. package/dist-types/commands/CreateApplicationPresignedUrlCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateApplicationSnapshotCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteApplicationSnapshotCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteApplicationVpcConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeApplicationCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeApplicationSnapshotCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeApplicationVersionCommand.d.ts +1 -1
  20. package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +5 -5
  21. package/dist-types/commands/ListApplicationSnapshotsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListApplicationVersionsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  25. package/dist-types/commands/RollbackApplicationCommand.d.ts +1 -1
  26. package/dist-types/commands/StartApplicationCommand.d.ts +7 -7
  27. package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
  28. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  29. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  30. package/dist-types/commands/UpdateApplicationCommand.d.ts +58 -58
  31. package/dist-types/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +2 -2
  32. package/package.json +3 -3
@@ -26,10 +26,10 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
26
26
  * import { KinesisAnalyticsV2Client, AddApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, AddApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // AddApplicationCloudWatchLoggingOptionRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * CurrentApplicationVersionId: Number("long"),
32
- * CloudWatchLoggingOption: {
32
+ * CloudWatchLoggingOption: { // CloudWatchLoggingOption
33
33
  * LogStreamARN: "STRING_VALUE", // required
34
34
  * },
35
35
  * ConditionalToken: "STRING_VALUE",
@@ -35,41 +35,41 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
35
35
  * import { KinesisAnalyticsV2Client, AddApplicationInputCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
36
36
  * // const { KinesisAnalyticsV2Client, AddApplicationInputCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
37
37
  * const client = new KinesisAnalyticsV2Client(config);
38
- * const input = {
38
+ * const input = { // AddApplicationInputRequest
39
39
  * ApplicationName: "STRING_VALUE", // required
40
40
  * CurrentApplicationVersionId: Number("long"), // required
41
- * Input: {
41
+ * Input: { // Input
42
42
  * NamePrefix: "STRING_VALUE", // required
43
- * InputProcessingConfiguration: {
44
- * InputLambdaProcessor: {
43
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
44
+ * InputLambdaProcessor: { // InputLambdaProcessor
45
45
  * ResourceARN: "STRING_VALUE", // required
46
46
  * },
47
47
  * },
48
- * KinesisStreamsInput: {
48
+ * KinesisStreamsInput: { // KinesisStreamsInput
49
49
  * ResourceARN: "STRING_VALUE", // required
50
50
  * },
51
- * KinesisFirehoseInput: {
51
+ * KinesisFirehoseInput: { // KinesisFirehoseInput
52
52
  * ResourceARN: "STRING_VALUE", // required
53
53
  * },
54
- * InputParallelism: {
54
+ * InputParallelism: { // InputParallelism
55
55
  * Count: Number("int"),
56
56
  * },
57
- * InputSchema: {
58
- * RecordFormat: {
57
+ * InputSchema: { // SourceSchema
58
+ * RecordFormat: { // RecordFormat
59
59
  * RecordFormatType: "JSON" || "CSV", // required
60
- * MappingParameters: {
61
- * JSONMappingParameters: {
60
+ * MappingParameters: { // MappingParameters
61
+ * JSONMappingParameters: { // JSONMappingParameters
62
62
  * RecordRowPath: "STRING_VALUE", // required
63
63
  * },
64
- * CSVMappingParameters: {
64
+ * CSVMappingParameters: { // CSVMappingParameters
65
65
  * RecordRowDelimiter: "STRING_VALUE", // required
66
66
  * RecordColumnDelimiter: "STRING_VALUE", // required
67
67
  * },
68
68
  * },
69
69
  * },
70
70
  * RecordEncoding: "STRING_VALUE",
71
- * RecordColumns: [ // required
72
- * {
71
+ * RecordColumns: [ // RecordColumns // required
72
+ * { // RecordColumn
73
73
  * Name: "STRING_VALUE", // required
74
74
  * Mapping: "STRING_VALUE",
75
75
  * SqlType: "STRING_VALUE", // required
@@ -28,12 +28,12 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
28
28
  * import { KinesisAnalyticsV2Client, AddApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, AddApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // AddApplicationInputProcessingConfigurationRequest
32
32
  * ApplicationName: "STRING_VALUE", // required
33
33
  * CurrentApplicationVersionId: Number("long"), // required
34
34
  * InputId: "STRING_VALUE", // required
35
- * InputProcessingConfiguration: {
36
- * InputLambdaProcessor: {
35
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
36
+ * InputLambdaProcessor: { // InputLambdaProcessor
37
37
  * ResourceARN: "STRING_VALUE", // required
38
38
  * },
39
39
  * },
@@ -38,21 +38,21 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
38
38
  * import { KinesisAnalyticsV2Client, AddApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
39
39
  * // const { KinesisAnalyticsV2Client, AddApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
40
40
  * const client = new KinesisAnalyticsV2Client(config);
41
- * const input = {
41
+ * const input = { // AddApplicationOutputRequest
42
42
  * ApplicationName: "STRING_VALUE", // required
43
43
  * CurrentApplicationVersionId: Number("long"), // required
44
- * Output: {
44
+ * Output: { // Output
45
45
  * Name: "STRING_VALUE", // required
46
- * KinesisStreamsOutput: {
46
+ * KinesisStreamsOutput: { // KinesisStreamsOutput
47
47
  * ResourceARN: "STRING_VALUE", // required
48
48
  * },
49
- * KinesisFirehoseOutput: {
49
+ * KinesisFirehoseOutput: { // KinesisFirehoseOutput
50
50
  * ResourceARN: "STRING_VALUE", // required
51
51
  * },
52
- * LambdaOutput: {
52
+ * LambdaOutput: { // LambdaOutput
53
53
  * ResourceARN: "STRING_VALUE", // required
54
54
  * },
55
- * DestinationSchema: {
55
+ * DestinationSchema: { // DestinationSchema
56
56
  * RecordFormatType: "JSON" || "CSV", // required
57
57
  * },
58
58
  * },
@@ -31,31 +31,31 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
31
31
  * import { KinesisAnalyticsV2Client, AddApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
32
32
  * // const { KinesisAnalyticsV2Client, AddApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
33
33
  * const client = new KinesisAnalyticsV2Client(config);
34
- * const input = {
34
+ * const input = { // AddApplicationReferenceDataSourceRequest
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * CurrentApplicationVersionId: Number("long"), // required
37
- * ReferenceDataSource: {
37
+ * ReferenceDataSource: { // ReferenceDataSource
38
38
  * TableName: "STRING_VALUE", // required
39
- * S3ReferenceDataSource: {
39
+ * S3ReferenceDataSource: { // S3ReferenceDataSource
40
40
  * BucketARN: "STRING_VALUE",
41
41
  * FileKey: "STRING_VALUE",
42
42
  * },
43
- * ReferenceSchema: {
44
- * RecordFormat: {
43
+ * ReferenceSchema: { // SourceSchema
44
+ * RecordFormat: { // RecordFormat
45
45
  * RecordFormatType: "JSON" || "CSV", // required
46
- * MappingParameters: {
47
- * JSONMappingParameters: {
46
+ * MappingParameters: { // MappingParameters
47
+ * JSONMappingParameters: { // JSONMappingParameters
48
48
  * RecordRowPath: "STRING_VALUE", // required
49
49
  * },
50
- * CSVMappingParameters: {
50
+ * CSVMappingParameters: { // CSVMappingParameters
51
51
  * RecordRowDelimiter: "STRING_VALUE", // required
52
52
  * RecordColumnDelimiter: "STRING_VALUE", // required
53
53
  * },
54
54
  * },
55
55
  * },
56
56
  * RecordEncoding: "STRING_VALUE",
57
- * RecordColumns: [ // required
58
- * {
57
+ * RecordColumns: [ // RecordColumns // required
58
+ * { // RecordColumn
59
59
  * Name: "STRING_VALUE", // required
60
60
  * Mapping: "STRING_VALUE",
61
61
  * SqlType: "STRING_VALUE", // required
@@ -37,14 +37,14 @@ export interface AddApplicationVpcConfigurationCommandOutput extends AddApplicat
37
37
  * import { KinesisAnalyticsV2Client, AddApplicationVpcConfigurationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
38
38
  * // const { KinesisAnalyticsV2Client, AddApplicationVpcConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
39
39
  * const client = new KinesisAnalyticsV2Client(config);
40
- * const input = {
40
+ * const input = { // AddApplicationVpcConfigurationRequest
41
41
  * ApplicationName: "STRING_VALUE", // required
42
42
  * CurrentApplicationVersionId: Number("long"),
43
- * VpcConfiguration: {
44
- * SubnetIds: [ // required
43
+ * VpcConfiguration: { // VpcConfiguration
44
+ * SubnetIds: [ // SubnetIds // required
45
45
  * "STRING_VALUE",
46
46
  * ],
47
- * SecurityGroupIds: [ // required
47
+ * SecurityGroupIds: [ // SecurityGroupIds // required
48
48
  * "STRING_VALUE",
49
49
  * ],
50
50
  * },
@@ -28,46 +28,46 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
28
28
  * import { KinesisAnalyticsV2Client, CreateApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, CreateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // CreateApplicationRequest
32
32
  * ApplicationName: "STRING_VALUE", // required
33
33
  * ApplicationDescription: "STRING_VALUE",
34
34
  * RuntimeEnvironment: "SQL-1_0" || "FLINK-1_6" || "FLINK-1_8" || "ZEPPELIN-FLINK-1_0" || "FLINK-1_11" || "FLINK-1_13" || "ZEPPELIN-FLINK-2_0" || "FLINK-1_15", // required
35
35
  * ServiceExecutionRole: "STRING_VALUE", // required
36
- * ApplicationConfiguration: {
37
- * SqlApplicationConfiguration: {
38
- * Inputs: [
39
- * {
36
+ * ApplicationConfiguration: { // ApplicationConfiguration
37
+ * SqlApplicationConfiguration: { // SqlApplicationConfiguration
38
+ * Inputs: [ // Inputs
39
+ * { // Input
40
40
  * NamePrefix: "STRING_VALUE", // required
41
- * InputProcessingConfiguration: {
42
- * InputLambdaProcessor: {
41
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
42
+ * InputLambdaProcessor: { // InputLambdaProcessor
43
43
  * ResourceARN: "STRING_VALUE", // required
44
44
  * },
45
45
  * },
46
- * KinesisStreamsInput: {
46
+ * KinesisStreamsInput: { // KinesisStreamsInput
47
47
  * ResourceARN: "STRING_VALUE", // required
48
48
  * },
49
- * KinesisFirehoseInput: {
49
+ * KinesisFirehoseInput: { // KinesisFirehoseInput
50
50
  * ResourceARN: "STRING_VALUE", // required
51
51
  * },
52
- * InputParallelism: {
52
+ * InputParallelism: { // InputParallelism
53
53
  * Count: Number("int"),
54
54
  * },
55
- * InputSchema: {
56
- * RecordFormat: {
55
+ * InputSchema: { // SourceSchema
56
+ * RecordFormat: { // RecordFormat
57
57
  * RecordFormatType: "JSON" || "CSV", // required
58
- * MappingParameters: {
59
- * JSONMappingParameters: {
58
+ * MappingParameters: { // MappingParameters
59
+ * JSONMappingParameters: { // JSONMappingParameters
60
60
  * RecordRowPath: "STRING_VALUE", // required
61
61
  * },
62
- * CSVMappingParameters: {
62
+ * CSVMappingParameters: { // CSVMappingParameters
63
63
  * RecordRowDelimiter: "STRING_VALUE", // required
64
64
  * RecordColumnDelimiter: "STRING_VALUE", // required
65
65
  * },
66
66
  * },
67
67
  * },
68
68
  * RecordEncoding: "STRING_VALUE",
69
- * RecordColumns: [ // required
70
- * {
69
+ * RecordColumns: [ // RecordColumns // required
70
+ * { // RecordColumn
71
71
  * Name: "STRING_VALUE", // required
72
72
  * Mapping: "STRING_VALUE",
73
73
  * SqlType: "STRING_VALUE", // required
@@ -76,27 +76,27 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
76
76
  * },
77
77
  * },
78
78
  * ],
79
- * Outputs: [
80
- * {
79
+ * Outputs: [ // Outputs
80
+ * { // Output
81
81
  * Name: "STRING_VALUE", // required
82
- * KinesisStreamsOutput: {
82
+ * KinesisStreamsOutput: { // KinesisStreamsOutput
83
83
  * ResourceARN: "STRING_VALUE", // required
84
84
  * },
85
- * KinesisFirehoseOutput: {
85
+ * KinesisFirehoseOutput: { // KinesisFirehoseOutput
86
86
  * ResourceARN: "STRING_VALUE", // required
87
87
  * },
88
- * LambdaOutput: {
88
+ * LambdaOutput: { // LambdaOutput
89
89
  * ResourceARN: "STRING_VALUE", // required
90
90
  * },
91
- * DestinationSchema: {
91
+ * DestinationSchema: { // DestinationSchema
92
92
  * RecordFormatType: "JSON" || "CSV", // required
93
93
  * },
94
94
  * },
95
95
  * ],
96
- * ReferenceDataSources: [
97
- * {
96
+ * ReferenceDataSources: [ // ReferenceDataSources
97
+ * { // ReferenceDataSource
98
98
  * TableName: "STRING_VALUE", // required
99
- * S3ReferenceDataSource: {
99
+ * S3ReferenceDataSource: { // S3ReferenceDataSource
100
100
  * BucketARN: "STRING_VALUE",
101
101
  * FileKey: "STRING_VALUE",
102
102
  * },
@@ -125,40 +125,40 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
125
125
  * },
126
126
  * ],
127
127
  * },
128
- * FlinkApplicationConfiguration: {
129
- * CheckpointConfiguration: {
128
+ * FlinkApplicationConfiguration: { // FlinkApplicationConfiguration
129
+ * CheckpointConfiguration: { // CheckpointConfiguration
130
130
  * ConfigurationType: "DEFAULT" || "CUSTOM", // required
131
131
  * CheckpointingEnabled: true || false,
132
132
  * CheckpointInterval: Number("long"),
133
133
  * MinPauseBetweenCheckpoints: Number("long"),
134
134
  * },
135
- * MonitoringConfiguration: {
135
+ * MonitoringConfiguration: { // MonitoringConfiguration
136
136
  * ConfigurationType: "DEFAULT" || "CUSTOM", // required
137
137
  * MetricsLevel: "APPLICATION" || "TASK" || "OPERATOR" || "PARALLELISM",
138
138
  * LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG",
139
139
  * },
140
- * ParallelismConfiguration: {
140
+ * ParallelismConfiguration: { // ParallelismConfiguration
141
141
  * ConfigurationType: "DEFAULT" || "CUSTOM", // required
142
142
  * Parallelism: Number("int"),
143
143
  * ParallelismPerKPU: Number("int"),
144
144
  * AutoScalingEnabled: true || false,
145
145
  * },
146
146
  * },
147
- * EnvironmentProperties: {
148
- * PropertyGroups: [ // required
149
- * {
147
+ * EnvironmentProperties: { // EnvironmentProperties
148
+ * PropertyGroups: [ // PropertyGroups // required
149
+ * { // PropertyGroup
150
150
  * PropertyGroupId: "STRING_VALUE", // required
151
- * PropertyMap: { // required
151
+ * PropertyMap: { // PropertyMap // required
152
152
  * "<keys>": "STRING_VALUE",
153
153
  * },
154
154
  * },
155
155
  * ],
156
156
  * },
157
- * ApplicationCodeConfiguration: {
158
- * CodeContent: {
157
+ * ApplicationCodeConfiguration: { // ApplicationCodeConfiguration
158
+ * CodeContent: { // CodeContent
159
159
  * TextContent: "STRING_VALUE",
160
160
  * ZipFileContent: "BLOB_VALUE",
161
- * S3ContentLocation: {
161
+ * S3ContentLocation: { // S3ContentLocation
162
162
  * BucketARN: "STRING_VALUE", // required
163
163
  * FileKey: "STRING_VALUE", // required
164
164
  * ObjectVersion: "STRING_VALUE",
@@ -166,43 +166,43 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
166
166
  * },
167
167
  * CodeContentType: "PLAINTEXT" || "ZIPFILE", // required
168
168
  * },
169
- * ApplicationSnapshotConfiguration: {
169
+ * ApplicationSnapshotConfiguration: { // ApplicationSnapshotConfiguration
170
170
  * SnapshotsEnabled: true || false, // required
171
171
  * },
172
- * VpcConfigurations: [
173
- * {
174
- * SubnetIds: [ // required
172
+ * VpcConfigurations: [ // VpcConfigurations
173
+ * { // VpcConfiguration
174
+ * SubnetIds: [ // SubnetIds // required
175
175
  * "STRING_VALUE",
176
176
  * ],
177
- * SecurityGroupIds: [ // required
177
+ * SecurityGroupIds: [ // SecurityGroupIds // required
178
178
  * "STRING_VALUE",
179
179
  * ],
180
180
  * },
181
181
  * ],
182
- * ZeppelinApplicationConfiguration: {
183
- * MonitoringConfiguration: {
182
+ * ZeppelinApplicationConfiguration: { // ZeppelinApplicationConfiguration
183
+ * MonitoringConfiguration: { // ZeppelinMonitoringConfiguration
184
184
  * LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG", // required
185
185
  * },
186
- * CatalogConfiguration: {
187
- * GlueDataCatalogConfiguration: {
186
+ * CatalogConfiguration: { // CatalogConfiguration
187
+ * GlueDataCatalogConfiguration: { // GlueDataCatalogConfiguration
188
188
  * DatabaseARN: "STRING_VALUE", // required
189
189
  * },
190
190
  * },
191
- * DeployAsApplicationConfiguration: {
192
- * S3ContentLocation: {
191
+ * DeployAsApplicationConfiguration: { // DeployAsApplicationConfiguration
192
+ * S3ContentLocation: { // S3ContentBaseLocation
193
193
  * BucketARN: "STRING_VALUE", // required
194
194
  * BasePath: "STRING_VALUE",
195
195
  * },
196
196
  * },
197
- * CustomArtifactsConfiguration: [
198
- * {
197
+ * CustomArtifactsConfiguration: [ // CustomArtifactsConfigurationList
198
+ * { // CustomArtifactConfiguration
199
199
  * ArtifactType: "UDF" || "DEPENDENCY_JAR", // required
200
200
  * S3ContentLocation: {
201
201
  * BucketARN: "STRING_VALUE", // required
202
202
  * FileKey: "STRING_VALUE", // required
203
203
  * ObjectVersion: "STRING_VALUE",
204
204
  * },
205
- * MavenReference: {
205
+ * MavenReference: { // MavenReference
206
206
  * GroupId: "STRING_VALUE", // required
207
207
  * ArtifactId: "STRING_VALUE", // required
208
208
  * Version: "STRING_VALUE", // required
@@ -211,13 +211,13 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
211
211
  * ],
212
212
  * },
213
213
  * },
214
- * CloudWatchLoggingOptions: [
215
- * {
214
+ * CloudWatchLoggingOptions: [ // CloudWatchLoggingOptions
215
+ * { // CloudWatchLoggingOption
216
216
  * LogStreamARN: "STRING_VALUE", // required
217
217
  * },
218
218
  * ],
219
- * Tags: [
220
- * {
219
+ * Tags: [ // Tags
220
+ * { // Tag
221
221
  * Key: "STRING_VALUE", // required
222
222
  * Value: "STRING_VALUE",
223
223
  * },
@@ -38,7 +38,7 @@ export interface CreateApplicationPresignedUrlCommandOutput extends CreateApplic
38
38
  * import { KinesisAnalyticsV2Client, CreateApplicationPresignedUrlCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
39
39
  * // const { KinesisAnalyticsV2Client, CreateApplicationPresignedUrlCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
40
40
  * const client = new KinesisAnalyticsV2Client(config);
41
- * const input = {
41
+ * const input = { // CreateApplicationPresignedUrlRequest
42
42
  * ApplicationName: "STRING_VALUE", // required
43
43
  * UrlType: "FLINK_DASHBOARD_URL" || "ZEPPELIN_UI_URL", // required
44
44
  * SessionExpirationDurationInSeconds: Number("long"),
@@ -26,7 +26,7 @@ export interface CreateApplicationSnapshotCommandOutput extends CreateApplicatio
26
26
  * import { KinesisAnalyticsV2Client, CreateApplicationSnapshotCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, CreateApplicationSnapshotCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // CreateApplicationSnapshotRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * SnapshotName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
26
26
  * import { KinesisAnalyticsV2Client, DeleteApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DeleteApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationCloudWatchLoggingOptionRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * CurrentApplicationVersionId: Number("long"),
32
32
  * CloudWatchLoggingOptionId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
26
26
  * import { KinesisAnalyticsV2Client, DeleteApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DeleteApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * CreateTimestamp: new Date("TIMESTAMP"), // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
26
26
  * import { KinesisAnalyticsV2Client, DeleteApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DeleteApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationInputProcessingConfigurationRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * CurrentApplicationVersionId: Number("long"), // required
32
32
  * InputId: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
28
28
  * import { KinesisAnalyticsV2Client, DeleteApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, DeleteApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // DeleteApplicationOutputRequest
32
32
  * ApplicationName: "STRING_VALUE", // required
33
33
  * CurrentApplicationVersionId: Number("long"), // required
34
34
  * OutputId: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
28
28
  * import { KinesisAnalyticsV2Client, DeleteApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, DeleteApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // DeleteApplicationReferenceDataSourceRequest
32
32
  * ApplicationName: "STRING_VALUE", // required
33
33
  * CurrentApplicationVersionId: Number("long"), // required
34
34
  * ReferenceId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteApplicationSnapshotCommandOutput extends DeleteApplicatio
26
26
  * import { KinesisAnalyticsV2Client, DeleteApplicationSnapshotCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DeleteApplicationSnapshotCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationSnapshotRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * SnapshotName: "STRING_VALUE", // required
32
32
  * SnapshotCreationTimestamp: new Date("TIMESTAMP"), // required
@@ -26,7 +26,7 @@ export interface DeleteApplicationVpcConfigurationCommandOutput extends DeleteAp
26
26
  * import { KinesisAnalyticsV2Client, DeleteApplicationVpcConfigurationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DeleteApplicationVpcConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationVpcConfigurationRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * CurrentApplicationVersionId: Number("long"),
32
32
  * VpcConfigurationId: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
28
28
  * import { KinesisAnalyticsV2Client, DescribeApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, DescribeApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // DescribeApplicationRequest
32
32
  * ApplicationName: "STRING_VALUE", // required
33
33
  * IncludeAdditionalDetails: true || false,
34
34
  * };
@@ -26,7 +26,7 @@ export interface DescribeApplicationSnapshotCommandOutput extends DescribeApplic
26
26
  * import { KinesisAnalyticsV2Client, DescribeApplicationSnapshotCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, DescribeApplicationSnapshotCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // DescribeApplicationSnapshotRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * SnapshotName: "STRING_VALUE", // required
32
32
  * };
@@ -29,7 +29,7 @@ export interface DescribeApplicationVersionCommandOutput extends DescribeApplica
29
29
  * import { KinesisAnalyticsV2Client, DescribeApplicationVersionCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
30
30
  * // const { KinesisAnalyticsV2Client, DescribeApplicationVersionCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
31
31
  * const client = new KinesisAnalyticsV2Client(config);
32
- * const input = {
32
+ * const input = { // DescribeApplicationVersionRequest
33
33
  * ApplicationName: "STRING_VALUE", // required
34
34
  * ApplicationVersionId: Number("long"), // required
35
35
  * };
@@ -32,18 +32,18 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes
32
32
  * import { KinesisAnalyticsV2Client, DiscoverInputSchemaCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
33
33
  * // const { KinesisAnalyticsV2Client, DiscoverInputSchemaCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
34
34
  * const client = new KinesisAnalyticsV2Client(config);
35
- * const input = {
35
+ * const input = { // DiscoverInputSchemaRequest
36
36
  * ResourceARN: "STRING_VALUE",
37
37
  * ServiceExecutionRole: "STRING_VALUE", // required
38
- * InputStartingPositionConfiguration: {
38
+ * InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
39
39
  * InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
40
40
  * },
41
- * S3Configuration: {
41
+ * S3Configuration: { // S3Configuration
42
42
  * BucketARN: "STRING_VALUE", // required
43
43
  * FileKey: "STRING_VALUE", // required
44
44
  * },
45
- * InputProcessingConfiguration: {
46
- * InputLambdaProcessor: {
45
+ * InputProcessingConfiguration: { // InputProcessingConfiguration
46
+ * InputLambdaProcessor: { // InputLambdaProcessor
47
47
  * ResourceARN: "STRING_VALUE", // required
48
48
  * },
49
49
  * },
@@ -26,7 +26,7 @@ export interface ListApplicationSnapshotsCommandOutput extends ListApplicationSn
26
26
  * import { KinesisAnalyticsV2Client, ListApplicationSnapshotsCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
27
27
  * // const { KinesisAnalyticsV2Client, ListApplicationSnapshotsCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
28
28
  * const client = new KinesisAnalyticsV2Client(config);
29
- * const input = {
29
+ * const input = { // ListApplicationSnapshotsRequest
30
30
  * ApplicationName: "STRING_VALUE", // required
31
31
  * Limit: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -32,7 +32,7 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
32
32
  * import { KinesisAnalyticsV2Client, ListApplicationVersionsCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
33
33
  * // const { KinesisAnalyticsV2Client, ListApplicationVersionsCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
34
34
  * const client = new KinesisAnalyticsV2Client(config);
35
- * const input = {
35
+ * const input = { // ListApplicationVersionsRequest
36
36
  * ApplicationName: "STRING_VALUE", // required
37
37
  * Limit: Number("int"),
38
38
  * NextToken: "STRING_VALUE",
@@ -30,7 +30,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
30
30
  * import { KinesisAnalyticsV2Client, ListApplicationsCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
31
31
  * // const { KinesisAnalyticsV2Client, ListApplicationsCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
32
32
  * const client = new KinesisAnalyticsV2Client(config);
33
- * const input = {
33
+ * const input = { // ListApplicationsRequest
34
34
  * Limit: Number("int"),
35
35
  * NextToken: "STRING_VALUE",
36
36
  * };
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
27
  * import { KinesisAnalyticsV2Client, ListTagsForResourceCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
28
28
  * // const { KinesisAnalyticsV2Client, ListTagsForResourceCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
29
29
  * const client = new KinesisAnalyticsV2Client(config);
30
- * const input = {
30
+ * const input = { // ListTagsForResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
@@ -32,7 +32,7 @@ export interface RollbackApplicationCommandOutput extends RollbackApplicationRes
32
32
  * import { KinesisAnalyticsV2Client, RollbackApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
33
33
  * // const { KinesisAnalyticsV2Client, RollbackApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
34
34
  * const client = new KinesisAnalyticsV2Client(config);
35
- * const input = {
35
+ * const input = { // RollbackApplicationRequest
36
36
  * ApplicationName: "STRING_VALUE", // required
37
37
  * CurrentApplicationVersionId: Number("long"), // required
38
38
  * };
@@ -27,21 +27,21 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
27
27
  * import { KinesisAnalyticsV2Client, StartApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
28
28
  * // const { KinesisAnalyticsV2Client, StartApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
29
29
  * const client = new KinesisAnalyticsV2Client(config);
30
- * const input = {
30
+ * const input = { // StartApplicationRequest
31
31
  * ApplicationName: "STRING_VALUE", // required
32
- * RunConfiguration: {
33
- * FlinkRunConfiguration: {
32
+ * RunConfiguration: { // RunConfiguration
33
+ * FlinkRunConfiguration: { // FlinkRunConfiguration
34
34
  * AllowNonRestoredState: true || false,
35
35
  * },
36
- * SqlRunConfigurations: [
37
- * {
36
+ * SqlRunConfigurations: [ // SqlRunConfigurations
37
+ * { // SqlRunConfiguration
38
38
  * InputId: "STRING_VALUE", // required
39
- * InputStartingPositionConfiguration: {
39
+ * InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
40
40
  * InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
41
41
  * },
42
42
  * },
43
43
  * ],
44
- * ApplicationRestoreConfiguration: {
44
+ * ApplicationRestoreConfiguration: { // ApplicationRestoreConfiguration
45
45
  * ApplicationRestoreType: "SKIP_RESTORE_FROM_SNAPSHOT" || "RESTORE_FROM_LATEST_SNAPSHOT" || "RESTORE_FROM_CUSTOM_SNAPSHOT", // required
46
46
  * SnapshotName: "STRING_VALUE",
47
47
  * },
@@ -32,7 +32,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
32
32
  * import { KinesisAnalyticsV2Client, StopApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
33
33
  * // const { KinesisAnalyticsV2Client, StopApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
34
34
  * const client = new KinesisAnalyticsV2Client(config);
35
- * const input = {
35
+ * const input = { // StopApplicationRequest
36
36
  * ApplicationName: "STRING_VALUE", // required
37
37
  * Force: true || false,
38
38
  * };
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
28
  * import { KinesisAnalyticsV2Client, TagResourceCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
29
29
  * // const { KinesisAnalyticsV2Client, TagResourceCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
30
30
  * const client = new KinesisAnalyticsV2Client(config);
31
- * const input = {
31
+ * const input = { // TagResourceRequest
32
32
  * ResourceARN: "STRING_VALUE", // required
33
- * Tags: [ // required
34
- * {
33
+ * Tags: [ // Tags // required
34
+ * { // Tag
35
35
  * Key: "STRING_VALUE", // required
36
36
  * Value: "STRING_VALUE",
37
37
  * },
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
27
  * import { KinesisAnalyticsV2Client, UntagResourceCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
28
28
  * // const { KinesisAnalyticsV2Client, UntagResourceCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
29
29
  * const client = new KinesisAnalyticsV2Client(config);
30
- * const input = {
30
+ * const input = { // UntagResourceRequest
31
31
  * ResourceARN: "STRING_VALUE", // required
32
- * TagKeys: [ // required
32
+ * TagKeys: [ // TagKeys // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -34,80 +34,80 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
34
34
  * import { KinesisAnalyticsV2Client, UpdateApplicationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
35
35
  * // const { KinesisAnalyticsV2Client, UpdateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
36
36
  * const client = new KinesisAnalyticsV2Client(config);
37
- * const input = {
37
+ * const input = { // UpdateApplicationRequest
38
38
  * ApplicationName: "STRING_VALUE", // required
39
39
  * CurrentApplicationVersionId: Number("long"),
40
- * ApplicationConfigurationUpdate: {
41
- * SqlApplicationConfigurationUpdate: {
42
- * InputUpdates: [
43
- * {
40
+ * ApplicationConfigurationUpdate: { // ApplicationConfigurationUpdate
41
+ * SqlApplicationConfigurationUpdate: { // SqlApplicationConfigurationUpdate
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", // required
49
49
  * },
50
50
  * },
51
- * KinesisStreamsInputUpdate: {
51
+ * KinesisStreamsInputUpdate: { // KinesisStreamsInputUpdate
52
52
  * ResourceARNUpdate: "STRING_VALUE", // required
53
53
  * },
54
- * KinesisFirehoseInputUpdate: {
54
+ * KinesisFirehoseInputUpdate: { // KinesisFirehoseInputUpdate
55
55
  * ResourceARNUpdate: "STRING_VALUE", // required
56
56
  * },
57
- * InputSchemaUpdate: {
58
- * RecordFormatUpdate: {
57
+ * InputSchemaUpdate: { // InputSchemaUpdate
58
+ * RecordFormatUpdate: { // RecordFormat
59
59
  * RecordFormatType: "JSON" || "CSV", // required
60
- * MappingParameters: {
61
- * JSONMappingParameters: {
60
+ * MappingParameters: { // MappingParameters
61
+ * JSONMappingParameters: { // JSONMappingParameters
62
62
  * RecordRowPath: "STRING_VALUE", // required
63
63
  * },
64
- * CSVMappingParameters: {
64
+ * CSVMappingParameters: { // CSVMappingParameters
65
65
  * RecordRowDelimiter: "STRING_VALUE", // required
66
66
  * RecordColumnDelimiter: "STRING_VALUE", // required
67
67
  * },
68
68
  * },
69
69
  * },
70
70
  * RecordEncodingUpdate: "STRING_VALUE",
71
- * RecordColumnUpdates: [
72
- * {
71
+ * RecordColumnUpdates: [ // RecordColumns
72
+ * { // RecordColumn
73
73
  * Name: "STRING_VALUE", // required
74
74
  * Mapping: "STRING_VALUE",
75
75
  * SqlType: "STRING_VALUE", // required
76
76
  * },
77
77
  * ],
78
78
  * },
79
- * InputParallelismUpdate: {
79
+ * InputParallelismUpdate: { // InputParallelismUpdate
80
80
  * CountUpdate: Number("int"), // required
81
81
  * },
82
82
  * },
83
83
  * ],
84
- * OutputUpdates: [
85
- * {
84
+ * OutputUpdates: [ // OutputUpdates
85
+ * { // OutputUpdate
86
86
  * OutputId: "STRING_VALUE", // required
87
87
  * NameUpdate: "STRING_VALUE",
88
- * KinesisStreamsOutputUpdate: {
88
+ * KinesisStreamsOutputUpdate: { // KinesisStreamsOutputUpdate
89
89
  * ResourceARNUpdate: "STRING_VALUE", // required
90
90
  * },
91
- * KinesisFirehoseOutputUpdate: {
91
+ * KinesisFirehoseOutputUpdate: { // KinesisFirehoseOutputUpdate
92
92
  * ResourceARNUpdate: "STRING_VALUE", // required
93
93
  * },
94
- * LambdaOutputUpdate: {
94
+ * LambdaOutputUpdate: { // LambdaOutputUpdate
95
95
  * ResourceARNUpdate: "STRING_VALUE", // required
96
96
  * },
97
- * DestinationSchemaUpdate: {
97
+ * DestinationSchemaUpdate: { // DestinationSchema
98
98
  * RecordFormatType: "JSON" || "CSV", // required
99
99
  * },
100
100
  * },
101
101
  * ],
102
- * ReferenceDataSourceUpdates: [
103
- * {
102
+ * ReferenceDataSourceUpdates: [ // ReferenceDataSourceUpdates
103
+ * { // ReferenceDataSourceUpdate
104
104
  * ReferenceId: "STRING_VALUE", // required
105
105
  * TableNameUpdate: "STRING_VALUE",
106
- * S3ReferenceDataSourceUpdate: {
106
+ * S3ReferenceDataSourceUpdate: { // S3ReferenceDataSourceUpdate
107
107
  * BucketARNUpdate: "STRING_VALUE",
108
108
  * FileKeyUpdate: "STRING_VALUE",
109
109
  * },
110
- * ReferenceSchemaUpdate: {
110
+ * ReferenceSchemaUpdate: { // SourceSchema
111
111
  * RecordFormat: {
112
112
  * RecordFormatType: "JSON" || "CSV", // required
113
113
  * MappingParameters: {
@@ -132,85 +132,85 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
132
132
  * },
133
133
  * ],
134
134
  * },
135
- * ApplicationCodeConfigurationUpdate: {
135
+ * ApplicationCodeConfigurationUpdate: { // ApplicationCodeConfigurationUpdate
136
136
  * CodeContentTypeUpdate: "PLAINTEXT" || "ZIPFILE",
137
- * CodeContentUpdate: {
137
+ * CodeContentUpdate: { // CodeContentUpdate
138
138
  * TextContentUpdate: "STRING_VALUE",
139
139
  * ZipFileContentUpdate: "BLOB_VALUE",
140
- * S3ContentLocationUpdate: {
140
+ * S3ContentLocationUpdate: { // S3ContentLocationUpdate
141
141
  * BucketARNUpdate: "STRING_VALUE",
142
142
  * FileKeyUpdate: "STRING_VALUE",
143
143
  * ObjectVersionUpdate: "STRING_VALUE",
144
144
  * },
145
145
  * },
146
146
  * },
147
- * FlinkApplicationConfigurationUpdate: {
148
- * CheckpointConfigurationUpdate: {
147
+ * FlinkApplicationConfigurationUpdate: { // FlinkApplicationConfigurationUpdate
148
+ * CheckpointConfigurationUpdate: { // CheckpointConfigurationUpdate
149
149
  * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
150
150
  * CheckpointingEnabledUpdate: true || false,
151
151
  * CheckpointIntervalUpdate: Number("long"),
152
152
  * MinPauseBetweenCheckpointsUpdate: Number("long"),
153
153
  * },
154
- * MonitoringConfigurationUpdate: {
154
+ * MonitoringConfigurationUpdate: { // MonitoringConfigurationUpdate
155
155
  * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
156
156
  * MetricsLevelUpdate: "APPLICATION" || "TASK" || "OPERATOR" || "PARALLELISM",
157
157
  * LogLevelUpdate: "INFO" || "WARN" || "ERROR" || "DEBUG",
158
158
  * },
159
- * ParallelismConfigurationUpdate: {
159
+ * ParallelismConfigurationUpdate: { // ParallelismConfigurationUpdate
160
160
  * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
161
161
  * ParallelismUpdate: Number("int"),
162
162
  * ParallelismPerKPUUpdate: Number("int"),
163
163
  * AutoScalingEnabledUpdate: true || false,
164
164
  * },
165
165
  * },
166
- * EnvironmentPropertyUpdates: {
167
- * PropertyGroups: [ // required
168
- * {
166
+ * EnvironmentPropertyUpdates: { // EnvironmentPropertyUpdates
167
+ * PropertyGroups: [ // PropertyGroups // required
168
+ * { // PropertyGroup
169
169
  * PropertyGroupId: "STRING_VALUE", // required
170
- * PropertyMap: { // required
170
+ * PropertyMap: { // PropertyMap // required
171
171
  * "<keys>": "STRING_VALUE",
172
172
  * },
173
173
  * },
174
174
  * ],
175
175
  * },
176
- * ApplicationSnapshotConfigurationUpdate: {
176
+ * ApplicationSnapshotConfigurationUpdate: { // ApplicationSnapshotConfigurationUpdate
177
177
  * SnapshotsEnabledUpdate: true || false, // required
178
178
  * },
179
- * VpcConfigurationUpdates: [
180
- * {
179
+ * VpcConfigurationUpdates: [ // VpcConfigurationUpdates
180
+ * { // VpcConfigurationUpdate
181
181
  * VpcConfigurationId: "STRING_VALUE", // required
182
- * SubnetIdUpdates: [
182
+ * SubnetIdUpdates: [ // SubnetIds
183
183
  * "STRING_VALUE",
184
184
  * ],
185
- * SecurityGroupIdUpdates: [
185
+ * SecurityGroupIdUpdates: [ // SecurityGroupIds
186
186
  * "STRING_VALUE",
187
187
  * ],
188
188
  * },
189
189
  * ],
190
- * ZeppelinApplicationConfigurationUpdate: {
191
- * MonitoringConfigurationUpdate: {
190
+ * ZeppelinApplicationConfigurationUpdate: { // ZeppelinApplicationConfigurationUpdate
191
+ * MonitoringConfigurationUpdate: { // ZeppelinMonitoringConfigurationUpdate
192
192
  * LogLevelUpdate: "INFO" || "WARN" || "ERROR" || "DEBUG", // required
193
193
  * },
194
- * CatalogConfigurationUpdate: {
195
- * GlueDataCatalogConfigurationUpdate: {
194
+ * CatalogConfigurationUpdate: { // CatalogConfigurationUpdate
195
+ * GlueDataCatalogConfigurationUpdate: { // GlueDataCatalogConfigurationUpdate
196
196
  * DatabaseARNUpdate: "STRING_VALUE", // required
197
197
  * },
198
198
  * },
199
- * DeployAsApplicationConfigurationUpdate: {
200
- * S3ContentLocationUpdate: {
199
+ * DeployAsApplicationConfigurationUpdate: { // DeployAsApplicationConfigurationUpdate
200
+ * S3ContentLocationUpdate: { // S3ContentBaseLocationUpdate
201
201
  * BucketARNUpdate: "STRING_VALUE",
202
202
  * BasePathUpdate: "STRING_VALUE",
203
203
  * },
204
204
  * },
205
- * CustomArtifactsConfigurationUpdate: [
206
- * {
205
+ * CustomArtifactsConfigurationUpdate: [ // CustomArtifactsConfigurationList
206
+ * { // CustomArtifactConfiguration
207
207
  * ArtifactType: "UDF" || "DEPENDENCY_JAR", // required
208
- * S3ContentLocation: {
208
+ * S3ContentLocation: { // S3ContentLocation
209
209
  * BucketARN: "STRING_VALUE", // required
210
210
  * FileKey: "STRING_VALUE", // required
211
211
  * ObjectVersion: "STRING_VALUE",
212
212
  * },
213
- * MavenReference: {
213
+ * MavenReference: { // MavenReference
214
214
  * GroupId: "STRING_VALUE", // required
215
215
  * ArtifactId: "STRING_VALUE", // required
216
216
  * Version: "STRING_VALUE", // required
@@ -220,17 +220,17 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
220
220
  * },
221
221
  * },
222
222
  * ServiceExecutionRoleUpdate: "STRING_VALUE",
223
- * RunConfigurationUpdate: {
224
- * FlinkRunConfiguration: {
223
+ * RunConfigurationUpdate: { // RunConfigurationUpdate
224
+ * FlinkRunConfiguration: { // FlinkRunConfiguration
225
225
  * AllowNonRestoredState: true || false,
226
226
  * },
227
- * ApplicationRestoreConfiguration: {
227
+ * ApplicationRestoreConfiguration: { // ApplicationRestoreConfiguration
228
228
  * ApplicationRestoreType: "SKIP_RESTORE_FROM_SNAPSHOT" || "RESTORE_FROM_LATEST_SNAPSHOT" || "RESTORE_FROM_CUSTOM_SNAPSHOT", // required
229
229
  * SnapshotName: "STRING_VALUE",
230
230
  * },
231
231
  * },
232
- * CloudWatchLoggingOptionUpdates: [
233
- * {
232
+ * CloudWatchLoggingOptionUpdates: [ // CloudWatchLoggingOptionUpdates
233
+ * { // CloudWatchLoggingOptionUpdate
234
234
  * CloudWatchLoggingOptionId: "STRING_VALUE", // required
235
235
  * LogStreamARNUpdate: "STRING_VALUE",
236
236
  * },
@@ -41,9 +41,9 @@ export interface UpdateApplicationMaintenanceConfigurationCommandOutput extends
41
41
  * import { KinesisAnalyticsV2Client, UpdateApplicationMaintenanceConfigurationCommand } from "@aws-sdk/client-kinesis-analytics-v2"; // ES Modules import
42
42
  * // const { KinesisAnalyticsV2Client, UpdateApplicationMaintenanceConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics-v2"); // CommonJS import
43
43
  * const client = new KinesisAnalyticsV2Client(config);
44
- * const input = {
44
+ * const input = { // UpdateApplicationMaintenanceConfigurationRequest
45
45
  * ApplicationName: "STRING_VALUE", // required
46
- * ApplicationMaintenanceConfigurationUpdate: {
46
+ * ApplicationMaintenanceConfigurationUpdate: { // ApplicationMaintenanceConfigurationUpdate
47
47
  * ApplicationMaintenanceWindowStartTimeUpdate: "STRING_VALUE", // required
48
48
  * },
49
49
  * };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-analytics-v2",
3
3
  "description": "AWS SDK for JavaScript Kinesis Analytics V2 Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.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,9 +21,9 @@
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",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",