@aws-sdk/client-kinesis-analytics-v2 3.299.0 → 3.300.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 +8 -0
  2. package/dist-types/commands/AddApplicationInputCommand.d.ts +43 -0
  3. package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +10 -0
  4. package/dist-types/commands/AddApplicationOutputCommand.d.ts +19 -0
  5. package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +33 -0
  6. package/dist-types/commands/AddApplicationVpcConfigurationCommand.d.ts +13 -0
  7. package/dist-types/commands/CreateApplicationCommand.d.ts +196 -0
  8. package/dist-types/commands/CreateApplicationPresignedUrlCommand.d.ts +5 -0
  9. package/dist-types/commands/CreateApplicationSnapshotCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +5 -0
  13. package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +5 -0
  14. package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +5 -0
  15. package/dist-types/commands/DeleteApplicationSnapshotCommand.d.ts +5 -0
  16. package/dist-types/commands/DeleteApplicationVpcConfigurationCommand.d.ts +6 -0
  17. package/dist-types/commands/DescribeApplicationCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeApplicationSnapshotCommand.d.ts +4 -0
  19. package/dist-types/commands/DescribeApplicationVersionCommand.d.ts +4 -0
  20. package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +16 -0
  21. package/dist-types/commands/ListApplicationSnapshotsCommand.d.ts +5 -0
  22. package/dist-types/commands/ListApplicationVersionsCommand.d.ts +5 -0
  23. package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  25. package/dist-types/commands/RollbackApplicationCommand.d.ts +4 -0
  26. package/dist-types/commands/StartApplicationCommand.d.ts +20 -0
  27. package/dist-types/commands/StopApplicationCommand.d.ts +4 -0
  28. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  29. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  30. package/dist-types/commands/UpdateApplicationCommand.d.ts +203 -0
  31. package/dist-types/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +6 -0
  32. package/package.json +8 -8
@@ -26,6 +26,14 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * CurrentApplicationVersionId: Number("long"),
32
+ * CloudWatchLoggingOption: {
33
+ * LogStreamARN: "STRING_VALUE", // required
34
+ * },
35
+ * ConditionalToken: "STRING_VALUE",
36
+ * };
29
37
  * const command = new AddApplicationCloudWatchLoggingOptionCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -35,6 +35,49 @@ 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 = {
39
+ * ApplicationName: "STRING_VALUE", // required
40
+ * CurrentApplicationVersionId: Number("long"), // required
41
+ * Input: {
42
+ * NamePrefix: "STRING_VALUE", // required
43
+ * InputProcessingConfiguration: {
44
+ * InputLambdaProcessor: {
45
+ * ResourceARN: "STRING_VALUE", // required
46
+ * },
47
+ * },
48
+ * KinesisStreamsInput: {
49
+ * ResourceARN: "STRING_VALUE", // required
50
+ * },
51
+ * KinesisFirehoseInput: {
52
+ * ResourceARN: "STRING_VALUE", // required
53
+ * },
54
+ * InputParallelism: {
55
+ * Count: Number("int"),
56
+ * },
57
+ * InputSchema: {
58
+ * RecordFormat: {
59
+ * RecordFormatType: "JSON" || "CSV", // required
60
+ * MappingParameters: {
61
+ * JSONMappingParameters: {
62
+ * RecordRowPath: "STRING_VALUE", // required
63
+ * },
64
+ * CSVMappingParameters: {
65
+ * RecordRowDelimiter: "STRING_VALUE", // required
66
+ * RecordColumnDelimiter: "STRING_VALUE", // required
67
+ * },
68
+ * },
69
+ * },
70
+ * RecordEncoding: "STRING_VALUE",
71
+ * RecordColumns: [ // required
72
+ * {
73
+ * Name: "STRING_VALUE", // required
74
+ * Mapping: "STRING_VALUE",
75
+ * SqlType: "STRING_VALUE", // required
76
+ * },
77
+ * ],
78
+ * },
79
+ * },
80
+ * };
38
81
  * const command = new AddApplicationInputCommand(input);
