@aws-sdk/client-kinesis-analytics-v2 3.428.0 → 3.429.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.
|
@@ -324,7 +324,7 @@ export interface RecordFormat {
|
|
|
324
324
|
* @public
|
|
325
325
|
* <p>The type of record format.</p>
|
|
326
326
|
*/
|
|
327
|
-
RecordFormatType: RecordFormatType |
|
|
327
|
+
RecordFormatType: RecordFormatType | undefined;
|
|
328
328
|
/**
|
|
329
329
|
* @public
|
|
330
330
|
* <p>When you configure application input at the time of creating or updating an application,
|
|
@@ -532,7 +532,7 @@ export interface InputStartingPositionConfiguration {
|
|
|
532
532
|
* </li>
|
|
533
533
|
* </ul>
|
|
534
534
|
*/
|
|
535
|
-
InputStartingPosition?: InputStartingPosition
|
|
535
|
+
InputStartingPosition?: InputStartingPosition;
|
|
536
536
|
}
|
|
537
537
|
/**
|
|
538
538
|
* @public
|
|
@@ -736,7 +736,7 @@ export interface DestinationSchema {
|
|
|
736
736
|
* @public
|
|
737
737
|
* <p>Specifies the format of the records on the output stream.</p>
|
|
738
738
|
*/
|
|
739
|
-
RecordFormatType: RecordFormatType |
|
|
739
|
+
RecordFormatType: RecordFormatType | undefined;
|
|
740
740
|
}
|
|
741
741
|
/**
|
|
742
742
|
* @public
|
|
@@ -1309,7 +1309,7 @@ export interface ApplicationCodeConfiguration {
|
|
|
1309
1309
|
* @public
|
|
1310
1310
|
* <p>Specifies whether the code content is in text or zip format.</p>
|
|
1311
1311
|
*/
|
|
1312
|
-
CodeContentType: CodeContentType |
|
|
1312
|
+
CodeContentType: CodeContentType | undefined;
|
|
1313
1313
|
}
|
|
1314
1314
|
/**
|
|
1315
1315
|
* @public
|
|
@@ -1368,7 +1368,7 @@ export interface ApplicationCodeConfigurationDescription {
|
|
|
1368
1368
|
* @public
|
|
1369
1369
|
* <p>Specifies whether the code content is in text or zip format.</p>
|
|
1370
1370
|
*/
|
|
1371
|
-
CodeContentType: CodeContentType |
|
|
1371
|
+
CodeContentType: CodeContentType | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* @public
|
|
1374
1374
|
* <p>Describes details about the location and format of the application code.</p>
|
|
@@ -1426,7 +1426,7 @@ export interface ApplicationCodeConfigurationUpdate {
|
|
|
1426
1426
|
* @public
|
|
1427
1427
|
* <p>Describes updates to the code content type.</p>
|
|
1428
1428
|
*/
|
|
1429
|
-
CodeContentTypeUpdate?: CodeContentType
|
|
1429
|
+
CodeContentTypeUpdate?: CodeContentType;
|
|
1430
1430
|
/**
|
|
1431
1431
|
* @public
|
|
1432
1432
|
* <p>Describes updates to the code content of an application.</p>
|
|
@@ -1517,7 +1517,7 @@ export interface CheckpointConfiguration {
|
|
|
1517
1517
|
* </ul>
|
|
1518
1518
|
* </note>
|
|
1519
1519
|
*/
|
|
1520
|
-
ConfigurationType: ConfigurationType |
|
|
1520
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* @public
|
|
1523
1523
|
* <p>Describes whether checkpointing is enabled for a Flink-based Kinesis Data Analytics application.</p>
|
|
@@ -1592,18 +1592,18 @@ export interface MonitoringConfiguration {
|
|
|
1592
1592
|
* You must set this property to <code>CUSTOM</code> in order to set the <code>LogLevel</code> or
|
|
1593
1593
|
* <code>MetricsLevel</code> parameters.</p>
|
|
1594
1594
|
*/
|
|
1595
|
-
ConfigurationType: ConfigurationType |
|
|
1595
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* @public
|
|
1598
1598
|
* <p>Describes the granularity of the CloudWatch Logs for an application. The <code>Parallelism</code>
|
|
1599
1599
|
* level is not recommended for applications with a Parallelism over 64 due to excessive costs.</p>
|
|
1600
1600
|
*/
|
|
1601
|
-
MetricsLevel?: MetricsLevel
|
|
1601
|
+
MetricsLevel?: MetricsLevel;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* @public
|
|
1604
1604
|
* <p>Describes the verbosity of the CloudWatch Logs for an application.</p>
|
|
1605
1605
|
*/
|
|
1606
|
-
LogLevel?: LogLevel
|
|
1606
|
+
LogLevel?: LogLevel;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* @public
|
|
@@ -1618,7 +1618,7 @@ export interface ParallelismConfiguration {
|
|
|
1618
1618
|
* <p>Describes whether the application uses the default parallelism for the Kinesis Data Analytics service. You must set this property to <code>CUSTOM</code>
|
|
1619
1619
|
* in order to change your application's <code>AutoScalingEnabled</code>, <code>Parallelism</code>, or <code>ParallelismPerKPU</code> properties.</p>
|
|
1620
1620
|
*/
|
|
1621
|
-
ConfigurationType: ConfigurationType |
|
|
1621
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* @public
|
|
1624
1624
|
* <p>Describes the initial number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform. If <code>AutoScalingEnabled</code>
|
|
@@ -1759,7 +1759,7 @@ export interface CustomArtifactConfiguration {
|
|
|
1759
1759
|
* <p>
|
|
1760
1760
|
* <code>UDF</code> stands for user-defined functions. This type of artifact must be in an S3 bucket. A <code>DEPENDENCY_JAR</code> can be in either Maven or an S3 bucket.</p>
|
|
1761
1761
|
*/
|
|
1762
|
-
ArtifactType: ArtifactType |
|
|
1762
|
+
ArtifactType: ArtifactType | undefined;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* @public
|
|
1765
1765
|
* <p>For a Kinesis Data Analytics application provides a
|
|
@@ -1811,7 +1811,7 @@ export interface ZeppelinMonitoringConfiguration {
|
|
|
1811
1811
|
* @public
|
|
1812
1812
|
* <p>The verbosity of the CloudWatch Logs for an application.</p>
|
|
1813
1813
|
*/
|
|
1814
|
-
LogLevel: LogLevel |
|
|
1814
|
+
LogLevel: LogLevel | undefined;
|
|
1815
1815
|
}
|
|
1816
1816
|
/**
|
|
1817
1817
|
* @public
|
|
@@ -1930,7 +1930,7 @@ export interface CheckpointConfigurationDescription {
|
|
|
1930
1930
|
* </ul>
|
|
1931
1931
|
* </note>
|
|
1932
1932
|
*/
|
|
1933
|
-
ConfigurationType?: ConfigurationType
|
|
1933
|
+
ConfigurationType?: ConfigurationType;
|
|
1934
1934
|
/**
|
|
1935
1935
|
* @public
|
|
1936
1936
|
* <p>Describes whether checkpointing is enabled for a Flink-based Kinesis Data Analytics application.</p>
|
|
@@ -1972,17 +1972,17 @@ export interface MonitoringConfigurationDescription {
|
|
|
1972
1972
|
* @public
|
|
1973
1973
|
* <p>Describes whether to use the default CloudWatch logging configuration for an application.</p>
|
|
1974
1974
|
*/
|
|
1975
|
-
ConfigurationType?: ConfigurationType
|
|
1975
|
+
ConfigurationType?: ConfigurationType;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* @public
|
|
1978
1978
|
* <p>Describes the granularity of the CloudWatch Logs for an application.</p>
|
|
1979
1979
|
*/
|
|
1980
|
-
MetricsLevel?: MetricsLevel
|
|
1980
|
+
MetricsLevel?: MetricsLevel;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* @public
|
|
1983
1983
|
* <p>Describes the verbosity of the CloudWatch Logs for an application.</p>
|
|
1984
1984
|
*/
|
|
1985
|
-
LogLevel?: LogLevel
|
|
1985
|
+
LogLevel?: LogLevel;
|
|
1986
1986
|
}
|
|
1987
1987
|
/**
|
|
1988
1988
|
* @public
|
|
@@ -1994,7 +1994,7 @@ export interface ParallelismConfigurationDescription {
|
|
|
1994
1994
|
* @public
|
|
1995
1995
|
* <p>Describes whether the application uses the default parallelism for the Kinesis Data Analytics service. </p>
|
|
1996
1996
|
*/
|
|
1997
|
-
ConfigurationType?: ConfigurationType
|
|
1997
|
+
ConfigurationType?: ConfigurationType;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* @public
|
|
2000
2000
|
* <p>Describes the initial number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform.
|
|
@@ -2076,7 +2076,7 @@ export interface ApplicationRestoreConfiguration {
|
|
|
2076
2076
|
* @public
|
|
2077
2077
|
* <p>Specifies how the application should be restored.</p>
|
|
2078
2078
|
*/
|
|
2079
|
-
ApplicationRestoreType: ApplicationRestoreType |
|
|
2079
|
+
ApplicationRestoreType: ApplicationRestoreType | undefined;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* @public
|
|
2082
2082
|
* <p>The identifier of an existing snapshot of application state to use to restart an application.
|
|
@@ -2180,7 +2180,7 @@ export interface CustomArtifactConfigurationDescription {
|
|
|
2180
2180
|
* <p>
|
|
2181
2181
|
* <code>UDF</code> stands for user-defined functions. This type of artifact must be in an S3 bucket. A <code>DEPENDENCY_JAR</code> can be in either Maven or an S3 bucket.</p>
|
|
2182
2182
|
*/
|
|
2183
|
-
ArtifactType?: ArtifactType
|
|
2183
|
+
ArtifactType?: ArtifactType;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* @public
|
|
2186
2186
|
* <p>For a Kinesis Data Analytics application provides a
|
|
@@ -2231,7 +2231,7 @@ export interface ZeppelinMonitoringConfigurationDescription {
|
|
|
2231
2231
|
* @public
|
|
2232
2232
|
* <p>Describes the verbosity of the CloudWatch Logs for an application.</p>
|
|
2233
2233
|
*/
|
|
2234
|
-
LogLevel?: LogLevel
|
|
2234
|
+
LogLevel?: LogLevel;
|
|
2235
2235
|
}
|
|
2236
2236
|
/**
|
|
2237
2237
|
* @public
|
|
@@ -2358,7 +2358,7 @@ export interface CheckpointConfigurationUpdate {
|
|
|
2358
2358
|
* </ul>
|
|
2359
2359
|
* </note>
|
|
2360
2360
|
*/
|
|
2361
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
2361
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* @public
|
|
2364
2364
|
* <p>Describes updates to whether checkpointing is enabled for an application.</p>
|
|
@@ -2402,18 +2402,18 @@ export interface MonitoringConfigurationUpdate {
|
|
|
2402
2402
|
* an application. You must set this property to <code>CUSTOM</code> in order to set the <code>LogLevel</code> or
|
|
2403
2403
|
* <code>MetricsLevel</code> parameters.</p>
|
|
2404
2404
|
*/
|
|
2405
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
2405
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* @public
|
|
2408
2408
|
* <p>Describes updates to the granularity of the CloudWatch Logs for an application. The <code>Parallelism</code>
|
|
2409
2409
|
* level is not recommended for applications with a Parallelism over 64 due to excessive costs.</p>
|
|
2410
2410
|
*/
|
|
2411
|
-
MetricsLevelUpdate?: MetricsLevel
|
|
2411
|
+
MetricsLevelUpdate?: MetricsLevel;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* @public
|
|
2414
2414
|
* <p>Describes updates to the verbosity of the CloudWatch Logs for an application.</p>
|
|
2415
2415
|
*/
|
|
2416
|
-
LogLevelUpdate?: LogLevel
|
|
2416
|
+
LogLevelUpdate?: LogLevel;
|
|
2417
2417
|
}
|
|
2418
2418
|
/**
|
|
2419
2419
|
* @public
|
|
@@ -2426,7 +2426,7 @@ export interface ParallelismConfigurationUpdate {
|
|
|
2426
2426
|
* You must set this property to <code>CUSTOM</code>
|
|
2427
2427
|
* in order to change your application's <code>AutoScalingEnabled</code>, <code>Parallelism</code>, or <code>ParallelismPerKPU</code> properties.</p>
|
|
2428
2428
|
*/
|
|
2429
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
2429
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
2430
2430
|
/**
|
|
2431
2431
|
* @public
|
|
2432
2432
|
* <p>Describes updates to the initial number of parallel tasks an application can perform. If <code>AutoScalingEnabled</code> is set to True, then
|
|
@@ -2847,7 +2847,7 @@ export interface ZeppelinMonitoringConfigurationUpdate {
|
|
|
2847
2847
|
* @public
|
|
2848
2848
|
* <p>Updates to the logging level for Apache Zeppelin within a Kinesis Data Analytics Studio notebook.</p>
|
|
2849
2849
|
*/
|
|
2850
|
-
LogLevelUpdate: LogLevel |
|
|
2850
|
+
LogLevelUpdate: LogLevel | undefined;
|
|
2851
2851
|
}
|
|
2852
2852
|
/**
|
|
2853
2853
|
* @public
|
|
@@ -3011,7 +3011,7 @@ export interface ApplicationDetail {
|
|
|
3011
3011
|
* @public
|
|
3012
3012
|
* <p>The runtime environment for the application.</p>
|
|
3013
3013
|
*/
|
|
3014
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
3014
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
3015
3015
|
/**
|
|
3016
3016
|
* @public
|
|
3017
3017
|
* <p>Specifies the IAM role that the application uses to access external resources.</p>
|
|
@@ -3021,7 +3021,7 @@ export interface ApplicationDetail {
|
|
|
3021
3021
|
* @public
|
|
3022
3022
|
* <p>The status of the application.</p>
|
|
3023
3023
|
*/
|
|
3024
|
-
ApplicationStatus: ApplicationStatus |
|
|
3024
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
3025
3025
|
/**
|
|
3026
3026
|
* @public
|
|
3027
3027
|
* <p>Provides the current application version. Kinesis Data Analytics updates the
|
|
@@ -3079,7 +3079,7 @@ export interface ApplicationDetail {
|
|
|
3079
3079
|
* @public
|
|
3080
3080
|
* <p>To create a Kinesis Data Analytics Studio notebook, you must set the mode to <code>INTERACTIVE</code>. However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.</p>
|
|
3081
3081
|
*/
|
|
3082
|
-
ApplicationMode?: ApplicationMode
|
|
3082
|
+
ApplicationMode?: ApplicationMode;
|
|
3083
3083
|
}
|
|
3084
3084
|
/**
|
|
3085
3085
|
* @public
|
|
@@ -3111,7 +3111,7 @@ export interface ApplicationSummary {
|
|
|
3111
3111
|
* @public
|
|
3112
3112
|
* <p>The status of the application.</p>
|
|
3113
3113
|
*/
|
|
3114
|
-
ApplicationStatus: ApplicationStatus |
|
|
3114
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
3115
3115
|
/**
|
|
3116
3116
|
* @public
|
|
3117
3117
|
* <p>Provides the current application version.</p>
|
|
@@ -3121,12 +3121,12 @@ export interface ApplicationSummary {
|
|
|
3121
3121
|
* @public
|
|
3122
3122
|
* <p>The runtime environment for the application.</p>
|
|
3123
3123
|
*/
|
|
3124
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
3124
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
3125
3125
|
/**
|
|
3126
3126
|
* @public
|
|
3127
3127
|
* <p>For a Kinesis Data Analytics for Apache Flink application, the mode is <code>STREAMING</code>. For a Kinesis Data Analytics Studio notebook, it is <code>INTERACTIVE</code>.</p>
|
|
3128
3128
|
*/
|
|
3129
|
-
ApplicationMode?: ApplicationMode
|
|
3129
|
+
ApplicationMode?: ApplicationMode;
|
|
3130
3130
|
}
|
|
3131
3131
|
/**
|
|
3132
3132
|
* @public
|
|
@@ -3142,7 +3142,7 @@ export interface ApplicationVersionSummary {
|
|
|
3142
3142
|
* @public
|
|
3143
3143
|
* <p>The status of the application.</p>
|
|
3144
3144
|
*/
|
|
3145
|
-
ApplicationStatus: ApplicationStatus |
|
|
3145
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
3146
3146
|
}
|
|
3147
3147
|
/**
|
|
3148
3148
|
* @public
|
|
@@ -3201,7 +3201,7 @@ export interface CreateApplicationRequest {
|
|
|
3201
3201
|
* @public
|
|
3202
3202
|
* <p>The runtime environment for the application.</p>
|
|
3203
3203
|
*/
|
|
3204
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
3204
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* @public
|
|
3207
3207
|
* <p>The IAM role used by the application to access Kinesis data streams, Kinesis Data Firehose
|
|
@@ -3234,7 +3234,7 @@ export interface CreateApplicationRequest {
|
|
|
3234
3234
|
* <p>Use the <code>STREAMING</code> mode to create a Kinesis Data Analytics For Flink application. To create a Kinesis Data Analytics Studio notebook, use the
|
|
3235
3235
|
* <code>INTERACTIVE</code> mode.</p>
|
|
3236
3236
|
*/
|
|
3237
|
-
ApplicationMode?: ApplicationMode
|
|
3237
|
+
ApplicationMode?: ApplicationMode;
|
|
3238
3238
|
}
|
|
3239
3239
|
/**
|
|
3240
3240
|
* @public
|
|
@@ -3313,7 +3313,7 @@ export interface CreateApplicationPresignedUrlRequest {
|
|
|
3313
3313
|
* <p>The type of the extension for which to create and return a URL. Currently, the only valid
|
|
3314
3314
|
* extension URL type is <code>FLINK_DASHBOARD_URL</code>. </p>
|
|
3315
3315
|
*/
|
|
3316
|
-
UrlType: UrlType |
|
|
3316
|
+
UrlType: UrlType | undefined;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* @public
|
|
3319
3319
|
* <p>The duration in seconds for which the returned URL will be valid.</p>
|
|
@@ -3693,7 +3693,7 @@ export interface SnapshotDetails {
|
|
|
3693
3693
|
* @public
|
|
3694
3694
|
* <p>The status of the application snapshot.</p>
|
|
3695
3695
|
*/
|
|
3696
|
-
SnapshotStatus: SnapshotStatus |
|
|
3696
|
+
SnapshotStatus: SnapshotStatus | undefined;
|
|
3697
3697
|
/**
|
|
3698
3698
|
* @public
|
|
3699
3699
|
* <p>The current application version ID when the snapshot was created.</p>
|
|
@@ -105,7 +105,7 @@ export declare const RecordFormatType: {
|
|
|
105
105
|
export type RecordFormatType =
|
|
106
106
|
(typeof RecordFormatType)[keyof typeof RecordFormatType];
|
|
107
107
|
export interface RecordFormat {
|
|
108
|
-
RecordFormatType: RecordFormatType |
|
|
108
|
+
RecordFormatType: RecordFormatType | undefined;
|
|
109
109
|
MappingParameters?: MappingParameters;
|
|
110
110
|
}
|
|
111
111
|
export interface SourceSchema {
|
|
@@ -147,7 +147,7 @@ export declare const InputStartingPosition: {
|
|
|
147
147
|
export type InputStartingPosition =
|
|
148
148
|
(typeof InputStartingPosition)[keyof typeof InputStartingPosition];
|
|
149
149
|
export interface InputStartingPositionConfiguration {
|
|
150
|
-
InputStartingPosition?: InputStartingPosition
|
|
150
|
+
InputStartingPosition?: InputStartingPosition;
|
|
151
151
|
}
|
|
152
152
|
export interface KinesisFirehoseInputDescription {
|
|
153
153
|
ResourceARN: string | undefined;
|
|
@@ -194,7 +194,7 @@ export interface AddApplicationInputProcessingConfigurationResponse {
|
|
|
194
194
|
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription;
|
|
195
195
|
}
|
|
196
196
|
export interface DestinationSchema {
|
|
197
|
-
RecordFormatType: RecordFormatType |
|
|
197
|
+
RecordFormatType: RecordFormatType | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface KinesisFirehoseOutput {
|
|
200
200
|
ResourceARN: string | undefined;
|
|
@@ -313,7 +313,7 @@ export type CodeContentType =
|
|
|
313
313
|
(typeof CodeContentType)[keyof typeof CodeContentType];
|
|
314
314
|
export interface ApplicationCodeConfiguration {
|
|
315
315
|
CodeContent?: CodeContent;
|
|
316
|
-
CodeContentType: CodeContentType |
|
|
316
|
+
CodeContentType: CodeContentType | undefined;
|
|
317
317
|
}
|
|
318
318
|
export interface S3ApplicationCodeLocationDescription {
|
|
319
319
|
BucketARN: string | undefined;
|
|
@@ -327,7 +327,7 @@ export interface CodeContentDescription {
|
|
|
327
327
|
S3ApplicationCodeLocationDescription?: S3ApplicationCodeLocationDescription;
|
|
328
328
|
}
|
|
329
329
|
export interface ApplicationCodeConfigurationDescription {
|
|
330
|
-
CodeContentType: CodeContentType |
|
|
330
|
+
CodeContentType: CodeContentType | undefined;
|
|
331
331
|
CodeContentDescription?: CodeContentDescription;
|
|
332
332
|
}
|
|
333
333
|
export interface S3ContentLocationUpdate {
|
|
@@ -341,7 +341,7 @@ export interface CodeContentUpdate {
|
|
|
341
341
|
S3ContentLocationUpdate?: S3ContentLocationUpdate;
|
|
342
342
|
}
|
|
343
343
|
export interface ApplicationCodeConfigurationUpdate {
|
|
344
|
-
CodeContentTypeUpdate?: CodeContentType
|
|
344
|
+
CodeContentTypeUpdate?: CodeContentType;
|
|
345
345
|
CodeContentUpdate?: CodeContentUpdate;
|
|
346
346
|
}
|
|
347
347
|
export interface ApplicationSnapshotConfiguration {
|
|
@@ -361,7 +361,7 @@ export declare const ConfigurationType: {
|
|
|
361
361
|
export type ConfigurationType =
|
|
362
362
|
(typeof ConfigurationType)[keyof typeof ConfigurationType];
|
|
363
363
|
export interface CheckpointConfiguration {
|
|
364
|
-
ConfigurationType: ConfigurationType |
|
|
364
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
365
365
|
CheckpointingEnabled?: boolean;
|
|
366
366
|
CheckpointInterval?: number;
|
|
367
367
|
MinPauseBetweenCheckpoints?: number;
|
|
@@ -381,12 +381,12 @@ export declare const MetricsLevel: {
|
|
|
381
381
|
};
|
|
382
382
|
export type MetricsLevel = (typeof MetricsLevel)[keyof typeof MetricsLevel];
|
|
383
383
|
export interface MonitoringConfiguration {
|
|
384
|
-
ConfigurationType: ConfigurationType |
|
|
385
|
-
MetricsLevel?: MetricsLevel
|
|
386
|
-
LogLevel?: LogLevel
|
|
384
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
385
|
+
MetricsLevel?: MetricsLevel;
|
|
386
|
+
LogLevel?: LogLevel;
|
|
387
387
|
}
|
|
388
388
|
export interface ParallelismConfiguration {
|
|
389
|
-
ConfigurationType: ConfigurationType |
|
|
389
|
+
ConfigurationType: ConfigurationType | undefined;
|
|
390
390
|
Parallelism?: number;
|
|
391
391
|
ParallelismPerKPU?: number;
|
|
392
392
|
AutoScalingEnabled?: boolean;
|
|
@@ -418,7 +418,7 @@ export interface MavenReference {
|
|
|
418
418
|
Version: string | undefined;
|
|
419
419
|
}
|
|
420
420
|
export interface CustomArtifactConfiguration {
|
|
421
|
-
ArtifactType: ArtifactType |
|
|
421
|
+
ArtifactType: ArtifactType | undefined;
|
|
422
422
|
S3ContentLocation?: S3ContentLocation;
|
|
423
423
|
MavenReference?: MavenReference;
|
|
424
424
|
}
|
|
@@ -430,7 +430,7 @@ export interface DeployAsApplicationConfiguration {
|
|
|
430
430
|
S3ContentLocation: S3ContentBaseLocation | undefined;
|
|
431
431
|
}
|
|
432
432
|
export interface ZeppelinMonitoringConfiguration {
|
|
433
|
-
LogLevel: LogLevel |
|
|
433
|
+
LogLevel: LogLevel | undefined;
|
|
434
434
|
}
|
|
435
435
|
export interface ZeppelinApplicationConfiguration {
|
|
436
436
|
MonitoringConfiguration?: ZeppelinMonitoringConfiguration;
|
|
@@ -454,18 +454,18 @@ export interface EnvironmentPropertyDescriptions {
|
|
|
454
454
|
PropertyGroupDescriptions?: PropertyGroup[];
|
|
455
455
|
}
|
|
456
456
|
export interface CheckpointConfigurationDescription {
|
|
457
|
-
ConfigurationType?: ConfigurationType
|
|
457
|
+
ConfigurationType?: ConfigurationType;
|
|
458
458
|
CheckpointingEnabled?: boolean;
|
|
459
459
|
CheckpointInterval?: number;
|
|
460
460
|
MinPauseBetweenCheckpoints?: number;
|
|
461
461
|
}
|
|
462
462
|
export interface MonitoringConfigurationDescription {
|
|
463
|
-
ConfigurationType?: ConfigurationType
|
|
464
|
-
MetricsLevel?: MetricsLevel
|
|
465
|
-
LogLevel?: LogLevel
|
|
463
|
+
ConfigurationType?: ConfigurationType;
|
|
464
|
+
MetricsLevel?: MetricsLevel;
|
|
465
|
+
LogLevel?: LogLevel;
|
|
466
466
|
}
|
|
467
467
|
export interface ParallelismConfigurationDescription {
|
|
468
|
-
ConfigurationType?: ConfigurationType
|
|
468
|
+
ConfigurationType?: ConfigurationType;
|
|
469
469
|
Parallelism?: number;
|
|
470
470
|
ParallelismPerKPU?: number;
|
|
471
471
|
CurrentParallelism?: number;
|
|
@@ -485,7 +485,7 @@ export declare const ApplicationRestoreType: {
|
|
|
485
485
|
export type ApplicationRestoreType =
|
|
486
486
|
(typeof ApplicationRestoreType)[keyof typeof ApplicationRestoreType];
|
|
487
487
|
export interface ApplicationRestoreConfiguration {
|
|
488
|
-
ApplicationRestoreType: ApplicationRestoreType |
|
|
488
|
+
ApplicationRestoreType: ApplicationRestoreType | undefined;
|
|
489
489
|
SnapshotName?: string;
|
|
490
490
|
}
|
|
491
491
|
export interface FlinkRunConfiguration {
|
|
@@ -509,7 +509,7 @@ export interface CatalogConfigurationDescription {
|
|
|
509
509
|
| undefined;
|
|
510
510
|
}
|
|
511
511
|
export interface CustomArtifactConfigurationDescription {
|
|
512
|
-
ArtifactType?: ArtifactType
|
|
512
|
+
ArtifactType?: ArtifactType;
|
|
513
513
|
S3ContentLocationDescription?: S3ContentLocation;
|
|
514
514
|
MavenReferenceDescription?: MavenReference;
|
|
515
515
|
}
|
|
@@ -521,7 +521,7 @@ export interface DeployAsApplicationConfigurationDescription {
|
|
|
521
521
|
S3ContentLocationDescription: S3ContentBaseLocationDescription | undefined;
|
|
522
522
|
}
|
|
523
523
|
export interface ZeppelinMonitoringConfigurationDescription {
|
|
524
|
-
LogLevel?: LogLevel
|
|
524
|
+
LogLevel?: LogLevel;
|
|
525
525
|
}
|
|
526
526
|
export interface ZeppelinApplicationConfigurationDescription {
|
|
527
527
|
MonitoringConfigurationDescription:
|
|
@@ -548,18 +548,18 @@ export interface EnvironmentPropertyUpdates {
|
|
|
548
548
|
PropertyGroups: PropertyGroup[] | undefined;
|
|
549
549
|
}
|
|
550
550
|
export interface CheckpointConfigurationUpdate {
|
|
551
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
551
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
552
552
|
CheckpointingEnabledUpdate?: boolean;
|
|
553
553
|
CheckpointIntervalUpdate?: number;
|
|
554
554
|
MinPauseBetweenCheckpointsUpdate?: number;
|
|
555
555
|
}
|
|
556
556
|
export interface MonitoringConfigurationUpdate {
|
|
557
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
558
|
-
MetricsLevelUpdate?: MetricsLevel
|
|
559
|
-
LogLevelUpdate?: LogLevel
|
|
557
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
558
|
+
MetricsLevelUpdate?: MetricsLevel;
|
|
559
|
+
LogLevelUpdate?: LogLevel;
|
|
560
560
|
}
|
|
561
561
|
export interface ParallelismConfigurationUpdate {
|
|
562
|
-
ConfigurationTypeUpdate?: ConfigurationType
|
|
562
|
+
ConfigurationTypeUpdate?: ConfigurationType;
|
|
563
563
|
ParallelismUpdate?: number;
|
|
564
564
|
ParallelismPerKPUUpdate?: number;
|
|
565
565
|
AutoScalingEnabledUpdate?: boolean;
|
|
@@ -651,7 +651,7 @@ export interface DeployAsApplicationConfigurationUpdate {
|
|
|
651
651
|
S3ContentLocationUpdate?: S3ContentBaseLocationUpdate;
|
|
652
652
|
}
|
|
653
653
|
export interface ZeppelinMonitoringConfigurationUpdate {
|
|
654
|
-
LogLevelUpdate: LogLevel |
|
|
654
|
+
LogLevelUpdate: LogLevel | undefined;
|
|
655
655
|
}
|
|
656
656
|
export interface ZeppelinApplicationConfigurationUpdate {
|
|
657
657
|
MonitoringConfigurationUpdate?: ZeppelinMonitoringConfigurationUpdate;
|
|
@@ -710,9 +710,9 @@ export interface ApplicationDetail {
|
|
|
710
710
|
ApplicationARN: string | undefined;
|
|
711
711
|
ApplicationDescription?: string;
|
|
712
712
|
ApplicationName: string | undefined;
|
|
713
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
713
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
714
714
|
ServiceExecutionRole?: string;
|
|
715
|
-
ApplicationStatus: ApplicationStatus |
|
|
715
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
716
716
|
ApplicationVersionId: number | undefined;
|
|
717
717
|
CreateTimestamp?: Date;
|
|
718
718
|
LastUpdateTimestamp?: Date;
|
|
@@ -723,7 +723,7 @@ export interface ApplicationDetail {
|
|
|
723
723
|
ApplicationVersionRolledBackFrom?: number;
|
|
724
724
|
ConditionalToken?: string;
|
|
725
725
|
ApplicationVersionRolledBackTo?: number;
|
|
726
|
-
ApplicationMode?: ApplicationMode
|
|
726
|
+
ApplicationMode?: ApplicationMode;
|
|
727
727
|
}
|
|
728
728
|
export interface ApplicationMaintenanceConfigurationUpdate {
|
|
729
729
|
ApplicationMaintenanceWindowStartTimeUpdate: string | undefined;
|
|
@@ -731,14 +731,14 @@ export interface ApplicationMaintenanceConfigurationUpdate {
|
|
|
731
731
|
export interface ApplicationSummary {
|
|
732
732
|
ApplicationName: string | undefined;
|
|
733
733
|
ApplicationARN: string | undefined;
|
|
734
|
-
ApplicationStatus: ApplicationStatus |
|
|
734
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
735
735
|
ApplicationVersionId: number | undefined;
|
|
736
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
737
|
-
ApplicationMode?: ApplicationMode
|
|
736
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
737
|
+
ApplicationMode?: ApplicationMode;
|
|
738
738
|
}
|
|
739
739
|
export interface ApplicationVersionSummary {
|
|
740
740
|
ApplicationVersionId: number | undefined;
|
|
741
|
-
ApplicationStatus: ApplicationStatus |
|
|
741
|
+
ApplicationStatus: ApplicationStatus | undefined;
|
|
742
742
|
}
|
|
743
743
|
export interface CloudWatchLoggingOptionUpdate {
|
|
744
744
|
CloudWatchLoggingOptionId: string | undefined;
|
|
@@ -751,12 +751,12 @@ export interface Tag {
|
|
|
751
751
|
export interface CreateApplicationRequest {
|
|
752
752
|
ApplicationName: string | undefined;
|
|
753
753
|
ApplicationDescription?: string;
|
|
754
|
-
RuntimeEnvironment: RuntimeEnvironment |
|
|
754
|
+
RuntimeEnvironment: RuntimeEnvironment | undefined;
|
|
755
755
|
ServiceExecutionRole: string | undefined;
|
|
756
756
|
ApplicationConfiguration?: ApplicationConfiguration;
|
|
757
757
|
CloudWatchLoggingOptions?: CloudWatchLoggingOption[];
|
|
758
758
|
Tags?: Tag[];
|
|
759
|
-
ApplicationMode?: ApplicationMode
|
|
759
|
+
ApplicationMode?: ApplicationMode;
|
|
760
760
|
}
|
|
761
761
|
export interface CreateApplicationResponse {
|
|
762
762
|
ApplicationDetail: ApplicationDetail | undefined;
|
|
@@ -791,7 +791,7 @@ export declare const UrlType: {
|
|
|
791
791
|
export type UrlType = (typeof UrlType)[keyof typeof UrlType];
|
|
792
792
|
export interface CreateApplicationPresignedUrlRequest {
|
|
793
793
|
ApplicationName: string | undefined;
|
|
794
|
-
UrlType: UrlType |
|
|
794
|
+
UrlType: UrlType | undefined;
|
|
795
795
|
SessionExpirationDurationInSeconds?: number;
|
|
796
796
|
}
|
|
797
797
|
export interface CreateApplicationPresignedUrlResponse {
|
|
@@ -882,7 +882,7 @@ export type SnapshotStatus =
|
|
|
882
882
|
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
883
883
|
export interface SnapshotDetails {
|
|
884
884
|
SnapshotName: string | undefined;
|
|
885
|
-
SnapshotStatus: SnapshotStatus |
|
|
885
|
+
SnapshotStatus: SnapshotStatus | undefined;
|
|
886
886
|
ApplicationVersionId: number | undefined;
|
|
887
887
|
SnapshotCreationTimestamp?: Date;
|
|
888
888
|
}
|
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.
|
|
4
|
+
"version": "3.429.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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|