aws-sdk-kinesisanalyticsv2 1.78.0 → 1.80.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisanalyticsv2/client.rb +56 -25
- data/lib/aws-sdk-kinesisanalyticsv2/client_api.rb +21 -0
- data/lib/aws-sdk-kinesisanalyticsv2/types.rb +169 -90
- data/lib/aws-sdk-kinesisanalyticsv2.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/types.rbs +22 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e122636f48a4a6aeb47bf0380048d2e34c9fb6e9f92bc574160d4bcec710797d
|
4
|
+
data.tar.gz: 2e5a3b9b87c89420408b525fc8a11a41e8674e6ca972956da8796466aba2bb92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 797ea18de8e63ca58cc7aef457e131ee956492a9ea61f2e2a2fd82c4511e7ed7ea94e3b684f578f3bbcc0f7669434d10cfd08b475c282219588525e0d172a423
|
7
|
+
data.tar.gz: 9491471b3fca2df5340a9b9c361c8e39bf7a7d30a8f996e88b1c0cabe951798822e4e04fcceb11e1dc58228ed07fdeb0e86204fc7d955cdd012a84c5b557f2c3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2025-08-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds Key Management Service (KMS) support allowing customer-managed key (CMK) encryption for Flink application data.
|
8
|
+
|
9
|
+
1.79.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.78.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -95,8 +95,8 @@ module Aws::KinesisAnalyticsV2
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::KinesisAnalyticsV2
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::KinesisAnalyticsV2
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::KinesisAnalyticsV2
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -1218,6 +1215,10 @@ module Aws::KinesisAnalyticsV2
|
|
1218
1215
|
# },
|
1219
1216
|
# ],
|
1220
1217
|
# },
|
1218
|
+
# application_encryption_configuration: {
|
1219
|
+
# key_id: "KeyId",
|
1220
|
+
# key_type: "AWS_OWNED_KEY", # required, accepts AWS_OWNED_KEY, CUSTOMER_MANAGED_KEY
|
1221
|
+
# },
|
1221
1222
|
# },
|
1222
1223
|
# cloud_watch_logging_options: [
|
1223
1224
|
# {
|
@@ -1339,6 +1340,8 @@ module Aws::KinesisAnalyticsV2
|
|
1339
1340
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.group_id #=> String
|
1340
1341
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.artifact_id #=> String
|
1341
1342
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.version #=> String
|
1343
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_id #=> String
|
1344
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
1342
1345
|
# resp.application_detail.cloud_watch_logging_option_descriptions #=> Array
|
1343
1346
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
1344
1347
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
@@ -1887,6 +1890,8 @@ module Aws::KinesisAnalyticsV2
|
|
1887
1890
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.group_id #=> String
|
1888
1891
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.artifact_id #=> String
|
1889
1892
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.version #=> String
|
1893
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_id #=> String
|
1894
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
1890
1895
|
# resp.application_detail.cloud_watch_logging_option_descriptions #=> Array
|
1891
1896
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
1892
1897
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
@@ -1909,14 +1914,19 @@ module Aws::KinesisAnalyticsV2
|
|
1909
1914
|
req.send_request(options)
|
1910
1915
|
end
|
1911
1916
|
|
1912
|
-
#
|
1913
|
-
#
|
1917
|
+
# Provides a detailed description of a specified application operation.
|
1918
|
+
# To see a list of all the operations of an application, invoke the
|
1919
|
+
# ListApplicationOperations operation.
|
1920
|
+
#
|
1921
|
+
# <note markdown="1"> This operation is supported only for Managed Service for Apache Flink.
|
1922
|
+
#
|
1923
|
+
# </note>
|
1914
1924
|
#
|
1915
1925
|
# @option params [required, String] :application_name
|
1916
|
-
# The name of the application
|
1926
|
+
# The name of the application.
|
1917
1927
|
#
|
1918
1928
|
# @option params [required, String] :operation_id
|
1919
|
-
#
|
1929
|
+
# The operation ID of the request.
|
1920
1930
|
#
|
1921
1931
|
# @return [Types::DescribeApplicationOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1922
1932
|
#
|
@@ -1976,6 +1986,8 @@ module Aws::KinesisAnalyticsV2
|
|
1976
1986
|
# resp.snapshot_details.application_version_id #=> Integer
|
1977
1987
|
# resp.snapshot_details.snapshot_creation_timestamp #=> Time
|
1978
1988
|
# resp.snapshot_details.runtime_environment #=> String, one of "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", "FLINK-1_18", "FLINK-1_19", "FLINK-1_20"
|
1989
|
+
# resp.snapshot_details.application_encryption_configuration_description.key_id #=> String
|
1990
|
+
# resp.snapshot_details.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
1979
1991
|
#
|
1980
1992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationSnapshot AWS API Documentation
|
1981
1993
|
#
|
@@ -2119,6 +2131,8 @@ module Aws::KinesisAnalyticsV2
|
|
2119
2131
|
# resp.application_version_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.group_id #=> String
|
2120
2132
|
# resp.application_version_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.artifact_id #=> String
|
2121
2133
|
# resp.application_version_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.version #=> String
|
2134
|
+
# resp.application_version_detail.application_configuration_description.application_encryption_configuration_description.key_id #=> String
|
2135
|
+
# resp.application_version_detail.application_configuration_description.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
2122
2136
|
# resp.application_version_detail.cloud_watch_logging_option_descriptions #=> Array
|
2123
2137
|
# resp.application_version_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
2124
2138
|
# resp.application_version_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
@@ -2224,24 +2238,31 @@ module Aws::KinesisAnalyticsV2
|
|
2224
2238
|
req.send_request(options)
|
2225
2239
|
end
|
2226
2240
|
|
2227
|
-
# Lists
|
2228
|
-
#
|
2241
|
+
# Lists all the operations performed for the specified application such
|
2242
|
+
# as UpdateApplication, StartApplication etc. The response also includes
|
2243
|
+
# a summary of the operation.
|
2244
|
+
#
|
2245
|
+
# To get the complete description of a specific operation, invoke the
|
2246
|
+
# DescribeApplicationOperation operation.
|
2247
|
+
#
|
2248
|
+
# <note markdown="1"> This operation is supported only for Managed Service for Apache Flink.
|
2249
|
+
#
|
2250
|
+
# </note>
|
2229
2251
|
#
|
2230
2252
|
# @option params [required, String] :application_name
|
2231
|
-
# The name of the application
|
2253
|
+
# The name of the application.
|
2232
2254
|
#
|
2233
2255
|
# @option params [Integer] :limit
|
2234
|
-
#
|
2256
|
+
# The limit on the number of records to be returned in the response.
|
2235
2257
|
#
|
2236
2258
|
# @option params [String] :next_token
|
2237
|
-
#
|
2238
|
-
# value to retrieve the next set of results
|
2259
|
+
# A pagination token that can be used in a subsequent request.
|
2239
2260
|
#
|
2240
2261
|
# @option params [String] :operation
|
2241
|
-
#
|
2262
|
+
# The type of operation that is performed on an application.
|
2242
2263
|
#
|
2243
2264
|
# @option params [String] :operation_status
|
2244
|
-
#
|
2265
|
+
# The status of the operation.
|
2245
2266
|
#
|
2246
2267
|
# @return [Types::ListApplicationOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2247
2268
|
#
|
@@ -2316,6 +2337,8 @@ module Aws::KinesisAnalyticsV2
|
|
2316
2337
|
# resp.snapshot_summaries[0].application_version_id #=> Integer
|
2317
2338
|
# resp.snapshot_summaries[0].snapshot_creation_timestamp #=> Time
|
2318
2339
|
# resp.snapshot_summaries[0].runtime_environment #=> String, one of "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", "FLINK-1_18", "FLINK-1_19", "FLINK-1_20"
|
2340
|
+
# resp.snapshot_summaries[0].application_encryption_configuration_description.key_id #=> String
|
2341
|
+
# resp.snapshot_summaries[0].application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
2319
2342
|
# resp.next_token #=> String
|
2320
2343
|
#
|
2321
2344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationSnapshots AWS API Documentation
|
@@ -2611,6 +2634,8 @@ module Aws::KinesisAnalyticsV2
|
|
2611
2634
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.group_id #=> String
|
2612
2635
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.artifact_id #=> String
|
2613
2636
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.version #=> String
|
2637
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_id #=> String
|
2638
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
2614
2639
|
# resp.application_detail.cloud_watch_logging_option_descriptions #=> Array
|
2615
2640
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
2616
2641
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
@@ -3051,6 +3076,10 @@ module Aws::KinesisAnalyticsV2
|
|
3051
3076
|
# },
|
3052
3077
|
# ],
|
3053
3078
|
# },
|
3079
|
+
# application_encryption_configuration_update: {
|
3080
|
+
# key_id_update: "KeyId",
|
3081
|
+
# key_type_update: "AWS_OWNED_KEY", # required, accepts AWS_OWNED_KEY, CUSTOMER_MANAGED_KEY
|
3082
|
+
# },
|
3054
3083
|
# },
|
3055
3084
|
# service_execution_role_update: "RoleARN",
|
3056
3085
|
# run_configuration_update: {
|
@@ -3178,6 +3207,8 @@ module Aws::KinesisAnalyticsV2
|
|
3178
3207
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.group_id #=> String
|
3179
3208
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.artifact_id #=> String
|
3180
3209
|
# resp.application_detail.application_configuration_description.zeppelin_application_configuration_description.custom_artifacts_configuration_description[0].maven_reference_description.version #=> String
|
3210
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_id #=> String
|
3211
|
+
# resp.application_detail.application_configuration_description.application_encryption_configuration_description.key_type #=> String, one of "AWS_OWNED_KEY", "CUSTOMER_MANAGED_KEY"
|
3181
3212
|
# resp.application_detail.cloud_watch_logging_option_descriptions #=> Array
|
3182
3213
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
3183
3214
|
# resp.application_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
@@ -3284,7 +3315,7 @@ module Aws::KinesisAnalyticsV2
|
|
3284
3315
|
tracer: tracer
|
3285
3316
|
)
|
3286
3317
|
context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
|
3287
|
-
context[:gem_version] = '1.
|
3318
|
+
context[:gem_version] = '1.80.0'
|
3288
3319
|
Seahorse::Client::Request.new(handlers, context)
|
3289
3320
|
end
|
3290
3321
|
|
@@ -34,6 +34,9 @@ module Aws::KinesisAnalyticsV2
|
|
34
34
|
ApplicationConfigurationUpdate = Shapes::StructureShape.new(name: 'ApplicationConfigurationUpdate')
|
35
35
|
ApplicationDescription = Shapes::StringShape.new(name: 'ApplicationDescription')
|
36
36
|
ApplicationDetail = Shapes::StructureShape.new(name: 'ApplicationDetail')
|
37
|
+
ApplicationEncryptionConfiguration = Shapes::StructureShape.new(name: 'ApplicationEncryptionConfiguration')
|
38
|
+
ApplicationEncryptionConfigurationDescription = Shapes::StructureShape.new(name: 'ApplicationEncryptionConfigurationDescription')
|
39
|
+
ApplicationEncryptionConfigurationUpdate = Shapes::StructureShape.new(name: 'ApplicationEncryptionConfigurationUpdate')
|
37
40
|
ApplicationMaintenanceConfigurationDescription = Shapes::StructureShape.new(name: 'ApplicationMaintenanceConfigurationDescription')
|
38
41
|
ApplicationMaintenanceConfigurationUpdate = Shapes::StructureShape.new(name: 'ApplicationMaintenanceConfigurationUpdate')
|
39
42
|
ApplicationMaintenanceWindowEndTime = Shapes::StringShape.new(name: 'ApplicationMaintenanceWindowEndTime')
|
@@ -167,6 +170,8 @@ module Aws::KinesisAnalyticsV2
|
|
167
170
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
168
171
|
JSONMappingParameters = Shapes::StructureShape.new(name: 'JSONMappingParameters')
|
169
172
|
JobPlanDescription = Shapes::StringShape.new(name: 'JobPlanDescription')
|
173
|
+
KeyId = Shapes::StringShape.new(name: 'KeyId')
|
174
|
+
KeyType = Shapes::StringShape.new(name: 'KeyType')
|
170
175
|
KinesisAnalyticsARN = Shapes::StringShape.new(name: 'KinesisAnalyticsARN')
|
171
176
|
KinesisFirehoseInput = Shapes::StructureShape.new(name: 'KinesisFirehoseInput')
|
172
177
|
KinesisFirehoseInputDescription = Shapes::StructureShape.new(name: 'KinesisFirehoseInputDescription')
|
@@ -417,6 +422,7 @@ module Aws::KinesisAnalyticsV2
|
|
417
422
|
ApplicationConfiguration.add_member(:application_system_rollback_configuration, Shapes::ShapeRef.new(shape: ApplicationSystemRollbackConfiguration, location_name: "ApplicationSystemRollbackConfiguration"))
|
418
423
|
ApplicationConfiguration.add_member(:vpc_configurations, Shapes::ShapeRef.new(shape: VpcConfigurations, location_name: "VpcConfigurations"))
|
419
424
|
ApplicationConfiguration.add_member(:zeppelin_application_configuration, Shapes::ShapeRef.new(shape: ZeppelinApplicationConfiguration, location_name: "ZeppelinApplicationConfiguration"))
|
425
|
+
ApplicationConfiguration.add_member(:application_encryption_configuration, Shapes::ShapeRef.new(shape: ApplicationEncryptionConfiguration, location_name: "ApplicationEncryptionConfiguration"))
|
420
426
|
ApplicationConfiguration.struct_class = Types::ApplicationConfiguration
|
421
427
|
|
422
428
|
ApplicationConfigurationDescription.add_member(:sql_application_configuration_description, Shapes::ShapeRef.new(shape: SqlApplicationConfigurationDescription, location_name: "SqlApplicationConfigurationDescription"))
|
@@ -428,6 +434,7 @@ module Aws::KinesisAnalyticsV2
|
|
428
434
|
ApplicationConfigurationDescription.add_member(:application_system_rollback_configuration_description, Shapes::ShapeRef.new(shape: ApplicationSystemRollbackConfigurationDescription, location_name: "ApplicationSystemRollbackConfigurationDescription"))
|
429
435
|
ApplicationConfigurationDescription.add_member(:vpc_configuration_descriptions, Shapes::ShapeRef.new(shape: VpcConfigurationDescriptions, location_name: "VpcConfigurationDescriptions"))
|
430
436
|
ApplicationConfigurationDescription.add_member(:zeppelin_application_configuration_description, Shapes::ShapeRef.new(shape: ZeppelinApplicationConfigurationDescription, location_name: "ZeppelinApplicationConfigurationDescription"))
|
437
|
+
ApplicationConfigurationDescription.add_member(:application_encryption_configuration_description, Shapes::ShapeRef.new(shape: ApplicationEncryptionConfigurationDescription, location_name: "ApplicationEncryptionConfigurationDescription"))
|
431
438
|
ApplicationConfigurationDescription.struct_class = Types::ApplicationConfigurationDescription
|
432
439
|
|
433
440
|
ApplicationConfigurationUpdate.add_member(:sql_application_configuration_update, Shapes::ShapeRef.new(shape: SqlApplicationConfigurationUpdate, location_name: "SqlApplicationConfigurationUpdate"))
|
@@ -438,6 +445,7 @@ module Aws::KinesisAnalyticsV2
|
|
438
445
|
ApplicationConfigurationUpdate.add_member(:application_system_rollback_configuration_update, Shapes::ShapeRef.new(shape: ApplicationSystemRollbackConfigurationUpdate, location_name: "ApplicationSystemRollbackConfigurationUpdate"))
|
439
446
|
ApplicationConfigurationUpdate.add_member(:vpc_configuration_updates, Shapes::ShapeRef.new(shape: VpcConfigurationUpdates, location_name: "VpcConfigurationUpdates"))
|
440
447
|
ApplicationConfigurationUpdate.add_member(:zeppelin_application_configuration_update, Shapes::ShapeRef.new(shape: ZeppelinApplicationConfigurationUpdate, location_name: "ZeppelinApplicationConfigurationUpdate"))
|
448
|
+
ApplicationConfigurationUpdate.add_member(:application_encryption_configuration_update, Shapes::ShapeRef.new(shape: ApplicationEncryptionConfigurationUpdate, location_name: "ApplicationEncryptionConfigurationUpdate"))
|
441
449
|
ApplicationConfigurationUpdate.struct_class = Types::ApplicationConfigurationUpdate
|
442
450
|
|
443
451
|
ApplicationDetail.add_member(:application_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ApplicationARN"))
|
@@ -460,6 +468,18 @@ module Aws::KinesisAnalyticsV2
|
|
460
468
|
ApplicationDetail.add_member(:application_mode, Shapes::ShapeRef.new(shape: ApplicationMode, location_name: "ApplicationMode"))
|
461
469
|
ApplicationDetail.struct_class = Types::ApplicationDetail
|
462
470
|
|
471
|
+
ApplicationEncryptionConfiguration.add_member(:key_id, Shapes::ShapeRef.new(shape: KeyId, location_name: "KeyId"))
|
472
|
+
ApplicationEncryptionConfiguration.add_member(:key_type, Shapes::ShapeRef.new(shape: KeyType, required: true, location_name: "KeyType"))
|
473
|
+
ApplicationEncryptionConfiguration.struct_class = Types::ApplicationEncryptionConfiguration
|
474
|
+
|
475
|
+
ApplicationEncryptionConfigurationDescription.add_member(:key_id, Shapes::ShapeRef.new(shape: KeyId, location_name: "KeyId"))
|
476
|
+
ApplicationEncryptionConfigurationDescription.add_member(:key_type, Shapes::ShapeRef.new(shape: KeyType, required: true, location_name: "KeyType"))
|
477
|
+
ApplicationEncryptionConfigurationDescription.struct_class = Types::ApplicationEncryptionConfigurationDescription
|
478
|
+
|
479
|
+
ApplicationEncryptionConfigurationUpdate.add_member(:key_id_update, Shapes::ShapeRef.new(shape: KeyId, location_name: "KeyIdUpdate"))
|
480
|
+
ApplicationEncryptionConfigurationUpdate.add_member(:key_type_update, Shapes::ShapeRef.new(shape: KeyType, required: true, location_name: "KeyTypeUpdate"))
|
481
|
+
ApplicationEncryptionConfigurationUpdate.struct_class = Types::ApplicationEncryptionConfigurationUpdate
|
482
|
+
|
463
483
|
ApplicationMaintenanceConfigurationDescription.add_member(:application_maintenance_window_start_time, Shapes::ShapeRef.new(shape: ApplicationMaintenanceWindowStartTime, required: true, location_name: "ApplicationMaintenanceWindowStartTime"))
|
464
484
|
ApplicationMaintenanceConfigurationDescription.add_member(:application_maintenance_window_end_time, Shapes::ShapeRef.new(shape: ApplicationMaintenanceWindowEndTime, required: true, location_name: "ApplicationMaintenanceWindowEndTime"))
|
465
485
|
ApplicationMaintenanceConfigurationDescription.struct_class = Types::ApplicationMaintenanceConfigurationDescription
|
@@ -1182,6 +1202,7 @@ module Aws::KinesisAnalyticsV2
|
|
1182
1202
|
SnapshotDetails.add_member(:application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "ApplicationVersionId"))
|
1183
1203
|
SnapshotDetails.add_member(:snapshot_creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SnapshotCreationTimestamp"))
|
1184
1204
|
SnapshotDetails.add_member(:runtime_environment, Shapes::ShapeRef.new(shape: RuntimeEnvironment, location_name: "RuntimeEnvironment"))
|
1205
|
+
SnapshotDetails.add_member(:application_encryption_configuration_description, Shapes::ShapeRef.new(shape: ApplicationEncryptionConfigurationDescription, location_name: "ApplicationEncryptionConfigurationDescription"))
|
1185
1206
|
SnapshotDetails.struct_class = Types::SnapshotDetails
|
1186
1207
|
|
1187
1208
|
SnapshotSummaries.member = Shapes::ShapeRef.new(shape: SnapshotDetails)
|
@@ -65,8 +65,7 @@ module Aws::KinesisAnalyticsV2
|
|
65
65
|
# @return [Array<Types::CloudWatchLoggingOptionDescription>]
|
66
66
|
#
|
67
67
|
# @!attribute [rw] operation_id
|
68
|
-
#
|
69
|
-
# request
|
68
|
+
# The operation ID that can be used to track the request.
|
70
69
|
# @return [String]
|
71
70
|
#
|
72
71
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
@@ -357,7 +356,7 @@ module Aws::KinesisAnalyticsV2
|
|
357
356
|
# @return [Types::VpcConfigurationDescription]
|
358
357
|
#
|
359
358
|
# @!attribute [rw] operation_id
|
360
|
-
#
|
359
|
+
# The operation ID that can be used to track the request.
|
361
360
|
# @return [String]
|
362
361
|
#
|
363
362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationVpcConfigurationResponse AWS API Documentation
|
@@ -460,8 +459,8 @@ module Aws::KinesisAnalyticsV2
|
|
460
459
|
# @return [Types::ApplicationSnapshotConfiguration]
|
461
460
|
#
|
462
461
|
# @!attribute [rw] application_system_rollback_configuration
|
463
|
-
# Describes system
|
464
|
-
# Apache Flink application
|
462
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
463
|
+
# for Apache Flink application.
|
465
464
|
# @return [Types::ApplicationSystemRollbackConfiguration]
|
466
465
|
#
|
467
466
|
# @!attribute [rw] vpc_configurations
|
@@ -474,6 +473,10 @@ module Aws::KinesisAnalyticsV2
|
|
474
473
|
# Studio notebook.
|
475
474
|
# @return [Types::ZeppelinApplicationConfiguration]
|
476
475
|
#
|
476
|
+
# @!attribute [rw] application_encryption_configuration
|
477
|
+
# The configuration to manage encryption at rest.
|
478
|
+
# @return [Types::ApplicationEncryptionConfiguration]
|
479
|
+
#
|
477
480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationConfiguration AWS API Documentation
|
478
481
|
#
|
479
482
|
class ApplicationConfiguration < Struct.new(
|
@@ -484,7 +487,8 @@ module Aws::KinesisAnalyticsV2
|
|
484
487
|
:application_snapshot_configuration,
|
485
488
|
:application_system_rollback_configuration,
|
486
489
|
:vpc_configurations,
|
487
|
-
:zeppelin_application_configuration
|
490
|
+
:zeppelin_application_configuration,
|
491
|
+
:application_encryption_configuration)
|
488
492
|
SENSITIVE = []
|
489
493
|
include Aws::Structure
|
490
494
|
end
|
@@ -522,8 +526,8 @@ module Aws::KinesisAnalyticsV2
|
|
522
526
|
# @return [Types::ApplicationSnapshotConfigurationDescription]
|
523
527
|
#
|
524
528
|
# @!attribute [rw] application_system_rollback_configuration_description
|
525
|
-
# Describes system
|
526
|
-
# Apache Flink application
|
529
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
530
|
+
# for Apache Flink application.
|
527
531
|
# @return [Types::ApplicationSystemRollbackConfigurationDescription]
|
528
532
|
#
|
529
533
|
# @!attribute [rw] vpc_configuration_descriptions
|
@@ -536,6 +540,10 @@ module Aws::KinesisAnalyticsV2
|
|
536
540
|
# Studio notebook.
|
537
541
|
# @return [Types::ZeppelinApplicationConfigurationDescription]
|
538
542
|
#
|
543
|
+
# @!attribute [rw] application_encryption_configuration_description
|
544
|
+
# Describes the encryption at rest configuration.
|
545
|
+
# @return [Types::ApplicationEncryptionConfigurationDescription]
|
546
|
+
#
|
539
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationConfigurationDescription AWS API Documentation
|
540
548
|
#
|
541
549
|
class ApplicationConfigurationDescription < Struct.new(
|
@@ -547,7 +555,8 @@ module Aws::KinesisAnalyticsV2
|
|
547
555
|
:application_snapshot_configuration_description,
|
548
556
|
:application_system_rollback_configuration_description,
|
549
557
|
:vpc_configuration_descriptions,
|
550
|
-
:zeppelin_application_configuration_description
|
558
|
+
:zeppelin_application_configuration_description,
|
559
|
+
:application_encryption_configuration_description)
|
551
560
|
SENSITIVE = []
|
552
561
|
include Aws::Structure
|
553
562
|
end
|
@@ -579,8 +588,8 @@ module Aws::KinesisAnalyticsV2
|
|
579
588
|
# @return [Types::ApplicationSnapshotConfigurationUpdate]
|
580
589
|
#
|
581
590
|
# @!attribute [rw] application_system_rollback_configuration_update
|
582
|
-
# Describes system
|
583
|
-
# Apache Flink application
|
591
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
592
|
+
# for Apache Flink application.
|
584
593
|
# @return [Types::ApplicationSystemRollbackConfigurationUpdate]
|
585
594
|
#
|
586
595
|
# @!attribute [rw] vpc_configuration_updates
|
@@ -593,6 +602,10 @@ module Aws::KinesisAnalyticsV2
|
|
593
602
|
# Studio notebook.
|
594
603
|
# @return [Types::ZeppelinApplicationConfigurationUpdate]
|
595
604
|
#
|
605
|
+
# @!attribute [rw] application_encryption_configuration_update
|
606
|
+
# Represents an update for encryption at rest configuration.
|
607
|
+
# @return [Types::ApplicationEncryptionConfigurationUpdate]
|
608
|
+
#
|
596
609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationConfigurationUpdate AWS API Documentation
|
597
610
|
#
|
598
611
|
class ApplicationConfigurationUpdate < Struct.new(
|
@@ -603,7 +616,8 @@ module Aws::KinesisAnalyticsV2
|
|
603
616
|
:application_snapshot_configuration_update,
|
604
617
|
:application_system_rollback_configuration_update,
|
605
618
|
:vpc_configuration_updates,
|
606
|
-
:zeppelin_application_configuration_update
|
619
|
+
:zeppelin_application_configuration_update,
|
620
|
+
:application_encryption_configuration_update)
|
607
621
|
SENSITIVE = []
|
608
622
|
include Aws::Structure
|
609
623
|
end
|
@@ -675,7 +689,8 @@ module Aws::KinesisAnalyticsV2
|
|
675
689
|
# @return [Integer]
|
676
690
|
#
|
677
691
|
# @!attribute [rw] application_version_create_timestamp
|
678
|
-
# The
|
692
|
+
# The timestamp that indicates when the application version was
|
693
|
+
# created.
|
679
694
|
# @return [Time]
|
680
695
|
#
|
681
696
|
# @!attribute [rw] conditional_token
|
@@ -718,6 +733,66 @@ module Aws::KinesisAnalyticsV2
|
|
718
733
|
include Aws::Structure
|
719
734
|
end
|
720
735
|
|
736
|
+
# Specifies the configuration to manage encryption at rest.
|
737
|
+
#
|
738
|
+
# @!attribute [rw] key_id
|
739
|
+
# The key ARN, key ID, alias ARN, or alias name of the KMS key used
|
740
|
+
# for encryption at rest.
|
741
|
+
# @return [String]
|
742
|
+
#
|
743
|
+
# @!attribute [rw] key_type
|
744
|
+
# Specifies the type of key used for encryption at rest.
|
745
|
+
# @return [String]
|
746
|
+
#
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationEncryptionConfiguration AWS API Documentation
|
748
|
+
#
|
749
|
+
class ApplicationEncryptionConfiguration < Struct.new(
|
750
|
+
:key_id,
|
751
|
+
:key_type)
|
752
|
+
SENSITIVE = []
|
753
|
+
include Aws::Structure
|
754
|
+
end
|
755
|
+
|
756
|
+
# Describes the encryption at rest configuration.
|
757
|
+
#
|
758
|
+
# @!attribute [rw] key_id
|
759
|
+
# The key ARN, key ID, alias ARN, or alias name of the KMS key used
|
760
|
+
# for encryption at rest.
|
761
|
+
# @return [String]
|
762
|
+
#
|
763
|
+
# @!attribute [rw] key_type
|
764
|
+
# Specifies the type of key used for encryption at rest.
|
765
|
+
# @return [String]
|
766
|
+
#
|
767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationEncryptionConfigurationDescription AWS API Documentation
|
768
|
+
#
|
769
|
+
class ApplicationEncryptionConfigurationDescription < Struct.new(
|
770
|
+
:key_id,
|
771
|
+
:key_type)
|
772
|
+
SENSITIVE = []
|
773
|
+
include Aws::Structure
|
774
|
+
end
|
775
|
+
|
776
|
+
# Describes configuration updates to encryption at rest.
|
777
|
+
#
|
778
|
+
# @!attribute [rw] key_id_update
|
779
|
+
# The key ARN, key ID, alias ARN, or alias name of the KMS key to be
|
780
|
+
# used for encryption at rest.
|
781
|
+
# @return [String]
|
782
|
+
#
|
783
|
+
# @!attribute [rw] key_type_update
|
784
|
+
# Specifies the type of key to be used for encryption at rest.
|
785
|
+
# @return [String]
|
786
|
+
#
|
787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationEncryptionConfigurationUpdate AWS API Documentation
|
788
|
+
#
|
789
|
+
class ApplicationEncryptionConfigurationUpdate < Struct.new(
|
790
|
+
:key_id_update,
|
791
|
+
:key_type_update)
|
792
|
+
SENSITIVE = []
|
793
|
+
include Aws::Structure
|
794
|
+
end
|
795
|
+
|
721
796
|
# The details of the maintenance configuration for the application.
|
722
797
|
#
|
723
798
|
# @!attribute [rw] application_maintenance_window_start_time
|
@@ -751,27 +826,27 @@ module Aws::KinesisAnalyticsV2
|
|
751
826
|
include Aws::Structure
|
752
827
|
end
|
753
828
|
|
754
|
-
#
|
755
|
-
#
|
829
|
+
# A description of the aplication operation that provides information
|
830
|
+
# about the updates that were made to the application.
|
756
831
|
#
|
757
832
|
# @!attribute [rw] operation
|
758
|
-
#
|
833
|
+
# The type of operation that is performed on an application.
|
759
834
|
# @return [String]
|
760
835
|
#
|
761
836
|
# @!attribute [rw] operation_id
|
762
|
-
#
|
837
|
+
# The operation ID of the request.
|
763
838
|
# @return [String]
|
764
839
|
#
|
765
840
|
# @!attribute [rw] start_time
|
766
|
-
# The timestamp
|
841
|
+
# The timestamp that indicates when the operation was created.
|
767
842
|
# @return [Time]
|
768
843
|
#
|
769
844
|
# @!attribute [rw] end_time
|
770
|
-
# The timestamp
|
845
|
+
# The timestamp that indicates when the operation finished.
|
771
846
|
# @return [Time]
|
772
847
|
#
|
773
848
|
# @!attribute [rw] operation_status
|
774
|
-
#
|
849
|
+
# The status of the operation.
|
775
850
|
# @return [String]
|
776
851
|
#
|
777
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfo AWS API Documentation
|
@@ -786,32 +861,32 @@ module Aws::KinesisAnalyticsV2
|
|
786
861
|
include Aws::Structure
|
787
862
|
end
|
788
863
|
|
789
|
-
#
|
790
|
-
#
|
864
|
+
# A description of the application operation that provides information
|
865
|
+
# about the updates that were made to the application.
|
791
866
|
#
|
792
867
|
# @!attribute [rw] operation
|
793
|
-
#
|
868
|
+
# The type of operation that is performed on an application.
|
794
869
|
# @return [String]
|
795
870
|
#
|
796
871
|
# @!attribute [rw] start_time
|
797
|
-
# The timestamp
|
872
|
+
# The timestamp that indicates when the operation was created.
|
798
873
|
# @return [Time]
|
799
874
|
#
|
800
875
|
# @!attribute [rw] end_time
|
801
|
-
# The timestamp
|
876
|
+
# The timestamp that indicates when the operation finished.
|
802
877
|
# @return [Time]
|
803
878
|
#
|
804
879
|
# @!attribute [rw] operation_status
|
805
|
-
#
|
880
|
+
# The status of the operation.
|
806
881
|
# @return [String]
|
807
882
|
#
|
808
883
|
# @!attribute [rw] application_version_change_details
|
809
|
-
# Contains information about the
|
810
|
-
#
|
884
|
+
# Contains information about the version changes that the operation
|
885
|
+
# applied to the application.
|
811
886
|
# @return [Types::ApplicationVersionChangeDetails]
|
812
887
|
#
|
813
888
|
# @!attribute [rw] operation_failure_details
|
814
|
-
# Provides a description of the operation failure
|
889
|
+
# Provides a description of the operation failure.
|
815
890
|
# @return [Types::OperationFailureDetails]
|
816
891
|
#
|
817
892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfoDetails AWS API Documentation
|
@@ -940,12 +1015,12 @@ module Aws::KinesisAnalyticsV2
|
|
940
1015
|
include Aws::Structure
|
941
1016
|
end
|
942
1017
|
|
943
|
-
# Describes system rollback configuration for a Managed Service for
|
944
|
-
# Apache Flink application
|
1018
|
+
# Describes the system rollback configuration for a Managed Service for
|
1019
|
+
# Apache Flink application.
|
945
1020
|
#
|
946
1021
|
# @!attribute [rw] rollback_enabled
|
947
1022
|
# Describes whether system rollbacks are enabled for a Managed Service
|
948
|
-
# for Apache Flink application
|
1023
|
+
# for Apache Flink application.
|
949
1024
|
# @return [Boolean]
|
950
1025
|
#
|
951
1026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfiguration AWS API Documentation
|
@@ -956,12 +1031,12 @@ module Aws::KinesisAnalyticsV2
|
|
956
1031
|
include Aws::Structure
|
957
1032
|
end
|
958
1033
|
|
959
|
-
# Describes system rollback configuration for a Managed Service for
|
960
|
-
# Apache Flink application
|
1034
|
+
# Describes the system rollback configuration for a Managed Service for
|
1035
|
+
# Apache Flink application.
|
961
1036
|
#
|
962
1037
|
# @!attribute [rw] rollback_enabled
|
963
1038
|
# Describes whether system rollbacks are enabled for a Managed Service
|
964
|
-
# for Apache Flink application
|
1039
|
+
# for Apache Flink application.
|
965
1040
|
# @return [Boolean]
|
966
1041
|
#
|
967
1042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationDescription AWS API Documentation
|
@@ -972,12 +1047,12 @@ module Aws::KinesisAnalyticsV2
|
|
972
1047
|
include Aws::Structure
|
973
1048
|
end
|
974
1049
|
|
975
|
-
# Describes system rollback configuration for a Managed Service for
|
976
|
-
# Apache Flink application
|
1050
|
+
# Describes the system rollback configuration for a Managed Service for
|
1051
|
+
# Apache Flink application.
|
977
1052
|
#
|
978
1053
|
# @!attribute [rw] rollback_enabled_update
|
979
1054
|
# Describes whether system rollbacks are enabled for a Managed Service
|
980
|
-
# for Apache Flink application
|
1055
|
+
# for Apache Flink application.
|
981
1056
|
# @return [Boolean]
|
982
1057
|
#
|
983
1058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationUpdate AWS API Documentation
|
@@ -988,16 +1063,16 @@ module Aws::KinesisAnalyticsV2
|
|
988
1063
|
include Aws::Structure
|
989
1064
|
end
|
990
1065
|
|
991
|
-
# Contains information about the
|
992
|
-
#
|
1066
|
+
# Contains information about the version changes that the operation
|
1067
|
+
# applied to the application.
|
993
1068
|
#
|
994
1069
|
# @!attribute [rw] application_version_updated_from
|
995
|
-
# The
|
1070
|
+
# The new version that the application was updated to.
|
996
1071
|
# @return [Integer]
|
997
1072
|
#
|
998
1073
|
# @!attribute [rw] application_version_updated_to
|
999
|
-
# The
|
1000
|
-
#
|
1074
|
+
# The version that the operation execution applied to the
|
1075
|
+
# applicartion.
|
1001
1076
|
# @return [Integer]
|
1002
1077
|
#
|
1003
1078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationVersionChangeDetails AWS API Documentation
|
@@ -1122,8 +1197,8 @@ module Aws::KinesisAnalyticsV2
|
|
1122
1197
|
#
|
1123
1198
|
#
|
1124
1199
|
#
|
1125
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
1126
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
1200
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
|
1201
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
1127
1202
|
#
|
1128
1203
|
# @!attribute [rw] configuration_type
|
1129
1204
|
# Describes whether the application uses Managed Service for Apache
|
@@ -1184,8 +1259,8 @@ module Aws::KinesisAnalyticsV2
|
|
1184
1259
|
#
|
1185
1260
|
#
|
1186
1261
|
#
|
1187
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
1188
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
1262
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/ops/state/large_state_tuning/#tuning-checkpointing
|
1263
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
1189
1264
|
# @return [Integer]
|
1190
1265
|
#
|
1191
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CheckpointConfiguration AWS API Documentation
|
@@ -1761,8 +1836,7 @@ module Aws::KinesisAnalyticsV2
|
|
1761
1836
|
# @return [Array<Types::CloudWatchLoggingOptionDescription>]
|
1762
1837
|
#
|
1763
1838
|
# @!attribute [rw] operation_id
|
1764
|
-
#
|
1765
|
-
# request
|
1839
|
+
# The operation ID that can be used to track the request.
|
1766
1840
|
# @return [String]
|
1767
1841
|
#
|
1768
1842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
@@ -2007,7 +2081,7 @@ module Aws::KinesisAnalyticsV2
|
|
2007
2081
|
# @return [Integer]
|
2008
2082
|
#
|
2009
2083
|
# @!attribute [rw] operation_id
|
2010
|
-
#
|
2084
|
+
# The operation ID that can be used to track the request.
|
2011
2085
|
# @return [String]
|
2012
2086
|
#
|
2013
2087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationVpcConfigurationResponse AWS API Documentation
|
@@ -2071,15 +2145,15 @@ module Aws::KinesisAnalyticsV2
|
|
2071
2145
|
include Aws::Structure
|
2072
2146
|
end
|
2073
2147
|
|
2074
|
-
#
|
2075
|
-
# Managed Service for Apache Flink application
|
2148
|
+
# A request for information about a specific operation that was
|
2149
|
+
# performed on a Managed Service for Apache Flink application.
|
2076
2150
|
#
|
2077
2151
|
# @!attribute [rw] application_name
|
2078
|
-
# The name of the application
|
2152
|
+
# The name of the application.
|
2079
2153
|
# @return [String]
|
2080
2154
|
#
|
2081
2155
|
# @!attribute [rw] operation_id
|
2082
|
-
#
|
2156
|
+
# The operation ID of the request.
|
2083
2157
|
# @return [String]
|
2084
2158
|
#
|
2085
2159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationRequest AWS API Documentation
|
@@ -2091,12 +2165,12 @@ module Aws::KinesisAnalyticsV2
|
|
2091
2165
|
include Aws::Structure
|
2092
2166
|
end
|
2093
2167
|
|
2094
|
-
# Provides details of the operation
|
2095
|
-
# a Managed Service for Apache Flink application
|
2168
|
+
# Provides details of the operation that corresponds to the operation ID
|
2169
|
+
# on a Managed Service for Apache Flink application.
|
2096
2170
|
#
|
2097
2171
|
# @!attribute [rw] application_operation_info_details
|
2098
|
-
#
|
2099
|
-
#
|
2172
|
+
# A description of the application operation that provides information
|
2173
|
+
# about the updates that were made to the application.
|
2100
2174
|
# @return [Types::ApplicationOperationInfoDetails]
|
2101
2175
|
#
|
2102
2176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationResponse AWS API Documentation
|
@@ -2328,10 +2402,10 @@ module Aws::KinesisAnalyticsV2
|
|
2328
2402
|
include Aws::Structure
|
2329
2403
|
end
|
2330
2404
|
|
2331
|
-
#
|
2405
|
+
# A description of the error that caused an operation to fail.
|
2332
2406
|
#
|
2333
2407
|
# @!attribute [rw] error_string
|
2334
|
-
#
|
2408
|
+
# An error message that is returned when an operation fails.
|
2335
2409
|
# @return [String]
|
2336
2410
|
#
|
2337
2411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ErrorInfo AWS API Documentation
|
@@ -2353,8 +2427,8 @@ module Aws::KinesisAnalyticsV2
|
|
2353
2427
|
#
|
2354
2428
|
#
|
2355
2429
|
#
|
2356
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2357
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2430
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
|
2431
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
2358
2432
|
# @return [Types::CheckpointConfiguration]
|
2359
2433
|
#
|
2360
2434
|
# @!attribute [rw] monitoring_configuration
|
@@ -2405,8 +2479,8 @@ module Aws::KinesisAnalyticsV2
|
|
2405
2479
|
#
|
2406
2480
|
#
|
2407
2481
|
#
|
2408
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2409
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2482
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/internals/job_scheduling.html
|
2483
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
2410
2484
|
# @return [String]
|
2411
2485
|
#
|
2412
2486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkApplicationConfigurationDescription AWS API Documentation
|
@@ -2469,8 +2543,8 @@ module Aws::KinesisAnalyticsV2
|
|
2469
2543
|
#
|
2470
2544
|
#
|
2471
2545
|
#
|
2472
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2473
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
2546
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/ops/state/savepoints/#allowing-non-restored-state
|
2547
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
2474
2548
|
# @return [Boolean]
|
2475
2549
|
#
|
2476
2550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkRunConfiguration AWS API Documentation
|
@@ -3342,27 +3416,26 @@ module Aws::KinesisAnalyticsV2
|
|
3342
3416
|
include Aws::Structure
|
3343
3417
|
end
|
3344
3418
|
|
3345
|
-
#
|
3419
|
+
# A request for a list of operations performed on an application.
|
3346
3420
|
#
|
3347
3421
|
# @!attribute [rw] application_name
|
3348
|
-
# The name of the application
|
3422
|
+
# The name of the application.
|
3349
3423
|
# @return [String]
|
3350
3424
|
#
|
3351
3425
|
# @!attribute [rw] limit
|
3352
|
-
#
|
3426
|
+
# The limit on the number of records to be returned in the response.
|
3353
3427
|
# @return [Integer]
|
3354
3428
|
#
|
3355
3429
|
# @!attribute [rw] next_token
|
3356
|
-
#
|
3357
|
-
# value to retrieve the next set of results
|
3430
|
+
# A pagination token that can be used in a subsequent request.
|
3358
3431
|
# @return [String]
|
3359
3432
|
#
|
3360
3433
|
# @!attribute [rw] operation
|
3361
|
-
#
|
3434
|
+
# The type of operation that is performed on an application.
|
3362
3435
|
# @return [String]
|
3363
3436
|
#
|
3364
3437
|
# @!attribute [rw] operation_status
|
3365
|
-
#
|
3438
|
+
# The status of the operation.
|
3366
3439
|
# @return [String]
|
3367
3440
|
#
|
3368
3441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsRequest AWS API Documentation
|
@@ -3377,15 +3450,15 @@ module Aws::KinesisAnalyticsV2
|
|
3377
3450
|
include Aws::Structure
|
3378
3451
|
end
|
3379
3452
|
|
3380
|
-
#
|
3453
|
+
# A response that returns a list of operations for an application.
|
3381
3454
|
#
|
3382
3455
|
# @!attribute [rw] application_operation_info_list
|
3383
|
-
#
|
3456
|
+
# A list of `ApplicationOperationInfo` objects that are associated
|
3457
|
+
# with an application.
|
3384
3458
|
# @return [Array<Types::ApplicationOperationInfo>]
|
3385
3459
|
#
|
3386
3460
|
# @!attribute [rw] next_token
|
3387
|
-
#
|
3388
|
-
# value to retrieve the next set of results
|
3461
|
+
# A pagination token that can be used in a subsequent request.
|
3389
3462
|
# @return [String]
|
3390
3463
|
#
|
3391
3464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsResponse AWS API Documentation
|
@@ -3716,15 +3789,15 @@ module Aws::KinesisAnalyticsV2
|
|
3716
3789
|
include Aws::Structure
|
3717
3790
|
end
|
3718
3791
|
|
3719
|
-
# Provides a description of the operation failure
|
3792
|
+
# Provides a description of the operation failure.
|
3720
3793
|
#
|
3721
3794
|
# @!attribute [rw] rollback_operation_id
|
3722
|
-
#
|
3723
|
-
# due to failure in the current operation
|
3795
|
+
# The rollback operation ID of the system-rollback operation that
|
3796
|
+
# executed due to failure in the current operation.
|
3724
3797
|
# @return [String]
|
3725
3798
|
#
|
3726
3799
|
# @!attribute [rw] error_info
|
3727
|
-
#
|
3800
|
+
# A description of the error that caused an operation to fail.
|
3728
3801
|
# @return [Types::ErrorInfo]
|
3729
3802
|
#
|
3730
3803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/OperationFailureDetails AWS API Documentation
|
@@ -3875,8 +3948,8 @@ module Aws::KinesisAnalyticsV2
|
|
3875
3948
|
#
|
3876
3949
|
#
|
3877
3950
|
#
|
3878
|
-
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
3879
|
-
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.
|
3951
|
+
# [1]: https://nightlies.apache.org/flink/flink-docs-release-1.20/dev/parallel.html
|
3952
|
+
# [2]: https://nightlies.apache.org/flink/flink-docs-release-1.20/
|
3880
3953
|
#
|
3881
3954
|
# @!attribute [rw] configuration_type
|
3882
3955
|
# Describes whether the application uses the default parallelism for
|
@@ -3894,7 +3967,7 @@ module Aws::KinesisAnalyticsV2
|
|
3894
3967
|
# application load. The service can increase the `CurrentParallelism`
|
3895
3968
|
# value up to the maximum parallelism, which is `ParalellismPerKPU`
|
3896
3969
|
# times the maximum KPUs for the application. The maximum KPUs for an
|
3897
|
-
# application is
|
3970
|
+
# application is 64 by default, and can be increased by requesting a
|
3898
3971
|
# limit increase. If application load is reduced, the service can
|
3899
3972
|
# reduce the `CurrentParallelism` value down to the `Parallelism`
|
3900
3973
|
# setting.
|
@@ -3944,7 +4017,7 @@ module Aws::KinesisAnalyticsV2
|
|
3944
4017
|
# application load. The service can increase `CurrentParallelism` up
|
3945
4018
|
# to the maximum parallelism, which is `ParalellismPerKPU` times the
|
3946
4019
|
# maximum KPUs for the application. The maximum KPUs for an
|
3947
|
-
# application is
|
4020
|
+
# application is 64 by default, and can be increased by requesting a
|
3948
4021
|
# limit increase. If application load is reduced, the service can
|
3949
4022
|
# reduce the `CurrentParallelism` value down to the `Parallelism`
|
3950
4023
|
# setting.
|
@@ -4289,7 +4362,7 @@ module Aws::KinesisAnalyticsV2
|
|
4289
4362
|
# @return [Types::ApplicationDetail]
|
4290
4363
|
#
|
4291
4364
|
# @!attribute [rw] operation_id
|
4292
|
-
#
|
4365
|
+
# The operation ID that can be used to track the request.
|
4293
4366
|
# @return [String]
|
4294
4367
|
#
|
4295
4368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/RollbackApplicationResponse AWS API Documentation
|
@@ -4645,6 +4718,11 @@ module Aws::KinesisAnalyticsV2
|
|
4645
4718
|
# The Flink Runtime for the application snapshot.
|
4646
4719
|
# @return [String]
|
4647
4720
|
#
|
4721
|
+
# @!attribute [rw] application_encryption_configuration_description
|
4722
|
+
# Specifies the encryption settings of data at rest for the
|
4723
|
+
# application snapshot.
|
4724
|
+
# @return [Types::ApplicationEncryptionConfigurationDescription]
|
4725
|
+
#
|
4648
4726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/SnapshotDetails AWS API Documentation
|
4649
4727
|
#
|
4650
4728
|
class SnapshotDetails < Struct.new(
|
@@ -4652,7 +4730,8 @@ module Aws::KinesisAnalyticsV2
|
|
4652
4730
|
:snapshot_status,
|
4653
4731
|
:application_version_id,
|
4654
4732
|
:snapshot_creation_timestamp,
|
4655
|
-
:runtime_environment
|
4733
|
+
:runtime_environment,
|
4734
|
+
:application_encryption_configuration_description)
|
4656
4735
|
SENSITIVE = []
|
4657
4736
|
include Aws::Structure
|
4658
4737
|
end
|
@@ -4810,7 +4889,7 @@ module Aws::KinesisAnalyticsV2
|
|
4810
4889
|
end
|
4811
4890
|
|
4812
4891
|
# @!attribute [rw] operation_id
|
4813
|
-
#
|
4892
|
+
# The operation ID that can be used to track the request.
|
4814
4893
|
# @return [String]
|
4815
4894
|
#
|
4816
4895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StartApplicationResponse AWS API Documentation
|
@@ -4855,7 +4934,7 @@ module Aws::KinesisAnalyticsV2
|
|
4855
4934
|
end
|
4856
4935
|
|
4857
4936
|
# @!attribute [rw] operation_id
|
4858
|
-
#
|
4937
|
+
# The operation ID that can be used to track the request.
|
4859
4938
|
# @return [String]
|
4860
4939
|
#
|
4861
4940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StopApplicationResponse AWS API Documentation
|
@@ -5099,7 +5178,7 @@ module Aws::KinesisAnalyticsV2
|
|
5099
5178
|
# @return [Types::ApplicationDetail]
|
5100
5179
|
#
|
5101
5180
|
# @!attribute [rw] operation_id
|
5102
|
-
#
|
5181
|
+
# The operation ID that can be used to track the request.
|
5103
5182
|
# @return [String]
|
5104
5183
|
#
|
5105
5184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplicationResponse AWS API Documentation
|
data/sig/client.rbs
CHANGED
@@ -441,6 +441,10 @@ module Aws
|
|
441
441
|
}?
|
442
442
|
},
|
443
443
|
]?
|
444
|
+
}?,
|
445
|
+
application_encryption_configuration: {
|
446
|
+
key_id: ::String?,
|
447
|
+
key_type: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
|
444
448
|
}?
|
445
449
|
},
|
446
450
|
?cloud_watch_logging_options: Array[
|
@@ -965,6 +969,10 @@ module Aws
|
|
965
969
|
}?
|
966
970
|
},
|
967
971
|
]?
|
972
|
+
}?,
|
973
|
+
application_encryption_configuration_update: {
|
974
|
+
key_id_update: ::String?,
|
975
|
+
key_type_update: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
|
968
976
|
}?
|
969
977
|
},
|
970
978
|
?service_execution_role_update: ::String,
|
data/sig/types.rbs
CHANGED
@@ -125,6 +125,7 @@ module Aws::KinesisAnalyticsV2
|
|
125
125
|
attr_accessor application_system_rollback_configuration: Types::ApplicationSystemRollbackConfiguration
|
126
126
|
attr_accessor vpc_configurations: ::Array[Types::VpcConfiguration]
|
127
127
|
attr_accessor zeppelin_application_configuration: Types::ZeppelinApplicationConfiguration
|
128
|
+
attr_accessor application_encryption_configuration: Types::ApplicationEncryptionConfiguration
|
128
129
|
SENSITIVE: []
|
129
130
|
end
|
130
131
|
|
@@ -138,6 +139,7 @@ module Aws::KinesisAnalyticsV2
|
|
138
139
|
attr_accessor application_system_rollback_configuration_description: Types::ApplicationSystemRollbackConfigurationDescription
|
139
140
|
attr_accessor vpc_configuration_descriptions: ::Array[Types::VpcConfigurationDescription]
|
140
141
|
attr_accessor zeppelin_application_configuration_description: Types::ZeppelinApplicationConfigurationDescription
|
142
|
+
attr_accessor application_encryption_configuration_description: Types::ApplicationEncryptionConfigurationDescription
|
141
143
|
SENSITIVE: []
|
142
144
|
end
|
143
145
|
|
@@ -150,6 +152,7 @@ module Aws::KinesisAnalyticsV2
|
|
150
152
|
attr_accessor application_system_rollback_configuration_update: Types::ApplicationSystemRollbackConfigurationUpdate
|
151
153
|
attr_accessor vpc_configuration_updates: ::Array[Types::VpcConfigurationUpdate]
|
152
154
|
attr_accessor zeppelin_application_configuration_update: Types::ZeppelinApplicationConfigurationUpdate
|
155
|
+
attr_accessor application_encryption_configuration_update: Types::ApplicationEncryptionConfigurationUpdate
|
153
156
|
SENSITIVE: []
|
154
157
|
end
|
155
158
|
|
@@ -175,6 +178,24 @@ module Aws::KinesisAnalyticsV2
|
|
175
178
|
SENSITIVE: []
|
176
179
|
end
|
177
180
|
|
181
|
+
class ApplicationEncryptionConfiguration
|
182
|
+
attr_accessor key_id: ::String
|
183
|
+
attr_accessor key_type: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ApplicationEncryptionConfigurationDescription
|
188
|
+
attr_accessor key_id: ::String
|
189
|
+
attr_accessor key_type: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class ApplicationEncryptionConfigurationUpdate
|
194
|
+
attr_accessor key_id_update: ::String
|
195
|
+
attr_accessor key_type_update: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY")
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
178
199
|
class ApplicationMaintenanceConfigurationDescription
|
179
200
|
attr_accessor application_maintenance_window_start_time: ::String
|
180
201
|
attr_accessor application_maintenance_window_end_time: ::String
|
@@ -1154,6 +1175,7 @@ module Aws::KinesisAnalyticsV2
|
|
1154
1175
|
attr_accessor application_version_id: ::Integer
|
1155
1176
|
attr_accessor snapshot_creation_timestamp: ::Time
|
1156
1177
|
attr_accessor runtime_environment: ("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" | "FLINK-1_18" | "FLINK-1_19" | "FLINK-1_20")
|
1178
|
+
attr_accessor application_encryption_configuration_description: Types::ApplicationEncryptionConfigurationDescription
|
1157
1179
|
SENSITIVE: []
|
1158
1180
|
end
|
1159
1181
|
|