39
82
  * const response = await client.send(command);
40
83
  * ```
@@ -28,6 +28,16 @@ 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 = {
32
+ * ApplicationName: "STRING_VALUE", // required
33
+ * CurrentApplicationVersionId: Number("long"), // required
34
+ * InputId: "STRING_VALUE", // required
35
+ * InputProcessingConfiguration: {
36
+ * InputLambdaProcessor: {
37
+ * ResourceARN: "STRING_VALUE", // required
38
+ * },
39
+ * },
40
+ * };
31
41
  * const command = new AddApplicationInputProcessingConfigurationCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -38,6 +38,25 @@ 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 = {
42
+ * ApplicationName: "STRING_VALUE", // required
43
+ * CurrentApplicationVersionId: Number("long"), // required
44
+ * Output: {
45
+ * Name: "STRING_VALUE", // required
46
+ * KinesisStreamsOutput: {
47
+ * ResourceARN: "STRING_VALUE", // required
48
+ * },
49
+ * KinesisFirehoseOutput: {
50
+ * ResourceARN: "STRING_VALUE", // required
51
+ * },
52
+ * LambdaOutput: {
53
+ * ResourceARN: "STRING_VALUE", // required
54
+ * },
55
+ * DestinationSchema: {
56
+ * RecordFormatType: "JSON" || "CSV", // required
57
+ * },
58
+ * },
59
+ * };
41
60
  * const command = new AddApplicationOutputCommand(input);
42
61
  * const response = await client.send(command);
43
62
  * ```
@@ -31,6 +31,39 @@ 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 = {
35
+ * ApplicationName: "STRING_VALUE", // required
36
+ * CurrentApplicationVersionId: Number("long"), // required
37
+ * ReferenceDataSource: {
38
+ * TableName: "STRING_VALUE", // required
39
+ * S3ReferenceDataSource: {
40
+ * BucketARN: "STRING_VALUE",
41
+ * FileKey: "STRING_VALUE",
42
+ * },
43
+ * ReferenceSchema: {
44
+ * RecordFormat: {
45
+ * RecordFormatType: "JSON" || "CSV", // required
46
+ * MappingParameters: {
47
+ * JSONMappingParameters: {
48
+ * RecordRowPath: "STRING_VALUE", // required
49
+ * },
50
+ * CSVMappingParameters: {
51
+ * RecordRowDelimiter: "STRING_VALUE", // required
52
+ * RecordColumnDelimiter: "STRING_VALUE", // required
53
+ * },
54
+ * },
55
+ * },
56
+ * RecordEncoding: "STRING_VALUE",
57
+ * RecordColumns: [ // required
58
+ * {
59
+ * Name: "STRING_VALUE", // required
60
+ * Mapping: "STRING_VALUE",
61
+ * SqlType: "STRING_VALUE", // required
62
+ * },
63
+ * ],
64
+ * },
65
+ * },
66
+ * };
34
67
  * const command = new AddApplicationReferenceDataSourceCommand(input);
35
68
  * const response = await client.send(command);
36
69
  * ```
@@ -37,6 +37,19 @@ 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 = {
41
+ * ApplicationName: "STRING_VALUE", // required
42
+ * CurrentApplicationVersionId: Number("long"),
43
+ * VpcConfiguration: {
44
+ * SubnetIds: [ // required
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * SecurityGroupIds: [ // required
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * },
51
+ * ConditionalToken: "STRING_VALUE",
52
+ * };
40
53
  * const command = new AddApplicationVpcConfigurationCommand(input);
41
54
  * const response = await client.send(command);
42
55
  * ```
