aws-sdk-kinesisanalyticsv2 1.22.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -33,6 +33,10 @@ module Aws::KinesisAnalyticsV2
33
33
  ApplicationConfigurationUpdate = Shapes::StructureShape.new(name: 'ApplicationConfigurationUpdate')
34
34
  ApplicationDescription = Shapes::StringShape.new(name: 'ApplicationDescription')
35
35
  ApplicationDetail = Shapes::StructureShape.new(name: 'ApplicationDetail')
36
+ ApplicationMaintenanceConfigurationDescription = Shapes::StructureShape.new(name: 'ApplicationMaintenanceConfigurationDescription')
37
+ ApplicationMaintenanceConfigurationUpdate = Shapes::StructureShape.new(name: 'ApplicationMaintenanceConfigurationUpdate')
38
+ ApplicationMaintenanceWindowEndTime = Shapes::StringShape.new(name: 'ApplicationMaintenanceWindowEndTime')
39
+ ApplicationMaintenanceWindowStartTime = Shapes::StringShape.new(name: 'ApplicationMaintenanceWindowStartTime')
36
40
  ApplicationName = Shapes::StringShape.new(name: 'ApplicationName')
37
41
  ApplicationRestoreConfiguration = Shapes::StructureShape.new(name: 'ApplicationRestoreConfiguration')
38
42
  ApplicationRestoreType = Shapes::StringShape.new(name: 'ApplicationRestoreType')
@@ -43,6 +47,7 @@ module Aws::KinesisAnalyticsV2
43
47
  ApplicationSummaries = Shapes::ListShape.new(name: 'ApplicationSummaries')
44
48
  ApplicationSummary = Shapes::StructureShape.new(name: 'ApplicationSummary')
45
49
  ApplicationVersionId = Shapes::IntegerShape.new(name: 'ApplicationVersionId')
50
+ AuthorizedUrl = Shapes::StringShape.new(name: 'AuthorizedUrl')
46
51
  BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
47
52
  BucketARN = Shapes::StringShape.new(name: 'BucketARN')
48
53
  CSVMappingParameters = Shapes::StructureShape.new(name: 'CSVMappingParameters')
@@ -65,6 +70,8 @@ module Aws::KinesisAnalyticsV2
65
70
  CodeValidationException = Shapes::StructureShape.new(name: 'CodeValidationException')
66
71
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
67
72
  ConfigurationType = Shapes::StringShape.new(name: 'ConfigurationType')
73
+ CreateApplicationPresignedUrlRequest = Shapes::StructureShape.new(name: 'CreateApplicationPresignedUrlRequest')
74
+ CreateApplicationPresignedUrlResponse = Shapes::StructureShape.new(name: 'CreateApplicationPresignedUrlResponse')
68
75
  CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
69
76
  CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
70
77
  CreateApplicationSnapshotRequest = Shapes::StructureShape.new(name: 'CreateApplicationSnapshotRequest')
@@ -220,6 +227,7 @@ module Aws::KinesisAnalyticsV2
220
227
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
221
228
  SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
222
229
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
230
+ SessionExpirationDurationInSeconds = Shapes::IntegerShape.new(name: 'SessionExpirationDurationInSeconds')
223
231
  SnapshotDetails = Shapes::StructureShape.new(name: 'SnapshotDetails')
224
232
  SnapshotName = Shapes::StringShape.new(name: 'SnapshotName')
225
233
  SnapshotStatus = Shapes::StringShape.new(name: 'SnapshotStatus')
@@ -250,8 +258,11 @@ module Aws::KinesisAnalyticsV2
250
258
  UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
251
259
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
252
260
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
261
+ UpdateApplicationMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationMaintenanceConfigurationRequest')
262
+ UpdateApplicationMaintenanceConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationMaintenanceConfigurationResponse')
253
263
  UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
254
264
  UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
265
+ UrlType = Shapes::StringShape.new(name: 'UrlType')
255
266
  VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
256
267
  VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
257
268
  VpcConfigurationDescriptions = Shapes::ListShape.new(name: 'VpcConfigurationDescriptions')
@@ -371,8 +382,16 @@ module Aws::KinesisAnalyticsV2
371
382
  ApplicationDetail.add_member(:last_update_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdateTimestamp"))
372
383
  ApplicationDetail.add_member(:application_configuration_description, Shapes::ShapeRef.new(shape: ApplicationConfigurationDescription, location_name: "ApplicationConfigurationDescription"))
373
384
  ApplicationDetail.add_member(:cloud_watch_logging_option_descriptions, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionDescriptions, location_name: "CloudWatchLoggingOptionDescriptions"))
385
+ ApplicationDetail.add_member(:application_maintenance_configuration_description, Shapes::ShapeRef.new(shape: ApplicationMaintenanceConfigurationDescription, location_name: "ApplicationMaintenanceConfigurationDescription"))
374
386
  ApplicationDetail.struct_class = Types::ApplicationDetail
375
387
 
388
+ ApplicationMaintenanceConfigurationDescription.add_member(:application_maintenance_window_start_time, Shapes::ShapeRef.new(shape: ApplicationMaintenanceWindowStartTime, required: true, location_name: "ApplicationMaintenanceWindowStartTime"))
389
+ ApplicationMaintenanceConfigurationDescription.add_member(:application_maintenance_window_end_time, Shapes::ShapeRef.new(shape: ApplicationMaintenanceWindowEndTime, required: true, location_name: "ApplicationMaintenanceWindowEndTime"))
390
+ ApplicationMaintenanceConfigurationDescription.struct_class = Types::ApplicationMaintenanceConfigurationDescription
391
+
392
+ ApplicationMaintenanceConfigurationUpdate.add_member(:application_maintenance_window_start_time_update, Shapes::ShapeRef.new(shape: ApplicationMaintenanceWindowStartTime, required: true, location_name: "ApplicationMaintenanceWindowStartTimeUpdate"))
393
+ ApplicationMaintenanceConfigurationUpdate.struct_class = Types::ApplicationMaintenanceConfigurationUpdate
394
+
376
395
  ApplicationRestoreConfiguration.add_member(:application_restore_type, Shapes::ShapeRef.new(shape: ApplicationRestoreType, required: true, location_name: "ApplicationRestoreType"))
377
396
  ApplicationRestoreConfiguration.add_member(:snapshot_name, Shapes::ShapeRef.new(shape: SnapshotName, location_name: "SnapshotName"))
378
397
  ApplicationRestoreConfiguration.struct_class = Types::ApplicationRestoreConfiguration
@@ -457,6 +476,14 @@ module Aws::KinesisAnalyticsV2
457
476
  ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
458
477
  ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
459
478
 
479
+ CreateApplicationPresignedUrlRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
480
+ CreateApplicationPresignedUrlRequest.add_member(:url_type, Shapes::ShapeRef.new(shape: UrlType, required: true, location_name: "UrlType"))
481
+ CreateApplicationPresignedUrlRequest.add_member(:session_expiration_duration_in_seconds, Shapes::ShapeRef.new(shape: SessionExpirationDurationInSeconds, location_name: "SessionExpirationDurationInSeconds"))
482
+ CreateApplicationPresignedUrlRequest.struct_class = Types::CreateApplicationPresignedUrlRequest
483
+
484
+ CreateApplicationPresignedUrlResponse.add_member(:authorized_url, Shapes::ShapeRef.new(shape: AuthorizedUrl, location_name: "AuthorizedUrl"))
485
+ CreateApplicationPresignedUrlResponse.struct_class = Types::CreateApplicationPresignedUrlResponse
486
+
460
487
  CreateApplicationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
461
488
  CreateApplicationRequest.add_member(:application_description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "ApplicationDescription"))
462
489
  CreateApplicationRequest.add_member(:runtime_environment, Shapes::ShapeRef.new(shape: RuntimeEnvironment, required: true, location_name: "RuntimeEnvironment"))
@@ -967,6 +994,7 @@ module Aws::KinesisAnalyticsV2
967
994
  StartApplicationResponse.struct_class = Types::StartApplicationResponse
968
995
 
969
996
  StopApplicationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
997
+ StopApplicationRequest.add_member(:force, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "Force"))
970
998
  StopApplicationRequest.struct_class = Types::StopApplicationRequest
971
999
 
972
1000
  StopApplicationResponse.struct_class = Types::StopApplicationResponse
@@ -1004,6 +1032,14 @@ module Aws::KinesisAnalyticsV2
1004
1032
 
1005
1033
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
1006
1034
 
1035
+ UpdateApplicationMaintenanceConfigurationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
1036
+ UpdateApplicationMaintenanceConfigurationRequest.add_member(:application_maintenance_configuration_update, Shapes::ShapeRef.new(shape: ApplicationMaintenanceConfigurationUpdate, required: true, location_name: "ApplicationMaintenanceConfigurationUpdate"))
1037
+ UpdateApplicationMaintenanceConfigurationRequest.struct_class = Types::UpdateApplicationMaintenanceConfigurationRequest
1038
+
1039
+ UpdateApplicationMaintenanceConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ApplicationARN"))
1040
+ UpdateApplicationMaintenanceConfigurationResponse.add_member(:application_maintenance_configuration_description, Shapes::ShapeRef.new(shape: ApplicationMaintenanceConfigurationDescription, location_name: "ApplicationMaintenanceConfigurationDescription"))
1041
+ UpdateApplicationMaintenanceConfigurationResponse.struct_class = Types::UpdateApplicationMaintenanceConfigurationResponse
1042
+
1007
1043
  UpdateApplicationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
1008
1044
  UpdateApplicationRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
1009
1045
  UpdateApplicationRequest.add_member(:application_configuration_update, Shapes::ShapeRef.new(shape: ApplicationConfigurationUpdate, location_name: "ApplicationConfigurationUpdate"))
@@ -1151,6 +1187,17 @@ module Aws::KinesisAnalyticsV2
1151
1187
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1152
1188
  end)
1153
1189
 
1190
+ api.add_operation(:create_application_presigned_url, Seahorse::Model::Operation.new.tap do |o|
1191
+ o.name = "CreateApplicationPresignedUrl"
1192
+ o.http_method = "POST"
1193
+ o.http_request_uri = "/"
1194
+ o.input = Shapes::ShapeRef.new(shape: CreateApplicationPresignedUrlRequest)
1195
+ o.output = Shapes::ShapeRef.new(shape: CreateApplicationPresignedUrlResponse)
1196
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1197
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1198
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
1199
+ end)
1200
+
1154
1201
  api.add_operation(:create_application_snapshot, Seahorse::Model::Operation.new.tap do |o|
1155
1202
  o.name = "CreateApplicationSnapshot"
1156
1203
  o.http_method = "POST"
@@ -1348,6 +1395,7 @@ module Aws::KinesisAnalyticsV2
1348
1395
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
1349
1396
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1350
1397
  o.errors << Shapes::ShapeRef.new(shape: InvalidApplicationConfigurationException)
1398
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1351
1399
  end)
1352
1400
 
1353
1401
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -1389,6 +1437,20 @@ module Aws::KinesisAnalyticsV2
1389
1437
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1390
1438
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1391
1439
  o.errors << Shapes::ShapeRef.new(shape: InvalidApplicationConfigurationException)
1440
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1441
+ end)
1442
+
1443
+ api.add_operation(:update_application_maintenance_configuration, Seahorse::Model::Operation.new.tap do |o|
1444
+ o.name = "UpdateApplicationMaintenanceConfiguration"
1445
+ o.http_method = "POST"
1446
+ o.http_request_uri = "/"
1447
+ o.input = Shapes::ShapeRef.new(shape: UpdateApplicationMaintenanceConfigurationRequest)
1448
+ o.output = Shapes::ShapeRef.new(shape: UpdateApplicationMaintenanceConfigurationResponse)
1449
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1450
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1451
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
1452
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1453
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
1392
1454
  end)
1393
1455
  end
