aws-sdk-medialive 1.169.0 → 1.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7786a18cf1c687584bb64c49eca7f50df4be698ab9be28570cde005b810719ca
4
- data.tar.gz: b023cd962439bdf70794618423469e0d0bc3284d960f0fbf47c1340d1a798496
3
+ metadata.gz: ae957d9c634b8f418aa270a2ba902aedb45cced2284caaa13261725bb5599026
4
+ data.tar.gz: 50e752a5fbb878fe76b1a7fb16f1cc909cb66fa36bb8296065e68c222147ee01
5
5
  SHA512:
6
- metadata.gz: f3871d992bd36a1a3c23d5199bed696102b9974d2a0f6fde3ca53a1ef0af718543e607a46bf3c62bb58af8aaf70b761dda704c74bc9a7441a80c91c3a1410e8d
7
- data.tar.gz: 0dca34f169a13eb89674a0e6913a79c50a3b30f1125019bf245aad78f256feba7892a692aa6a49e371f68a6fe1e7c18604d432f5207b71ef69ba38d6b4759e60
6
+ metadata.gz: 00a2a279cc8e02fea58d3a47d01faefa2a1e8e0cfc3c1944547135a41911ba90c99a1de38dac8bd3fd582e18db6e904df9e77c105edd89a03371b0ed9aad7187
7
+ data.tar.gz: 515c9542b93e251f81c1ff899d403b4f1c73243c060dc2fa1fc0d4670a6871a13a65471efbc938d26e92a91b85f947ce75f48e1f46ee8d37745a70cb4b3c5990
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.171.0 (2025-12-26)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaLive now supports Pipeline Locking using Video Alignment as well as linked single pipeline channels to enable cross-channel and cross-region Pipeline Locking workflows.
8
+
9
+ 1.170.0 (2025-11-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.169.0 (2025-11-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.169.0
1
+ 1.171.0
@@ -1070,6 +1070,9 @@ module Aws::MediaLive
1070
1070
  #
1071
1071
  # @option params [Boolean] :dry_run
1072
1072
  #
1073
+ # @option params [Types::LinkedChannelSettings] :linked_channel_settings
1074
+ # Configuration for linked channel relationships
1075
+ #
1073
1076
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1074
1077
  #
1075
1078
  # * {Types::CreateChannelResponse#channel #channel} => Types::Channel
@@ -1277,6 +1280,7 @@ module Aws::MediaLive
1277
1280
  # resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
1278
1281
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
1279
1282
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
1283
+ # resp.channel.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
1280
1284
  # resp.channel.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
1281
1285
  # resp.channel.encoder_settings.nielsen_configuration.distributor_id #=> String
1282
1286
  # resp.channel.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -1918,6 +1922,11 @@ module Aws::MediaLive
1918
1922
  # resp.channel.anywhere_settings.cluster_id #=> String
1919
1923
  # resp.channel.channel_engine_version.expiration_date #=> Time
1920
1924
  # resp.channel.channel_engine_version.version #=> String
1925
+ # resp.channel.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
1926
+ # resp.channel.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
1927
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
1928
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
1929
+ # resp.channel.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
1921
1930
  #
1922
1931
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
1923
1932
  #
@@ -2510,6 +2519,7 @@ module Aws::MediaLive
2510
2519
  # * {Types::DeleteChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
2511
2520
  # * {Types::DeleteChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
2512
2521
  # * {Types::DeleteChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
2522
+ # * {Types::DeleteChannelResponse#linked_channel_settings #linked_channel_settings} => Types::DescribeLinkedChannelSettings
2513
2523
  #
2514
2524
  # @example Request syntax with placeholder values
2515
2525
  #
@@ -2720,6 +2730,7 @@ module Aws::MediaLive
2720
2730
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
2721
2731
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
2722
2732
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
2733
+ # resp.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
2723
2734
  # resp.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
2724
2735
  # resp.encoder_settings.nielsen_configuration.distributor_id #=> String
2725
2736
  # resp.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -3361,6 +3372,11 @@ module Aws::MediaLive
3361
3372
  # resp.anywhere_settings.cluster_id #=> String
3362
3373
  # resp.channel_engine_version.expiration_date #=> Time
3363
3374
  # resp.channel_engine_version.version #=> String
3375
+ # resp.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
3376
+ # resp.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
3377
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
3378
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
3379
+ # resp.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
3364
3380
  #
3365
3381
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel AWS API Documentation
3366
3382
  #
@@ -3694,6 +3710,7 @@ module Aws::MediaLive
3694
3710
  # * {Types::DescribeChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
3695
3711
  # * {Types::DescribeChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
3696
3712
  # * {Types::DescribeChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
3713
+ # * {Types::DescribeChannelResponse#linked_channel_settings #linked_channel_settings} => Types::DescribeLinkedChannelSettings
3697
3714
  #
3698
3715
  # @example Request syntax with placeholder values
3699
3716
  #
@@ -3904,6 +3921,7 @@ module Aws::MediaLive
3904
3921
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
3905
3922
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
3906
3923
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
3924
+ # resp.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
3907
3925
  # resp.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
3908
3926
  # resp.encoder_settings.nielsen_configuration.distributor_id #=> String
3909
3927
  # resp.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -4545,6 +4563,11 @@ module Aws::MediaLive
4545
4563
  # resp.anywhere_settings.cluster_id #=> String
4546
4564
  # resp.channel_engine_version.expiration_date #=> Time
4547
4565
  # resp.channel_engine_version.version #=> String
4566
+ # resp.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
4567
+ # resp.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
4568
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
4569
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
4570
+ # resp.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
4548
4571
  #
4549
4572
  #
4550
4573
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5397,6 +5420,11 @@ module Aws::MediaLive
5397
5420
  # resp.channels[0].used_channel_engine_versions #=> Array
5398
5421
  # resp.channels[0].used_channel_engine_versions[0].expiration_date #=> Time
5399
5422
  # resp.channels[0].used_channel_engine_versions[0].version #=> String
5423
+ # resp.channels[0].linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
5424
+ # resp.channels[0].linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
5425
+ # resp.channels[0].linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
5426
+ # resp.channels[0].linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
5427
+ # resp.channels[0].linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
5400
5428
  # resp.next_token #=> String
5401
5429
  #
5402
5430
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels AWS API Documentation
@@ -6106,6 +6134,7 @@ module Aws::MediaLive
6106
6134
  # * {Types::StartChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
6107
6135
  # * {Types::StartChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
6108
6136
  # * {Types::StartChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
6137
+ # * {Types::StartChannelResponse#linked_channel_settings #linked_channel_settings} => Types::DescribeLinkedChannelSettings
6109
6138
  #
6110
6139
  # @example Request syntax with placeholder values
6111
6140
  #
@@ -6316,6 +6345,7 @@ module Aws::MediaLive
6316
6345
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
6317
6346
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
6318
6347
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
6348
+ # resp.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
6319
6349
  # resp.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
6320
6350
  # resp.encoder_settings.nielsen_configuration.distributor_id #=> String
6321
6351
  # resp.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -6957,6 +6987,11 @@ module Aws::MediaLive
6957
6987
  # resp.anywhere_settings.cluster_id #=> String
6958
6988
  # resp.channel_engine_version.expiration_date #=> Time
6959
6989
  # resp.channel_engine_version.version #=> String
6990
+ # resp.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
6991
+ # resp.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
6992
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
6993
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
6994
+ # resp.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
6960
6995
  #
6961
6996
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel AWS API Documentation
6962
6997
  #
@@ -7097,6 +7132,7 @@ module Aws::MediaLive
7097
7132
  # * {Types::StopChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
7098
7133
  # * {Types::StopChannelResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
7099
7134
  # * {Types::StopChannelResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
7135
+ # * {Types::StopChannelResponse#linked_channel_settings #linked_channel_settings} => Types::DescribeLinkedChannelSettings
7100
7136
  #
7101
7137
  # @example Request syntax with placeholder values
7102
7138
  #
@@ -7307,6 +7343,7 @@ module Aws::MediaLive
7307
7343
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
7308
7344
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
7309
7345
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
7346
+ # resp.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
7310
7347
  # resp.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
7311
7348
  # resp.encoder_settings.nielsen_configuration.distributor_id #=> String
7312
7349
  # resp.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -7948,6 +7985,11 @@ module Aws::MediaLive
7948
7985
  # resp.anywhere_settings.cluster_id #=> String
7949
7986
  # resp.channel_engine_version.expiration_date #=> Time
7950
7987
  # resp.channel_engine_version.version #=> String
7988
+ # resp.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
7989
+ # resp.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
7990
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
7991
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
7992
+ # resp.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
7951
7993
  #
7952
7994
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel AWS API Documentation
7953
7995
  #
@@ -8124,6 +8166,9 @@ module Aws::MediaLive
8124
8166
  # @option params [Types::AnywhereSettings] :anywhere_settings
8125
8167
  # Elemental anywhere settings
8126
8168
  #
8169
+ # @option params [Types::LinkedChannelSettings] :linked_channel_settings
8170
+ # Configuration for linked channel relationships
8171
+ #
8127
8172
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8128
8173
  #
8129
8174
  # * {Types::UpdateChannelResponse#channel #channel} => Types::Channel
@@ -8331,6 +8376,7 @@ module Aws::MediaLive
8331
8376
  # resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
8332
8377
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
8333
8378
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
8379
+ # resp.channel.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
8334
8380
  # resp.channel.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
8335
8381
  # resp.channel.encoder_settings.nielsen_configuration.distributor_id #=> String
8336
8382
  # resp.channel.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -8972,6 +9018,11 @@ module Aws::MediaLive
8972
9018
  # resp.channel.anywhere_settings.cluster_id #=> String
8973
9019
  # resp.channel.channel_engine_version.expiration_date #=> Time
8974
9020
  # resp.channel.channel_engine_version.version #=> String
9021
+ # resp.channel.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
9022
+ # resp.channel.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
9023
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
9024
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
9025
+ # resp.channel.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
8975
9026
  #
8976
9027
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
8977
9028
  #
@@ -9238,6 +9289,7 @@ module Aws::MediaLive
9238
9289
  # resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
9239
9290
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
9240
9291
  # resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
9292
+ # resp.channel.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
9241
9293
  # resp.channel.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
9242
9294
  # resp.channel.encoder_settings.nielsen_configuration.distributor_id #=> String
9243
9295
  # resp.channel.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -9879,6 +9931,11 @@ module Aws::MediaLive
9879
9931
  # resp.channel.anywhere_settings.cluster_id #=> String
9880
9932
  # resp.channel.channel_engine_version.expiration_date #=> Time
9881
9933
  # resp.channel.channel_engine_version.version #=> String
9934
+ # resp.channel.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
9935
+ # resp.channel.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
9936
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
9937
+ # resp.channel.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
9938
+ # resp.channel.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
9882
9939
  #
9883
9940
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelClass AWS API Documentation
9884
9941
  #
@@ -10536,6 +10593,7 @@ module Aws::MediaLive
10536
10593
  # * {Types::RestartChannelPipelinesResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
10537
10594
  # * {Types::RestartChannelPipelinesResponse#anywhere_settings #anywhere_settings} => Types::DescribeAnywhereSettings
10538
10595
  # * {Types::RestartChannelPipelinesResponse#channel_engine_version #channel_engine_version} => Types::ChannelEngineVersionResponse
10596
+ # * {Types::RestartChannelPipelinesResponse#linked_channel_settings #linked_channel_settings} => Types::DescribeLinkedChannelSettings
10539
10597
  #
10540
10598
  # @example Request syntax with placeholder values
10541
10599
  #
@@ -10747,6 +10805,7 @@ module Aws::MediaLive
10747
10805
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
10748
10806
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
10749
10807
  # resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.jam_sync_time #=> String
10808
+ # resp.encoder_settings.global_configuration.output_locking_settings.pipeline_locking_settings.pipeline_locking_method #=> String, one of "SOURCE_TIMECODE", "VIDEO_ALIGNMENT"
10750
10809
  # resp.encoder_settings.motion_graphics_configuration.motion_graphics_insertion #=> String, one of "DISABLED", "ENABLED"
10751
10810
  # resp.encoder_settings.nielsen_configuration.distributor_id #=> String
10752
10811
  # resp.encoder_settings.nielsen_configuration.nielsen_pcm_to_id_3_tagging #=> String, one of "DISABLED", "ENABLED"
@@ -11389,6 +11448,11 @@ module Aws::MediaLive
11389
11448
  # resp.anywhere_settings.cluster_id #=> String
11390
11449
  # resp.channel_engine_version.expiration_date #=> Time
11391
11450
  # resp.channel_engine_version.version #=> String
11451
+ # resp.linked_channel_settings.follower_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
11452
+ # resp.linked_channel_settings.follower_channel_settings.primary_channel_arn #=> String
11453
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns #=> Array
11454
+ # resp.linked_channel_settings.primary_channel_settings.following_channel_arns[0] #=> String
11455
+ # resp.linked_channel_settings.primary_channel_settings.linked_channel_type #=> String, one of "FOLLOWING_CHANNEL", "PRIMARY_CHANNEL"
11392
11456
  #
11393
11457
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelines AWS API Documentation
11394
11458
  #
@@ -14716,7 +14780,7 @@ module Aws::MediaLive
14716
14780
  tracer: tracer
14717
14781
  )
14718
14782
  context[:gem_name] = 'aws-sdk-medialive'
14719
- context[:gem_version] = '1.169.0'
14783
+ context[:gem_version] = '1.171.0'
14720
14784
  Seahorse::Client::Request.new(handlers, context)
14721
14785
  end
14722
14786
 
@@ -280,6 +280,7 @@ module Aws::MediaLive
280
280
  DescribeClusterResponse = Shapes::StructureShape.new(name: 'DescribeClusterResponse')
281
281
  DescribeClusterResult = Shapes::StructureShape.new(name: 'DescribeClusterResult')
282
282
  DescribeClusterSummary = Shapes::StructureShape.new(name: 'DescribeClusterSummary')
283
+ DescribeFollowerChannelSettings = Shapes::StructureShape.new(name: 'DescribeFollowerChannelSettings')
283
284
  DescribeInputDeviceRequest = Shapes::StructureShape.new(name: 'DescribeInputDeviceRequest')
284
285
  DescribeInputDeviceResponse = Shapes::StructureShape.new(name: 'DescribeInputDeviceResponse')
285
286
  DescribeInputDeviceThumbnailRequest = Shapes::StructureShape.new(name: 'DescribeInputDeviceThumbnailRequest')
@@ -288,6 +289,7 @@ module Aws::MediaLive
288
289
  DescribeInputResponse = Shapes::StructureShape.new(name: 'DescribeInputResponse')
289
290
  DescribeInputSecurityGroupRequest = Shapes::StructureShape.new(name: 'DescribeInputSecurityGroupRequest')
290
291
  DescribeInputSecurityGroupResponse = Shapes::StructureShape.new(name: 'DescribeInputSecurityGroupResponse')
292
+ DescribeLinkedChannelSettings = Shapes::StructureShape.new(name: 'DescribeLinkedChannelSettings')
291
293
  DescribeMultiplexProgramRequest = Shapes::StructureShape.new(name: 'DescribeMultiplexProgramRequest')
292
294
  DescribeMultiplexProgramResponse = Shapes::StructureShape.new(name: 'DescribeMultiplexProgramResponse')
293
295
  DescribeMultiplexRequest = Shapes::StructureShape.new(name: 'DescribeMultiplexRequest')
@@ -302,6 +304,7 @@ module Aws::MediaLive
302
304
  DescribeNodeSummary = Shapes::StructureShape.new(name: 'DescribeNodeSummary')
303
305
  DescribeOfferingRequest = Shapes::StructureShape.new(name: 'DescribeOfferingRequest')
304
306
  DescribeOfferingResponse = Shapes::StructureShape.new(name: 'DescribeOfferingResponse')
307
+ DescribePrimaryChannelSettings = Shapes::StructureShape.new(name: 'DescribePrimaryChannelSettings')
305
308
  DescribeReservationRequest = Shapes::StructureShape.new(name: 'DescribeReservationRequest')
306
309
  DescribeReservationResponse = Shapes::StructureShape.new(name: 'DescribeReservationResponse')
307
310
  DescribeScheduleRequest = Shapes::StructureShape.new(name: 'DescribeScheduleRequest')
@@ -380,6 +383,7 @@ module Aws::MediaLive
380
383
  Fmp4TimedMetadataBehavior = Shapes::StringShape.new(name: 'Fmp4TimedMetadataBehavior')
381
384
  FollowModeScheduleActionStartSettings = Shapes::StructureShape.new(name: 'FollowModeScheduleActionStartSettings')
382
385
  FollowPoint = Shapes::StringShape.new(name: 'FollowPoint')
386
+ FollowerChannelSettings = Shapes::StructureShape.new(name: 'FollowerChannelSettings')
383
387
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
384
388
  ForbiddenExceptionResponseContent = Shapes::StructureShape.new(name: 'ForbiddenExceptionResponseContent')
385
389
  FrameCaptureCdnSettings = Shapes::StructureShape.new(name: 'FrameCaptureCdnSettings')
@@ -591,6 +595,8 @@ module Aws::MediaLive
591
595
  KeyProviderSettings = Shapes::StructureShape.new(name: 'KeyProviderSettings')
592
596
  LastFrameClippingBehavior = Shapes::StringShape.new(name: 'LastFrameClippingBehavior')
593
597
  LimitExceeded = Shapes::StructureShape.new(name: 'LimitExceeded')
598
+ LinkedChannelSettings = Shapes::StructureShape.new(name: 'LinkedChannelSettings')
599
+ LinkedChannelType = Shapes::StringShape.new(name: 'LinkedChannelType')
594
600
  ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
595
601
  ListAlertsResponse = Shapes::StructureShape.new(name: 'ListAlertsResponse')
596
602
  ListAlertsResultModel = Shapes::StructureShape.new(name: 'ListAlertsResultModel')
@@ -789,9 +795,11 @@ module Aws::MediaLive
789
795
  PauseStateScheduleActionSettings = Shapes::StructureShape.new(name: 'PauseStateScheduleActionSettings')
790
796
  PipelineDetail = Shapes::StructureShape.new(name: 'PipelineDetail')
791
797
  PipelineId = Shapes::StringShape.new(name: 'PipelineId')
798
+ PipelineLockingMethod = Shapes::StringShape.new(name: 'PipelineLockingMethod')
792
799
  PipelineLockingSettings = Shapes::StructureShape.new(name: 'PipelineLockingSettings')
793
800
  PipelinePauseStateSettings = Shapes::StructureShape.new(name: 'PipelinePauseStateSettings')
794
801
  PreferredChannelPipeline = Shapes::StringShape.new(name: 'PreferredChannelPipeline')
802
+ PrimaryChannelSettings = Shapes::StructureShape.new(name: 'PrimaryChannelSettings')
795
803
  PurchaseOffering = Shapes::StructureShape.new(name: 'PurchaseOffering')
796
804
  PurchaseOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseOfferingRequest')
797
805
  PurchaseOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseOfferingResponse')
@@ -1674,6 +1682,7 @@ module Aws::MediaLive
1674
1682
  Channel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
1675
1683
  Channel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
1676
1684
  Channel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
1685
+ Channel.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
1677
1686
  Channel.struct_class = Types::Channel
1678
1687
 
1679
1688
  ChannelAlert.add_member(:alert_type, Shapes::ShapeRef.new(shape: __string, location_name: "alertType"))
@@ -1718,6 +1727,7 @@ module Aws::MediaLive
1718
1727
  ChannelSummary.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
1719
1728
  ChannelSummary.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
1720
1729
  ChannelSummary.add_member(:used_channel_engine_versions, Shapes::ShapeRef.new(shape: __listOfChannelEngineVersionResponse, location_name: "usedChannelEngineVersions"))
1730
+ ChannelSummary.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
1721
1731
  ChannelSummary.struct_class = Types::ChannelSummary
1722
1732
 
1723
1733
  ClaimDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
@@ -1835,6 +1845,7 @@ module Aws::MediaLive
1835
1845
  CreateChannel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
1836
1846
  CreateChannel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
1837
1847
  CreateChannel.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
1848
+ CreateChannel.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: LinkedChannelSettings, location_name: "linkedChannelSettings"))
1838
1849
  CreateChannel.struct_class = Types::CreateChannel
