aws-sdk 2.767.0 → 2.771.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -1
- package/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +58 -46
- package/apis/ce-2017-10-25.min.json +119 -87
- package/apis/dms-2016-01-01.min.json +230 -126
- package/apis/ec2-2016-11-15.min.json +39 -7
- package/apis/elasticache-2015-02-02.min.json +425 -106
- package/apis/elasticache-2015-02-02.paginators.json +12 -0
- package/apis/eventbridge-2015-10-07.min.json +20 -3
- package/apis/events-2015-10-07.min.json +20 -3
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +4 -1
- package/apis/marketplace-catalog-2018-09-17.min.json +12 -10
- package/apis/medialive-2017-10-14.min.json +366 -194
- package/apis/mediapackage-2017-10-12.min.json +214 -93
- package/apis/rds-2014-10-31.min.json +7 -1
- package/apis/rekognition-2016-06-27.min.json +96 -76
- package/apis/servicecatalog-2015-12-10.min.json +60 -30
- package/apis/servicecatalog-2015-12-10.paginators.json +5 -0
- package/apis/snowball-2016-06-30.min.json +61 -9
- package/clients/amplify.d.ts +17 -0
- package/clients/cloudwatchevents.d.ts +27 -0
- package/clients/computeoptimizer.d.ts +15 -15
- package/clients/costexplorer.d.ts +63 -11
- package/clients/dms.d.ts +189 -8
- package/clients/ec2.d.ts +36 -8
- package/clients/eks.d.ts +2 -2
- package/clients/elasticache.d.ts +416 -4
- package/clients/eventbridge.d.ts +27 -0
- package/clients/kinesisanalyticsv2.d.ts +79 -75
- package/clients/marketplacecatalog.d.ts +9 -0
- package/clients/medialive.d.ts +206 -4
- package/clients/mediapackage.d.ts +58 -0
- package/clients/rds.d.ts +13 -5
- package/clients/rekognition.d.ts +32 -14
- package/clients/sagemaker.d.ts +5 -5
- package/clients/servicecatalog.d.ts +66 -21
- package/clients/snowball.d.ts +122 -52
- package/clients/sns.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -18
- package/dist/aws-sdk.js +808 -335
- package/dist/aws-sdk.min.js +78 -78
- package/lib/config-base.d.ts +3 -0
- package/lib/core.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/eventbridge.d.ts
CHANGED
|
@@ -374,6 +374,12 @@ declare namespace EventBridge {
|
|
|
374
374
|
*/
|
|
375
375
|
Name: EventSourceName;
|
|
376
376
|
}
|
|
377
|
+
export interface DeadLetterConfig {
|
|
378
|
+
/**
|
|
379
|
+
* The ARN of the SQS queue specified as the target for the dead-letter queue.
|
|
380
|
+
*/
|
|
381
|
+
Arn?: ResourceArn;
|
|
382
|
+
}
|
|
377
383
|
export interface DeleteEventBusRequest {
|
|
378
384
|
/**
|
|
379
385
|
* The name of the event bus to delete.
|
|
@@ -850,6 +856,8 @@ declare namespace EventBridge {
|
|
|
850
856
|
NextToken?: NextToken;
|
|
851
857
|
}
|
|
852
858
|
export type ManagedBy = string;
|
|
859
|
+
export type MaximumEventAgeInSeconds = number;
|
|
860
|
+
export type MaximumRetryAttempts = number;
|
|
853
861
|
export type MessageGroupId = string;
|
|
854
862
|
export interface NetworkConfiguration {
|
|
855
863
|
/**
|
|
@@ -1189,6 +1197,17 @@ declare namespace EventBridge {
|
|
|
1189
1197
|
ErrorMessage?: ErrorMessage;
|
|
1190
1198
|
}
|
|
1191
1199
|
export type RemoveTargetsResultEntryList = RemoveTargetsResultEntry[];
|
|
1200
|
+
export type ResourceArn = string;
|
|
1201
|
+
export interface RetryPolicy {
|
|
1202
|
+
/**
|
|
1203
|
+
* The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.
|
|
1204
|
+
*/
|
|
1205
|
+
MaximumRetryAttempts?: MaximumRetryAttempts;
|
|
1206
|
+
/**
|
|
1207
|
+
* The maximum amount of time, in seconds, to continue to make retry attempts.
|
|
1208
|
+
*/
|
|
1209
|
+
MaximumEventAgeInSeconds?: MaximumEventAgeInSeconds;
|
|
1210
|
+
}
|
|
1192
1211
|
export type RoleArn = string;
|
|
1193
1212
|
export interface Rule {
|
|
1194
1213
|
/**
|
|
@@ -1345,6 +1364,14 @@ declare namespace EventBridge {
|
|
|
1345
1364
|
* Contains the Redshift Data API parameters to use when the target is a Redshift cluster. If you specify a Redshift Cluster as a Target, you can use this to specify parameters to invoke the Redshift Data API ExecuteStatement based on EventBridge events.
|
|
1346
1365
|
*/
|
|
1347
1366
|
RedshiftDataParameters?: RedshiftDataParameters;
|
|
1367
|
+
/**
|
|
1368
|
+
* The DeadLetterConfig that defines the target queue to send dead-letter queue events to.
|
|
1369
|
+
*/
|
|
1370
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
1371
|
+
/**
|
|
1372
|
+
* The RetryPolicy object that contains the retry policy configuration to use for the dead-letter queue.
|
|
1373
|
+
*/
|
|
1374
|
+
RetryPolicy?: RetryPolicy;
|
|
1348
1375
|
}
|
|
1349
1376
|
export type TargetArn = string;
|
|
1350
1377
|
export type TargetId = string;
|
|
@@ -20,35 +20,35 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
addApplicationCloudWatchLoggingOption(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationCloudWatchLoggingOptionResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationCloudWatchLoggingOptionResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Adds a streaming source to your SQL-based
|
|
23
|
+
* Adds a streaming source to your SQL-based Kinesis Data Analytics application. You can add a streaming source when you create an application, or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
|
|
24
24
|
*/
|
|
25
25
|
addApplicationInput(params: KinesisAnalyticsV2.Types.AddApplicationInputRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Adds a streaming source to your SQL-based
|
|
27
|
+
* Adds a streaming source to your SQL-based Kinesis Data Analytics application. You can add a streaming source when you create an application, or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
|
|
28
28
|
*/
|
|
29
29
|
addApplicationInput(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Adds an InputProcessingConfiguration to
|
|
31
|
+
* Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.
|
|
32
32
|
*/
|
|
33
33
|
addApplicationInputProcessingConfiguration(params: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Adds an InputProcessingConfiguration to
|
|
35
|
+
* Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.
|
|
36
36
|
*/
|
|
37
37
|
addApplicationInputProcessingConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Adds an external destination to your SQL-based
|
|
39
|
+
* Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
|
|
40
40
|
*/
|
|
41
41
|
addApplicationOutput(params: KinesisAnalyticsV2.Types.AddApplicationOutputRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationOutputResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Adds an external destination to your SQL-based
|
|
43
|
+
* Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
|
|
44
44
|
*/
|
|
45
45
|
addApplicationOutput(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationOutputResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Adds a reference data source to an existing SQL-based
|
|
47
|
+
* Adds a reference data source to an existing SQL-based Kinesis Data Analytics application. Kinesis Data Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in an Amazon S3 object maps to columns in the resulting in-application table.
|
|
48
48
|
*/
|
|
49
49
|
addApplicationReferenceDataSource(params: KinesisAnalyticsV2.Types.AddApplicationReferenceDataSourceRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationReferenceDataSourceResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationReferenceDataSourceResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Adds a reference data source to an existing SQL-based
|
|
51
|
+
* Adds a reference data source to an existing SQL-based Kinesis Data Analytics application. Kinesis Data Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in an Amazon S3 object maps to columns in the resulting in-application table.
|
|
52
52
|
*/
|
|
53
53
|
addApplicationReferenceDataSource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationReferenceDataSourceResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationReferenceDataSourceResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -60,11 +60,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
addApplicationVpcConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationVpcConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationVpcConfigurationResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Creates
|
|
63
|
+
* Creates a Kinesis Data Analytics application. For information about creating a Kinesis Data Analytics application, see Creating an Application.
|
|
64
64
|
*/
|
|
65
65
|
createApplication(params: KinesisAnalyticsV2.Types.CreateApplicationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.CreateApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.CreateApplicationResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Creates
|
|
67
|
+
* Creates a Kinesis Data Analytics application. For information about creating a Kinesis Data Analytics application, see Creating an Application.
|
|
68
68
|
*/
|
|
69
69
|
createApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.CreateApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.CreateApplicationResponse, AWSError>;
|
|
70
70
|
/**
|
|
@@ -84,11 +84,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
84
84
|
*/
|
|
85
85
|
deleteApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
* Deletes an Amazon CloudWatch log stream from an
|
|
87
|
+
* Deletes an Amazon CloudWatch log stream from an Kinesis Data Analytics application.
|
|
88
88
|
*/
|
|
89
89
|
deleteApplicationCloudWatchLoggingOption(params: KinesisAnalyticsV2.Types.DeleteApplicationCloudWatchLoggingOptionRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationCloudWatchLoggingOptionResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationCloudWatchLoggingOptionResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
* Deletes an Amazon CloudWatch log stream from an
|
|
91
|
+
* Deletes an Amazon CloudWatch log stream from an Kinesis Data Analytics application.
|
|
92
92
|
*/
|
|
93
93
|
deleteApplicationCloudWatchLoggingOption(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationCloudWatchLoggingOptionResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationCloudWatchLoggingOptionResponse, AWSError>;
|
|
94
94
|
/**
|
|
@@ -100,19 +100,19 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
deleteApplicationInputProcessingConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationInputProcessingConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationInputProcessingConfigurationResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Deletes the output destination configuration from your SQL-based
|
|
103
|
+
* Deletes the output destination configuration from your SQL-based Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.
|
|
104
104
|
*/
|
|
105
105
|
deleteApplicationOutput(params: KinesisAnalyticsV2.Types.DeleteApplicationOutputRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationOutputResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Deletes the output destination configuration from your SQL-based
|
|
107
|
+
* Deletes the output destination configuration from your SQL-based Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.
|
|
108
108
|
*/
|
|
109
109
|
deleteApplicationOutput(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationOutputResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Deletes a reference data source configuration from the specified SQL-based
|
|
111
|
+
* Deletes a reference data source configuration from the specified SQL-based Kinesis Data Analytics application's configuration. If the application is running, Kinesis Data Analytics immediately removes the in-application table that you created using the AddApplicationReferenceDataSource operation.
|
|
112
112
|
*/
|
|
113
113
|
deleteApplicationReferenceDataSource(params: KinesisAnalyticsV2.Types.DeleteApplicationReferenceDataSourceRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationReferenceDataSourceResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationReferenceDataSourceResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Deletes a reference data source configuration from the specified SQL-based
|
|
115
|
+
* Deletes a reference data source configuration from the specified SQL-based Kinesis Data Analytics application's configuration. If the application is running, Kinesis Data Analytics immediately removes the in-application table that you created using the AddApplicationReferenceDataSource operation.
|
|
116
116
|
*/
|
|
117
117
|
deleteApplicationReferenceDataSource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationReferenceDataSourceResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationReferenceDataSourceResponse, AWSError>;
|
|
118
118
|
/**
|
|
@@ -132,11 +132,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
132
132
|
*/
|
|
133
133
|
deleteApplicationVpcConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DeleteApplicationVpcConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.DeleteApplicationVpcConfigurationResponse, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
* Returns information about a specific
|
|
135
|
+
* Returns information about a specific Kinesis Data Analytics application. If you want to retrieve a list of all applications in your account, use the ListApplications operation.
|
|
136
136
|
*/
|
|
137
137
|
describeApplication(params: KinesisAnalyticsV2.Types.DescribeApplicationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
* Returns information about a specific
|
|
139
|
+
* Returns information about a specific Kinesis Data Analytics application. If you want to retrieve a list of all applications in your account, use the ListApplications operation.
|
|
140
140
|
*/
|
|
141
141
|
describeApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationResponse, AWSError>;
|
|
142
142
|
/**
|
|
@@ -148,11 +148,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
148
148
|
*/
|
|
149
149
|
describeApplicationSnapshot(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationSnapshotResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationSnapshotResponse, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Infers a schema for
|
|
151
|
+
* Infers a schema for a SQL-based Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema. You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.
|
|
152
152
|
*/
|
|
153
153
|
discoverInputSchema(params: KinesisAnalyticsV2.Types.DiscoverInputSchemaRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse) => void): Request<KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Infers a schema for
|
|
155
|
+
* Infers a schema for a SQL-based Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema. You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.
|
|
156
156
|
*/
|
|
157
157
|
discoverInputSchema(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse) => void): Request<KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse, AWSError>;
|
|
158
158
|
/**
|
|
@@ -164,11 +164,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
listApplicationSnapshots(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationSnapshotsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationSnapshotsResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Returns a list of
|
|
167
|
+
* Returns a list of Kinesis Data Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If you want detailed information about a specific application, use DescribeApplication.
|
|
168
168
|
*/
|
|
169
169
|
listApplications(params: KinesisAnalyticsV2.Types.ListApplicationsRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationsResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Returns a list of
|
|
171
|
+
* Returns a list of Kinesis Data Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If you want detailed information about a specific application, use DescribeApplication.
|
|
172
172
|
*/
|
|
173
173
|
listApplications(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationsResponse, AWSError>;
|
|
174
174
|
/**
|
|
@@ -180,11 +180,11 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
180
180
|
*/
|
|
181
181
|
listTagsForResource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListTagsForResourceResponse) => void): Request<KinesisAnalyticsV2.Types.ListTagsForResourceResponse, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
* Starts the specified
|
|
183
|
+
* Starts the specified Kinesis Data Analytics application. After creating an application, you must exclusively call this operation to start your application.
|
|
184
184
|
*/
|
|
185
185
|
startApplication(params: KinesisAnalyticsV2.Types.StartApplicationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.StartApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.StartApplicationResponse, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
* Starts the specified
|
|
187
|
+
* Starts the specified Kinesis Data Analytics application. After creating an application, you must exclusively call this operation to start your application.
|
|
188
188
|
*/
|
|
189
189
|
startApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.StartApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.StartApplicationResponse, AWSError>;
|
|
190
190
|
/**
|
|
@@ -196,27 +196,27 @@ declare class KinesisAnalyticsV2 extends Service {
|
|
|
196
196
|
*/
|
|
197
197
|
stopApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.StopApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.StopApplicationResponse, AWSError>;
|
|
198
198
|
/**
|
|
199
|
-
* Adds one or more key-value tags to a Kinesis Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
|
|
199
|
+
* Adds one or more key-value tags to a Kinesis Data Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
|
|
200
200
|
*/
|
|
201
201
|
tagResource(params: KinesisAnalyticsV2.Types.TagResourceRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.TagResourceResponse) => void): Request<KinesisAnalyticsV2.Types.TagResourceResponse, AWSError>;
|
|
202
202
|
/**
|
|
203
|
-
* Adds one or more key-value tags to a Kinesis Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
|
|
203
|
+
* Adds one or more key-value tags to a Kinesis Data Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
|
|
204
204
|
*/
|
|
205
205
|
tagResource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.TagResourceResponse) => void): Request<KinesisAnalyticsV2.Types.TagResourceResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
* Removes one or more tags from a Kinesis Analytics application. For more information, see Using Tagging.
|
|
207
|
+
* Removes one or more tags from a Kinesis Data Analytics application. For more information, see Using Tagging.
|
|
208
208
|
*/
|
|
209
209
|
untagResource(params: KinesisAnalyticsV2.Types.UntagResourceRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UntagResourceResponse) => void): Request<KinesisAnalyticsV2.Types.UntagResourceResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
* Removes one or more tags from a Kinesis Analytics application. For more information, see Using Tagging.
|
|
211
|
+
* Removes one or more tags from a Kinesis Data Analytics application. For more information, see Using Tagging.
|
|
212
212
|
*/
|
|
213
213
|
untagResource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UntagResourceResponse) => void): Request<KinesisAnalyticsV2.Types.UntagResourceResponse, AWSError>;
|
|
214
214
|
/**
|
|
215
|
-
* Updates an existing
|
|
215
|
+
* Updates an existing Kinesis Data Analytics application. Using this operation, you can update application code, input configuration, and output configuration. Kinesis Data Analytics updates the ApplicationVersionId each time you update your application. You cannot update the RuntimeEnvironment of an existing application. If you need to update an application's RuntimeEnvironment, you must delete the application and create it again.
|
|
216
216
|
*/
|
|
217
217
|
updateApplication(params: KinesisAnalyticsV2.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UpdateApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.UpdateApplicationResponse, AWSError>;
|
|
218
218
|
/**
|
|
219
|
-
* Updates an existing
|
|
219
|
+
* Updates an existing Kinesis Data Analytics application. Using this operation, you can update application code, input configuration, and output configuration. Kinesis Data Analytics updates the ApplicationVersionId each time you update your application. You cannot update the RuntimeEnvironment of an existing application. If you need to update an application's RuntimeEnvironment, you must delete the application and create it again.
|
|
220
220
|
*/
|
|
221
221
|
updateApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.UpdateApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.UpdateApplicationResponse, AWSError>;
|
|
222
222
|
}
|
|
@@ -277,7 +277,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
277
277
|
*/
|
|
278
278
|
ApplicationVersionId?: ApplicationVersionId;
|
|
279
279
|
/**
|
|
280
|
-
* The input ID that is associated with the application input. This is the ID that
|
|
280
|
+
* The input ID that is associated with the application input. This is the ID that Kinesis Data Analytics assigns to each input configuration that you add to your application.
|
|
281
281
|
*/
|
|
282
282
|
InputId?: Id;
|
|
283
283
|
/**
|
|
@@ -361,7 +361,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
361
361
|
*/
|
|
362
362
|
ApplicationARN?: ResourceARN;
|
|
363
363
|
/**
|
|
364
|
-
* The updated application version ID.
|
|
364
|
+
* The updated application version ID. Kinesis Data Analytics increments this ID when the application is updated.
|
|
365
365
|
*/
|
|
366
366
|
ApplicationVersionId?: ApplicationVersionId;
|
|
367
367
|
/**
|
|
@@ -375,7 +375,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
375
375
|
*/
|
|
376
376
|
ApplicationName: ApplicationName;
|
|
377
377
|
/**
|
|
378
|
-
* The version of the application to which you want to add the
|
|
378
|
+
* The version of the application to which you want to add the VPC configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
|
|
379
379
|
*/
|
|
380
380
|
CurrentApplicationVersionId: ApplicationVersionId;
|
|
381
381
|
/**
|
|
@@ -429,23 +429,23 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
429
429
|
}
|
|
430
430
|
export interface ApplicationConfiguration {
|
|
431
431
|
/**
|
|
432
|
-
* The creation and update parameters for
|
|
432
|
+
* The creation and update parameters for a SQL-based Kinesis Data Analytics application.
|
|
433
433
|
*/
|
|
434
434
|
SqlApplicationConfiguration?: SqlApplicationConfiguration;
|
|
435
435
|
/**
|
|
436
|
-
* The creation and update parameters for a
|
|
436
|
+
* The creation and update parameters for a Flink-based Kinesis Data Analytics application.
|
|
437
437
|
*/
|
|
438
438
|
FlinkApplicationConfiguration?: FlinkApplicationConfiguration;
|
|
439
439
|
/**
|
|
440
|
-
* Describes execution properties for a
|
|
440
|
+
* Describes execution properties for a Flink-based Kinesis Data Analytics application.
|
|
441
441
|
*/
|
|
442
442
|
EnvironmentProperties?: EnvironmentProperties;
|
|
443
443
|
/**
|
|
444
|
-
* The code location and type parameters for a
|
|
444
|
+
* The code location and type parameters for a Flink-based Kinesis Data Analytics application.
|
|
445
445
|
*/
|
|
446
446
|
ApplicationCodeConfiguration: ApplicationCodeConfiguration;
|
|
447
447
|
/**
|
|
448
|
-
* Describes whether snapshots are enabled for a
|
|
448
|
+
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
449
449
|
*/
|
|
450
450
|
ApplicationSnapshotConfiguration?: ApplicationSnapshotConfiguration;
|
|
451
451
|
/**
|
|
@@ -455,11 +455,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
455
455
|
}
|
|
456
456
|
export interface ApplicationConfigurationDescription {
|
|
457
457
|
/**
|
|
458
|
-
* The details about inputs, outputs, and reference data sources for
|
|
458
|
+
* The details about inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.
|
|
459
459
|
*/
|
|
460
460
|
SqlApplicationConfigurationDescription?: SqlApplicationConfigurationDescription;
|
|
461
461
|
/**
|
|
462
|
-
* The details about the application code for a
|
|
462
|
+
* The details about the application code for a Flink-based Kinesis Data Analytics application.
|
|
463
463
|
*/
|
|
464
464
|
ApplicationCodeConfigurationDescription?: ApplicationCodeConfigurationDescription;
|
|
465
465
|
/**
|
|
@@ -467,15 +467,15 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
467
467
|
*/
|
|
468
468
|
RunConfigurationDescription?: RunConfigurationDescription;
|
|
469
469
|
/**
|
|
470
|
-
* The details about a
|
|
470
|
+
* The details about a Flink-based Kinesis Data Analytics application.
|
|
471
471
|
*/
|
|
472
472
|
FlinkApplicationConfigurationDescription?: FlinkApplicationConfigurationDescription;
|
|
473
473
|
/**
|
|
474
|
-
* Describes execution properties for a
|
|
474
|
+
* Describes execution properties for a Flink-based Kinesis Data Analytics application.
|
|
475
475
|
*/
|
|
476
476
|
EnvironmentPropertyDescriptions?: EnvironmentPropertyDescriptions;
|
|
477
477
|
/**
|
|
478
|
-
* Describes whether snapshots are enabled for a
|
|
478
|
+
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
479
479
|
*/
|
|
480
480
|
ApplicationSnapshotConfigurationDescription?: ApplicationSnapshotConfigurationDescription;
|
|
481
481
|
/**
|
|
@@ -485,23 +485,23 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
485
485
|
}
|
|
486
486
|
export interface ApplicationConfigurationUpdate {
|
|
487
487
|
/**
|
|
488
|
-
* Describes updates to
|
|
488
|
+
* Describes updates to a SQL-based Kinesis Data Analytics application's configuration.
|
|
489
489
|
*/
|
|
490
490
|
SqlApplicationConfigurationUpdate?: SqlApplicationConfigurationUpdate;
|
|
491
491
|
/**
|
|
492
|
-
* Describes updates to a
|
|
492
|
+
* Describes updates to a Flink-based Kinesis Data Analytics application's code configuration.
|
|
493
493
|
*/
|
|
494
494
|
ApplicationCodeConfigurationUpdate?: ApplicationCodeConfigurationUpdate;
|
|
495
495
|
/**
|
|
496
|
-
* Describes updates to a
|
|
496
|
+
* Describes updates to a Flink-based Kinesis Data Analytics application's configuration.
|
|
497
497
|
*/
|
|
498
498
|
FlinkApplicationConfigurationUpdate?: FlinkApplicationConfigurationUpdate;
|
|
499
499
|
/**
|
|
500
|
-
* Describes updates to the environment properties for a
|
|
500
|
+
* Describes updates to the environment properties for a Flink-based Kinesis Data Analytics application.
|
|
501
501
|
*/
|
|
502
502
|
EnvironmentPropertyUpdates?: EnvironmentPropertyUpdates;
|
|
503
503
|
/**
|
|
504
|
-
* Describes whether snapshots are enabled for a
|
|
504
|
+
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
505
505
|
*/
|
|
506
506
|
ApplicationSnapshotConfigurationUpdate?: ApplicationSnapshotConfigurationUpdate;
|
|
507
507
|
/**
|
|
@@ -524,7 +524,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
524
524
|
*/
|
|
525
525
|
ApplicationName: ApplicationName;
|
|
526
526
|
/**
|
|
527
|
-
* The runtime environment for the application (SQL-1.0 or FLINK-
|
|
527
|
+
* The runtime environment for the application (SQL-1.0, FLINK-1_6, or FLINK-1_8).
|
|
528
528
|
*/
|
|
529
529
|
RuntimeEnvironment: RuntimeEnvironment;
|
|
530
530
|
/**
|
|
@@ -548,7 +548,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
548
548
|
*/
|
|
549
549
|
LastUpdateTimestamp?: Timestamp;
|
|
550
550
|
/**
|
|
551
|
-
* Provides details about the application's SQL or
|
|
551
|
+
* Provides details about the application's Java, SQL, or Scala code and starting parameters.
|
|
552
552
|
*/
|
|
553
553
|
ApplicationConfigurationDescription?: ApplicationConfigurationDescription;
|
|
554
554
|
/**
|
|
@@ -570,23 +570,23 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
570
570
|
export type ApplicationRestoreType = "SKIP_RESTORE_FROM_SNAPSHOT"|"RESTORE_FROM_LATEST_SNAPSHOT"|"RESTORE_FROM_CUSTOM_SNAPSHOT"|string;
|
|
571
571
|
export interface ApplicationSnapshotConfiguration {
|
|
572
572
|
/**
|
|
573
|
-
* Describes whether snapshots are enabled for a
|
|
573
|
+
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
574
574
|
*/
|
|
575
575
|
SnapshotsEnabled: BooleanObject;
|
|
576
576
|
}
|
|
577
577
|
export interface ApplicationSnapshotConfigurationDescription {
|
|
578
578
|
/**
|
|
579
|
-
* Describes whether snapshots are enabled for a
|
|
579
|
+
* Describes whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
580
580
|
*/
|
|
581
581
|
SnapshotsEnabled: BooleanObject;
|
|
582
582
|
}
|
|
583
583
|
export interface ApplicationSnapshotConfigurationUpdate {
|
|
584
584
|
/**
|
|
585
|
-
* Describes updates to whether snapshots are enabled for a
|
|
585
|
+
* Describes updates to whether snapshots are enabled for a Flink-based Kinesis Data Analytics application.
|
|
586
586
|
*/
|
|
587
587
|
SnapshotsEnabledUpdate: BooleanObject;
|
|
588
588
|
}
|
|
589
|
-
export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|string;
|
|
589
|
+
export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|string;
|
|
590
590
|
export type ApplicationSummaries = ApplicationSummary[];
|
|
591
591
|
export interface ApplicationSummary {
|
|
592
592
|
/**
|
|
@@ -606,7 +606,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
606
606
|
*/
|
|
607
607
|
ApplicationVersionId: ApplicationVersionId;
|
|
608
608
|
/**
|
|
609
|
-
* The runtime environment for the application (SQL-1.0 or FLINK-
|
|
609
|
+
* The runtime environment for the application (SQL-1.0, FLINK-1_6, or FLINK-1_8).
|
|
610
610
|
*/
|
|
611
611
|
RuntimeEnvironment: RuntimeEnvironment;
|
|
612
612
|
}
|
|
@@ -625,11 +625,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
625
625
|
}
|
|
626
626
|
export interface CheckpointConfiguration {
|
|
627
627
|
/**
|
|
628
|
-
* Describes whether the application uses
|
|
628
|
+
* Describes whether the application uses Kinesis Data Analytics' default checkpointing behavior. You must set this property to CUSTOM in order to set the CheckpointingEnabled, CheckpointInterval, or MinPauseBetweenCheckpoints parameters. If this value is set to DEFAULT, the application will use the following values, even if they are set to other values using APIs or application code: CheckpointingEnabled: true CheckpointInterval: 60000 MinPauseBetweenCheckpoints: 5000
|
|
629
629
|
*/
|
|
630
630
|
ConfigurationType: ConfigurationType;
|
|
631
631
|
/**
|
|
632
|
-
* Describes whether checkpointing is enabled for a
|
|
632
|
+
* Describes whether checkpointing is enabled for a Flink-based Kinesis Data Analytics application. If CheckpointConfiguration.ConfigurationType is DEFAULT, the application will use a CheckpointingEnabled value of true, even if this value is set to another value using this API or in application code.
|
|
633
633
|
*/
|
|
634
634
|
CheckpointingEnabled?: BooleanObject;
|
|
635
635
|
/**
|
|
@@ -647,7 +647,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
647
647
|
*/
|
|
648
648
|
ConfigurationType?: ConfigurationType;
|
|
649
649
|
/**
|
|
650
|
-
* Describes whether checkpointing is enabled for a
|
|
650
|
+
* Describes whether checkpointing is enabled for a Flink-based Kinesis Data Analytics application. If CheckpointConfiguration.ConfigurationType is DEFAULT, the application will use a CheckpointingEnabled value of true, even if this value is set to another value using this API or in application code.
|
|
651
651
|
*/
|
|
652
652
|
CheckpointingEnabled?: BooleanObject;
|
|
653
653
|
/**
|
|
@@ -713,11 +713,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
713
713
|
export type CloudWatchLoggingOptions = CloudWatchLoggingOption[];
|
|
714
714
|
export interface CodeContent {
|
|
715
715
|
/**
|
|
716
|
-
* The text-format code for a
|
|
716
|
+
* The text-format code for a Flink-based Kinesis Data Analytics application.
|
|
717
717
|
*/
|
|
718
718
|
TextContent?: TextContent;
|
|
719
719
|
/**
|
|
720
|
-
* The zip-format code for a
|
|
720
|
+
* The zip-format code for a Flink-based Kinesis Data Analytics application.
|
|
721
721
|
*/
|
|
722
722
|
ZipFileContent?: ZipFileContent;
|
|
723
723
|
/**
|
|
@@ -771,7 +771,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
771
771
|
*/
|
|
772
772
|
ApplicationDescription?: ApplicationDescription;
|
|
773
773
|
/**
|
|
774
|
-
* The runtime environment for the application (SQL-1.0 or FLINK-
|
|
774
|
+
* The runtime environment for the application (SQL-1.0, FLINK-1_6, or FLINK-1_8).
|
|
775
775
|
*/
|
|
776
776
|
RuntimeEnvironment: RuntimeEnvironment;
|
|
777
777
|
/**
|
|
@@ -1106,7 +1106,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1106
1106
|
}
|
|
1107
1107
|
export interface FlinkRunConfiguration {
|
|
1108
1108
|
/**
|
|
1109
|
-
* When restoring from a
|
|
1109
|
+
* When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see Allowing Non-Restored State in the Apache Flink documentation. This value defaults to false. If you update your application without specifying this parameter, AllowNonRestoredState will be set to false, even if it was previously set to true.
|
|
1110
1110
|
*/
|
|
1111
1111
|
AllowNonRestoredState?: BooleanObject;
|
|
1112
1112
|
}
|
|
@@ -1481,7 +1481,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1481
1481
|
*/
|
|
1482
1482
|
ConfigurationType: ConfigurationType;
|
|
1483
1483
|
/**
|
|
1484
|
-
* Describes the granularity of the CloudWatch Logs for an application.
|
|
1484
|
+
* Describes the granularity of the CloudWatch Logs for an application. The Parallelism level is not recommended for applications with a Parallelism over 64 due to excessive costs.
|
|
1485
1485
|
*/
|
|
1486
1486
|
MetricsLevel?: MetricsLevel;
|
|
1487
1487
|
/**
|
|
@@ -1509,7 +1509,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1509
1509
|
*/
|
|
1510
1510
|
ConfigurationTypeUpdate?: ConfigurationType;
|
|
1511
1511
|
/**
|
|
1512
|
-
* Describes updates to the granularity of the CloudWatch Logs for an application.
|
|
1512
|
+
* Describes updates to the granularity of the CloudWatch Logs for an application. The Parallelism level is not recommended for applications with a Parallelism over 64 due to excessive costs.
|
|
1513
1513
|
*/
|
|
1514
1514
|
MetricsLevelUpdate?: MetricsLevel;
|
|
1515
1515
|
/**
|
|
@@ -1525,11 +1525,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1525
1525
|
*/
|
|
1526
1526
|
Name: InAppStreamName;
|
|
1527
1527
|
/**
|
|
1528
|
-
* Identifies
|
|
1528
|
+
* Identifies a Kinesis data stream as the destination.
|
|
1529
1529
|
*/
|
|
1530
1530
|
KinesisStreamsOutput?: KinesisStreamsOutput;
|
|
1531
1531
|
/**
|
|
1532
|
-
* Identifies
|
|
1532
|
+
* Identifies a Kinesis Data Firehose delivery stream as the destination.
|
|
1533
1533
|
*/
|
|
1534
1534
|
KinesisFirehoseOutput?: KinesisFirehoseOutput;
|
|
1535
1535
|
/**
|
|
@@ -1603,11 +1603,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1603
1603
|
*/
|
|
1604
1604
|
ConfigurationType: ConfigurationType;
|
|
1605
1605
|
/**
|
|
1606
|
-
* Describes the initial number of parallel tasks that a
|
|
1606
|
+
* Describes the initial number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform. If AutoScalingEnabled is set to True, Kinesis Data Analytics increases the CurrentParallelism value in response to application load. The service can increase the CurrentParallelism value up to the maximum parallelism, which is ParalellismPerKPU times the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce the CurrentParallelism value down to the Parallelism setting.
|
|
1607
1607
|
*/
|
|
1608
1608
|
Parallelism?: Parallelism;
|
|
1609
1609
|
/**
|
|
1610
|
-
* Describes the number of parallel tasks that a
|
|
1610
|
+
* Describes the number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform per Kinesis Processing Unit (KPU) used by the application. For more information about KPUs, see Amazon Kinesis Data Analytics Pricing.
|
|
1611
1611
|
*/
|
|
1612
1612
|
ParallelismPerKPU?: ParallelismPerKPU;
|
|
1613
1613
|
/**
|
|
@@ -1621,15 +1621,15 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1621
1621
|
*/
|
|
1622
1622
|
ConfigurationType?: ConfigurationType;
|
|
1623
1623
|
/**
|
|
1624
|
-
* Describes the initial number of parallel tasks that a
|
|
1624
|
+
* Describes the initial number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform. If AutoScalingEnabled is set to True, then Kinesis Data Analytics can increase the CurrentParallelism value in response to application load. The service can increase CurrentParallelism up to the maximum parallelism, which is ParalellismPerKPU times the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce the CurrentParallelism value down to the Parallelism setting.
|
|
1625
1625
|
*/
|
|
1626
1626
|
Parallelism?: Parallelism;
|
|
1627
1627
|
/**
|
|
1628
|
-
* Describes the number of parallel tasks that a
|
|
1628
|
+
* Describes the number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform per Kinesis Processing Unit (KPU) used by the application.
|
|
1629
1629
|
*/
|
|
1630
1630
|
ParallelismPerKPU?: ParallelismPerKPU;
|
|
1631
1631
|
/**
|
|
1632
|
-
* Describes the current number of parallel tasks that a
|
|
1632
|
+
* Describes the current number of parallel tasks that a Flink-based Kinesis Data Analytics application can perform. If AutoScalingEnabled is set to True, Kinesis Data Analytics can increase this value in response to application load. The service can increase this value up to the maximum parallelism, which is ParalellismPerKPU times the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce the CurrentParallelism value down to the Parallelism setting.
|
|
1633
1633
|
*/
|
|
1634
1634
|
CurrentParallelism?: Parallelism;
|
|
1635
1635
|
/**
|
|
@@ -1767,11 +1767,11 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1767
1767
|
export type RoleARN = string;
|
|
1768
1768
|
export interface RunConfiguration {
|
|
1769
1769
|
/**
|
|
1770
|
-
* Describes the starting parameters for
|
|
1770
|
+
* Describes the starting parameters for a Flink-based Kinesis Data Analytics application.
|
|
1771
1771
|
*/
|
|
1772
1772
|
FlinkRunConfiguration?: FlinkRunConfiguration;
|
|
1773
1773
|
/**
|
|
1774
|
-
* Describes the starting parameters for
|
|
1774
|
+
* Describes the starting parameters for a SQL-based Kinesis Data Analytics application application.
|
|
1775
1775
|
*/
|
|
1776
1776
|
SqlRunConfigurations?: SqlRunConfigurations;
|
|
1777
1777
|
/**
|
|
@@ -1788,7 +1788,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1788
1788
|
}
|
|
1789
1789
|
export interface RunConfigurationUpdate {
|
|
1790
1790
|
/**
|
|
1791
|
-
* Describes the starting parameters for
|
|
1791
|
+
* Describes the starting parameters for a Flink-based Kinesis Data Analytics application.
|
|
1792
1792
|
*/
|
|
1793
1793
|
FlinkRunConfiguration?: FlinkRunConfiguration;
|
|
1794
1794
|
/**
|
|
@@ -1990,6 +1990,10 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
1990
1990
|
* The name of the running application to stop.
|
|
1991
1991
|
*/
|
|
1992
1992
|
ApplicationName: ApplicationName;
|
|
1993
|
+
/**
|
|
1994
|
+
* Set to true to force the application to stop. If you set Force to true, Kinesis Data Analytics stops the application without taking a snapshot. You can only force stop a Flink-based Kinesis Data Analytics application. You can't force stop a SQL-based Kinesis Data Analytics application. The application must be in the STARTING, UPDATING, STOPPING, AUTOSCALING, or RUNNING state.
|
|
1995
|
+
*/
|
|
1996
|
+
Force?: BooleanObject;
|
|
1993
1997
|
}
|
|
1994
1998
|
export interface StopApplicationResponse {
|
|
1995
1999
|
}
|
|
@@ -2025,7 +2029,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
|
2025
2029
|
export type Timestamp = Date;
|
|
2026
2030
|
export interface UntagResourceRequest {
|
|
2027
2031
|
/**
|
|
2028
|
-
* The ARN of the Kinesis Analytics application from which to remove the tags.
|
|
2032
|
+
* The ARN of the Kinesis Data Analytics application from which to remove the tags.
|
|
2029
2033
|
*/
|
|
2030
2034
|
ResourceARN: KinesisAnalyticsARN;
|
|
2031
2035
|
/**
|
|
@@ -129,6 +129,10 @@ declare namespace MarketplaceCatalog {
|
|
|
129
129
|
* This object is a list of entity IDs (string) that are a part of a change set. The entity ID list is a maximum of 20 entities. It must contain at least one entity.
|
|
130
130
|
*/
|
|
131
131
|
EntityIdList?: ResourceIdList;
|
|
132
|
+
/**
|
|
133
|
+
* Returned if the change set is in FAILED status. Can be either CLIENT_ERROR, which means that there are issues with the request (see the ErrorDetailList of DescribeChangeSet), or SERVER_FAULT, which means that there is a problem in the system, and you should retry your request.
|
|
134
|
+
*/
|
|
135
|
+
FailureCode?: FailureCode;
|
|
132
136
|
}
|
|
133
137
|
export type ChangeStatus = "PREPARING"|"APPLYING"|"SUCCEEDED"|"CANCELLED"|"FAILED"|string;
|
|
134
138
|
export interface ChangeSummary {
|
|
@@ -187,6 +191,10 @@ declare namespace MarketplaceCatalog {
|
|
|
187
191
|
* The status of the change request.
|
|
188
192
|
*/
|
|
189
193
|
Status?: ChangeStatus;
|
|
194
|
+
/**
|
|
195
|
+
* Returned if the change set is in FAILED status. Can be either CLIENT_ERROR, which means that there are issues with the request (see the ErrorDetailList), or SERVER_FAULT, which means that there is a problem in the system, and you should retry your request.
|
|
196
|
+
*/
|
|
197
|
+
FailureCode?: FailureCode;
|
|
190
198
|
/**
|
|
191
199
|
* Returned if there is a failure on the change set, but that failure is not related to any of the changes in the request.
|
|
192
200
|
*/
|
|
@@ -277,6 +285,7 @@ declare namespace MarketplaceCatalog {
|
|
|
277
285
|
ErrorMessage?: StringValue;
|
|
278
286
|
}
|
|
279
287
|
export type ErrorDetailList = ErrorDetail[];
|
|
288
|
+
export type FailureCode = "CLIENT_ERROR"|"SERVER_FAULT"|string;
|
|
280
289
|
export interface Filter {
|
|
281
290
|
/**
|
|
282
291
|
* For ListEntities, the supported value for this is an EntityId. For ListChangeSets, the supported values are as follows:
|