1394
1456
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -128,7 +128,7 @@ module Aws::KinesisAnalyticsV2
128
128
  #
129
129
  # @!attribute [rw] input_id
130
130
  # The input ID that is associated with the application input. This is
131
- # the ID that Amazon Kinesis Data Analytics assigns to each input
131
+ # the ID that Kinesis Data Analytics assigns to each input
132
132
  # configuration that you add to your application.
133
133
  # @return [String]
134
134
  #
@@ -395,7 +395,7 @@ module Aws::KinesisAnalyticsV2
395
395
  # @return [String]
396
396
  #
397
397
  # @!attribute [rw] application_version_id
398
- # The updated application version ID. Amazon Kinesis Data Analytics
398
+ # The updated application version ID. Kinesis Data Analytics
399
399
  # increments this ID when the application is updated.
400
400
  # @return [Integer]
401
401
  #
@@ -430,11 +430,10 @@ module Aws::KinesisAnalyticsV2
430
430
  # @return [String]
431
431
  #
432
432
  # @!attribute [rw] current_application_version_id
433
- # The version of the application to which you want to add the input
434
- # processing configuration. You can use the DescribeApplication
435
- # operation to get the current application version. If the version
436
- # specified is not the current version, the
437
- # `ConcurrentModificationException` is returned.
433
+ # The version of the application to which you want to add the VPC
434
+ # configuration. You can use the DescribeApplication operation to get
435
+ # the current application version. If the version specified is not the
436
+ # current version, the `ConcurrentModificationException` is returned.
438
437
  # @return [Integer]
439
438
  #
440
439
  # @!attribute [rw] vpc_configuration
@@ -475,7 +474,7 @@ module Aws::KinesisAnalyticsV2
475
474
  include Aws::Structure
476
475
  end
477
476
 
478
- # Describes code configuration for a Java-based Kinesis Data Analytics
477
+ # Describes code configuration for a Flink-based Kinesis Data Analytics
479
478
  # application.
480
479
  #
481
480
  # @note When making an API call, you may pass ApplicationCodeConfiguration
@@ -511,7 +510,7 @@ module Aws::KinesisAnalyticsV2
511
510
  include Aws::Structure
512
511
  end
513
512
 
514
- # Describes code configuration for a Java-based Kinesis Data Analytics
513
+ # Describes code configuration for a Flink-based Kinesis Data Analytics
515
514
  # application.
516
515
  #
517
516
  # @!attribute [rw] code_content_type
@@ -532,8 +531,8 @@ module Aws::KinesisAnalyticsV2
532
531
  include Aws::Structure
533
532
  end
534
533
 
535
- # Describes updates to a Java-based Amazon Kinesis Data Analytics
536
- # application.
534
+ # Describes code configuration updates to a Flink-based Kinesis Data
535
+ # Analytics application.
537
536
  #
538
537
  # @note When making an API call, you may pass ApplicationCodeConfigurationUpdate
539
538
  # data as a hash:
@@ -568,7 +567,7 @@ module Aws::KinesisAnalyticsV2
568
567
  include Aws::Structure
569
568
  end
570
569
 
571
- # Specifies the creation parameters for an Amazon Kinesis Data Analytics
570
+ # Specifies the creation parameters for a Kinesis Data Analytics
572
571
  # application.
573
572
  #
574
573
  # @note When making an API call, you may pass ApplicationConfiguration
@@ -719,27 +718,27 @@ module Aws::KinesisAnalyticsV2
719
718
  # }
720
719
  #
721
720
  # @!attribute [rw] sql_application_configuration
722
- # The creation and update parameters for an SQL-based Kinesis Data
721
+ # The creation and update parameters for a SQL-based Kinesis Data
723
722
  # Analytics application.
724
723
  # @return [Types::SqlApplicationConfiguration]
725
724
  #
726
725
  # @!attribute [rw] flink_application_configuration
727
- # The creation and update parameters for a Java-based Kinesis Data
726
+ # The creation and update parameters for a Flink-based Kinesis Data
728
727
  # Analytics application.
729
728
  # @return [Types::FlinkApplicationConfiguration]
730
729
  #
731
730
  # @!attribute [rw] environment_properties
732
- # Describes execution properties for a Java-based Kinesis Data
731
+ # Describes execution properties for a Flink-based Kinesis Data
733
732
  # Analytics application.
734
733
  # @return [Types::EnvironmentProperties]
735
734
  #
736
735
  # @!attribute [rw] application_code_configuration
737
- # The code location and type parameters for a Java-based Kinesis Data
736
+ # The code location and type parameters for a Flink-based Kinesis Data
738
737
  # Analytics application.
739
738
  # @return [Types::ApplicationCodeConfiguration]
740
739
  #
741
740
  # @!attribute [rw] application_snapshot_configuration
742
- # Describes whether snapshots are enabled for a Java-based Kinesis
741
+ # Describes whether snapshots are enabled for a Flink-based Kinesis
743
742
  # Data Analytics application.
744
743
  # @return [Types::ApplicationSnapshotConfiguration]
745
744
  #
@@ -762,16 +761,16 @@ module Aws::KinesisAnalyticsV2
762
761
  end
763
762
 
764
763
  # Describes details about the application code and starting parameters
765
- # for an Amazon Kinesis Data Analytics application.
764
+ # for a Kinesis Data Analytics application.
766
765
  #
767
766
  # @!attribute [rw] sql_application_configuration_description
768
- # The details about inputs, outputs, and reference data sources for an
767
+ # The details about inputs, outputs, and reference data sources for a
769
768
  # SQL-based Kinesis Data Analytics application.
770
769
  # @return [Types::SqlApplicationConfigurationDescription]
771
770
  #
772
771
  # @!attribute [rw] application_code_configuration_description
773
- # The details about the application code for a Java-based Kinesis Data
774
- # Analytics application.
772
+ # The details about the application code for a Flink-based Kinesis
773
+ # Data Analytics application.
775
774
  # @return [Types::ApplicationCodeConfigurationDescription]
776
775
  #
777
776
  # @!attribute [rw] run_configuration_description
@@ -780,16 +779,16 @@ module Aws::KinesisAnalyticsV2
780
779
  # @return [Types::RunConfigurationDescription]
781
780
  #
782
781
  # @!attribute [rw] flink_application_configuration_description
783
- # The details about a Java-based Kinesis Data Analytics application.
782
+ # The details about a Flink-based Kinesis Data Analytics application.
784
783
  # @return [Types::FlinkApplicationConfigurationDescription]
785
784
  #
786
785
  # @!attribute [rw] environment_property_descriptions
787
- # Describes execution properties for a Java-based Kinesis Data
786
+ # Describes execution properties for a Flink-based Kinesis Data
788
787
  # Analytics application.
789
788
  # @return [Types::EnvironmentPropertyDescriptions]
790
789
  #
791
790
  # @!attribute [rw] application_snapshot_configuration_description
792
- # Describes whether snapshots are enabled for a Java-based Kinesis
791
+ # Describes whether snapshots are enabled for a Flink-based Kinesis
793
792
  # Data Analytics application.
794
793
  # @return [Types::ApplicationSnapshotConfigurationDescription]
795
794
  #
@@ -966,27 +965,27 @@ module Aws::KinesisAnalyticsV2
966
965
  # }
967
966
  #
968
967
  # @!attribute [rw] sql_application_configuration_update
969
- # Describes updates to an SQL-based Kinesis Data Analytics
968
+ # Describes updates to a SQL-based Kinesis Data Analytics
970
969
  # application's configuration.
971
970
  # @return [Types::SqlApplicationConfigurationUpdate]
972
971
  #
973
972
  # @!attribute [rw] application_code_configuration_update
974
- # Describes updates to a Java-based Kinesis Data Analytics
973
+ # Describes updates to a Flink-based Kinesis Data Analytics
975
974
  # application's code configuration.
976
975
  # @return [Types::ApplicationCodeConfigurationUpdate]
977
976
  #
978
977
  # @!attribute [rw] flink_application_configuration_update
979
- # Describes updates to a Java-based Kinesis Data Analytics
978
+ # Describes updates to a Flink-based Kinesis Data Analytics
980
979
  # application's configuration.
981
980
  # @return [Types::FlinkApplicationConfigurationUpdate]
982
981
  #
983
982
  # @!attribute [rw] environment_property_updates
984
- # Describes updates to the environment properties for a Java-based
983
+ # Describes updates to the environment properties for a Flink-based
985
984
  # Kinesis Data Analytics application.
986
985
  # @return [Types::EnvironmentPropertyUpdates]
987
986
  #
988
987
  # @!attribute [rw] application_snapshot_configuration_update
989
- # Describes whether snapshots are enabled for a Java-based Kinesis
988
+ # Describes whether snapshots are enabled for a Flink-based Kinesis
990
989
  # Data Analytics application.
991
990
  # @return [Types::ApplicationSnapshotConfigurationUpdate]
992
991
  #
@@ -1025,8 +1024,8 @@ module Aws::KinesisAnalyticsV2
1025
1024
  # @return [String]
1026
1025
  #
1027
1026
  # @!attribute [rw] runtime_environment
1028
- # The runtime environment for the application (`SQL-1.0` or
1029
- # `FLINK-1_6`).
1027
+ # The runtime environment for the application (`SQL-1_0`, `FLINK-1_6`,
1028
+ # `FLINK-1_8`, or `FLINK-1_11`).
1030
1029
  # @return [String]
1031
1030
  #
1032
1031
  # @!attribute [rw] service_execution_role
@@ -1053,14 +1052,18 @@ module Aws::KinesisAnalyticsV2
1053
1052
  # @return [Time]
1054
1053
  #
1055
1054
  # @!attribute [rw] application_configuration_description
1056
- # Provides details about the application's SQL or Java code and
1057
- # starting parameters.
1055
+ # Provides details about the application's Java, SQL, or Scala code
1056
+ # and starting parameters.
1058
1057
  # @return [Types::ApplicationConfigurationDescription]
1059
1058
  #
1060
1059
  # @!attribute [rw] cloud_watch_logging_option_descriptions
1061
1060
  # Describes the application Amazon CloudWatch logging options.
1062
1061
  # @return [Array<Types::CloudWatchLoggingOptionDescription>]
1063
1062
  #
1063
+ # @!attribute [rw] application_maintenance_configuration_description
1064
+ # Describes the time window for automatic application maintenance.
1065
+ # @return [Types::ApplicationMaintenanceConfigurationDescription]
1066
+ #
1064
1067
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationDetail AWS API Documentation
1065
1068
  #
1066
1069
  class ApplicationDetail < Struct.new(
@@ -1074,7 +1077,49 @@ module Aws::KinesisAnalyticsV2
1074
1077
  :create_timestamp,
1075
1078
  :last_update_timestamp,
1076
1079
  :application_configuration_description,
1077
- :cloud_watch_logging_option_descriptions)
1080
+ :cloud_watch_logging_option_descriptions,
1081
+ :application_maintenance_configuration_description)
1082
+ SENSITIVE = []
1083
+ include Aws::Structure
1084
+ end
1085
+
1086
+ # Describes the time window for automatic application maintenance.
1087
+ #
1088
+ # @!attribute [rw] application_maintenance_window_start_time
1089
+ # The start time for the automatic maintenance window.
1090
+ # @return [String]
1091
+ #
1092
+ # @!attribute [rw] application_maintenance_window_end_time
1093
+ # The end time for the automatic maintenance window.
1094
+ # @return [String]
1095
+ #
1096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationMaintenanceConfigurationDescription AWS API Documentation
1097
+ #
1098
+ class ApplicationMaintenanceConfigurationDescription < Struct.new(
1099
+ :application_maintenance_window_start_time,
1100
+ :application_maintenance_window_end_time)
1101
+ SENSITIVE = []
1102
+ include Aws::Structure
1103
+ end
1104
+
1105
+ # Describes the updated time window for automatic application
1106
+ # maintenance.
1107
+ #
1108
+ # @note When making an API call, you may pass ApplicationMaintenanceConfigurationUpdate
1109
+ # data as a hash:
1110
+ #
1111
+ # {
1112
+ # application_maintenance_window_start_time_update: "ApplicationMaintenanceWindowStartTime", # required
1113
+ # }
1114
+ #
1115
+ # @!attribute [rw] application_maintenance_window_start_time_update
1116
+ # The updated start time for the automatic maintenance window.
1117
+ # @return [String]
1118
+ #
1119
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationMaintenanceConfigurationUpdate AWS API Documentation
1120
+ #
1121
+ class ApplicationMaintenanceConfigurationUpdate < Struct.new(
1122
+ :application_maintenance_window_start_time_update)
1078
1123
  SENSITIVE = []