1839
1850
 
1840
1851
  CreateChannelPlacementGroupRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterId"))
@@ -1870,6 +1881,7 @@ module Aws::MediaLive
1870
1881
  CreateChannelRequest.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
1871
1882
  CreateChannelRequest.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
1872
1883
  CreateChannelRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
1884
+ CreateChannelRequest.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: LinkedChannelSettings, location_name: "linkedChannelSettings"))
1873
1885
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
1874
1886
 
1875
1887
  CreateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
@@ -2333,6 +2345,7 @@ module Aws::MediaLive
2333
2345
  DeleteChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
2334
2346
  DeleteChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
2335
2347
  DeleteChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
2348
+ DeleteChannelResponse.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
2336
2349
  DeleteChannelResponse.struct_class = Types::DeleteChannelResponse
2337
2350
 
2338
2351
  DeleteCloudWatchAlarmTemplateGroupRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "identifier"))
@@ -2533,6 +2546,7 @@ module Aws::MediaLive
2533
2546
  DescribeChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
2534
2547
  DescribeChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
2535
2548
  DescribeChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
2549
+ DescribeChannelResponse.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
2536
2550
  DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
2537
2551
 
2538
2552
  DescribeClusterRequest.add_member(:cluster_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterId"))
@@ -2568,6 +2582,10 @@ module Aws::MediaLive
2568
2582
  DescribeClusterSummary.add_member(:state, Shapes::ShapeRef.new(shape: ClusterState, location_name: "state"))
2569
2583
  DescribeClusterSummary.struct_class = Types::DescribeClusterSummary
2570
2584
 
2585
+ DescribeFollowerChannelSettings.add_member(:linked_channel_type, Shapes::ShapeRef.new(shape: LinkedChannelType, location_name: "linkedChannelType"))
2586
+ DescribeFollowerChannelSettings.add_member(:primary_channel_arn, Shapes::ShapeRef.new(shape: __string, location_name: "primaryChannelArn"))
2587
+ DescribeFollowerChannelSettings.struct_class = Types::DescribeFollowerChannelSettings
2588
+
2571
2589
  DescribeInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
2572
2590
  DescribeInputDeviceRequest.struct_class = Types::DescribeInputDeviceRequest
2573
2591
 
@@ -2640,6 +2658,10 @@ module Aws::MediaLive
2640
2658
  DescribeInputSecurityGroupResponse.add_member(:whitelist_rules, Shapes::ShapeRef.new(shape: __listOfInputWhitelistRule, location_name: "whitelistRules"))
2641
2659
  DescribeInputSecurityGroupResponse.struct_class = Types::DescribeInputSecurityGroupResponse
2642
2660
 
2661
+ DescribeLinkedChannelSettings.add_member(:follower_channel_settings, Shapes::ShapeRef.new(shape: DescribeFollowerChannelSettings, location_name: "followerChannelSettings"))
2662
+ DescribeLinkedChannelSettings.add_member(:primary_channel_settings, Shapes::ShapeRef.new(shape: DescribePrimaryChannelSettings, location_name: "primaryChannelSettings"))
2663
+ DescribeLinkedChannelSettings.struct_class = Types::DescribeLinkedChannelSettings
2664
+
2643
2665
  DescribeMultiplexProgramRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
2644
2666
  DescribeMultiplexProgramRequest.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "programName"))