@@ -28,6 +28,202 @@ 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 = {
32
+ * ApplicationName: "STRING_VALUE", // required
33
+ * ApplicationDescription: "STRING_VALUE",
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
+ * ServiceExecutionRole: "STRING_VALUE", // required
36
+ * ApplicationConfiguration: {
37
+ * SqlApplicationConfiguration: {
38
+ * Inputs: [
39
+ * {
40
+ * NamePrefix: "STRING_VALUE", // required
41
+ * InputProcessingConfiguration: {
42
+ * InputLambdaProcessor: {
43
+ * ResourceARN: "STRING_VALUE", // required
44
+ * },
45
+ * },
46
+ * KinesisStreamsInput: {
47
+ * ResourceARN: "STRING_VALUE", // required
48
+ * },
49
+ * KinesisFirehoseInput: {
50
+ * ResourceARN: "STRING_VALUE", // required
51
+ * },
52
+ * InputParallelism: {
53
+ * Count: Number("int"),
54
+ * },
55
+ * InputSchema: {
56
+ * RecordFormat: {
57
+ * RecordFormatType: "JSON" || "CSV", // required
58
+ * MappingParameters: {
59
+ * JSONMappingParameters: {
60
+ * RecordRowPath: "STRING_VALUE", // required
61
+ * },
62
+ * CSVMappingParameters: {
63
+ * RecordRowDelimiter: "STRING_VALUE", // required
64
+ * RecordColumnDelimiter: "STRING_VALUE", // required
65
+ * },
66
+ * },
67
+ * },
68
+ * RecordEncoding: "STRING_VALUE",
69
+ * RecordColumns: [ // required
70
+ * {
71
+ * Name: "STRING_VALUE", // required
72
+ * Mapping: "STRING_VALUE",
73
+ * SqlType: "STRING_VALUE", // required
74
+ * },
75
+ * ],
76
+ * },
77
+ * },
78
+ * ],
79
+ * Outputs: [
80
+ * {
81
+ * Name: "STRING_VALUE", // required
82
+ * KinesisStreamsOutput: {
83
+ * ResourceARN: "STRING_VALUE", // required
84
+ * },
85
+ * KinesisFirehoseOutput: {
86
+ * ResourceARN: "STRING_VALUE", // required
87
+ * },
88
+ * LambdaOutput: {
89
+ * ResourceARN: "STRING_VALUE", // required
90
+ * },
91
+ * DestinationSchema: {
92
+ * RecordFormatType: "JSON" || "CSV", // required
93
+ * },
94
+ * },
95
+ * ],
96
+ * ReferenceDataSources: [
97
+ * {
98
+ * TableName: "STRING_VALUE", // required
99
+ * S3ReferenceDataSource: {
100
+ * BucketARN: "STRING_VALUE",
101
+ * FileKey: "STRING_VALUE",
102
+ * },
103
+ * ReferenceSchema: {
104
+ * RecordFormat: {
105
+ * RecordFormatType: "JSON" || "CSV", // required
106
+ * MappingParameters: {
107
+ * JSONMappingParameters: {
108
+ * RecordRowPath: "STRING_VALUE", // required
109
+ * },
110
+ * CSVMappingParameters: {
111
+ * RecordRowDelimiter: "STRING_VALUE", // required
112
+ * RecordColumnDelimiter: "STRING_VALUE", // required
113
+ * },
114
+ * },
115
+ * },
116
+ * RecordEncoding: "STRING_VALUE",
117
+ * RecordColumns: [ // required
118
+ * {
119
+ * Name: "STRING_VALUE", // required
120
+ * Mapping: "STRING_VALUE",
121
+ * SqlType: "STRING_VALUE", // required
122
+ * },
123
+ * ],
124
+ * },
125
+ * },
126
+ * ],
127
+ * },
128
+ * FlinkApplicationConfiguration: {
129
+ * CheckpointConfiguration: {
130
+ * ConfigurationType: "DEFAULT" || "CUSTOM", // required
131
+ * CheckpointingEnabled: true || false,
132
+ * CheckpointInterval: Number("long"),
133
+ * MinPauseBetweenCheckpoints: Number("long"),
134
+ * },
135
+ * MonitoringConfiguration: {
136
+ * ConfigurationType: "DEFAULT" || "CUSTOM", // required
137
+ * MetricsLevel: "APPLICATION" || "TASK" || "OPERATOR" || "PARALLELISM",
138
+ * LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG",
139
+ * },
140
+ * ParallelismConfiguration: {
141
+ * ConfigurationType: "DEFAULT" || "CUSTOM", // required
142
+ * Parallelism: Number("int"),
143
+ * ParallelismPerKPU: Number("int"),
144
+ * AutoScalingEnabled: true || false,
145
+ * },
146
+ * },
147
+ * EnvironmentProperties: {
148
+ * PropertyGroups: [ // required
149
+ * {
150
+ * PropertyGroupId: "STRING_VALUE", // required
151
+ * PropertyMap: { // required
152
+ * "<keys>": "STRING_VALUE",
153
+ * },
154
+ * },
155
+ * ],
156
+ * },
157
+ * ApplicationCodeConfiguration: {
158
+ * CodeContent: {
159
+ * TextContent: "STRING_VALUE",
160
+ * ZipFileContent: "BLOB_VALUE",
161
+ * S3ContentLocation: {
162
+ * BucketARN: "STRING_VALUE", // required
163
+ * FileKey: "STRING_VALUE", // required
164
+ * ObjectVersion: "STRING_VALUE",
165
+ * },
166
+ * },
167
+ * CodeContentType: "PLAINTEXT" || "ZIPFILE", // required
168
+ * },
169
+ * ApplicationSnapshotConfiguration: {
170
+ * SnapshotsEnabled: true || false, // required
171
+ * },
172
+ * VpcConfigurations: [
173
+ * {
174
+ * SubnetIds: [ // required
175
+ * "STRING_VALUE",
176
+ * ],
177
+ * SecurityGroupIds: [ // required
178
+ * "STRING_VALUE",
179
+ * ],
180
+ * },
181
+ * ],
182
+ * ZeppelinApplicationConfiguration: {
183
+ * MonitoringConfiguration: {
184
+ * LogLevel: "INFO" || "WARN" || "ERROR" || "DEBUG", // required
185
+ * },
186
+ * CatalogConfiguration: {
187
+ * GlueDataCatalogConfiguration: {
188
+ * DatabaseARN: "STRING_VALUE", // required
189
+ * },
190
+ * },
191
+ * DeployAsApplicationConfiguration: {
192
+ * S3ContentLocation: {
193
+ * BucketARN: "STRING_VALUE", // required
194
+ * BasePath: "STRING_VALUE",
195
+ * },
196
+ * },
197
+ * CustomArtifactsConfiguration: [
198
+ * {
199
+ * ArtifactType: "UDF" || "DEPENDENCY_JAR", // required
200
+ * S3ContentLocation: {
201
+ * BucketARN: "STRING_VALUE", // required
202
+ * FileKey: "STRING_VALUE", // required
203
+ * ObjectVersion: "STRING_VALUE",
204
+ * },
205
+ * MavenReference: {
206
+ * GroupId: "STRING_VALUE", // required
207
+ * ArtifactId: "STRING_VALUE", // required
208
+ * Version: "STRING_VALUE", // required
209
+ * },
210
+ * },
211
+ * ],
212
+ * },
213
+ * },
214
+ * CloudWatchLoggingOptions: [
215
+ * {
216
+ * LogStreamARN: "STRING_VALUE", // required
217
+ * },
218
+ * ],
219
+ * Tags: [
220
+ * {
221
+ * Key: "STRING_VALUE", // required
222
+ * Value: "STRING_VALUE",
223
+ * },
224
+ * ],
225
+ * ApplicationMode: "STREAMING" || "INTERACTIVE",
226
+ * };
31
227
  * const command = new CreateApplicationCommand(input);
