aws-sdk-kinesisanalyticsv2 1.59.0 → 1.61.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -64,12 +64,18 @@ module Aws::KinesisAnalyticsV2
64
64
  # SQL-based Kinesis Data Analytics application.
65
65
  # @return [Array<Types::CloudWatchLoggingOptionDescription>]
66
66
  #
67
+ # @!attribute [rw] operation_id
68
+ # Operation ID for tracking AddApplicationCloudWatchLoggingOption
69
+ # request
70
+ # @return [String]
71
+ #
67
72
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationCloudWatchLoggingOptionResponse AWS API Documentation
68
73
  #
69
74
  class AddApplicationCloudWatchLoggingOptionResponse < Struct.new(
70
75
  :application_arn,
71
76
  :application_version_id,
72
- :cloud_watch_logging_option_descriptions)
77
+ :cloud_watch_logging_option_descriptions,
78
+ :operation_id)
73
79
  SENSITIVE = []
74
80
  include Aws::Structure
75
81
  end
@@ -350,12 +356,17 @@ module Aws::KinesisAnalyticsV2
350
356
  # The parameters of the new VPC configuration.
351
357
  # @return [Types::VpcConfigurationDescription]
352
358
  #
359
+ # @!attribute [rw] operation_id
360
+ # Operation ID for tracking AddApplicationVpcConfiguration request
361
+ # @return [String]
362
+ #
353
363
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationVpcConfigurationResponse AWS API Documentation
354
364
  #
355
365
  class AddApplicationVpcConfigurationResponse < Struct.new(
356
366
  :application_arn,
357
367
  :application_version_id,
358
- :vpc_configuration_description)
368
+ :vpc_configuration_description,
369
+ :operation_id)
359
370
  SENSITIVE = []
360
371
  include Aws::Structure
361
372
  end
@@ -448,6 +459,11 @@ module Aws::KinesisAnalyticsV2
448
459
  # Apache Flink application.
449
460
  # @return [Types::ApplicationSnapshotConfiguration]
450
461
  #
462
+ # @!attribute [rw] application_system_rollback_configuration
463
+ # Describes system rollback configuration for a Managed Service for
464
+ # Apache Flink application
465
+ # @return [Types::ApplicationSystemRollbackConfiguration]
466
+ #
451
467
  # @!attribute [rw] vpc_configurations
452
468
  # The array of descriptions of VPC configurations available to the
453
469
  # application.
@@ -466,6 +482,7 @@ module Aws::KinesisAnalyticsV2
466
482
  :environment_properties,
467
483
  :application_code_configuration,
468
484
  :application_snapshot_configuration,
485
+ :application_system_rollback_configuration,
469
486
  :vpc_configurations,
470
487
  :zeppelin_application_configuration)
471
488
  SENSITIVE = []
@@ -504,6 +521,11 @@ module Aws::KinesisAnalyticsV2
504
521
  # Apache Flink application.
505
522
  # @return [Types::ApplicationSnapshotConfigurationDescription]
506
523
  #
524
+ # @!attribute [rw] application_system_rollback_configuration_description
525
+ # Describes system rollback configuration for a Managed Service for
526
+ # Apache Flink application
527
+ # @return [Types::ApplicationSystemRollbackConfigurationDescription]
528
+ #
507
529
  # @!attribute [rw] vpc_configuration_descriptions
508
530
  # The array of descriptions of VPC configurations available to the
509
531
  # application.
@@ -523,6 +545,7 @@ module Aws::KinesisAnalyticsV2
523
545
  :flink_application_configuration_description,
524
546
  :environment_property_descriptions,
525
547
  :application_snapshot_configuration_description,
548
+ :application_system_rollback_configuration_description,
526
549
  :vpc_configuration_descriptions,
527
550
  :zeppelin_application_configuration_description)
528
551
  SENSITIVE = []
@@ -555,6 +578,11 @@ module Aws::KinesisAnalyticsV2
555
578
  # Apache Flink application.
556
579
  # @return [Types::ApplicationSnapshotConfigurationUpdate]
557
580
  #
581
+ # @!attribute [rw] application_system_rollback_configuration_update
582
+ # Describes system rollback configuration for a Managed Service for
583
+ # Apache Flink application
584
+ # @return [Types::ApplicationSystemRollbackConfigurationUpdate]
585
+ #
558
586
  # @!attribute [rw] vpc_configuration_updates
559
587
  # Updates to the array of descriptions of VPC configurations available
560
588
  # to the application.
@@ -573,6 +601,7 @@ module Aws::KinesisAnalyticsV2
573
601
  :flink_application_configuration_update,
574
602
  :environment_property_updates,
575
603
  :application_snapshot_configuration_update,
604
+ :application_system_rollback_configuration_update,
576
605
  :vpc_configuration_updates,
577
606
  :zeppelin_application_configuration_update)
578
607
  SENSITIVE = []
@@ -645,6 +674,10 @@ module Aws::KinesisAnalyticsV2
645
674
  # application version when `RollbackApplication` was called.
646
675
  # @return [Integer]
647
676
  #
677
+ # @!attribute [rw] application_version_create_timestamp
678
+ # The current timestamp when the application version was created.
679
+ # @return [Time]
680
+ #
648
681
  # @!attribute [rw] conditional_token
649
682
  # A value you use to implement strong concurrency for application
650
683
  # updates.
@@ -677,6 +710,7 @@ module Aws::KinesisAnalyticsV2
677
710
  :application_maintenance_configuration_description,
678
711
  :application_version_updated_from,
679
712
  :application_version_rolled_back_from,
713
+ :application_version_create_timestamp,
680
714
  :conditional_token,
681
715
  :application_version_rolled_back_to,
682
716
  :application_mode)
@@ -717,6 +751,82 @@ module Aws::KinesisAnalyticsV2
717
751
  include Aws::Structure
718
752
  end
719
753
 
754
+ # Provides a description of the operation, such as the type and status
755
+ # of operation
756
+ #
757
+ # @!attribute [rw] operation
758
+ # Type of operation performed on an application
759
+ # @return [String]
760
+ #
761
+ # @!attribute [rw] operation_id
762
+ # Identifier of the Operation
763
+ # @return [String]
764
+ #
765
+ # @!attribute [rw] start_time
766
+ # The timestamp at which the operation was created
767
+ # @return [Time]
768
+ #
769
+ # @!attribute [rw] end_time
770
+ # The timestamp at which the operation finished for the application
771
+ # @return [Time]
772
+ #
773
+ # @!attribute [rw] operation_status
774
+ # Status of the operation performed on an application
775
+ # @return [String]
776
+ #
777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfo AWS API Documentation
778
+ #
779
+ class ApplicationOperationInfo < Struct.new(
780
+ :operation,
781
+ :operation_id,
782
+ :start_time,
783
+ :end_time,
784
+ :operation_status)
785
+ SENSITIVE = []
786
+ include Aws::Structure
787
+ end
788
+
789
+ # Provides a description of the operation, such as the operation-type
790
+ # and status
791
+ #
792
+ # @!attribute [rw] operation
793
+ # Type of operation performed on an application
794
+ # @return [String]
795
+ #
796
+ # @!attribute [rw] start_time
797
+ # The timestamp at which the operation was created
798
+ # @return [Time]
799
+ #
800
+ # @!attribute [rw] end_time
801
+ # The timestamp at which the operation finished for the application
802
+ # @return [Time]
803
+ #
804
+ # @!attribute [rw] operation_status
805
+ # Status of the operation performed on an application
806
+ # @return [String]
807
+ #
808
+ # @!attribute [rw] application_version_change_details
809
+ # Contains information about the application version changes due to an
810
+ # operation
811
+ # @return [Types::ApplicationVersionChangeDetails]
812
+ #
813
+ # @!attribute [rw] operation_failure_details
814
+ # Provides a description of the operation failure
815
+ # @return [Types::OperationFailureDetails]
816
+ #
817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfoDetails AWS API Documentation
818
+ #
819
+ class ApplicationOperationInfoDetails < Struct.new(
820
+ :operation,
821
+ :start_time,
822
+ :end_time,
823
+ :operation_status,
824
+ :application_version_change_details,
825
+ :operation_failure_details)
826
+ SENSITIVE = []
827
+ include Aws::Structure
828
+ end
829
+
720
830
  # Specifies the method and snapshot to use when restarting an
721
831
  # application using previously saved application state.
722
832
  #
@@ -830,6 +940,75 @@ module Aws::KinesisAnalyticsV2
830
940
  include Aws::Structure
831
941
  end
832
942
 
943
+ # Describes system rollback configuration for a Managed Service for
944
+ # Apache Flink application
945
+ #
946
+ # @!attribute [rw] rollback_enabled
947
+ # Describes whether system rollbacks are enabled for a Managed Service
948
+ # for Apache Flink application
949
+ # @return [Boolean]
950
+ #
951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfiguration AWS API Documentation
952
+ #
953
+ class ApplicationSystemRollbackConfiguration < Struct.new(
954
+ :rollback_enabled)
955
+ SENSITIVE = []
956
+ include Aws::Structure
957
+ end
958
+
959
+ # Describes system rollback configuration for a Managed Service for
960
+ # Apache Flink application
961
+ #
962
+ # @!attribute [rw] rollback_enabled
963
+ # Describes whether system rollbacks are enabled for a Managed Service
964
+ # for Apache Flink application
965
+ # @return [Boolean]
966
+ #
967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationDescription AWS API Documentation
968
+ #
969
+ class ApplicationSystemRollbackConfigurationDescription < Struct.new(
970
+ :rollback_enabled)
971
+ SENSITIVE = []
972
+ include Aws::Structure
973
+ end
974
+
975
+ # Describes system rollback configuration for a Managed Service for
976
+ # Apache Flink application
977
+ #
978
+ # @!attribute [rw] rollback_enabled_update
979
+ # Describes whether system rollbacks are enabled for a Managed Service
980
+ # for Apache Flink application
981
+ # @return [Boolean]
982
+ #
983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationUpdate AWS API Documentation
984
+ #
985
+ class ApplicationSystemRollbackConfigurationUpdate < Struct.new(
986
+ :rollback_enabled_update)
987
+ SENSITIVE = []
988
+ include Aws::Structure
989
+ end
990
+
991
+ # Contains information about the application version changes due to an
992
+ # operation
993
+ #
994
+ # @!attribute [rw] application_version_updated_from
995
+ # The operation was performed on this version of the application
996
+ # @return [Integer]
997
+ #
998
+ # @!attribute [rw] application_version_updated_to
999
+ # The operation execution resulted in the transition to the following
1000
+ # version of the application
1001
+ # @return [Integer]
1002
+ #
1003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationVersionChangeDetails AWS API Documentation
1004
+ #
1005
+ class ApplicationVersionChangeDetails < Struct.new(
1006
+ :application_version_updated_from,
1007
+ :application_version_updated_to)
1008
+ SENSITIVE = []
1009
+ include Aws::Structure
1010
+ end
1011
+
833
1012
  # The summary of the application version.
834
1013
  #
835
1014
  # @!attribute [rw] application_version_id
@@ -943,8 +1122,8 @@ module Aws::KinesisAnalyticsV2
943
1122
  #
944
1123
  #
945
1124
  #
946
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
947
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
1125
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
1126
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
948
1127
  #
949
1128
  # @!attribute [rw] configuration_type
950
1129
  # Describes whether the application uses Managed Service for Apache
@@ -1005,8 +1184,8 @@ module Aws::KinesisAnalyticsV2
1005
1184
  #
1006
1185
  #
1007
1186
  #
1008
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/ops/state/large_state_tuning/#tuning-checkpointing
1009
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
1187
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/state/large_state_tuning/#tuning-checkpointing
1188
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
1010
1189
  # @return [Integer]
1011
1190
  #
1012
1191
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CheckpointConfiguration AWS API Documentation
@@ -1581,12 +1760,18 @@ module Aws::KinesisAnalyticsV2
1581
1760
  # application.
1582
1761
  # @return [Array<Types::CloudWatchLoggingOptionDescription>]
1583
1762
  #
1763
+ # @!attribute [rw] operation_id
1764
+ # Operation ID for tracking DeleteApplicationCloudWatchLoggingOption
1765
+ # request
1766
+ # @return [String]
1767
+ #
1584
1768
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationCloudWatchLoggingOptionResponse AWS API Documentation
1585
1769
  #
1586
1770
  class DeleteApplicationCloudWatchLoggingOptionResponse < Struct.new(
1587
1771
  :application_arn,
1588
1772
  :application_version_id,
1589
- :cloud_watch_logging_option_descriptions)
1773
+ :cloud_watch_logging_option_descriptions,
1774
+ :operation_id)
1590
1775
  SENSITIVE = []
1591
1776
  include Aws::Structure
1592
1777
  end
@@ -1821,11 +2006,16 @@ module Aws::KinesisAnalyticsV2
1821
2006
  # The updated version ID of the application.
1822
2007
  # @return [Integer]
1823
2008
  #
2009
+ # @!attribute [rw] operation_id
2010
+ # Operation ID for tracking DeleteApplicationVpcConfiguration request
2011
+ # @return [String]
2012
+ #
1824
2013
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationVpcConfigurationResponse AWS API Documentation
1825
2014
  #
1826
2015
  class DeleteApplicationVpcConfigurationResponse < Struct.new(
1827
2016
  :application_arn,
1828
- :application_version_id)
2017
+ :application_version_id,
2018
+ :operation_id)
1829
2019
  SENSITIVE = []
1830
2020
  include Aws::Structure
1831
2021
  end
@@ -1881,6 +2071,42 @@ module Aws::KinesisAnalyticsV2
1881
2071
  include Aws::Structure
1882
2072
  end
1883
2073
 
2074
+ # Request for information about a specific operation performed on a
2075
+ # Managed Service for Apache Flink application
2076
+ #
2077
+ # @!attribute [rw] application_name
2078
+ # The name of the application
2079
+ # @return [String]
2080
+ #
2081
+ # @!attribute [rw] operation_id
2082
+ # Identifier of the Operation
2083
+ # @return [String]
2084
+ #
2085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationRequest AWS API Documentation
2086
+ #
2087
+ class DescribeApplicationOperationRequest < Struct.new(
2088
+ :application_name,
2089
+ :operation_id)
2090
+ SENSITIVE = []
2091
+ include Aws::Structure
2092
+ end
2093
+
2094
+ # Provides details of the operation corresponding to the operation-ID on
2095
+ # a Managed Service for Apache Flink application
2096
+ #
2097
+ # @!attribute [rw] application_operation_info_details
2098
+ # Provides a description of the operation, such as the operation-type
2099
+ # and status
2100
+ # @return [Types::ApplicationOperationInfoDetails]
2101
+ #
2102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationResponse AWS API Documentation
2103
+ #
2104
+ class DescribeApplicationOperationResponse < Struct.new(
2105
+ :application_operation_info_details)
2106
+ SENSITIVE = []
2107
+ include Aws::Structure
2108
+ end
2109
+
1884
2110
  # @!attribute [rw] application_name
1885
2111
  # The name of the application.
1886
2112
  # @return [String]
@@ -2102,6 +2328,20 @@ module Aws::KinesisAnalyticsV2
2102
2328
  include Aws::Structure
2103
2329
  end
2104
2330
 
2331
+ # Provides a description of the operation failure error
2332
+ #
2333
+ # @!attribute [rw] error_string
2334
+ # Error message resulting in failure of the operation
2335
+ # @return [String]
2336
+ #
2337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ErrorInfo AWS API Documentation
2338
+ #
2339
+ class ErrorInfo < Struct.new(
2340
+ :error_string)
2341
+ SENSITIVE = []
2342
+ include Aws::Structure
2343
+ end
2344
+
2105
2345
  # Describes configuration parameters for a Managed Service for Apache
2106
2346
  # Flink application or a Studio notebook.
2107
2347
  #
@@ -2113,8 +2353,8 @@ module Aws::KinesisAnalyticsV2
2113
2353
  #
2114
2354
  #
2115
2355
  #
2116
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
2117
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2356
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
2357
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
2118
2358
  # @return [Types::CheckpointConfiguration]
2119
2359
  #
2120
2360
  # @!attribute [rw] monitoring_configuration
@@ -2165,8 +2405,8 @@ module Aws::KinesisAnalyticsV2
2165
2405
  #
2166
2406
  #
2167
2407
  #
2168
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/internals/job_scheduling.html
2169
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2408
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/internals/job_scheduling.html
2409
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
2170
2410
  # @return [String]
2171
2411
  #
2172
2412
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkApplicationConfigurationDescription AWS API Documentation
@@ -2229,8 +2469,8 @@ module Aws::KinesisAnalyticsV2
2229
2469
  #
2230
2470
  #
2231
2471
  #
2232
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/ops/state/savepoints/#allowing-non-restored-state
2233
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2472
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/state/savepoints/#allowing-non-restored-state
2473
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
2234
2474
  # @return [Boolean]
2235
2475
  #
2236
2476
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkRunConfiguration AWS API Documentation
@@ -3102,6 +3342,61 @@ module Aws::KinesisAnalyticsV2
3102
3342
  include Aws::Structure
3103
3343
  end
3104
3344
 
3345
+ # Request to list operations performed on an application
3346
+ #
3347
+ # @!attribute [rw] application_name
3348
+ # The name of the application
3349
+ # @return [String]
3350
+ #
3351
+ # @!attribute [rw] limit
3352
+ # Limit on the number of records returned in the response
3353
+ # @return [Integer]
3354
+ #
3355
+ # @!attribute [rw] next_token
3356
+ # If a previous command returned a pagination token, pass it into this
3357
+ # value to retrieve the next set of results
3358
+ # @return [String]
3359
+ #
3360
+ # @!attribute [rw] operation
3361
+ # Type of operation performed on an application
3362
+ # @return [String]
3363
+ #
3364
+ # @!attribute [rw] operation_status
3365
+ # Status of the operation performed on an application
3366
+ # @return [String]
3367
+ #
3368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsRequest AWS API Documentation
3369
+ #
3370
+ class ListApplicationOperationsRequest < Struct.new(
3371
+ :application_name,
3372
+ :limit,
3373
+ :next_token,
3374
+ :operation,
3375
+ :operation_status)
3376
+ SENSITIVE = []
3377
+ include Aws::Structure
3378
+ end
3379
+
3380
+ # Response with the list of operations for an application
3381
+ #
3382
+ # @!attribute [rw] application_operation_info_list
3383
+ # List of ApplicationOperationInfo for an application
3384
+ # @return [Array<Types::ApplicationOperationInfo>]
3385
+ #
3386
+ # @!attribute [rw] next_token
3387
+ # If a previous command returned a pagination token, pass it into this
3388
+ # value to retrieve the next set of results
3389
+ # @return [String]
3390
+ #
3391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsResponse AWS API Documentation
3392
+ #
3393
+ class ListApplicationOperationsResponse < Struct.new(
3394
+ :application_operation_info_list,
3395
+ :next_token)
3396
+ SENSITIVE = []
3397
+ include Aws::Structure
3398
+ end
3399
+
3105
3400
  # @!attribute [rw] application_name
3106
3401
  # The name of an existing application.
3107
3402
  # @return [String]
@@ -3421,6 +3716,26 @@ module Aws::KinesisAnalyticsV2
3421
3716
  include Aws::Structure
3422
3717
  end
3423
3718
 
3719
+ # Provides a description of the operation failure
3720
+ #
3721
+ # @!attribute [rw] rollback_operation_id
3722
+ # Provides the operation ID of a system-rollback operation executed
3723
+ # due to failure in the current operation
3724
+ # @return [String]
3725
+ #
3726
+ # @!attribute [rw] error_info
3727
+ # Provides a description of the operation failure error
3728
+ # @return [Types::ErrorInfo]
3729
+ #
3730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/OperationFailureDetails AWS API Documentation
3731
+ #
3732
+ class OperationFailureDetails < Struct.new(
3733
+ :rollback_operation_id,
3734
+ :error_info)
3735
+ SENSITIVE = []
3736
+ include Aws::Structure
3737
+ end
3738
+
3424
3739
  # Describes a SQL-based Kinesis Data Analytics application's output
3425
3740
  # configuration, in which you identify an in-application stream and a
3426
3741
  # destination where you want the in-application stream data to be
@@ -3560,8 +3875,8 @@ module Aws::KinesisAnalyticsV2
3560
3875
  #
3561
3876
  #
3562
3877
  #
3563
- # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/dev/parallel.html
3564
- # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
3878
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.19/dev/parallel.html
3879
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.19/
3565
3880
  #
3566
3881
  # @!attribute [rw] configuration_type
3567
3882
  # Describes whether the application uses the default parallelism for
@@ -3973,10 +4288,15 @@ module Aws::KinesisAnalyticsV2
3973
4288
  # configurations.
3974
4289
  # @return [Types::ApplicationDetail]
3975
4290
  #
4291
+ # @!attribute [rw] operation_id
4292
+ # Operation ID for tracking RollbackApplication request
4293
+ # @return [String]
4294
+ #
3976
4295
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/RollbackApplicationResponse AWS API Documentation
3977
4296
  #
3978
4297
  class RollbackApplicationResponse < Struct.new(
3979
- :application_detail)
4298
+ :application_detail,
4299
+ :operation_id)
3980
4300
  SENSITIVE = []
3981
4301
  include Aws::Structure
3982
4302
  end
@@ -4489,9 +4809,17 @@ module Aws::KinesisAnalyticsV2
4489
4809
  include Aws::Structure
4490
4810
  end
4491
4811
 
4812
+ # @!attribute [rw] operation_id
4813
+ # Operation ID for tracking StartApplication request
4814
+ # @return [String]
4815
+ #
4492
4816
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StartApplicationResponse AWS API Documentation
4493
4817
  #
4494
- class StartApplicationResponse < Aws::EmptyStructure; end
4818
+ class StartApplicationResponse < Struct.new(
4819
+ :operation_id)
4820
+ SENSITIVE = []
4821
+ include Aws::Structure
4822
+ end
4495
4823
 
4496
4824
  # @!attribute [rw] application_name
4497
4825
  # The name of the running application to stop.
@@ -4526,9 +4854,17 @@ module Aws::KinesisAnalyticsV2
4526
4854
  include Aws::Structure
4527
4855
  end
4528
4856
 
4857
+ # @!attribute [rw] operation_id
4858
+ # Operation ID for tracking StopApplication request
4859
+ # @return [String]
4860
+ #
4529
4861
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StopApplicationResponse AWS API Documentation
4530
4862
  #
4531
- class StopApplicationResponse < Aws::EmptyStructure; end
4863
+ class StopApplicationResponse < Struct.new(
4864
+ :operation_id)
4865
+ SENSITIVE = []
4866
+ include Aws::Structure
4867
+ end
4532
4868
 
4533
4869
  # A key-value pair (the value is optional) that you can define and
4534
4870
  # assign to Amazon resources. If you specify a tag that already exists,
@@ -4762,10 +5098,15 @@ module Aws::KinesisAnalyticsV2
4762
5098
  # Describes application updates.
4763
5099
  # @return [Types::ApplicationDetail]
4764
5100
  #
5101
+ # @!attribute [rw] operation_id
5102
+ # Operation ID for tracking UpdateApplication request
5103
+ # @return [String]
5104
+ #
4765
5105
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplicationResponse AWS API Documentation
4766
5106
  #
4767
5107
  class UpdateApplicationResponse < Struct.new(
4768
- :application_detail)
5108
+ :application_detail,
5109
+ :operation_id)
4769
5110
  SENSITIVE = []
4770
5111
  include Aws::Structure
4771
5112
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kinesisanalyticsv2/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisAnalyticsV2
54
54
 
55
- GEM_VERSION = '1.59.0'
55
+ GEM_VERSION = '1.61.0'
56
56
 
57
57
  end