2645
2667
  DescribeMultiplexProgramRequest.struct_class = Types::DescribeMultiplexProgramRequest
@@ -2756,6 +2778,10 @@ module Aws::MediaLive
2756
2778
  DescribeOfferingResponse.add_member(:usage_price, Shapes::ShapeRef.new(shape: __double, location_name: "usagePrice"))
2757
2779
  DescribeOfferingResponse.struct_class = Types::DescribeOfferingResponse
2758
2780
 
2781
+ DescribePrimaryChannelSettings.add_member(:following_channel_arns, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "followingChannelArns"))
2782
+ DescribePrimaryChannelSettings.add_member(:linked_channel_type, Shapes::ShapeRef.new(shape: LinkedChannelType, location_name: "linkedChannelType"))
2783
+ DescribePrimaryChannelSettings.struct_class = Types::DescribePrimaryChannelSettings
2784
+
2759
2785
  DescribeReservationRequest.add_member(:reservation_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "reservationId"))
2760
2786
  DescribeReservationRequest.struct_class = Types::DescribeReservationRequest
2761
2787
 
@@ -2982,6 +3008,10 @@ module Aws::MediaLive
2982
3008
  FollowModeScheduleActionStartSettings.add_member(:reference_action_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "referenceActionName"))
2983
3009
  FollowModeScheduleActionStartSettings.struct_class = Types::FollowModeScheduleActionStartSettings