32
228
  * const response = await client.send(command);
33
229
  * ```
@@ -38,6 +38,11 @@ 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 = {
42
+ * ApplicationName: "STRING_VALUE", // required
43
+ * UrlType: "FLINK_DASHBOARD_URL" || "ZEPPELIN_UI_URL", // required
44
+ * SessionExpirationDurationInSeconds: Number("long"),
45
+ * };
41
46
  * const command = new CreateApplicationPresignedUrlCommand(input);
42
47
  * const response = await client.send(command);
43
48
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * SnapshotName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new CreateApplicationSnapshotCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * CurrentApplicationVersionId: Number("long"),
32
+ * CloudWatchLoggingOptionId: "STRING_VALUE", // required
33
+ * ConditionalToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DeleteApplicationCloudWatchLoggingOptionCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * CreateTimestamp: new Date("TIMESTAMP"), // required
32
+ * };
29
33
  * const command = new DeleteApplicationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * CurrentApplicationVersionId: Number("long"), // required
32
+ * InputId: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DeleteApplicationInputProcessingConfigurationCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -28,6 +28,11 @@ 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 = {
32
+ * ApplicationName: "STRING_VALUE", // required
33
+ * CurrentApplicationVersionId: Number("long"), // required
34
+ * OutputId: "STRING_VALUE", // required
35
+ * };
31
36
  * const command = new DeleteApplicationOutputCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -28,6 +28,11 @@ 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 = {
32
+ * ApplicationName: "STRING_VALUE", // required
33
+ * CurrentApplicationVersionId: Number("long"), // required
34
+ * ReferenceId: "STRING_VALUE", // required
35
+ * };
31
36
  * const command = new DeleteApplicationReferenceDataSourceCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * SnapshotName: "STRING_VALUE", // required
32
+ * SnapshotCreationTimestamp: new Date("TIMESTAMP"), // required
33
+ * };
29
34
  * const command = new DeleteApplicationSnapshotCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * CurrentApplicationVersionId: Number("long"),
32
+ * VpcConfigurationId: "STRING_VALUE", // required
33
+ * ConditionalToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DeleteApplicationVpcConfigurationCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * ApplicationName: "STRING_VALUE", // required
33
+ * IncludeAdditionalDetails: true || false,
34
+ * };
31
35
  * const command = new DescribeApplicationCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * SnapshotName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeApplicationSnapshotCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -29,6 +29,10 @@ 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 = {
33
+ * ApplicationName: "STRING_VALUE", // required
34
+ * ApplicationVersionId: Number("long"), // required
35
+ * };
32
36
  * const command = new DescribeApplicationVersionCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -32,6 +32,22 @@ 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 = {
36
+ * ResourceARN: "STRING_VALUE",
37
+ * ServiceExecutionRole: "STRING_VALUE", // required
38
+ * InputStartingPositionConfiguration: {
39
+ * InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
40
+ * },
41
+ * S3Configuration: {
42
+ * BucketARN: "STRING_VALUE", // required
43
+ * FileKey: "STRING_VALUE", // required
44
+ * },
45
+ * InputProcessingConfiguration: {
46
+ * InputLambdaProcessor: {
47
+ * ResourceARN: "STRING_VALUE", // required
48
+ * },
49
+ * },
50
+ * };
35
51
  * const command = new DiscoverInputSchemaCommand(input);
36
52
  * const response = await client.send(command);
37
53
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * ApplicationName: "STRING_VALUE", // required
31
+ * Limit: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListApplicationSnapshotsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -32,6 +32,11 @@ 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 = {
36
+ * ApplicationName: "STRING_VALUE", // required
37
+ * Limit: Number("int"),
38
+ * NextToken: "STRING_VALUE",
39
+ * };
35
40
  * const command = new ListApplicationVersionsCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -30,6 +30,10 @@ 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 = {
34
+ * Limit: Number("int"),
35
+ * NextToken: "STRING_VALUE",
36
+ * };
33
37
  * const command = new ListApplicationsCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -27,6 +27,9 @@ 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 = {
31
+ * ResourceARN: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ListTagsForResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -32,6 +32,10 @@ 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 = {
36
+ * ApplicationName: "STRING_VALUE", // required
37
+ * CurrentApplicationVersionId: Number("long"), // required
38
+ * };
35
39
  * const command = new RollbackApplicationCommand(input);
36
40
  * const response = await client.send(command);
37
41
  * ```
@@ -27,6 +27,26 @@ 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 = {
31
+ * ApplicationName: "STRING_VALUE", // required
32
+ * RunConfiguration: {
33
+ * FlinkRunConfiguration: {
34
+ * AllowNonRestoredState: true || false,
35
+ * },
36
+ * SqlRunConfigurations: [
37
+ * {
38
+ * InputId: "STRING_VALUE", // required
39
+ * InputStartingPositionConfiguration: {
40
+ * InputStartingPosition: "NOW" || "TRIM_HORIZON" || "LAST_STOPPED_POINT",
41
+ * },
42
+ * },
43
+ * ],
44
+ * ApplicationRestoreConfiguration: {
45
+ * ApplicationRestoreType: "SKIP_RESTORE_FROM_SNAPSHOT" || "RESTORE_FROM_LATEST_SNAPSHOT" || "RESTORE_FROM_CUSTOM_SNAPSHOT", // required
46
+ * SnapshotName: "STRING_VALUE",
47
+ * },
48
+ * },
49
+ * };
30
50
  * const command = new StartApplicationCommand(input);
31
51
  * const response = await client.send(command);
32
52
  * ```
@@ -32,6 +32,10 @@ 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 = {
36
+ * ApplicationName: "STRING_VALUE", // required
37
+ * Force: true || false,
38
+ * };
35
39
  * const command = new StopApplicationCommand(input);
36
40
  * const response = await client.send(command);
37
41
  * ```
@@ -28,6 +28,15 @@ 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 = {
32
+ * ResourceARN: "STRING_VALUE", // required
33
+ * Tags: [ // required
34
+ * {
35
+ * Key: "STRING_VALUE", // required
36
+ * Value: "STRING_VALUE",
37
+ * },
38
+ * ],
39
+ * };
31
40
  * const command = new TagResourceCommand(input);
32
41
  * const response = await client.send(command);
33
42
  * ```
@@ -27,6 +27,12 @@ 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 = {
31
+ * ResourceARN: "STRING_VALUE", // required
32
+ * TagKeys: [ // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -34,6 +34,209 @@ 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 = {
38
+ * ApplicationName: "STRING_VALUE", // required
39
+ * CurrentApplicationVersionId: Number("long"),
40
+ * ApplicationConfigurationUpdate: {
41
+ * SqlApplicationConfigurationUpdate: {
42
+ * InputUpdates: [
43
+ * {
44
+ * InputId: "STRING_VALUE", // required
45
+ * NamePrefixUpdate: "STRING_VALUE",
46
+ * InputProcessingConfigurationUpdate: {
47
+ * InputLambdaProcessorUpdate: {
48
+ * ResourceARNUpdate: "STRING_VALUE", // required
49
+ * },
50
+ * },
51
+ * KinesisStreamsInputUpdate: {
52
+ * ResourceARNUpdate: "STRING_VALUE", // required
53
+ * },
54
+ * KinesisFirehoseInputUpdate: {
55
+ * ResourceARNUpdate: "STRING_VALUE", // required
56
+ * },
57
+ * InputSchemaUpdate: {
58
+ * RecordFormatUpdate: {
59
+ * RecordFormatType: "JSON" || "CSV", // required
60
+ * MappingParameters: {
61
+ * JSONMappingParameters: {
62
+ * RecordRowPath: "STRING_VALUE", // required
63
+ * },
64
+ * CSVMappingParameters: {
65
+ * RecordRowDelimiter: "STRING_VALUE", // required
66
+ * RecordColumnDelimiter: "STRING_VALUE", // required
67
+ * },
68
+ * },
69
+ * },
70
+ * RecordEncodingUpdate: "STRING_VALUE",
71
+ * RecordColumnUpdates: [
72
+ * {
73
+ * Name: "STRING_VALUE", // required
74
+ * Mapping: "STRING_VALUE",
75
+ * SqlType: "STRING_VALUE", // required
76
+ * },
77
+ * ],
78
+ * },
79
+ * InputParallelismUpdate: {
80
+ * CountUpdate: Number("int"), // required
81
+ * },
82
+ * },
83
+ * ],
84
+ * OutputUpdates: [
85
+ * {
86
+ * OutputId: "STRING_VALUE", // required
87
+ * NameUpdate: "STRING_VALUE",
88
+ * KinesisStreamsOutputUpdate: {
89
+ * ResourceARNUpdate: "STRING_VALUE", // required
90
+ * },
91
+ * KinesisFirehoseOutputUpdate: {
92
+ * ResourceARNUpdate: "STRING_VALUE", // required
93
+ * },
94
+ * LambdaOutputUpdate: {
95
+ * ResourceARNUpdate: "STRING_VALUE", // required
96
+ * },
97
+ * DestinationSchemaUpdate: {
98
+ * RecordFormatType: "JSON" || "CSV", // required
99
+ * },
100
+ * },
101
+ * ],
102
+ * ReferenceDataSourceUpdates: [
103
+ * {
104
+ * ReferenceId: "STRING_VALUE", // required
105
+ * TableNameUpdate: "STRING_VALUE",
106
+ * S3ReferenceDataSourceUpdate: {
107
+ * BucketARNUpdate: "STRING_VALUE",
108
+ * FileKeyUpdate: "STRING_VALUE",
109
+ * },
110
+ * ReferenceSchemaUpdate: {
111
+ * RecordFormat: {
112
+ * RecordFormatType: "JSON" || "CSV", // required
113
+ * MappingParameters: {
114
+ * JSONMappingParameters: {
115
+ * RecordRowPath: "STRING_VALUE", // required
116
+ * },
117
+ * CSVMappingParameters: {
118
+ * RecordRowDelimiter: "STRING_VALUE", // required
119
+ * RecordColumnDelimiter: "STRING_VALUE", // required
120
+ * },
121
+ * },
122
+ * },
123
+ * RecordEncoding: "STRING_VALUE",
124
+ * RecordColumns: [ // required
125
+ * {
126
+ * Name: "STRING_VALUE", // required
127
+ * Mapping: "STRING_VALUE",
128
+ * SqlType: "STRING_VALUE", // required
129
+ * },
130
+ * ],
131
+ * },
132
+ * },
133
+ * ],
134
+ * },
135
+ * ApplicationCodeConfigurationUpdate: {
136
+ * CodeContentTypeUpdate: "PLAINTEXT" || "ZIPFILE",
137
+ * CodeContentUpdate: {
138
+ * TextContentUpdate: "STRING_VALUE",
139
+ * ZipFileContentUpdate: "BLOB_VALUE",
140
+ * S3ContentLocationUpdate: {
141
+ * BucketARNUpdate: "STRING_VALUE",
142
+ * FileKeyUpdate: "STRING_VALUE",
143
+ * ObjectVersionUpdate: "STRING_VALUE",
144
+ * },
145
+ * },
146
+ * },
147
+ * FlinkApplicationConfigurationUpdate: {
148
+ * CheckpointConfigurationUpdate: {
149
+ * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
150
+ * CheckpointingEnabledUpdate: true || false,
151
+ * CheckpointIntervalUpdate: Number("long"),
152
+ * MinPauseBetweenCheckpointsUpdate: Number("long"),
153
+ * },
154
+ * MonitoringConfigurationUpdate: {
155
+ * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
156
+ * MetricsLevelUpdate: "APPLICATION" || "TASK" || "OPERATOR" || "PARALLELISM",
157
+ * LogLevelUpdate: "INFO" || "WARN" || "ERROR" || "DEBUG",
158
+ * },
159
+ * ParallelismConfigurationUpdate: {
160
+ * ConfigurationTypeUpdate: "DEFAULT" || "CUSTOM",
161
+ * ParallelismUpdate: Number("int"),
162
+ * ParallelismPerKPUUpdate: Number("int"),
163
+ * AutoScalingEnabledUpdate: true || false,
164
+ * },
165
+ * },
166
+ * EnvironmentPropertyUpdates: {
167
+ * PropertyGroups: [ // required
168
+ * {
169
+ * PropertyGroupId: "STRING_VALUE", // required
170
+ * PropertyMap: { // required
171
+ * "<keys>": "STRING_VALUE",
172
+ * },
173
+ * },
174
+ * ],
175
+ * },
176
+ * ApplicationSnapshotConfigurationUpdate: {
177
+ * SnapshotsEnabledUpdate: true || false, // required
178
+ * },
179
+ * VpcConfigurationUpdates: [
180
+ * {
181
+ * VpcConfigurationId: "STRING_VALUE", // required
182
+ * SubnetIdUpdates: [
183
+ * "STRING_VALUE",
184
+ * ],
185
+ * SecurityGroupIdUpdates: [
186
+ * "STRING_VALUE",
187
+ * ],
188
+ * },
189
+ * ],
190
+ * ZeppelinApplicationConfigurationUpdate: {
191
+ * MonitoringConfigurationUpdate: {
192
+ * LogLevelUpdate: "INFO" || "WARN" || "ERROR" || "DEBUG", // required
193
+ * },
194
+ * CatalogConfigurationUpdate: {
195
+ * GlueDataCatalogConfigurationUpdate: {
196
+ * DatabaseARNUpdate: "STRING_VALUE", // required
197
+ * },
198
+ * },
199
+ * DeployAsApplicationConfigurationUpdate: {
200
+ * S3ContentLocationUpdate: {
201
+ * BucketARNUpdate: "STRING_VALUE",
202
+ * BasePathUpdate: "STRING_VALUE",
203
+ * },
204
+ * },
205
+ * CustomArtifactsConfigurationUpdate: [
206
+ * {
207
+ * ArtifactType: "UDF" || "DEPENDENCY_JAR", // required
208
+ * S3ContentLocation: {
209
+ * BucketARN: "STRING_VALUE", // required
210
+ * FileKey: "STRING_VALUE", // required
211
+ * ObjectVersion: "STRING_VALUE",
212
+ * },
213
+ * MavenReference: {
214
+ * GroupId: "STRING_VALUE", // required
215
+ * ArtifactId: "STRING_VALUE", // required
216
+ * Version: "STRING_VALUE", // required
217
+ * },
218
+ * },
219
+ * ],
220
+ * },
221
+ * },
222
+ * ServiceExecutionRoleUpdate: "STRING_VALUE",
223
+ * RunConfigurationUpdate: {
224
+ * FlinkRunConfiguration: {
225
+ * AllowNonRestoredState: true || false,
226
+ * },
227
+ * ApplicationRestoreConfiguration: {
228
+ * ApplicationRestoreType: "SKIP_RESTORE_FROM_SNAPSHOT" || "RESTORE_FROM_LATEST_SNAPSHOT" || "RESTORE_FROM_CUSTOM_SNAPSHOT", // required
229
+ * SnapshotName: "STRING_VALUE",
230
+ * },
231
+ * },
232
+ * CloudWatchLoggingOptionUpdates: [
233
+ * {
234
+ * CloudWatchLoggingOptionId: "STRING_VALUE", // required
235
+ * LogStreamARNUpdate: "STRING_VALUE",
236
+ * },
237
+ * ],
238
+ * ConditionalToken: "STRING_VALUE",
239
+ * };
37
240
  * const command = new UpdateApplicationCommand(input);
38
241
  * const response = await client.send(command);
39
242
  * ```
@@ -41,6 +41,12 @@ 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 = {
45
+ * ApplicationName: "STRING_VALUE", // required
46
+ * ApplicationMaintenanceConfigurationUpdate: {
47
+ * ApplicationMaintenanceWindowStartTimeUpdate: "STRING_VALUE", // required
48
+ * },
49
+ * };
44
50
  * const command = new UpdateApplicationMaintenanceConfigurationCommand(input);
45
51
  * const response = await client.send(command);
46
52
  * ```
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.299.0",
4
+ "version": "3.300.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.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
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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },