Skip to content

Commit bf5a23e

Browse files
author
awstools
committed
feat(client-kinesis-analytics-v2): Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
1 parent 2ddd8ec commit bf5a23e

25 files changed

+310
-266
lines changed

clients/client-kinesis-analytics-v2/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
AWS SDK for JavaScript KinesisAnalyticsV2 Client for Node.js, Browser and React Native.
88

9-
<p>Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service
9+
<note>
10+
<p>Amazon Managed Service for Apache Flink was previously known as Amazon Kinesis Data Analytics for Apache Flink.</p>
11+
</note>
12+
<p>Amazon Managed Service for Apache Flink is a fully managed service that you can use to process and analyze streaming data using Java, Python, SQL, or Scala. The service
1013
enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time
1114
series analytics, feed real-time dashboards, and create real-time metrics.</p>
1215

clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,10 @@ export interface KinesisAnalyticsV2 {
705705

706706
/**
707707
* @public
708-
* <p>Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service
708+
* <note>
709+
* <p>Amazon Managed Service for Apache Flink was previously known as Amazon Kinesis Data Analytics for Apache Flink.</p>
710+
* </note>
711+
* <p>Amazon Managed Service for Apache Flink is a fully managed service that you can use to process and analyze streaming data using Java, Python, SQL, or Scala. The service
709712
* enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time
710713
* series analytics, feed real-time dashboards, and create real-time metrics.</p>
711714
*/

clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2Client.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,10 @@ export interface KinesisAnalyticsV2ClientResolvedConfig extends KinesisAnalytics
409409

410410
/**
411411
* @public
412-
* <p>Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service
412+
* <note>
413+
* <p>Amazon Managed Service for Apache Flink was previously known as Amazon Kinesis Data Analytics for Apache Flink.</p>
414+
* </note>
415+
* <p>Amazon Managed Service for Apache Flink is a fully managed service that you can use to process and analyze streaming data using Java, Python, SQL, or Scala. The service
413416
* enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time
414417
* series analytics, feed real-time dashboards, and create real-time metrics.</p>
415418
*/

clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ export interface AddApplicationVpcConfigurationCommandOutput
3939
* @public
4040
* <p>Adds a Virtual Private Cloud (VPC) configuration to the application. Applications can use VPCs to store
4141
* and access resources securely.</p>
42-
* <p>Note the following about VPC configurations for Kinesis Data Analytics applications:</p>
42+
* <p>Note the following about VPC configurations for Managed Service for Apache Flink applications:</p>
4343
* <ul>
4444
* <li>
4545
* <p>VPC configurations are not supported for SQL applications.</p>
4646
* </li>
4747
* <li>
48-
* <p>When a VPC is added to a Kinesis Data Analytics application, the application can no longer be accessed from the
48+
* <p>When a VPC is added to a Managed Service for Apache Flink application, the application can no longer be accessed from the
4949
* Internet directly. To enable Internet access to the application, add an Internet gateway to your VPC.</p>
5050
* </li>
5151
* </ul>

clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
3232

3333
/**
3434
* @public
35-
* <p>Creates a Kinesis Data Analytics application. For information about creating a
36-
* Kinesis Data Analytics application, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/java/getting-started.html">Creating an
35+
* <p>Creates a Managed Service for Apache Flink application. For information about creating a
36+
* Managed Service for Apache Flink application, see <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/java/getting-started.html">Creating an
3737
* Application</a>.</p>
3838
* @example
3939
* Use a bare-bones client and the command you need to make an API call.

clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput
4141

4242
/**
4343
* @public
44-
* <p>Deletes an Amazon CloudWatch log stream from an Kinesis Data Analytics application. </p>
44+
* <p>Deletes an Amazon CloudWatch log stream from an SQL-based Kinesis Data Analytics application. </p>
4545
* @example
4646
* Use a bare-bones client and the command you need to make an API call.
4747
* ```javascript

clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
3232

3333
/**
3434
* @public
35-
* <p>Deletes the specified application. Kinesis Data Analytics halts application execution and deletes the application.</p>
35+
* <p>Deletes the specified application. Managed Service for Apache Flink halts application execution and deletes the application.</p>
3636
* @example
3737
* Use a bare-bones client and the command you need to make an API call.
3838
* ```javascript

clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface DeleteApplicationVpcConfigurationCommandOutput
4040

4141
/**
4242
* @public
43-
* <p>Removes a VPC configuration from a Kinesis Data Analytics application.</p>
43+
* <p>Removes a VPC configuration from a Managed Service for Apache Flink application.</p>
4444
* @example
4545
* Use a bare-bones client and the command you need to make an API call.
4646
* ```javascript

clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
3232

3333
/**
3434
* @public
35-
* <p>Returns information about a specific Kinesis Data Analytics application.</p>
35+
* <p>Returns information about a specific Managed Service for Apache Flink application.</p>
3636
* <p>If you want to retrieve a list of all applications in your account,
3737
* use the <a>ListApplications</a> operation.</p>
3838
* @example

clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export interface DescribeApplicationSnapshotCommandOutput
5353
* // SnapshotStatus: "CREATING" || "READY" || "DELETING" || "FAILED", // required
5454
* // ApplicationVersionId: Number("long"), // required
5555
* // SnapshotCreationTimestamp: new Date("TIMESTAMP"),
56+
* // 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" || "ZEPPELIN-FLINK-3_0",
5657
* // },
5758
* // };
5859
*

0 commit comments

Comments
 (0)