1079
1124
  include Aws::Structure
1080
1125
  end
@@ -1110,7 +1155,7 @@ module Aws::KinesisAnalyticsV2
1110
1155
  include Aws::Structure
1111
1156
  end
1112
1157
 
1113
- # Describes whether snapshots are enabled for a Java-based Kinesis Data
1158
+ # Describes whether snapshots are enabled for a Flink-based Kinesis Data
1114
1159
  # Analytics application.
1115
1160
  #
1116
1161
  # @note When making an API call, you may pass ApplicationSnapshotConfiguration
@@ -1121,7 +1166,7 @@ module Aws::KinesisAnalyticsV2
1121
1166
  # }
1122
1167
  #
1123
1168
  # @!attribute [rw] snapshots_enabled
1124
- # Describes whether snapshots are enabled for a Java-based Kinesis
1169
+ # Describes whether snapshots are enabled for a Flink-based Kinesis
1125
1170
  # Data Analytics application.
1126
1171
  # @return [Boolean]
1127
1172
  #
@@ -1133,11 +1178,11 @@ module Aws::KinesisAnalyticsV2
1133
1178
  include Aws::Structure
1134
1179
  end
1135
1180
 
1136
- # Describes whether snapshots are enabled for a Java-based Kinesis Data
1181
+ # Describes whether snapshots are enabled for a Flink-based Kinesis Data
1137
1182
  # Analytics application.
1138
1183
  #
1139
1184
  # @!attribute [rw] snapshots_enabled
1140
- # Describes whether snapshots are enabled for a Java-based Kinesis
1185
+ # Describes whether snapshots are enabled for a Flink-based Kinesis
1141
1186
  # Data Analytics application.
1142
1187
  # @return [Boolean]
1143
1188
  #
@@ -1149,7 +1194,7 @@ module Aws::KinesisAnalyticsV2
1149
1194
  include Aws::Structure
1150
1195
  end
1151
1196
 
1152
- # Describes updates to whether snapshots are enabled for a Java-based
1197
+ # Describes updates to whether snapshots are enabled for a Flink-based
1153
1198
  # Kinesis Data Analytics application.
1154
1199
  #
1155
1200
  # @note When making an API call, you may pass ApplicationSnapshotConfigurationUpdate
@@ -1160,7 +1205,7 @@ module Aws::KinesisAnalyticsV2
1160
1205
  # }
1161
1206
  #
1162
1207
  # @!attribute [rw] snapshots_enabled_update
1163
- # Describes updates to whether snapshots are enabled for a Java-based
1208
+ # Describes updates to whether snapshots are enabled for a Flink-based
1164
1209
  # Kinesis Data Analytics application.
1165
1210
  # @return [Boolean]
1166
1211
  #
@@ -1192,8 +1237,8 @@ module Aws::KinesisAnalyticsV2
1192
1237
  # @return [Integer]
1193
1238
  #
1194
1239
  # @!attribute [rw] runtime_environment
1195
- # The runtime environment for the application (`SQL-1.0` or
1196
- # `FLINK-1_6`).
1240
+ # The runtime environment for the application (`SQL-1_0`, `FLINK-1_6`,
1241
+ # `FLINK-1_8`, or `FLINK-1_11`).
1197
1242
  # @return [String]
1198
1243
  #
1199
1244
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSummary AWS API Documentation
@@ -1208,11 +1253,11 @@ module Aws::KinesisAnalyticsV2
1208
1253
  include Aws::Structure
1209
1254
  end
1210
1255
 
1211
- # For an SQL-based application, provides additional mapping information
1212
- # when the record format uses delimiters, such as CSV. For example, the
1213
- # following sample records use CSV format, where the records use the
1214
- # *'\\n'* as the row delimiter and a comma (",") as the column
1215
- # delimiter:
1256
+ # For a SQL-based Kinesis Data Analytics application, provides
1257
+ # additional mapping information when the record format uses delimiters,
1258
+ # such as CSV. For example, the following sample records use CSV format,
1259
+ # where the records use the *'\\n'* as the row delimiter and a comma
1260
+ # (",") as the column delimiter:
1216
1261
  #
1217
1262
  # `"name1", "address1"`
1218
1263
  #
@@ -1252,8 +1297,8 @@ module Aws::KinesisAnalyticsV2
1252
1297
  #
1253
1298
  #
1254
1299
  #
1255
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/concepts/programming-model.html#checkpoints-for-fault-tolerance
1256
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/
1300
+ # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance
1301
+ # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
1257
1302
  #
1258
1303
  # @note When making an API call, you may pass CheckpointConfiguration
1259
1304
  # data as a hash:
@@ -1266,9 +1311,9 @@ module Aws::KinesisAnalyticsV2
1266
1311
  # }
1267
1312
  #
1268
1313
  # @!attribute [rw] configuration_type
1269
- # Describes whether the application uses Amazon Kinesis Data
1270
- # Analytics' default checkpointing behavior. You must set this
1271
- # property to `CUSTOM` in order to set the `CheckpointingEnabled`,
1314
+ # Describes whether the application uses Kinesis Data Analytics'
1315
+ # default checkpointing behavior. You must set this property to
1316
+ # `CUSTOM` in order to set the `CheckpointingEnabled`,
1272
1317
  # `CheckpointInterval`, or `MinPauseBetweenCheckpoints` parameters.
1273
1318
  #
1274
1319
  # <note markdown="1"> If this value is set to `DEFAULT`, the application will use the
@@ -1285,7 +1330,7 @@ module Aws::KinesisAnalyticsV2
1285
1330
  # @return [String]
1286
1331
  #
1287
1332
  # @!attribute [rw] checkpointing_enabled
1288
- # Describes whether checkpointing is enabled for a Java-based Kinesis
1333
+ # Describes whether checkpointing is enabled for a Flink-based Kinesis
1289
1334
  # Data Analytics application.
1290
1335
  #
1291
1336
  # <note markdown="1"> If `CheckpointConfiguration.ConfigurationType` is `DEFAULT`, the
@@ -1301,7 +1346,7 @@ module Aws::KinesisAnalyticsV2
1301
1346
  # operations.
1302
1347
  #
1303
1348
  # <note markdown="1"> If `CheckpointConfiguration.ConfigurationType` is `DEFAULT`, the
1304
- # application will use a `CheckpointInterval` vaue of 60000, even if
1349
+ # application will use a `CheckpointInterval` value of 60000, even if
1305
1350
  # this value is set to another value using this API or in application
1306
1351
  # code.
1307
1352
  #
@@ -1324,8 +1369,8 @@ module Aws::KinesisAnalyticsV2
1324
1369
  #
1325
1370
  #
1326
1371
  #
1327
- # [1]: https://ci.apache.org/projects/flink/flink-docs-stable/ops/state/large_state_tuning.html#tuning-checkpointing
1328
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/
1372
+ # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/large_state_tuning.html#tuning-checkpointing
1373
+ # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
1329
1374
  # @return [Integer]
1330
1375
  #
1331
1376
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CheckpointConfiguration AWS API Documentation
@@ -1339,8 +1384,8 @@ module Aws::KinesisAnalyticsV2
1339
1384
  include Aws::Structure
1340
1385
  end
1341
1386
 
1342
- # Describes checkpointing parameters for a Java-based Amazon Kinesis
1343
- # Data Analytics application.
1387
+ # Describes checkpointing parameters for a Flink-based Kinesis Data
1388
+ # Analytics application.
1344
1389
  #
1345
1390
  # @!attribute [rw] configuration_type
1346
1391
  # Describes whether the application uses the default checkpointing
@@ -1360,7 +1405,7 @@ module Aws::KinesisAnalyticsV2
1360
1405
  # @return [String]
1361
1406
  #
1362
1407
  # @!attribute [rw] checkpointing_enabled
1363
- # Describes whether checkpointing is enabled for a Java-based Kinesis
1408
+ # Describes whether checkpointing is enabled for a Flink-based Kinesis
1364
1409
  # Data Analytics application.
1365
1410
  #
1366
1411
  # <note markdown="1"> If `CheckpointConfiguration.ConfigurationType` is `DEFAULT`, the
@@ -1376,7 +1421,7 @@ module Aws::KinesisAnalyticsV2
1376
1421
  # operations.
1377
1422
  #
1378
1423
  # <note markdown="1"> If `CheckpointConfiguration.ConfigurationType` is `DEFAULT`, the
1379
- # application will use a `CheckpointInterval` vaue of 60000, even if
1424
+ # application will use a `CheckpointInterval` value of 60000, even if
1380
1425
  # this value is set to another value using this API or in application
1381
1426
  # code.
1382
1427
  #
@@ -1405,8 +1450,8 @@ module Aws::KinesisAnalyticsV2
1405
1450
  include Aws::Structure
1406
1451
  end
1407
1452
 
1408
- # Describes updates to the checkpointing parameters for a Java-based
1409
- # Amazon Kinesis Data Analytics application.
1453
+ # Describes updates to the checkpointing parameters for a Flink-based
1454
+ # Kinesis Data Analytics application.
1410
1455
  #
1411
1456
  # @note When making an API call, you may pass CheckpointConfigurationUpdate
1412
1457
  # data as a hash:
@@ -1454,7 +1499,7 @@ module Aws::KinesisAnalyticsV2
1454
1499
  # operations.
1455
1500
  #
1456
1501
  # <note markdown="1"> If `CheckpointConfiguration.ConfigurationType` is `DEFAULT`, the
1457
- # application will use a `CheckpointInterval` vaue of 60000, even if
1502
+ # application will use a `CheckpointInterval` value of 60000, even if
1458
1503
  # this value is set to another value using this API or in application
1459
1504
  # code.
1460
1505
  #
@@ -1566,7 +1611,7 @@ module Aws::KinesisAnalyticsV2
1566
1611
  end
1567
1612
 
1568
1613
  # Specifies either the application code, or the location of the
1569
- # application code, for a Java-based Amazon Kinesis Data Analytics
1614
+ # application code, for a Flink-based Kinesis Data Analytics
1570
1615
  # application.
1571
1616
  #
1572
1617
  # @note When making an API call, you may pass CodeContent
@@ -1583,12 +1628,12 @@ module Aws::KinesisAnalyticsV2
1583
1628
  # }
1584
1629
  #
1585
1630
  # @!attribute [rw] text_content
1586
- # The text-format code for a Java-based Kinesis Data Analytics
1631
+ # The text-format code for a Flink-based Kinesis Data Analytics
1587
1632
  # application.
1588
1633
  # @return [String]
1589
1634
  #
1590
1635
  # @!attribute [rw] zip_file_content
1591
- # The zip-format code for a Java-based Kinesis Data Analytics
1636
+ # The zip-format code for a Flink-based Kinesis Data Analytics
1592
1637
  # application.
1593
1638
  # @return [String]
1594
1639
  #
@@ -1607,7 +1652,7 @@ module Aws::KinesisAnalyticsV2
1607
1652
  include Aws::Structure
1608
1653
  end
1609
1654
 
1610
- # Describes details about the application code for a Java-based Kinesis
1655
+ # Describes details about the application code for a Flink-based Kinesis
1611
1656
  # Data Analytics application.
1612
1657
  #
1613
1658
  # @!attribute [rw] text_content
@@ -1639,8 +1684,8 @@ module Aws::KinesisAnalyticsV2
1639
1684
  include Aws::Structure
1640
1685
  end
1641
1686
 
1642
- # Describes an update to the code of a Java-based Kinesis Data Analytics
1643
- # application.
1687
+ # Describes an update to the code of a Flink-based Kinesis Data
1688
+ # Analytics application.
1644
1689
  #
1645
1690
  # @note When making an API call, you may pass CodeContentUpdate
1646
1691
  # data as a hash:
@@ -1706,13 +1751,58 @@ module Aws::KinesisAnalyticsV2
1706
1751
  include Aws::Structure
1707
1752
  end
1708
1753
 
1754
+ # @note When making an API call, you may pass CreateApplicationPresignedUrlRequest
1755
+ # data as a hash:
1756
+ #
1757
+ # {
1758
+ # application_name: "ApplicationName", # required
1759
+ # url_type: "FLINK_DASHBOARD_URL", # required, accepts FLINK_DASHBOARD_URL
1760
+ # session_expiration_duration_in_seconds: 1,
1761
+ # }
1762
+ #
1763
+ # @!attribute [rw] application_name
1764
+ # The name of the application.
1765
+ # @return [String]
1766
+ #
1767
+ # @!attribute [rw] url_type
1768
+ # The type of the extension for which to create and return a URL.
1769
+ # Currently, the only valid extension URL type is
1770
+ # `FLINK_DASHBOARD_URL`.
1771
+ # @return [String]
1772
+ #
1773
+ # @!attribute [rw] session_expiration_duration_in_seconds
1774
+ # The duration in seconds for which the returned URL will be valid.
1775
+ # @return [Integer]
1776
+ #
1777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CreateApplicationPresignedUrlRequest AWS API Documentation
1778
+ #
1779
+ class CreateApplicationPresignedUrlRequest < Struct.new(
1780
+ :application_name,
1781
+ :url_type,
1782
+ :session_expiration_duration_in_seconds)
1783
+ SENSITIVE = []
1784
+ include Aws::Structure
1785
+ end
1786
+
1787
+ # @!attribute [rw] authorized_url
1788
+ # The URL of the extension.
1789
+ # @return [String]
1790
+ #
1791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CreateApplicationPresignedUrlResponse AWS API Documentation
1792
+ #
1793
+ class CreateApplicationPresignedUrlResponse < Struct.new(
1794
+ :authorized_url)
1795
+ SENSITIVE = []
1796
+ include Aws::Structure
1797
+ end
1798
+
1709
1799
  # @note When making an API call, you may pass CreateApplicationRequest
1710
1800
  # data as a hash:
1711
1801
  #
1712
1802
  # {
1713
1803
  # application_name: "ApplicationName", # required
1714
1804
  # application_description: "ApplicationDescription",
1715
- # runtime_environment: "SQL-1_0", # required, accepts SQL-1_0, FLINK-1_6, FLINK-1_8
1805
+ # runtime_environment: "SQL-1_0", # required, accepts SQL-1_0, FLINK-1_6, FLINK-1_8, FLINK-1_11
1716
1806
  # service_execution_role: "RoleARN", # required
1717
1807
  # application_configuration: {
1718
1808
  # sql_application_configuration: {
@@ -1879,8 +1969,8 @@ module Aws::KinesisAnalyticsV2
1879
1969
  # @return [String]
1880
1970
  #
1881
1971
  # @!attribute [rw] runtime_environment
1882
- # The runtime environment for the application (`SQL-1.0` or
1883
- # `FLINK-1_6`).
1972
+ # The runtime environment for the application (`SQL-1_0`, `FLINK-1_6`,
1973
+ # `FLINK-1_8`, or `FLINK-1_11`).
1884
1974
  # @return [String]
1885
1975
  #
1886
1976
  # @!attribute [rw] service_execution_role
@@ -2384,7 +2474,7 @@ module Aws::KinesisAnalyticsV2
2384
2474
  end
2385
2475
 
2386
2476
  # Describes the data format when records are written to the destination
2387
- # in an SQL-based Amazon Kinesis Data Analytics application.
2477
+ # in a SQL-based Kinesis Data Analytics application.
2388
2478
  #
2389
2479
  # @note When making an API call, you may pass DestinationSchema
2390
2480
  # data as a hash:
@@ -2492,8 +2582,8 @@ module Aws::KinesisAnalyticsV2
2492
2582
  include Aws::Structure
2493
2583
  end
2494
2584
 
2495
- # Describes execution properties for a Java-based Kinesis Data Analytics
2496
- # application.
2585
+ # Describes execution properties for a Flink-based Kinesis Data
2586
+ # Analytics application.
2497
2587
  #
2498
2588
  # @note When making an API call, you may pass EnvironmentProperties
2499
2589
  # data as a hash:
@@ -2521,8 +2611,8 @@ module Aws::KinesisAnalyticsV2
2521
2611
  include Aws::Structure
2522
2612
  end
2523
2613
 
2524
- # Describes the execution properties for a Java-based Amazon Kinesis
2525
- # Data Analytics application.
2614
+ # Describes the execution properties for a Flink-based Kinesis Data
2615
+ # Analytics application.
2526
2616
  #
2527
2617
  # @!attribute [rw] property_group_descriptions
2528
2618
  # Describes the execution property groups.
@@ -2536,8 +2626,8 @@ module Aws::KinesisAnalyticsV2
2536
2626
  include Aws::Structure
2537
2627
  end
2538
2628
 
2539
- # Describes updates to the execution property groups for a Java-based
2540
- # Amazon Kinesis Data Analytics application.
2629
+ # Describes updates to the execution property groups for a Flink-based
2630
+ # Kinesis Data Analytics application.
2541
2631
  #
2542
2632
  # @note When making an API call, you may pass EnvironmentPropertyUpdates
2543
2633
  # data as a hash:
@@ -2565,8 +2655,8 @@ module Aws::KinesisAnalyticsV2
2565
2655
  include Aws::Structure
2566
2656
  end
2567
2657
 
2568
- # Describes configuration parameters for a Java-based Amazon Kinesis
2569
- # Data Analytics application.
2658
+ # Describes configuration parameters for a Flink-based Kinesis Data
2659
+ # Analytics application.
2570
2660
  #
2571
2661
  # @note When making an API call, you may pass FlinkApplicationConfiguration
2572
2662
  # data as a hash:
@@ -2599,8 +2689,8 @@ module Aws::KinesisAnalyticsV2
2599
2689
  #
2600
2690
  #
2601
2691
  #
2602
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/concepts/programming-model.html#checkpoints-for-fault-tolerance
2603
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/
2692
+ # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance
2693
+ # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
2604
2694
  # @return [Types::CheckpointConfiguration]
2605
2695
  #
2606
2696
  # @!attribute [rw] monitoring_configuration
@@ -2623,8 +2713,8 @@ module Aws::KinesisAnalyticsV2
2623
2713
  include Aws::Structure
2624
2714
  end
2625
2715
 
2626
- # Describes configuration parameters for a Java-based Amazon Kinesis
2627
- # Data Analytics application.
2716
+ # Describes configuration parameters for a Flink-based Kinesis Data
2717
+ # Analytics application.
2628
2718
  #
2629
2719
  # @!attribute [rw] checkpoint_configuration_description
2630
2720
  # Describes an application's checkpointing configuration.
@@ -2651,8 +2741,8 @@ module Aws::KinesisAnalyticsV2
2651
2741
  #
2652
2742
  #
2653
2743
  #
2654
- # [1]: https://ci.apache.org/projects/flink/flink-docs-stable/internals/job_scheduling.html
2655
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/
2744
+ # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/internals/job_scheduling.html
2745
+ # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
2656
2746
  # @return [String]
2657
2747
  #
2658
2748
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkApplicationConfigurationDescription AWS API Documentation
@@ -2666,8 +2756,8 @@ module Aws::KinesisAnalyticsV2
2666
2756
  include Aws::Structure
2667
2757
  end
2668
2758
 
2669
- # Describes updates to the configuration parameters for a Java-based
2670
- # Amazon Kinesis Data Analytics application.
2759
+ # Describes updates to the configuration parameters for a Flink-based
2760
+ # Kinesis Data Analytics application.
2671
2761
  #
2672
2762
  # @note When making an API call, you may pass FlinkApplicationConfigurationUpdate
2673
2763
  # data as a hash:
@@ -2718,8 +2808,8 @@ module Aws::KinesisAnalyticsV2
2718
2808
  include Aws::Structure
2719
2809
  end
2720
2810
 
2721
- # Describes the starting parameters for an Apache Flink-based Kinesis
2722
- # Data Analytics application.
2811
+ # Describes the starting parameters for a Flink-based Kinesis Data
2812
+ # Analytics application.
2723
2813
  #
2724
2814
  # @note When making an API call, you may pass FlinkRunConfiguration
2725
2815
  # data as a hash:
@@ -2729,14 +2819,20 @@ module Aws::KinesisAnalyticsV2
2729
2819
  # }
2730
2820
  #
2731
2821
  # @!attribute [rw] allow_non_restored_state
2732
- # When restoring from a savepoint, specifies whether the runtime is
2822
+ # When restoring from a snapshot, specifies whether the runtime is
2733
2823
  # allowed to skip a state that cannot be mapped to the new program.
2734
- # This will happen if the program is updated between savepoints to
2735
- # remove stateful parameters, and state data in the savepoint no
2736
- # longer corresponds to valid application data. For more information,
2737
- # see [ Allowing Non-Restored State][1] in the [Apache Flink
2824
+ # This will happen if the program is updated between snapshots to
2825
+ # remove stateful parameters, and state data in the snapshot no longer
2826
+ # corresponds to valid application data. For more information, see [
2827
+ # Allowing Non-Restored State][1] in the [Apache Flink
2738
2828
  # documentation][2].
2739
2829
  #
2830
+ # <note markdown="1"> This value defaults to `false`. If you update your application
2831
+ # without specifying this parameter, `AllowNonRestoredState` will be
2832
+ # set to `false`, even if it was previously set to `true`.
2833
+ #
2834
+ # </note>
2835
+ #
2740
2836
  #
2741
2837
  #
2742
2838
  # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state
@@ -2751,10 +2847,10 @@ module Aws::KinesisAnalyticsV2
2751
2847
  include Aws::Structure
2752
2848
  end
2753
2849
 
2754
- # When you configure the application input for an SQL-based Amazon
2755
- # Kinesis Data Analytics application, you specify the streaming source,
2756
- # the in-application stream name that is created, and the mapping
2757
- # between the two.
2850
+ # When you configure the application input for a SQL-based Kinesis Data
2851
+ # Analytics application, you specify the streaming source, the
2852
+ # in-application stream name that is created, and the mapping between
2853
+ # the two.
2758
2854
  #
2759
2855
  # @note When making an API call, you may pass Input
2760
2856
  # data as a hash:
@@ -2850,8 +2946,8 @@ module Aws::KinesisAnalyticsV2
2850
2946
  include Aws::Structure
2851
2947
  end
2852
2948
 
2853
- # Describes the application input configuration for an SQL-based Amazon
2854
- # Kinesis Data Analytics application.
2949
+ # Describes the application input configuration for a SQL-based Kinesis
2950
+ # Data Analytics application.
2855
2951
  #
2856
2952
  # @!attribute [rw] input_id
2857
2953
  # The input ID that is associated with the application input. This is
@@ -2916,8 +3012,8 @@ module Aws::KinesisAnalyticsV2
2916
3012
  end
2917
3013
 
2918
3014
  # An object that contains the Amazon Resource Name (ARN) of the AWS
2919
- # Lambda function that is used to preprocess records in the stream in an
2920
- # SQL-based Amazon Kinesis Data Analytics application.
3015
+ # Lambda function that is used to preprocess records in the stream in a
3016
+ # SQL-based Kinesis Data Analytics application.
2921
3017
  #
2922
3018
  # @note When making an API call, you may pass InputLambdaProcessor
2923
3019
  # data as a hash:
@@ -2933,9 +3029,13 @@ module Aws::KinesisAnalyticsV2
2933
3029
  # <note markdown="1"> To specify an earlier version of the Lambda function than the
2934
3030
  # latest, include the Lambda function version in the Lambda function
2935
3031
  # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
2936
- # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
3032
+ # Lambda][1]
2937
3033
  #
2938
3034
  # </note>
3035
+ #
3036
+ #
3037
+ #
3038
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
2939
3039
  # @return [String]
2940
3040
  #
2941
3041
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/InputLambdaProcessor AWS API Documentation
@@ -2946,9 +3046,9 @@ module Aws::KinesisAnalyticsV2
2946
3046
  include Aws::Structure
2947
3047
  end
2948
3048
 
2949
- # For an SQL-based Amazon Kinesis Data Analytics application, an object
2950
- # that contains the Amazon Resource Name (ARN) of the AWS Lambda
2951
- # function that is used to preprocess records in the stream.
3049
+ # For a SQL-based Kinesis Data Analytics application, an object that
3050
+ # contains the Amazon Resource Name (ARN) of the AWS Lambda function
3051
+ # that is used to preprocess records in the stream.
2952
3052
  #
2953
3053
  # @!attribute [rw] resource_arn
2954
3054
  # The ARN of the AWS Lambda function that is used to preprocess the
@@ -2957,9 +3057,13 @@ module Aws::KinesisAnalyticsV2
2957
3057
  # <note markdown="1"> To specify an earlier version of the Lambda function than the
2958
3058
  # latest, include the Lambda function version in the Lambda function
2959
3059
  # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
2960
- # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
3060
+ # Lambda][1]
2961
3061
  #
2962
3062
  # </note>
3063
+ #
3064
+ #
3065
+ #
3066
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
2963
3067
  # @return [String]
2964
3068
  #
2965
3069
  # @!attribute [rw] role_arn
@@ -2982,8 +3086,8 @@ module Aws::KinesisAnalyticsV2
2982
3086
  include Aws::Structure
2983
3087
  end
2984
3088
 
2985
- # For an SQL-based Amazon Kinesis Data Analytics application, represents
2986
- # an update to the InputLambdaProcessor that is used to preprocess the
3089
+ # For a SQL-based Kinesis Data Analytics application, represents an
3090
+ # update to the InputLambdaProcessor that is used to preprocess the
2987
3091
  # records in the stream.
2988
3092
  #
2989
3093
  # @note When making an API call, you may pass InputLambdaProcessorUpdate
@@ -3000,9 +3104,13 @@ module Aws::KinesisAnalyticsV2
3000
3104
  # <note markdown="1"> To specify an earlier version of the Lambda function than the
3001
3105
  # latest, include the Lambda function version in the Lambda function
3002
3106
  # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
3003
- # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
3107
+ # Lambda][1]
3004
3108
  #
3005
3109
  # </note>
3110
+ #
3111
+ #
3112
+ #
3113
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
3006
3114
  # @return [String]
3007
3115
  #
3008
3116
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/InputLambdaProcessorUpdate AWS API Documentation
@@ -3013,8 +3121,8 @@ module Aws::KinesisAnalyticsV2
3013
3121
  include Aws::Structure
3014
3122
  end
3015
3123
 
3016
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
3017
- # the number of in-application streams to create for a given streaming
3124
+ # For a SQL-based Kinesis Data Analytics application, describes the
3125
+ # number of in-application streams to create for a given streaming
3018
3126
  # source.
3019
3127
  #
3020
3128
  # @note When making an API call, you may pass InputParallelism
@@ -3036,8 +3144,8 @@ module Aws::KinesisAnalyticsV2
3036
3144
  include Aws::Structure
3037
3145
  end
3038
3146
 
3039
- # For an SQL-based Amazon Kinesis Data Analytics application, provides
3040
- # updates to the parallelism count.
3147
+ # For a SQL-based Kinesis Data Analytics application, provides updates
3148
+ # to the parallelism count.
3041
3149
  #
3042
3150
  # @note When making an API call, you may pass InputParallelismUpdate
3043
3151
  # data as a hash:
@@ -3059,14 +3167,14 @@ module Aws::KinesisAnalyticsV2
3059
3167
  include Aws::Structure
3060
3168
  end
3061
3169
 
3062
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
3063
- # a processor that is used to preprocess the records in the stream
3064
- # before being processed by your application code. Currently, the only
3065
- # input processor available is [AWS Lambda][1].
3170
+ # For a SQL-based Kinesis Data Analytics application, describes a
3171
+ # processor that is used to preprocess the records in the stream before
3172
+ # being processed by your application code. Currently, the only input
3173
+ # processor available is [AWS Lambda][1].
3066
3174
  #
3067
3175
  #
3068
3176
  #
3069
- # [1]: https://aws.amazon.com/documentation/lambda/
3177
+ # [1]: https://docs.aws.amazon.com/lambda/
3070
3178
  #
3071
3179
  # @note When making an API call, you may pass InputProcessingConfiguration
3072
3180
  # data as a hash:
@@ -3090,13 +3198,13 @@ module Aws::KinesisAnalyticsV2
3090
3198
  include Aws::Structure
3091
3199
  end
3092
3200
 
3093
- # For an SQL-based Amazon Kinesis Data Analytics application, provides
3094
- # the configuration information about an input processor. Currently, the
3201
+ # For a SQL-based Kinesis Data Analytics application, provides the
3202
+ # configuration information about an input processor. Currently, the
3095
3203
  # only input processor available is [AWS Lambda][1].
3096
3204
  #
3097
3205
  #
3098
3206
  #
3099
- # [1]: https://aws.amazon.com/documentation/lambda/
3207
+ # [1]: https://docs.aws.amazon.com/lambda/
3100
3208
  #
3101
3209
  # @!attribute [rw] input_lambda_processor_description
3102
3210
  # Provides configuration information about the associated
@@ -3111,8 +3219,8 @@ module Aws::KinesisAnalyticsV2
3111
3219
  include Aws::Structure
3112
3220
  end
3113
3221
 
3114
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
3115
- # updates to an InputProcessingConfiguration.
3222
+ # For a SQL-based Kinesis Data Analytics application, describes updates
3223
+ # to an InputProcessingConfiguration.
3116
3224
  #
3117
3225
  # @note When making an API call, you may pass InputProcessingConfigurationUpdate
3118
3226
  # data as a hash:
@@ -3135,7 +3243,7 @@ module Aws::KinesisAnalyticsV2
3135
3243
  include Aws::Structure
3136
3244
  end
3137
3245
 
3138
- # Describes updates for an SQL-based Amazon Kinesis Data Analytics
3246
+ # Describes updates for an SQL-based Kinesis Data Analytics
3139
3247
  # application's input schema.
3140
3248
  #
3141
3249
  # @note When making an API call, you may pass InputSchemaUpdate
@@ -3223,9 +3331,9 @@ module Aws::KinesisAnalyticsV2
3223
3331
  include Aws::Structure
3224
3332
  end
3225
3333
 
3226
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
3227
- # updates to a specific input configuration (identified by the `InputId`
3228
- # of an application).
3334
+ # For a SQL-based Kinesis Data Analytics application, describes updates
3335
+ # to a specific input configuration (identified by the `InputId` of an
3336
+ # application).
3229
3337
  #
3230
3338
  # @note When making an API call, you may pass InputUpdate
3231
3339
  # data as a hash:
@@ -3359,7 +3467,7 @@ module Aws::KinesisAnalyticsV2
3359
3467
  include Aws::Structure
3360
3468
  end
3361
3469
 
3362
- # For an SQL-based Amazon Kinesis Data Analytics application, provides
3470
+ # For a SQL-based Kinesis Data Analytics application, provides
3363
3471
  # additional mapping information when JSON is the record format on the
3364
3472
  # streaming source.
3365
3473
  #
@@ -3382,8 +3490,8 @@ module Aws::KinesisAnalyticsV2
3382
3490
  include Aws::Structure
3383
3491
  end
3384
3492
 
3385
- # For an SQL-based Amazon Kinesis Data Analytics application, identifies
3386
- # a Kinesis Data Firehose delivery stream as the streaming source. You
3493
+ # For a SQL-based Kinesis Data Analytics application, identifies a
3494
+ # Kinesis Data Firehose delivery stream as the streaming source. You
3387
3495
  # provide the delivery stream's Amazon Resource Name (ARN).
3388
3496
  #
3389
3497
  # @note When making an API call, you may pass KinesisFirehoseInput
@@ -3433,9 +3541,9 @@ module Aws::KinesisAnalyticsV2
3433
3541
  include Aws::Structure
3434
3542
  end
3435
3543
 
3436
- # For an SQL-based Amazon Kinesis Data Analytics application, when
3437
- # updating application input configuration, provides information about a
3438
- # Kinesis Data Firehose delivery stream as the streaming source.
3544
+ # For a SQL-based Kinesis Data Analytics application, when updating
3545
+ # application input configuration, provides information about a Kinesis
3546
+ # Data Firehose delivery stream as the streaming source.
3439
3547
  #
3440
3548
  # @note When making an API call, you may pass KinesisFirehoseInputUpdate
3441
3549
  # data as a hash:
@@ -3456,10 +3564,10 @@ module Aws::KinesisAnalyticsV2
3456
3564
  include Aws::Structure
3457
3565
  end
3458
3566
 
3459
- # For an SQL-based Amazon Kinesis Data Analytics application, when
3460
- # configuring application output, identifies a Kinesis Data Firehose
3461
- # delivery stream as the destination. You provide the stream Amazon
3462
- # Resource Name (ARN) of the delivery stream.
3567
+ # For a SQL-based Kinesis Data Analytics application, when configuring
3568
+ # application output, identifies a Kinesis Data Firehose delivery stream
3569
+ # as the destination. You provide the stream Amazon Resource Name (ARN)
3570
+ # of the delivery stream.
3463
3571
  #
3464
3572
  # @note When making an API call, you may pass KinesisFirehoseOutput
3465
3573
  # data as a hash:
@@ -3480,7 +3588,7 @@ module Aws::KinesisAnalyticsV2
3480
3588
  include Aws::Structure
3481
3589
  end
3482
3590
 
3483
- # For an SQL-based Amazon Kinesis Data Analytics application's output,
3591
+ # For a SQL-based Kinesis Data Analytics application's output,
3484
3592
  # describes the Kinesis Data Firehose delivery stream that is configured
3485
3593
  # as its destination.
3486
3594
  #
@@ -3508,10 +3616,10 @@ module Aws::KinesisAnalyticsV2
3508
3616
  include Aws::Structure
3509
3617
  end
3510
3618
 
3511
- # For an SQL-based Amazon Kinesis Data Analytics application, when
3512
- # updating an output configuration using the UpdateApplication
3513
- # operation, provides information about a Kinesis Data Firehose delivery
3514
- # stream that is configured as the destination.
3619
+ # For a SQL-based Kinesis Data Analytics application, when updating an
3620
+ # output configuration using the UpdateApplication operation, provides
3621
+ # information about a Kinesis Data Firehose delivery stream that is
3622
+ # configured as the destination.
3515
3623
  #
3516
3624
  # @note When making an API call, you may pass KinesisFirehoseOutputUpdate
3517
3625
  # data as a hash:
@@ -3532,8 +3640,8 @@ module Aws::KinesisAnalyticsV2
3532
3640
  include Aws::Structure
3533
3641
  end
3534
3642
 
3535
- # Identifies an Amazon Kinesis data stream as the streaming source. You
3536
- # provide the stream's Amazon Resource Name (ARN).
3643
+ # Identifies a Kinesis data stream as the streaming source. You provide
3644
+ # the stream's Amazon Resource Name (ARN).
3537
3645
  #
3538
3646
  # @note When making an API call, you may pass KinesisStreamsInput
3539
3647
  # data as a hash:
@@ -3554,9 +3662,9 @@ module Aws::KinesisAnalyticsV2
3554
3662
  include Aws::Structure
3555
3663
  end
3556
3664
 
3557
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
3558
- # the Kinesis data stream that is configured as the streaming source in
3559
- # the application input configuration.
3665
+ # For a SQL-based Kinesis Data Analytics application, describes the
3666
+ # Kinesis data stream that is configured as the streaming source in the
3667
+ # application input configuration.
3560
3668
  #
3561
3669
  # @!attribute [rw] resource_arn
3562
3670
  # The Amazon Resource Name (ARN) of the Kinesis data stream.
@@ -3582,9 +3690,9 @@ module Aws::KinesisAnalyticsV2
3582
3690
  include Aws::Structure
3583
3691
  end
3584
3692
 
3585
- # When you update the input configuration for an SQL-based Amazon
3586
- # Kinesis Data Analytics application, provides information about an
3587
- # Amazon Kinesis stream as the streaming source.
3693
+ # When you update the input configuration for a SQL-based Kinesis Data
3694
+ # Analytics application, provides information about a Kinesis stream as
3695
+ # the streaming source.
3588
3696
  #
3589
3697
  # @note When making an API call, you may pass KinesisStreamsInputUpdate
3590
3698
  # data as a hash:
@@ -3606,9 +3714,9 @@ module Aws::KinesisAnalyticsV2
3606
3714
  include Aws::Structure
3607
3715
  end
3608
3716
 
3609
- # When you configure an SQL-based Amazon Kinesis Data Analytics
3610
- # application's output, identifies a Kinesis data stream as the
3611
- # destination. You provide the stream Amazon Resource Name (ARN).
3717
+ # When you configure a SQL-based Kinesis Data Analytics application's
3718
+ # output, identifies a Kinesis data stream as the destination. You
3719
+ # provide the stream Amazon Resource Name (ARN).
3612
3720
  #
3613
3721
  # @note When making an API call, you may pass KinesisStreamsOutput
3614
3722
  # data as a hash:
@@ -3629,7 +3737,7 @@ module Aws::KinesisAnalyticsV2
3629
3737
  include Aws::Structure
3630
3738
  end
3631
3739
 
3632
- # For an SQL-based Amazon Kinesis Data Analytics application's output,
3740
+ # For an SQL-based Kinesis Data Analytics application's output,
3633
3741
  # describes the Kinesis data stream that is configured as its
3634
3742
  # destination.
3635
3743
  #
@@ -3657,10 +3765,10 @@ module Aws::KinesisAnalyticsV2
3657
3765
  include Aws::Structure
3658
3766
  end
3659
3767
 
3660
- # When you update an SQL-based Amazon Kinesis Data Analytics
3661
- # application's output configuration using the UpdateApplication
3662
- # operation, provides information about a Kinesis data stream that is
3663
- # configured as the destination.
3768
+ # When you update a SQL-based Kinesis Data Analytics application's
3769
+ # output configuration using the UpdateApplication operation, provides
3770
+ # information about a Kinesis data stream that is configured as the
3771
+ # destination.
3664
3772
  #
3665
3773
  # @note When making an API call, you may pass KinesisStreamsOutputUpdate
3666
3774
  # data as a hash:
@@ -3682,10 +3790,10 @@ module Aws::KinesisAnalyticsV2
3682
3790
  include Aws::Structure
3683
3791
  end
3684
3792
 
3685
- # When you configure an SQL-based Amazon Kinesis Data Analytics
3686
- # application's output, identifies an AWS Lambda function as the
3687
- # destination. You provide the function Amazon Resource Name (ARN) of
3688
- # the Lambda function.
3793
+ # When you configure a SQL-based Kinesis Data Analytics application's
3794
+ # output, identifies an AWS Lambda function as the destination. You
3795
+ # provide the function Amazon Resource Name (ARN) of the Lambda
3796
+ # function.
3689
3797
  #
3690
3798
  # @note When making an API call, you may pass LambdaOutput
3691
3799
  # data as a hash:
@@ -3701,9 +3809,13 @@ module Aws::KinesisAnalyticsV2
3701
3809
  # <note markdown="1"> To specify an earlier version of the Lambda function than the
3702
3810
  # latest, include the Lambda function version in the Lambda function
3703
3811
  # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
3704
- # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
3812
+ # Lambda][1]
3705
3813
  #
3706
3814
  # </note>
3815
+ #
3816
+ #
3817
+ #
3818
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
3707
3819
  # @return [String]
3708
3820
  #
3709
3821
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/LambdaOutput AWS API Documentation
@@ -3714,7 +3826,7 @@ module Aws::KinesisAnalyticsV2
3714
3826
  include Aws::Structure
3715
3827
  end
3716
3828
 
3717
- # For an SQL-based Amazon Kinesis Data Analytics application output,
3829
+ # For a SQL-based Kinesis Data Analytics application's output,
3718
3830
  # describes the AWS Lambda function that is configured as its
3719
3831
  # destination.
3720
3832
  #
@@ -3742,10 +3854,10 @@ module Aws::KinesisAnalyticsV2
3742
3854
  include Aws::Structure
3743
3855
  end
3744
3856
 
3745
- # When you update an SQL-based Amazon Kinesis Data Analytics
3746
- # application's output configuration using the UpdateApplication
3747
- # operation, provides information about an AWS Lambda function that is
3748
- # configured as the destination.
3857
+ # When you update an SQL-based Kinesis Data Analytics application's
3858
+ # output configuration using the UpdateApplication operation, provides
3859
+ # information about an AWS Lambda function that is configured as the
3860
+ # destination.
3749
3861
  #
3750
3862
  # @note When making an API call, you may pass LambdaOutputUpdate
3751
3863
  # data as a hash:
@@ -3761,9 +3873,13 @@ module Aws::KinesisAnalyticsV2
3761
3873
  # <note markdown="1"> To specify an earlier version of the Lambda function than the
3762
3874
  # latest, include the Lambda function version in the Lambda function
3763
3875
  # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
3764
- # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
3876
+ # Lambda][1]
3765
3877
  #
3766
3878
  # </note>
3879
+ #
3880
+ #
3881
+ #
3882
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
3767
3883
  # @return [String]
3768
3884
  #
3769
3885
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/LambdaOutputUpdate AWS API Documentation
@@ -3928,11 +4044,11 @@ module Aws::KinesisAnalyticsV2
3928
4044
  include Aws::Structure
3929
4045
  end
3930
4046
 
3931
- # When you configure an SQL-based Amazon Kinesis Data Analytics
3932
- # application's input at the time of creating or updating an
3933
- # application, provides additional mapping information specific to the
3934
- # record format (such as JSON, CSV, or record fields delimited by some
3935
- # delimiter) on the streaming source.
4047
+ # When you configure a SQL-based Kinesis Data Analytics application's
4048
+ # input at the time of creating or updating an application, provides
4049
+ # additional mapping information specific to the record format (such as
4050
+ # JSON, CSV, or record fields delimited by some delimiter) on the
4051
+ # streaming source.
3936
4052
  #
3937
4053
  # @note When making an API call, you may pass MappingParameters
3938
4054
  # data as a hash:
@@ -3967,7 +4083,7 @@ module Aws::KinesisAnalyticsV2
3967
4083
  end
3968
4084
 
3969
4085
  # Describes configuration parameters for Amazon CloudWatch logging for a
3970
- # Java-based Kinesis Data Analytics application. For more information
4086
+ # Flink-based Kinesis Data Analytics application. For more information
3971
4087
  # about CloudWatch logging, see [Monitoring][1].
3972
4088
  #
3973
4089
  #
@@ -3992,6 +4108,8 @@ module Aws::KinesisAnalyticsV2
3992
4108
  #
3993
4109
  # @!attribute [rw] metrics_level
3994
4110
  # Describes the granularity of the CloudWatch Logs for an application.
4111
+ # The `Parallelism` level is not recommended for applications with a
4112
+ # Parallelism over 64 due to excessive costs.
3995
4113
  # @return [String]
3996
4114
  #
3997
4115
  # @!attribute [rw] log_level
@@ -4009,7 +4127,7 @@ module Aws::KinesisAnalyticsV2
4009
4127
  end
4010
4128
 
4011
4129
  # Describes configuration parameters for CloudWatch logging for a
4012
- # Java-based Kinesis Data Analytics application.
4130
+ # Flink-based Kinesis Data Analytics application.
4013
4131
  #
4014
4132
  # @!attribute [rw] configuration_type
4015
4133
  # Describes whether to use the default CloudWatch logging
@@ -4035,7 +4153,7 @@ module Aws::KinesisAnalyticsV2
4035
4153
  end
4036
4154
 
4037
4155
  # Describes updates to configuration parameters for Amazon CloudWatch
4038
- # logging for a Java-based Kinesis Data Analytics application.
4156
+ # logging for a Flink-based Kinesis Data Analytics application.
4039
4157
  #
4040
4158
  # @note When making an API call, you may pass MonitoringConfigurationUpdate
4041
4159
  # data as a hash:
@@ -4055,7 +4173,8 @@ module Aws::KinesisAnalyticsV2
4055
4173
  #
4056
4174
  # @!attribute [rw] metrics_level_update
4057
4175
  # Describes updates to the granularity of the CloudWatch Logs for an
4058
- # application.
4176
+ # application. The `Parallelism` level is not recommended for
4177
+ # applications with a Parallelism over 64 due to excessive costs.
4059
4178
  # @return [String]
4060
4179
  #
4061
4180
  # @!attribute [rw] log_level_update
@@ -4073,9 +4192,9 @@ module Aws::KinesisAnalyticsV2
4073
4192
  include Aws::Structure
4074
4193
  end
4075
4194
 
4076
- # Describes an SQL-based Amazon Kinesis Data Analytics application's
4077
- # output configuration, in which you identify an in-application stream
4078
- # and a destination where you want the in-application stream data to be
4195
+ # Describes a SQL-based Kinesis Data Analytics application's output
4196
+ # configuration, in which you identify an in-application stream and a
4197
+ # destination where you want the in-application stream data to be
4079
4198
  # written. The destination can be a Kinesis data stream or a Kinesis
4080
4199
  # Data Firehose delivery stream.
4081
4200
  #
@@ -4103,11 +4222,11 @@ module Aws::KinesisAnalyticsV2
4103
4222
  # @return [String]
4104
4223
  #
4105
4224
  # @!attribute [rw] kinesis_streams_output
4106
- # Identifies an Amazon Kinesis data stream as the destination.
4225
+ # Identifies a Kinesis data stream as the destination.
4107
4226
  # @return [Types::KinesisStreamsOutput]
4108
4227
  #
4109
4228
  # @!attribute [rw] kinesis_firehose_output
4110
- # Identifies an Amazon Kinesis Data Firehose delivery stream as the
4229
+ # Identifies a Kinesis Data Firehose delivery stream as the
4111
4230
  # destination.
4112
4231
  # @return [Types::KinesisFirehoseOutput]
4113
4232
  #
@@ -4132,11 +4251,11 @@ module Aws::KinesisAnalyticsV2
4132
4251
  include Aws::Structure
4133
4252
  end
4134
4253
 
4135
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4136
- # the application output configuration, which includes the
4137
- # in-application stream name and the destination where the stream data
4138
- # is written. The destination can be a Kinesis data stream or a Kinesis
4139
- # Data Firehose delivery stream.
4254
+ # For a SQL-based Kinesis Data Analytics application, describes the
4255
+ # application output configuration, which includes the in-application
4256
+ # stream name and the destination where the stream data is written. The
4257
+ # destination can be a Kinesis data stream or a Kinesis Data Firehose
4258
+ # delivery stream.
4140
4259
  #
4141
4260
  # @!attribute [rw] output_id
4142
4261
  # A unique identifier for the output configuration.
@@ -4178,8 +4297,8 @@ module Aws::KinesisAnalyticsV2
4178
4297
  include Aws::Structure
4179
4298
  end
4180
4299
 
4181
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4182
- # updates to the output configuration identified by the `OutputId`.
4300
+ # For a SQL-based Kinesis Data Analytics application, describes updates
4301
+ # to the output configuration identified by the `OutputId`.
4183
4302
  #
4184
4303
  # @note When making an API call, you may pass OutputUpdate
4185
4304
  # data as a hash:
@@ -4243,15 +4362,15 @@ module Aws::KinesisAnalyticsV2
4243
4362
  include Aws::Structure
4244
4363
  end
4245
4364
 
4246
- # Describes parameters for how a Java-based Amazon Kinesis Data
4247
- # Analytics application executes multiple tasks simultaneously. For more
4365
+ # Describes parameters for how a Flink-based Kinesis Data Analytics
4366
+ # application executes multiple tasks simultaneously. For more
4248
4367
  # information about parallelism, see [Parallel Execution][1] in the
4249
4368
  # [Apache Flink Documentation][2].
4250
4369
  #
4251
4370
  #
4252
4371
  #
4253
- # [1]: https://ci.apache.org/projects/flink/flink-docs-stable/dev/parallel.html
4254
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.6/
4372
+ # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/dev/parallel.html
4373
+ # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
4255
4374
  #
4256
4375
  # @note When making an API call, you may pass ParallelismConfiguration
4257
4376
  # data as a hash:
@@ -4272,7 +4391,7 @@ module Aws::KinesisAnalyticsV2
4272
4391
  # @return [String]
4273
4392
  #
4274
4393
  # @!attribute [rw] parallelism
4275
- # Describes the initial number of parallel tasks that a Java-based
4394
+ # Describes the initial number of parallel tasks that a Flink-based
4276
4395
  # Kinesis Data Analytics application can perform. If
4277
4396
  # `AutoScalingEnabled` is set to True, Kinesis Data Analytics
4278
4397
  # increases the `CurrentParallelism` value in response to application
@@ -4286,7 +4405,7 @@ module Aws::KinesisAnalyticsV2
4286
4405
  # @return [Integer]
4287
4406
  #
4288
4407
  # @!attribute [rw] parallelism_per_kpu
4289
- # Describes the number of parallel tasks that a Java-based Kinesis
4408
+ # Describes the number of parallel tasks that a Flink-based Kinesis
4290
4409
  # Data Analytics application can perform per Kinesis Processing Unit
4291
4410
  # (KPU) used by the application. For more information about KPUs, see
4292
4411
  # [Amazon Kinesis Data Analytics Pricing][1].
@@ -4313,7 +4432,7 @@ module Aws::KinesisAnalyticsV2
4313
4432
  include Aws::Structure
4314
4433
  end
4315
4434
 
4316
- # Describes parameters for how a Java-based Kinesis Data Analytics
4435
+ # Describes parameters for how a Flink-based Kinesis Data Analytics
4317
4436
  # application executes multiple tasks simultaneously.
4318
4437
  #
4319
4438
  # @!attribute [rw] configuration_type
@@ -4322,7 +4441,7 @@ module Aws::KinesisAnalyticsV2
4322
4441
  # @return [String]
4323
4442
  #
4324
4443
  # @!attribute [rw] parallelism
4325
- # Describes the initial number of parallel tasks that a Java-based
4444
+ # Describes the initial number of parallel tasks that a Flink-based
4326
4445
  # Kinesis Data Analytics application can perform. If
4327
4446
  # `AutoScalingEnabled` is set to True, then Kinesis Data Analytics can
4328
4447
  # increase the `CurrentParallelism` value in response to application
@@ -4335,13 +4454,13 @@ module Aws::KinesisAnalyticsV2
4335
4454
  # @return [Integer]
4336
4455
  #
4337
4456
  # @!attribute [rw] parallelism_per_kpu
4338
- # Describes the number of parallel tasks that a Java-based Kinesis
4457
+ # Describes the number of parallel tasks that a Flink-based Kinesis
4339
4458
  # Data Analytics application can perform per Kinesis Processing Unit
4340
4459
  # (KPU) used by the application.
4341
4460
  # @return [Integer]
4342
4461
  #
4343
4462
  # @!attribute [rw] current_parallelism
4344
- # Describes the current number of parallel tasks that a Java-based
4463
+ # Describes the current number of parallel tasks that a Flink-based
4345
4464
  # Kinesis Data Analytics application can perform. If
4346
4465
  # `AutoScalingEnabled` is set to True, Kinesis Data Analytics can
4347
4466
  # increase this value in response to application load. The service can
@@ -4371,7 +4490,7 @@ module Aws::KinesisAnalyticsV2
4371
4490
  include Aws::Structure
4372
4491
  end
4373
4492
 
4374
- # Describes updates to parameters for how a Java-based Kinesis Data
4493
+ # Describes updates to parameters for how a Flink-based Kinesis Data
4375
4494
  # Analytics application executes multiple tasks simultaneously.
4376
4495
  #
4377
4496
  # @note When making an API call, you may pass ParallelismConfigurationUpdate
@@ -4427,7 +4546,7 @@ module Aws::KinesisAnalyticsV2
4427
4546
  include Aws::Structure
4428
4547
  end
4429
4548
 
4430
- # Property key-value pairs passed into a Java-based Kinesis Data
4549
+ # Property key-value pairs passed into a Flink-based Kinesis Data
4431
4550
  # Analytics application.
4432
4551
  #
4433
4552
  # @note When making an API call, you may pass PropertyGroup
@@ -4459,8 +4578,8 @@ module Aws::KinesisAnalyticsV2
4459
4578
  include Aws::Structure
4460
4579
  end
4461
4580
 
4462
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4463
- # the mapping of each data element in the streaming source to the
4581
+ # For a SQL-based Kinesis Data Analytics application, describes the
4582
+ # mapping of each data element in the streaming source to the
4464
4583
  # corresponding column in the in-application stream.
4465
4584
  #
4466
4585
  # Also used to describe the format of the reference data source.
@@ -4499,9 +4618,9 @@ module Aws::KinesisAnalyticsV2
4499
4618
  include Aws::Structure
4500
4619
  end
4501
4620
 
4502
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4503
- # the record format and relevant mapping information that should be
4504
- # applied to schematize the records on the stream.
4621
+ # For a SQL-based Kinesis Data Analytics application, describes the
4622
+ # record format and relevant mapping information that should be applied
4623
+ # to schematize the records on the stream.
4505
4624
  #
4506
4625
  # @note When making an API call, you may pass RecordFormat
4507
4626
  # data as a hash:
@@ -4539,10 +4658,10 @@ module Aws::KinesisAnalyticsV2
4539
4658
  include Aws::Structure
4540
4659
  end
4541
4660
 
4542
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4543
- # the reference data source by providing the source information (Amazon
4544
- # S3 bucket name and object key name), the resulting in-application
4545
- # table name that is created, and the necessary schema to map the data
4661
+ # For a SQL-based Kinesis Data Analytics application, describes the
4662
+ # reference data source by providing the source information (Amazon S3
4663
+ # bucket name and object key name), the resulting in-application table
4664
+ # name that is created, and the necessary schema to map the data
4546
4665
  # elements in the Amazon S3 object to the in-application table.
4547
4666
  #
4548
4667
  # @note When making an API call, you may pass ReferenceDataSource
@@ -4605,8 +4724,8 @@ module Aws::KinesisAnalyticsV2
4605
4724
  include Aws::Structure
4606
4725
  end
4607
4726
 
4608
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
4609
- # the reference data source configured for an application.
4727
+ # For a SQL-based Kinesis Data Analytics application, describes the
4728
+ # reference data source configured for an application.
4610
4729
  #
4611
4730
  # @!attribute [rw] reference_id
4612
4731
  # The ID of the reference data source. This is the ID that Kinesis
@@ -4643,10 +4762,10 @@ module Aws::KinesisAnalyticsV2
4643
4762
  end
4644
4763
 
4645
4764
  # When you update a reference data source configuration for a SQL-based
4646
- # Amazon Kinesis Data Analytics application, this object provides all
4647
- # the updated values (such as the source bucket name and object key
4648
- # name), the in-application table name that is created, and updated
4649
- # mapping information that maps the data in the Amazon S3 object to the
4765
+ # Kinesis Data Analytics application, this object provides all the
4766
+ # updated values (such as the source bucket name and object key name),
4767
+ # the in-application table name that is created, and updated mapping
4768
+ # information that maps the data in the Amazon S3 object to the
4650
4769
  # in-application reference table that is created.
4651
4770
  #
4652
4771
  # @note When making an API call, you may pass ReferenceDataSourceUpdate
@@ -4742,9 +4861,9 @@ module Aws::KinesisAnalyticsV2
4742
4861
  end
4743
4862
 
4744
4863
  # Discovery failed to get a record from the streaming source because of
4745
- # the Amazon Kinesis Streams `ProvisionedThroughputExceededException`.
4746
- # For more information, see [GetRecords][1] in the Amazon Kinesis
4747
- # Streams API Reference.
4864
+ # the Kinesis Streams `ProvisionedThroughputExceededException`. For more
4865
+ # information, see [GetRecords][1] in the Amazon Kinesis Streams API
4866
+ # Reference.
4748
4867
  #
4749
4868
  #
4750
4869
  #
@@ -4761,7 +4880,7 @@ module Aws::KinesisAnalyticsV2
4761
4880
  include Aws::Structure
4762
4881
  end
4763
4882
 
4764
- # Describes the starting parameters for an Amazon Kinesis Data Analytics
4883
+ # Describes the starting parameters for an Kinesis Data Analytics
4765
4884
  # application.
4766
4885
  #
4767
4886
  # @note When making an API call, you may pass RunConfiguration
@@ -4786,13 +4905,13 @@ module Aws::KinesisAnalyticsV2
4786
4905
  # }
4787
4906
  #
4788
4907
  # @!attribute [rw] flink_run_configuration
4789
- # Describes the starting parameters for an Apache Flink-based Kinesis
4790
- # Data Analytics application.
4908
+ # Describes the starting parameters for a Flink-based Kinesis Data
4909
+ # Analytics application.
4791
4910
  # @return [Types::FlinkRunConfiguration]
4792
4911
  #
4793
4912
  # @!attribute [rw] sql_run_configurations
4794
- # Describes the starting parameters for an SQL-based Kinesis Data
4795
- # Analytics application.
4913
+ # Describes the starting parameters for a SQL-based Kinesis Data
4914
+ # Analytics application application.
4796
4915
  # @return [Array<Types::SqlRunConfiguration>]
4797
4916
  #
4798
4917
  # @!attribute [rw] application_restore_configuration
@@ -4817,8 +4936,8 @@ module Aws::KinesisAnalyticsV2
4817
4936
  # @return [Types::ApplicationRestoreConfiguration]
4818
4937
  #
4819
4938
  # @!attribute [rw] flink_run_configuration_description
4820
- # Describes the starting parameters for an Apache Flink-based Kinesis
4821
- # Data Analytics application.
4939
+ # Describes the starting parameters for a Flink-based Kinesis Data
4940
+ # Analytics application.
4822
4941
  # @return [Types::FlinkRunConfiguration]
4823
4942
  #
4824
4943
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/RunConfigurationDescription AWS API Documentation
@@ -4847,8 +4966,8 @@ module Aws::KinesisAnalyticsV2
4847
4966
  # }
4848
4967
  #
4849
4968
  # @!attribute [rw] flink_run_configuration
4850
- # Describes the starting parameters for an Apache Flink-based Kinesis
4851
- # Data Analytics application.
4969
+ # Describes the starting parameters for a Flink-based Kinesis Data
4970
+ # Analytics application.
4852
4971
  # @return [Types::FlinkRunConfiguration]
4853
4972
  #
4854
4973
  # @!attribute [rw] application_restore_configuration
@@ -4865,7 +4984,7 @@ module Aws::KinesisAnalyticsV2
4865
4984
  include Aws::Structure
4866
4985
  end
4867
4986
 
4868
- # Describes the location of a Java-based Amazon Kinesis Data Analytics
4987
+ # Describes the location of a Flink-based Kinesis Data Analytics
4869
4988
  # application's code stored in an S3 bucket.
4870
4989
  #
4871
4990
  # @!attribute [rw] bucket_arn
@@ -4891,7 +5010,7 @@ module Aws::KinesisAnalyticsV2
4891
5010
  include Aws::Structure
4892
5011
  end
4893
5012
 
4894
- # For an SQL-based Amazon Kinesis Data Analytics application, provides a
5013
+ # For a SQL-based Kinesis Data Analytics application, provides a
4895
5014
  # description of an Amazon S3 data source, including the Amazon Resource
4896
5015
  # Name (ARN) of the S3 bucket and the name of the Amazon S3 object that
4897
5016
  # contains the data.
@@ -4921,7 +5040,7 @@ module Aws::KinesisAnalyticsV2
4921
5040
  include Aws::Structure
4922
5041
  end
4923
5042
 
4924
- # For a Java-based Amazon Kinesis Data Analytics application, provides a
5043
+ # For a Flink-based Kinesis Data Analytics application, provides a
4925
5044
  # description of an Amazon S3 object, including the Amazon Resource Name
4926
5045
  # (ARN) of the S3 bucket, the name of the Amazon S3 object that contains
4927
5046
  # the data, and the version number of the Amazon S3 object that contains
@@ -4960,7 +5079,7 @@ module Aws::KinesisAnalyticsV2
4960
5079
  end
4961
5080
 
4962
5081
  # Describes an update for the Amazon S3 code content location for a
4963
- # Java-based Amazon Kinesis Data Analytics application.
5082
+ # Flink-based Kinesis Data Analytics application.
4964
5083
  #
4965
5084
  # @note When making an API call, you may pass S3ContentLocationUpdate
4966
5085
  # data as a hash:
@@ -4994,8 +5113,8 @@ module Aws::KinesisAnalyticsV2
4994
5113
  include Aws::Structure
4995
5114
  end
4996
5115
 
4997
- # For an SQL-based Amazon Kinesis Data Analytics application, identifies
4998
- # the Amazon S3 bucket and object that contains the reference data.
5116
+ # For a SQL-based Kinesis Data Analytics application, identifies the
5117
+ # Amazon S3 bucket and object that contains the reference data.
4999
5118
  #
5000
5119
  # A Kinesis Data Analytics application loads reference data only once.
5001
5120
  # If the data changes, you call the UpdateApplication operation to
@@ -5026,8 +5145,8 @@ module Aws::KinesisAnalyticsV2
5026
5145
  include Aws::Structure
5027
5146
  end
5028
5147
 
5029
- # For an SQL-based Amazon Kinesis Data Analytics application, provides
5030
- # the bucket name and object key name that stores the reference data.
5148
+ # For a SQL-based Kinesis Data Analytics application, provides the
5149
+ # bucket name and object key name that stores the reference data.
5031
5150
  #
5032
5151
  # @!attribute [rw] bucket_arn
5033
5152
  # The Amazon Resource Name (ARN) of the S3 bucket.
@@ -5059,8 +5178,8 @@ module Aws::KinesisAnalyticsV2
5059
5178
  include Aws::Structure
5060
5179
  end
5061
5180
 
5062
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
5063
- # the Amazon S3 bucket name and object key name for an in-application
5181
+ # For a SQL-based Kinesis Data Analytics application, describes the
5182
+ # Amazon S3 bucket name and object key name for an in-application
5064
5183
  # reference table.
5065
5184
  #
5066
5185
  # @note When making an API call, you may pass S3ReferenceDataSourceUpdate
@@ -5130,10 +5249,9 @@ module Aws::KinesisAnalyticsV2
5130
5249
  include Aws::Structure
5131
5250
  end
5132
5251
 
5133
- # For an SQL-based Amazon Kinesis Data Analytics application, describes
5134
- # the format of the data in the streaming source, and how each data
5135
- # element maps to corresponding columns created in the in-application
5136
- # stream.
5252
+ # For a SQL-based Kinesis Data Analytics application, describes the
5253
+ # format of the data in the streaming source, and how each data element
5254
+ # maps to corresponding columns created in the in-application stream.
5137
5255
  #
5138
5256
  # @note When making an API call, you may pass SourceSchema
5139
5257
  # data as a hash:
@@ -5184,7 +5302,7 @@ module Aws::KinesisAnalyticsV2
5184
5302
  include Aws::Structure
5185
5303
  end
5186
5304
 
5187
- # Describes the inputs, outputs, and reference data sources for an
5305
+ # Describes the inputs, outputs, and reference data sources for a
5188
5306
  # SQL-based Kinesis Data Analytics application.
5189
5307
  #
5190
5308
  # @note When making an API call, you may pass SqlApplicationConfiguration
@@ -5307,7 +5425,7 @@ module Aws::KinesisAnalyticsV2
5307
5425
  include Aws::Structure
5308
5426
  end
5309
5427
 
5310
- # Describes the inputs, outputs, and reference data sources for an
5428
+ # Describes the inputs, outputs, and reference data sources for a
5311
5429
  # SQL-based Kinesis Data Analytics application.
5312
5430
  #
5313
5431
  # @!attribute [rw] input_descriptions
@@ -5336,7 +5454,7 @@ module Aws::KinesisAnalyticsV2
5336
5454
  end
5337
5455
 
5338
5456
  # Describes updates to the input streams, destination streams, and
5339
- # reference data sources for an SQL-based Kinesis Data Analytics
5457
+ # reference data sources for a SQL-based Kinesis Data Analytics
5340
5458
  # application.
5341
5459
  #
5342
5460
  # @note When making an API call, you may pass SqlApplicationConfigurationUpdate
@@ -5462,7 +5580,7 @@ module Aws::KinesisAnalyticsV2
5462
5580
  include Aws::Structure
5463
5581
  end
5464
5582
 
5465
- # Describes the starting parameters for an SQL-based Kinesis Data
5583
+ # Describes the starting parameters for a SQL-based Kinesis Data
5466
5584
  # Analytics application.
5467
5585
  #
5468
5586
  # @note When making an API call, you may pass SqlRunConfiguration
@@ -5545,16 +5663,38 @@ module Aws::KinesisAnalyticsV2
5545
5663
  #
5546
5664
  # {
5547
5665
  # application_name: "ApplicationName", # required
5666
+ # force: false,
5548
5667
  # }
5549
5668
  #
5550
5669
  # @!attribute [rw] application_name
5551
5670
  # The name of the running application to stop.
5552
5671
  # @return [String]
5553
5672
  #
5673
+ # @!attribute [rw] force
5674
+ # Set to `true` to force the application to stop. If you set `Force`
5675
+ # to `true`, Kinesis Data Analytics stops the application without
5676
+ # taking a snapshot.
5677
+ #
5678
+ # <note markdown="1"> Force-stopping your application may lead to data loss or
5679
+ # duplication. To prevent data loss or duplicate processing of data
5680
+ # during application restarts, we recommend you to take frequent
5681
+ # snapshots of your application.
5682
+ #
5683
+ # </note>
5684
+ #
5685
+ # You can only force stop a Flink-based Kinesis Data Analytics
5686
+ # application. You can't force stop a SQL-based Kinesis Data
5687
+ # Analytics application.
5688
+ #
5689
+ # The application must be in the `STARTING`, `UPDATING`, `STOPPING`,
5690
+ # `AUTOSCALING`, or `RUNNING` status.
5691
+ # @return [Boolean]
5692
+ #
5554
5693
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StopApplicationRequest AWS API Documentation
5555
5694
  #
5556
5695
  class StopApplicationRequest < Struct.new(
5557
- :application_name)
5696
+ :application_name,
5697
+ :force)
5558
5698
  SENSITIVE = []
5559
5699
  include Aws::Structure
5560
5700
  end
@@ -5649,8 +5789,8 @@ module Aws::KinesisAnalyticsV2
5649
5789
  include Aws::Structure
5650
5790
  end
5651
5791
 
5652
- # The data format is not valid. Amazon Kinesis Data Analytics cannot
5653
- # detect the schema for the given streaming source.
5792
+ # The data format is not valid. Kinesis Data Analytics cannot detect the
5793
+ # schema for the given streaming source.
5654
5794
  #
5655
5795
  # @!attribute [rw] message
5656
5796
  # @return [String]
@@ -5697,8 +5837,8 @@ module Aws::KinesisAnalyticsV2
5697
5837
  # }
5698
5838
  #
5699
5839
  # @!attribute [rw] resource_arn
5700
- # The ARN of the Kinesis Analytics application from which to remove
5701
- # the tags.
5840
+ # The ARN of the Kinesis Data Analytics application from which to
5841
+ # remove the tags.
5702
5842
  # @return [String]
5703
5843
  #
5704
5844
  # @!attribute [rw] tag_keys
@@ -5718,6 +5858,52 @@ module Aws::KinesisAnalyticsV2
5718
5858
  #
5719
5859
  class UntagResourceResponse < Aws::EmptyStructure; end
5720
5860
 
5861
+ # @note When making an API call, you may pass UpdateApplicationMaintenanceConfigurationRequest
5862
+ # data as a hash:
5863
+ #
5864
+ # {
5865
+ # application_name: "ApplicationName", # required
5866
+ # application_maintenance_configuration_update: { # required
5867
+ # application_maintenance_window_start_time_update: "ApplicationMaintenanceWindowStartTime", # required
5868
+ # },
5869
+ # }
5870
+ #
5871
+ # @!attribute [rw] application_name
5872
+ # The name of the application for which you want to update the
5873
+ # maintenance time window.
5874
+ # @return [String]
5875
+ #
5876
+ # @!attribute [rw] application_maintenance_configuration_update
5877
+ # Describes the application maintenance configuration update.
5878
+ # @return [Types::ApplicationMaintenanceConfigurationUpdate]
5879
+ #
5880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplicationMaintenanceConfigurationRequest AWS API Documentation
5881
+ #
5882
+ class UpdateApplicationMaintenanceConfigurationRequest < Struct.new(
5883
+ :application_name,
5884
+ :application_maintenance_configuration_update)
5885
+ SENSITIVE = []
5886
+ include Aws::Structure
5887
+ end
5888
+
5889
+ # @!attribute [rw] application_arn
5890
+ # The Amazon Resource Name (ARN) of the application.
5891
+ # @return [String]
5892
+ #
5893
+ # @!attribute [rw] application_maintenance_configuration_description
5894
+ # The application maintenance configuration description after the
5895
+ # update.
5896
+ # @return [Types::ApplicationMaintenanceConfigurationDescription]
5897
+ #
5898
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplicationMaintenanceConfigurationResponse AWS API Documentation
5899
+ #
5900
+ class UpdateApplicationMaintenanceConfigurationResponse < Struct.new(
5901
+ :application_arn,
5902
+ :application_maintenance_configuration_description)
5903
+ SENSITIVE = []
5904
+ include Aws::Structure
5905
+ end
5906
+
5721
5907
  # @note When making an API call, you may pass UpdateApplicationRequest
5722
5908
  # data as a hash:
5723
5909
  #