2984
3010
 
3011
+ FollowerChannelSettings.add_member(:linked_channel_type, Shapes::ShapeRef.new(shape: LinkedChannelType, location_name: "linkedChannelType"))
3012
+ FollowerChannelSettings.add_member(:primary_channel_arn, Shapes::ShapeRef.new(shape: __string, location_name: "primaryChannelArn"))
3013
+ FollowerChannelSettings.struct_class = Types::FollowerChannelSettings
3014
+
2985
3015
  ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
2986
3016
  ForbiddenException.struct_class = Types::ForbiddenException
2987
3017
 
@@ -3702,6 +3732,10 @@ module Aws::MediaLive
3702
3732
  LimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
3703
3733
  LimitExceeded.struct_class = Types::LimitExceeded
3704
3734
 
3735
+ LinkedChannelSettings.add_member(:follower_channel_settings, Shapes::ShapeRef.new(shape: FollowerChannelSettings, location_name: "followerChannelSettings"))
3736
+ LinkedChannelSettings.add_member(:primary_channel_settings, Shapes::ShapeRef.new(shape: PrimaryChannelSettings, location_name: "primaryChannelSettings"))
3737
+ LinkedChannelSettings.struct_class = Types::LinkedChannelSettings
3738
+
3705
3739
  ListAlertsRequest.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelId"))
3706
3740
  ListAlertsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
3707
3741
  ListAlertsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
@@ -4504,11 +4538,15 @@ module Aws::MediaLive
4504
4538
  PipelineDetail.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
4505
4539
  PipelineDetail.struct_class = Types::PipelineDetail
4506
4540
 
4541
+ PipelineLockingSettings.add_member(:pipeline_locking_method, Shapes::ShapeRef.new(shape: PipelineLockingMethod, location_name: "pipelineLockingMethod"))
4507
4542
  PipelineLockingSettings.struct_class = Types::PipelineLockingSettings
4508
4543
 
4509
4544
  PipelinePauseStateSettings.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: PipelineId, required: true, location_name: "pipelineId"))
4510
4545
  PipelinePauseStateSettings.struct_class = Types::PipelinePauseStateSettings
4511
4546
 
4547
+ PrimaryChannelSettings.add_member(:linked_channel_type, Shapes::ShapeRef.new(shape: LinkedChannelType, location_name: "linkedChannelType"))
4548
+ PrimaryChannelSettings.struct_class = Types::PrimaryChannelSettings
4549
+
4512
4550
  PurchaseOffering.add_member(:count, Shapes::ShapeRef.new(shape: __integerMin1, required: true, location_name: "count"))
4513
4551
  PurchaseOffering.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
4514
4552
  PurchaseOffering.add_member(:renewal_settings, Shapes::ShapeRef.new(shape: RenewalSettings, location_name: "renewalSettings"))
@@ -4623,6 +4661,7 @@ module Aws::MediaLive
4623
4661
  RestartChannelPipelinesResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
4624
4662
  RestartChannelPipelinesResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
4625
4663
  RestartChannelPipelinesResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
4664
+ RestartChannelPipelinesResponse.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
4626
4665
  RestartChannelPipelinesResponse.struct_class = Types::RestartChannelPipelinesResponse
4627
4666
 
4628
4667
  Route.add_member(:cidr, Shapes::ShapeRef.new(shape: __string, location_name: "cidr"))
@@ -4897,6 +4936,7 @@ module Aws::MediaLive
4897
4936
  StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
4898
4937
  StartChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
4899
4938
  StartChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
4939
+ StartChannelResponse.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
4900
4940
  StartChannelResponse.struct_class = Types::StartChannelResponse
4901
4941
 
4902
4942
  StartDeleteMonitorDeploymentRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "identifier"))
@@ -5135,6 +5175,7 @@ module Aws::MediaLive
5135
5175
  StopChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
5136
5176
  StopChannelResponse.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: DescribeAnywhereSettings, location_name: "anywhereSettings"))
5137
5177
  StopChannelResponse.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionResponse, location_name: "channelEngineVersion"))
5178
+ StopChannelResponse.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: DescribeLinkedChannelSettings, location_name: "linkedChannelSettings"))
5138
5179
  StopChannelResponse.struct_class = Types::StopChannelResponse
5139
5180
 
5140
5181
  StopInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
@@ -5284,6 +5325,7 @@ module Aws::MediaLive
5284
5325
  UpdateChannel.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
5285
5326
  UpdateChannel.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
5286
5327
  UpdateChannel.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
5328
+ UpdateChannel.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: LinkedChannelSettings, location_name: "linkedChannelSettings"))
5287
5329
  UpdateChannel.struct_class = Types::UpdateChannel
5288
5330
 
5289
5331
  UpdateChannelClass.add_member(:channel_class, Shapes::ShapeRef.new(shape: ChannelClass, required: true, location_name: "channelClass"))
@@ -5326,6 +5368,7 @@ module Aws::MediaLive
5326
5368
  UpdateChannelRequest.add_member(:channel_engine_version, Shapes::ShapeRef.new(shape: ChannelEngineVersionRequest, location_name: "channelEngineVersion"))
5327
5369
  UpdateChannelRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "dryRun"))
5328
5370
  UpdateChannelRequest.add_member(:anywhere_settings, Shapes::ShapeRef.new(shape: AnywhereSettings, location_name: "anywhereSettings"))
5371
+ UpdateChannelRequest.add_member(:linked_channel_settings, Shapes::ShapeRef.new(shape: LinkedChannelSettings, location_name: "linkedChannelSettings"))
5329
5372
  UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
5330
5373
 
5331
5374
  UpdateChannelResponse.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
@@ -1884,6 +1884,10 @@ module Aws::MediaLive
1884
1884
  # Requested engine version for this channel.
1885
1885
  # @return [Types::ChannelEngineVersionResponse]
1886
1886
  #
1887
+ # @!attribute [rw] linked_channel_settings
1888
+ # Linked Channel Settings for this channel.
1889
+ # @return [Types::DescribeLinkedChannelSettings]
1890
+ #
1887
1891
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Channel AWS API Documentation
1888
1892
  #
1889
1893
  class Channel < Struct.new(
@@ -1906,7 +1910,8 @@ module Aws::MediaLive
1906
1910
  :tags,
1907
1911
  :vpc,
1908
1912
  :anywhere_settings,
1909
- :channel_engine_version)
1913
+ :channel_engine_version,
1914
+ :linked_channel_settings)
1910
1915
  SENSITIVE = []
1911
1916
  include Aws::Structure
1912
1917
  end
@@ -2018,6 +2023,10 @@ module Aws::MediaLive
2018
2023
  # The engine version that the running pipelines are using.
2019
2024
  # @return [Array<Types::ChannelEngineVersionResponse>]
2020
2025
  #
2026
+ # @!attribute [rw] linked_channel_settings
2027
+ # Linked Channel Settings for this channel.
2028
+ # @return [Types::DescribeLinkedChannelSettings]
2029
+ #
2021
2030
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelSummary AWS API Documentation
2022
2031
  #
2023
2032
  class ChannelSummary < Struct.new(
@@ -2039,7 +2048,8 @@ module Aws::MediaLive
2039
2048
  :vpc,
2040
2049
  :anywhere_settings,
2041
2050
  :channel_engine_version,
2042
- :used_channel_engine_versions)
2051
+ :used_channel_engine_versions,
2052
+ :linked_channel_settings)
2043
2053
  SENSITIVE = []
2044
2054
  include Aws::Structure
2045
2055
  end
@@ -2200,6 +2210,10 @@ module Aws::MediaLive
2200
2210
  # @!attribute [rw] dry_run
2201
2211
  # @return [Boolean]
2202
2212
  #
2213
+ # @!attribute [rw] linked_channel_settings
2214
+ # The linked channel settings for the channel.
2215
+ # @return [Types::LinkedChannelSettings]
2216
+ #
2203
2217
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
2204
2218
  #
2205
2219
  class CreateChannel < Struct.new(
@@ -2219,7 +2233,8 @@ module Aws::MediaLive
2219
2233
  :vpc,
2220
2234
  :anywhere_settings,
2221
2235
  :channel_engine_version,
2222
- :dry_run)
2236
+ :dry_run,
2237
+ :linked_channel_settings)
2223
2238
  SENSITIVE = []
2224
2239
  include Aws::Structure
2225
2240
  end
@@ -2285,6 +2300,10 @@ module Aws::MediaLive
2285
2300
  # @!attribute [rw] dry_run
2286
2301
  # @return [Boolean]
2287
2302
  #
2303
+ # @!attribute [rw] linked_channel_settings
2304
+ # Configuration for linked channel relationships
2305
+ # @return [Types::LinkedChannelSettings]
2306
+ #
2288
2307
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
2289
2308
  #
2290
2309
  class CreateChannelRequest < Struct.new(
@@ -2304,7 +2323,8 @@ module Aws::MediaLive
2304
2323
  :vpc,
2305
2324
  :anywhere_settings,
2306
2325
  :channel_engine_version,
2307
- :dry_run)
2326
+ :dry_run,
2327
+ :linked_channel_settings)
2308
2328
  SENSITIVE = []
2309
2329
  include Aws::Structure
2310
2330
  end
@@ -2908,6 +2928,10 @@ module Aws::MediaLive
2908
2928
  # @!attribute [rw] channel_engine_version
2909
2929
  # @return [Types::ChannelEngineVersionResponse]
2910
2930
  #
2931
+ # @!attribute [rw] linked_channel_settings
2932
+ # Linked channel configuration details
2933
+ # @return [Types::DescribeLinkedChannelSettings]
2934
+ #
2911
2935
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannelResponse AWS API Documentation
2912
2936
  #
2913
2937
  class DeleteChannelResponse < Struct.new(
@@ -2930,7 +2954,8 @@ module Aws::MediaLive
2930
2954
  :tags,
2931
2955
  :vpc,
2932
2956
  :anywhere_settings,
2933
- :channel_engine_version)
2957
+ :channel_engine_version,
2958
+ :linked_channel_settings)
2934
2959
  SENSITIVE = []
2935
2960
  include Aws::Structure
2936
2961
  end
@@ -3305,6 +3330,10 @@ module Aws::MediaLive
3305
3330
  # @!attribute [rw] channel_engine_version
3306
3331
  # @return [Types::ChannelEngineVersionResponse]
3307
3332
  #
3333
+ # @!attribute [rw] linked_channel_settings
3334
+ # Linked channel configuration details
3335
+ # @return [Types::DescribeLinkedChannelSettings]
3336
+ #
3308
3337
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannelResponse AWS API Documentation
3309
3338
  #
3310
3339
  class DescribeChannelResponse < Struct.new(
@@ -3327,7 +3356,8 @@ module Aws::MediaLive
3327
3356
  :tags,
3328
3357
  :vpc,
3329
3358
  :anywhere_settings,
3330
- :channel_engine_version)
3359
+ :channel_engine_version,
3360
+ :linked_channel_settings)
3331
3361
  SENSITIVE = []
3332
3362
  include Aws::Structure
3333
3363
  end
@@ -10592,11 +10622,21 @@ module Aws::MediaLive
10592
10622
 
10593
10623
  # Pipeline Locking Settings
10594
10624
  #
10595
- # @api private
10625
+ # @!attribute [rw] pipeline_locking_method
10626
+ # The method to use to lock the video frames in the pipelines.
10627
+ # sourceTimecode (default): Use the timecode in the source.
10628
+ # videoAlignment: Lock frames that the encoder identifies as having
10629
+ # matching content. If videoAlignment is selected, existing timecodes
10630
+ # will not be used for any locking decisions.
10631
+ # @return [String]
10596
10632
  #
10597
10633
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PipelineLockingSettings AWS API Documentation
10598
10634
  #
10599
- class PipelineLockingSettings < Aws::EmptyStructure; end
10635
+ class PipelineLockingSettings < Struct.new(
10636
+ :pipeline_locking_method)
10637
+ SENSITIVE = []
10638
+ include Aws::Structure
10639
+ end
10600
10640
 
10601
10641
  # Settings for pausing a pipeline.
10602
10642
  #
@@ -11765,6 +11805,10 @@ module Aws::MediaLive
11765
11805
  # @!attribute [rw] channel_engine_version
11766
11806
  # @return [Types::ChannelEngineVersionResponse]
11767
11807
  #
11808
+ # @!attribute [rw] linked_channel_settings
11809
+ # Linked channel configuration details
11810
+ # @return [Types::DescribeLinkedChannelSettings]
11811
+ #
11768
11812
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannelResponse AWS API Documentation
11769
11813
  #
11770
11814
  class StartChannelResponse < Struct.new(
@@ -11787,7 +11831,8 @@ module Aws::MediaLive
11787
11831
  :tags,
11788
11832
  :vpc,
11789
11833
  :anywhere_settings,
11790
- :channel_engine_version)
11834
+ :channel_engine_version,
11835
+ :linked_channel_settings)
11791
11836
  SENSITIVE = []
11792
11837
  include Aws::Structure
11793
11838
  end
@@ -12212,6 +12257,10 @@ module Aws::MediaLive
12212
12257
  # @!attribute [rw] channel_engine_version
12213
12258
  # @return [Types::ChannelEngineVersionResponse]
12214
12259
  #
12260
+ # @!attribute [rw] linked_channel_settings
12261
+ # Linked channel configuration details
12262
+ # @return [Types::DescribeLinkedChannelSettings]
12263
+ #
12215
12264
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannelResponse AWS API Documentation
12216
12265
  #
12217
12266
  class StopChannelResponse < Struct.new(
@@ -12234,7 +12283,8 @@ module Aws::MediaLive
12234
12283
  :tags,
12235
12284
  :vpc,
12236
12285
  :anywhere_settings,
12237
- :channel_engine_version)
12286
+ :channel_engine_version,
12287
+ :linked_channel_settings)
12238
12288
  SENSITIVE = []
12239
12289
  include Aws::Structure
12240
12290
  end
@@ -12840,6 +12890,10 @@ module Aws::MediaLive
12840
12890
  # The Elemental Anywhere settings for this channel.
12841
12891
  # @return [Types::AnywhereSettings]
12842
12892
  #
12893
+ # @!attribute [rw] linked_channel_settings
12894
+ # The linked channel settings for the channel.
12895
+ # @return [Types::LinkedChannelSettings]
12896
+ #
12843
12897
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
12844
12898
  #
12845
12899
  class UpdateChannel < Struct.new(
@@ -12854,7 +12908,8 @@ module Aws::MediaLive
12854
12908
  :role_arn,
12855
12909
  :channel_engine_version,
12856
12910
  :dry_run,
12857
- :anywhere_settings)
12911
+ :anywhere_settings,
12912
+ :linked_channel_settings)
12858
12913
  SENSITIVE = []
12859
12914
  include Aws::Structure
12860
12915
  end
@@ -12950,6 +13005,10 @@ module Aws::MediaLive
12950
13005
  # Elemental anywhere settings
12951
13006
  # @return [Types::AnywhereSettings]
12952
13007
  #
13008
+ # @!attribute [rw] linked_channel_settings
13009
+ # Configuration for linked channel relationships
13010
+ # @return [Types::LinkedChannelSettings]
13011
+ #
12953
13012
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
12954
13013
  #
12955
13014
  class UpdateChannelRequest < Struct.new(
@@ -12965,7 +13024,8 @@ module Aws::MediaLive
12965
13024
  :role_arn,
12966
13025
  :channel_engine_version,
12967
13026
  :dry_run,
12968
- :anywhere_settings)
13027
+ :anywhere_settings,
13028
+ :linked_channel_settings)
12969
13029
  SENSITIVE = []
12970
13030
  include Aws::Structure
12971
13031
  end
@@ -14045,6 +14105,10 @@ module Aws::MediaLive
14045
14105
  # @!attribute [rw] channel_engine_version
14046
14106
  # @return [Types::ChannelEngineVersionResponse]
14047
14107
  #
14108
+ # @!attribute [rw] linked_channel_settings
14109
+ # Linked channel configuration details
14110
+ # @return [Types::DescribeLinkedChannelSettings]
14111
+ #
14048
14112
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelinesResponse AWS API Documentation
14049
14113
  #
14050
14114
  class RestartChannelPipelinesResponse < Struct.new(
@@ -14068,7 +14132,8 @@ module Aws::MediaLive
14068
14132
  :tags,
14069
14133
  :vpc,
14070
14134
  :anywhere_settings,
14071
- :channel_engine_version)
14135
+ :channel_engine_version,
14136
+ :linked_channel_settings)
14072
14137
  SENSITIVE = []
14073
14138
  include Aws::Structure
14074
14139
  end
@@ -22418,6 +22483,115 @@ module Aws::MediaLive
22418
22483
  include Aws::Structure
22419
22484
  end
22420
22485
 
22486
+ # Details of a follower channel in a linked pair
22487
+ #
22488
+ # @!attribute [rw] linked_channel_type
22489
+ # Specifies this as a follower channel
22490
+ # @return [String]
22491
+ #
22492
+ # @!attribute [rw] primary_channel_arn
22493
+ # The ARN of the primary channel this channel follows
22494
+ # @return [String]
22495
+ #
22496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeFollowerChannelSettings AWS API Documentation
22497
+ #
22498
+ class DescribeFollowerChannelSettings < Struct.new(
22499
+ :linked_channel_type,
22500
+ :primary_channel_arn)
22501
+ SENSITIVE = []
22502
+ include Aws::Structure
22503
+ end
22504
+
22505
+ # Linked channel configuration details
22506
+ #
22507
+ # @!attribute [rw] follower_channel_settings
22508
+ # Details of a follower channel in a linked pair
22509
+ # @return [Types::DescribeFollowerChannelSettings]
22510
+ #
22511
+ # @!attribute [rw] primary_channel_settings
22512
+ # Details of a primary (leader) channel in a linked pair
22513
+ # @return [Types::DescribePrimaryChannelSettings]
22514
+ #
22515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeLinkedChannelSettings AWS API Documentation
22516
+ #
22517
+ class DescribeLinkedChannelSettings < Struct.new(
22518
+ :follower_channel_settings,
22519
+ :primary_channel_settings)
22520
+ SENSITIVE = []
22521
+ include Aws::Structure
22522
+ end
22523
+
22524
+ # Details of a primary (leader) channel in a linked pair
22525
+ #
22526
+ # @!attribute [rw] following_channel_arns
22527
+ # The ARNs of the following channels for this primary channel
22528
+ # @return [Array<String>]
22529
+ #
22530
+ # @!attribute [rw] linked_channel_type
22531
+ # Specifies this as a primary channel
22532
+ # @return [String]
22533
+ #
22534
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribePrimaryChannelSettings AWS API Documentation
22535
+ #
22536
+ class DescribePrimaryChannelSettings < Struct.new(
22537
+ :following_channel_arns,
22538
+ :linked_channel_type)
22539
+ SENSITIVE = []
22540
+ include Aws::Structure
22541
+ end
22542
+
22543
+ # Settings for a follower channel in a linked pair
22544
+ #
22545
+ # @!attribute [rw] linked_channel_type
22546
+ # Specifies this as a follower channel
22547
+ # @return [String]
22548
+ #
22549
+ # @!attribute [rw] primary_channel_arn
22550
+ # The ARN of the primary channel to follow
22551
+ # @return [String]
22552
+ #
22553
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FollowerChannelSettings AWS API Documentation
22554
+ #
22555
+ class FollowerChannelSettings < Struct.new(
22556
+ :linked_channel_type,
22557
+ :primary_channel_arn)
22558
+ SENSITIVE = []
22559
+ include Aws::Structure
22560
+ end
22561
+
22562
+ # Configuration for linked channel relationships
22563
+ #
22564
+ # @!attribute [rw] follower_channel_settings
22565
+ # Settings for a follower channel in a linked pair
22566
+ # @return [Types::FollowerChannelSettings]
22567
+ #
22568
+ # @!attribute [rw] primary_channel_settings
22569
+ # Settings for a primary (leader) channel in a linked pair
22570
+ # @return [Types::PrimaryChannelSettings]
22571
+ #
22572
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/LinkedChannelSettings AWS API Documentation
22573
+ #
22574
+ class LinkedChannelSettings < Struct.new(
22575
+ :follower_channel_settings,
22576
+ :primary_channel_settings)
22577
+ SENSITIVE = []
22578
+ include Aws::Structure
22579
+ end
22580
+
22581
+ # Settings for a primary (leader) channel in a linked pair
22582
+ #
22583
+ # @!attribute [rw] linked_channel_type
22584
+ # Specifies this as a primary channel
22585
+ # @return [String]
22586
+ #
22587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PrimaryChannelSettings AWS API Documentation
22588
+ #
22589
+ class PrimaryChannelSettings < Struct.new(
22590
+ :linked_channel_type)
22591
+ SENSITIVE = []
22592
+ include Aws::Structure
22593
+ end
22594
+
22421
22595
  end
22422
22596
  end
22423
22597
 
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.169.0'
58
+ GEM_VERSION = '1.171.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -634,6 +634,7 @@ module Aws
634
634
  jam_sync_time: ::String?
635
635
  }?,
636
636
  pipeline_locking_settings: {
637
+ pipeline_locking_method: ("SOURCE_TIMECODE" | "VIDEO_ALIGNMENT")?
637
638
  }?
638
639
  }?
639
640
  }?,
@@ -1597,7 +1598,16 @@ module Aws
1597
1598
  ?channel_engine_version: {
1598
1599
  version: ::String?
1599
1600
  },
1600
- ?dry_run: bool
1601
+ ?dry_run: bool,
1602
+ ?linked_channel_settings: {
1603
+ follower_channel_settings: {
1604
+ linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")?,
1605
+ primary_channel_arn: ::String?
1606
+ }?,
1607
+ primary_channel_settings: {
1608
+ linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")?
1609
+ }?
1610
+ }
1601
1611
  ) -> _CreateChannelResponseSuccess
1602
1612
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
1603
1613
 
@@ -1810,6 +1820,7 @@ module Aws
1810
1820
  def vpc: () -> Types::VpcOutputSettingsDescription
1811
1821
  def anywhere_settings: () -> Types::DescribeAnywhereSettings
1812
1822
  def channel_engine_version: () -> Types::ChannelEngineVersionResponse
1823
+ def linked_channel_settings: () -> Types::DescribeLinkedChannelSettings
1813
1824
  end
1814
1825
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_channel-instance_method
1815
1826
  def delete_channel: (
@@ -1944,6 +1955,7 @@ module Aws
1944
1955
  def vpc: () -> Types::VpcOutputSettingsDescription
1945
1956
  def anywhere_settings: () -> Types::DescribeAnywhereSettings
1946
1957
  def channel_engine_version: () -> Types::ChannelEngineVersionResponse
1958
+ def linked_channel_settings: () -> Types::DescribeLinkedChannelSettings
1947
1959
  end
1948
1960
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_channel-instance_method
1949
1961
  def describe_channel: (
@@ -2342,6 +2354,7 @@ module Aws
2342
2354
  def vpc: () -> Types::VpcOutputSettingsDescription
2343
2355
  def anywhere_settings: () -> Types::DescribeAnywhereSettings
2344
2356
  def channel_engine_version: () -> Types::ChannelEngineVersionResponse
2357
+ def linked_channel_settings: () -> Types::DescribeLinkedChannelSettings
2345
2358
  end
2346
2359
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_channel-instance_method
2347
2360
  def start_channel: (
@@ -2408,6 +2421,7 @@ module Aws
2408
2421
  def vpc: () -> Types::VpcOutputSettingsDescription
2409
2422
  def anywhere_settings: () -> Types::DescribeAnywhereSettings
2410
2423
  def channel_engine_version: () -> Types::ChannelEngineVersionResponse
2424
+ def linked_channel_settings: () -> Types::DescribeLinkedChannelSettings
2411
2425
  end
2412
2426
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#stop_channel-instance_method
2413
2427
  def stop_channel: (
@@ -2788,6 +2802,7 @@ module Aws
2788
2802
  jam_sync_time: ::String?
2789
2803
  }?,
2790
2804
  pipeline_locking_settings: {
2805
+ pipeline_locking_method: ("SOURCE_TIMECODE" | "VIDEO_ALIGNMENT")?
2791
2806
  }?
2792
2807
  }?
2793
2808
  }?,
@@ -3744,6 +3759,15 @@ module Aws
3744
3759
  ?anywhere_settings: {
3745
3760
  channel_placement_group_id: ::String?,
3746
3761
  cluster_id: ::String?
3762
+ },
3763
+ ?linked_channel_settings: {
3764
+ follower_channel_settings: {
3765
+ linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")?,
3766
+ primary_channel_arn: ::String?
3767
+ }?,
3768
+ primary_channel_settings: {
3769
+ linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")?
3770
+ }?
3747
3771
  }
3748
3772
  ) -> _UpdateChannelResponseSuccess
3749
3773
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
@@ -4066,6 +4090,7 @@ module Aws
4066
4090
  def vpc: () -> Types::VpcOutputSettingsDescription
4067
4091
  def anywhere_settings: () -> Types::DescribeAnywhereSettings
4068
4092
  def channel_engine_version: () -> Types::ChannelEngineVersionResponse
4093
+ def linked_channel_settings: () -> Types::DescribeLinkedChannelSettings
4069
4094
  end
4070
4095
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#restart_channel_pipelines-instance_method
4071
4096
  def restart_channel_pipelines: (
data/sig/types.rbs CHANGED
@@ -493,6 +493,7 @@ module Aws::MediaLive
493
493
  attr_accessor vpc: Types::VpcOutputSettingsDescription
494
494
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
495
495
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
496
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
496
497
  SENSITIVE: []
497
498
  end
498
499
 
@@ -527,6 +528,7 @@ module Aws::MediaLive
527
528
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
528
529
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
529
530
  attr_accessor used_channel_engine_versions: ::Array[Types::ChannelEngineVersionResponse]
531
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
530
532
  SENSITIVE: []
531
533
  end
532
534
 
@@ -576,6 +578,7 @@ module Aws::MediaLive
576
578
  attr_accessor anywhere_settings: Types::AnywhereSettings
577
579
  attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
578
580
  attr_accessor dry_run: bool
581
+ attr_accessor linked_channel_settings: Types::LinkedChannelSettings
579
582
  SENSITIVE: []
580
583
  end
581
584
 
@@ -597,6 +600,7 @@ module Aws::MediaLive
597
600
  attr_accessor anywhere_settings: Types::AnywhereSettings
598
601
  attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
599
602
  attr_accessor dry_run: bool
603
+ attr_accessor linked_channel_settings: Types::LinkedChannelSettings
600
604
  SENSITIVE: []
601
605
  end
602
606
 
@@ -786,6 +790,7 @@ module Aws::MediaLive
786
790
  attr_accessor vpc: Types::VpcOutputSettingsDescription
787
791
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
788
792
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
793
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
789
794
  SENSITIVE: []
790
795
  end
791
796
 
@@ -920,6 +925,7 @@ module Aws::MediaLive
920
925
  attr_accessor vpc: Types::VpcOutputSettingsDescription
921
926
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
922
927
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
928
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
923
929
  SENSITIVE: []
924
930
  end
925
931
 
@@ -2639,7 +2645,9 @@ module Aws::MediaLive
2639
2645
  SENSITIVE: []
2640
2646
  end
2641
2647
 
2642
- class PipelineLockingSettings < Aws::EmptyStructure
2648
+ class PipelineLockingSettings
2649
+ attr_accessor pipeline_locking_method: ("SOURCE_TIMECODE" | "VIDEO_ALIGNMENT")
2650
+ SENSITIVE: []
2643
2651
  end
2644
2652
 
2645
2653
  class PipelinePauseStateSettings
@@ -2956,6 +2964,7 @@ module Aws::MediaLive
2956
2964
  attr_accessor vpc: Types::VpcOutputSettingsDescription
2957
2965
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
2958
2966
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
2967
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
2959
2968
  SENSITIVE: []
2960
2969
  end
2961
2970
 
@@ -3073,6 +3082,7 @@ module Aws::MediaLive
3073
3082
  attr_accessor vpc: Types::VpcOutputSettingsDescription
3074
3083
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
3075
3084
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
3085
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
3076
3086
  SENSITIVE: []
3077
3087
  end
3078
3088
 
@@ -3264,6 +3274,7 @@ module Aws::MediaLive
3264
3274
  attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
3265
3275
  attr_accessor dry_run: bool
3266
3276
  attr_accessor anywhere_settings: Types::AnywhereSettings
3277
+ attr_accessor linked_channel_settings: Types::LinkedChannelSettings
3267
3278
  SENSITIVE: []
3268
3279
  end
3269
3280
 
@@ -3299,6 +3310,7 @@ module Aws::MediaLive
3299
3310
  attr_accessor channel_engine_version: Types::ChannelEngineVersionRequest
3300
3311
  attr_accessor dry_run: bool
3301
3312
  attr_accessor anywhere_settings: Types::AnywhereSettings
3313
+ attr_accessor linked_channel_settings: Types::LinkedChannelSettings
3302
3314
  SENSITIVE: []
3303
3315
  end
3304
3316
 
@@ -3607,6 +3619,7 @@ module Aws::MediaLive
3607
3619
  attr_accessor vpc: Types::VpcOutputSettingsDescription
3608
3620
  attr_accessor anywhere_settings: Types::DescribeAnywhereSettings
3609
3621
  attr_accessor channel_engine_version: Types::ChannelEngineVersionResponse
3622
+ attr_accessor linked_channel_settings: Types::DescribeLinkedChannelSettings
3610
3623
  SENSITIVE: []
3611
3624
  end
3612
3625
 
@@ -5832,5 +5845,40 @@ module Aws::MediaLive
5832
5845
  attr_accessor router_arn: ::String
5833
5846
  SENSITIVE: []
5834
5847
  end
5848
+
5849
+ class DescribeFollowerChannelSettings
5850
+ attr_accessor linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")
5851
+ attr_accessor primary_channel_arn: ::String
5852
+ SENSITIVE: []
5853
+ end
5854
+
5855
+ class DescribeLinkedChannelSettings
5856
+ attr_accessor follower_channel_settings: Types::DescribeFollowerChannelSettings
5857
+ attr_accessor primary_channel_settings: Types::DescribePrimaryChannelSettings
5858
+ SENSITIVE: []
5859
+ end
5860
+
5861
+ class DescribePrimaryChannelSettings
5862
+ attr_accessor following_channel_arns: ::Array[::String]
5863
+ attr_accessor linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")
5864
+ SENSITIVE: []
5865
+ end
5866
+
5867
+ class FollowerChannelSettings
5868
+ attr_accessor linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")
5869
+ attr_accessor primary_channel_arn: ::String
5870
+ SENSITIVE: []
5871
+ end
5872
+
5873
+ class LinkedChannelSettings
5874
+ attr_accessor follower_channel_settings: Types::FollowerChannelSettings
5875
+ attr_accessor primary_channel_settings: Types::PrimaryChannelSettings
5876
+ SENSITIVE: []
5877
+ end
5878
+
5879
+ class PrimaryChannelSettings
5880
+ attr_accessor linked_channel_type: ("FOLLOWING_CHANNEL" | "PRIMARY_CHANNEL")
5881
+ SENSITIVE: []
5882
+ end
5835
5883
  end
5836
5884
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.169.0
4
+ version: 1.171.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement