aws-sdk-medialive 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7560732c6b2d457816e79ae799ed63e4c83baa2c
4
- data.tar.gz: 94cd77ecf989c89a20b16040d1a0a2fc39be7d21
3
+ metadata.gz: befcfef02048ba605cbbc5361099f43db3cc6351
4
+ data.tar.gz: e6b6f64300228a1e27787fe65df75a8e11912045
5
5
  SHA512:
6
- metadata.gz: 1dd0027599c5a3b13c6a5f7e6fc6de91fd24543e2bb584ae994b11dab53bed374c1583b60b08c4e24e03c42b0a012bbc9d385356f1f6f62b5972c86197ae7edb
7
- data.tar.gz: 76092715ac0fcc3bbc55c7bac936a37ea521dd6463bdbe2c82ef2fd5000c75e60b7e937aeab0655e5c9975312539cf6503f8deb975f77c12dab3a2c70834583e
6
+ metadata.gz: 8b7a9f2eb10ac86b0ba9d827d6f6f5ac378a3939c5e8bc079290f96b8adae5b8cee38d6af139d381c6f3d6dedabb0a8cd26101ca7d1933243cbfd09d4b9dcc88
7
+ data.tar.gz: cf5a0b55778b6ea22100eb1973d5ed3fff5d9c61c48dfec23d255fb110bc6c68307e88e28ec2eaf9e716b3baa866c3253ae0b91c83a009eed65ec0a11b7cf5fe
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-medialive/customizations'
42
42
  # @service
43
43
  module Aws::MediaLive
44
44
 
45
- GEM_VERSION = '1.26.0'
45
+ GEM_VERSION = '1.27.0'
46
46
 
47
47
  end
@@ -199,6 +199,49 @@ module Aws::MediaLive
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -412,6 +455,7 @@ module Aws::MediaLive
412
455
  # @option params [Array<Types::OutputDestination>] :destinations
413
456
  #
414
457
  # @option params [Types::EncoderSettings] :encoder_settings
458
+ # Encoder Settings
415
459
  #
416
460
  # @option params [Array<Types::InputAttachment>] :input_attachments
417
461
  #
@@ -668,6 +712,7 @@ module Aws::MediaLive
668
712
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
669
713
  # repeat_frame_msec: 1,
670
714
  # },
715
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
671
716
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
672
717
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
673
718
  # },
@@ -1309,6 +1354,7 @@ module Aws::MediaLive
1309
1354
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
1310
1355
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
1311
1356
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
1357
+ # resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
1312
1358
  # resp.channel.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
1313
1359
  # resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
1314
1360
  # resp.channel.encoder_settings.output_groups #=> Array
@@ -1999,6 +2045,7 @@ module Aws::MediaLive
1999
2045
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
2000
2046
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
2001
2047
  # resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
2048
+ # resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
2002
2049
  # resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
2003
2050
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
2004
2051
  # resp.encoder_settings.output_groups #=> Array
@@ -2647,6 +2694,7 @@ module Aws::MediaLive
2647
2694
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
2648
2695
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
2649
2696
  # resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
2697
+ # resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
2650
2698
  # resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
2651
2699
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
2652
2700
  # resp.encoder_settings.output_groups #=> Array
@@ -3884,6 +3932,7 @@ module Aws::MediaLive
3884
3932
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
3885
3933
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
3886
3934
  # resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
3935
+ # resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
3887
3936
  # resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
3888
3937
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
3889
3938
  # resp.encoder_settings.output_groups #=> Array
@@ -4401,6 +4450,7 @@ module Aws::MediaLive
4401
4450
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
4402
4451
  # resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
4403
4452
  # resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
4453
+ # resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
4404
4454
  # resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
4405
4455
  # resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
4406
4456
  # resp.encoder_settings.output_groups #=> Array
@@ -4756,6 +4806,7 @@ module Aws::MediaLive
4756
4806
  # @option params [Array<Types::OutputDestination>] :destinations
4757
4807
  #
4758
4808
  # @option params [Types::EncoderSettings] :encoder_settings
4809
+ # Encoder Settings
4759
4810
  #
4760
4811
  # @option params [Array<Types::InputAttachment>] :input_attachments
4761
4812
  #
@@ -5005,6 +5056,7 @@ module Aws::MediaLive
5005
5056
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
5006
5057
  # repeat_frame_msec: 1,
5007
5058
  # },
5059
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
5008
5060
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
5009
5061
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
5010
5062
  # },
@@ -5641,6 +5693,7 @@ module Aws::MediaLive
5641
5693
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
5642
5694
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
5643
5695
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
5696
+ # resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
5644
5697
  # resp.channel.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
5645
5698
  # resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
5646
5699
  # resp.channel.encoder_settings.output_groups #=> Array
@@ -6131,7 +6184,7 @@ module Aws::MediaLive
6131
6184
  params: params,
6132
6185
  config: config)
6133
6186
  context[:gem_name] = 'aws-sdk-medialive'
6134
- context[:gem_version] = '1.26.0'
6187
+ context[:gem_version] = '1.27.0'
6135
6188
  Seahorse::Client::Request.new(handlers, context)
6136
6189
  end
6137
6190
 
@@ -164,6 +164,7 @@ module Aws::MediaLive
164
164
  GlobalConfiguration = Shapes::StructureShape.new(name: 'GlobalConfiguration')
165
165
  GlobalConfigurationInputEndAction = Shapes::StringShape.new(name: 'GlobalConfigurationInputEndAction')
166
166
  GlobalConfigurationLowFramerateInputs = Shapes::StringShape.new(name: 'GlobalConfigurationLowFramerateInputs')
167
+ GlobalConfigurationOutputLockingMode = Shapes::StringShape.new(name: 'GlobalConfigurationOutputLockingMode')
167
168
  GlobalConfigurationOutputTimingSource = Shapes::StringShape.new(name: 'GlobalConfigurationOutputTimingSource')
168
169
  H264AdaptiveQuantization = Shapes::StringShape.new(name: 'H264AdaptiveQuantization')
169
170
  H264ColorMetadata = Shapes::StringShape.new(name: 'H264ColorMetadata')
@@ -1073,6 +1074,7 @@ module Aws::MediaLive
1073
1074
  GlobalConfiguration.add_member(:initial_audio_gain, Shapes::ShapeRef.new(shape: __integerMinNegative60Max60, location_name: "initialAudioGain"))
1074
1075
  GlobalConfiguration.add_member(:input_end_action, Shapes::ShapeRef.new(shape: GlobalConfigurationInputEndAction, location_name: "inputEndAction"))
1075
1076
  GlobalConfiguration.add_member(:input_loss_behavior, Shapes::ShapeRef.new(shape: InputLossBehavior, location_name: "inputLossBehavior"))
1077
+ GlobalConfiguration.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: GlobalConfigurationOutputLockingMode, location_name: "outputLockingMode"))
1076
1078
  GlobalConfiguration.add_member(:output_timing_source, Shapes::ShapeRef.new(shape: GlobalConfigurationOutputTimingSource, location_name: "outputTimingSource"))
1077
1079
  GlobalConfiguration.add_member(:support_low_framerate_inputs, Shapes::ShapeRef.new(shape: GlobalConfigurationLowFramerateInputs, location_name: "supportLowFramerateInputs"))
1078
1080
  GlobalConfiguration.struct_class = Types::GlobalConfiguration
@@ -8,6 +8,8 @@
8
8
  module Aws::MediaLive
9
9
  module Types
10
10
 
11
+ # Aac Settings
12
+ #
11
13
  # @note When making an API call, you may pass AacSettings
12
14
  # data as a hash:
13
15
  #
@@ -89,6 +91,8 @@ module Aws::MediaLive
89
91
  include Aws::Structure
90
92
  end
91
93
 
94
+ # Ac3 Settings
95
+ #
92
96
  # @note When making an API call, you may pass Ac3Settings
93
97
  # data as a hash:
94
98
  #
@@ -161,6 +165,8 @@ module Aws::MediaLive
161
165
  include Aws::Structure
162
166
  end
163
167
 
168
+ # Archive Container Settings
169
+ #
164
170
  # @note When making an API call, you may pass ArchiveContainerSettings
165
171
  # data as a hash:
166
172
  #
@@ -227,6 +233,7 @@ module Aws::MediaLive
227
233
  # }
228
234
  #
229
235
  # @!attribute [rw] m2ts_settings
236
+ # M2ts Settings
230
237
  # @return [Types::M2tsSettings]
231
238
  #
232
239
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings AWS API Documentation
@@ -236,6 +243,8 @@ module Aws::MediaLive
236
243
  include Aws::Structure
237
244
  end
238
245
 
246
+ # Archive Group Settings
247
+ #
239
248
  # @note When making an API call, you may pass ArchiveGroupSettings
240
249
  # data as a hash:
241
250
  #
@@ -263,6 +272,8 @@ module Aws::MediaLive
263
272
  include Aws::Structure
264
273
  end
265
274
 
275
+ # Archive Output Settings
276
+ #
266
277
  # @note When making an API call, you may pass ArchiveOutputSettings
267
278
  # data as a hash:
268
279
  #
@@ -355,18 +366,24 @@ module Aws::MediaLive
355
366
  include Aws::Structure
356
367
  end
357
368
 
369
+ # Arib Destination Settings
370
+ #
358
371
  # @api private
359
372
  #
360
373
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AribDestinationSettings AWS API Documentation
361
374
  #
362
375
  class AribDestinationSettings < Aws::EmptyStructure; end
363
376
 
377
+ # Arib Source Settings
378
+ #
364
379
  # @api private
365
380
  #
366
381
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AribSourceSettings AWS API Documentation
367
382
  #
368
383
  class AribSourceSettings < Aws::EmptyStructure; end
369
384
 
385
+ # Audio Channel Mapping
386
+ #
370
387
  # @note When making an API call, you may pass AudioChannelMapping
371
388
  # data as a hash:
372
389
  #
@@ -397,6 +414,8 @@ module Aws::MediaLive
397
414
  include Aws::Structure
398
415
  end
399
416
 
417
+ # Audio Codec Settings
418
+ #
400
419
  # @note When making an API call, you may pass AudioCodecSettings
401
420
  # data as a hash:
402
421
  #
@@ -453,18 +472,23 @@ module Aws::MediaLive
453
472
  # }
454
473
  #
455
474
  # @!attribute [rw] aac_settings
475
+ # Aac Settings
456
476
  # @return [Types::AacSettings]
457
477
  #
458
478
  # @!attribute [rw] ac_3_settings
479
+ # Ac3 Settings
459
480
  # @return [Types::Ac3Settings]
460
481
  #
461
482
  # @!attribute [rw] eac_3_settings
483
+ # Eac3 Settings
462
484
  # @return [Types::Eac3Settings]
463
485
  #
464
486
  # @!attribute [rw] mp_2_settings
487
+ # Mp2 Settings
465
488
  # @return [Types::Mp2Settings]
466
489
  #
467
490
  # @!attribute [rw] pass_through_settings
491
+ # Pass Through Settings
468
492
  # @return [Types::PassThroughSettings]
469
493
  #
470
494
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings AWS API Documentation
@@ -478,6 +502,8 @@ module Aws::MediaLive
478
502
  include Aws::Structure
479
503
  end
480
504
 
505
+ # Audio Description
506
+ #
481
507
  # @note When making an API call, you may pass AudioDescription
482
508
  # data as a hash:
483
509
  #
@@ -635,6 +661,8 @@ module Aws::MediaLive
635
661
  include Aws::Structure
636
662
  end
637
663
 
664
+ # Audio Language Selection
665
+ #
638
666
  # @note When making an API call, you may pass AudioLanguageSelection
639
667
  # data as a hash:
640
668
  #
@@ -666,6 +694,8 @@ module Aws::MediaLive
666
694
  include Aws::Structure
667
695
  end
668
696
 
697
+ # Audio Normalization Settings
698
+ #
669
699
  # @note When making an API call, you may pass AudioNormalizationSettings
670
700
  # data as a hash:
671
701
  #
@@ -702,6 +732,8 @@ module Aws::MediaLive
702
732
  include Aws::Structure
703
733
  end
704
734
 
735
+ # Audio Only Hls Settings
736
+ #
705
737
  # @note When making an API call, you may pass AudioOnlyHlsSettings
706
738
  # data as a hash:
707
739
  #
@@ -754,6 +786,8 @@ module Aws::MediaLive
754
786
  include Aws::Structure
755
787
  end
756
788
 
789
+ # Audio Pid Selection
790
+ #
757
791
  # @note When making an API call, you may pass AudioPidSelection
758
792
  # data as a hash:
759
793
  #
@@ -772,6 +806,8 @@ module Aws::MediaLive
772
806
  include Aws::Structure
773
807
  end
774
808
 
809
+ # Audio Selector
810
+ #
775
811
  # @note When making an API call, you may pass AudioSelector
776
812
  # data as a hash:
777
813
  #
@@ -806,6 +842,8 @@ module Aws::MediaLive
806
842
  include Aws::Structure
807
843
  end
808
844
 
845
+ # Audio Selector Settings
846
+ #
809
847
  # @note When making an API call, you may pass AudioSelectorSettings
810
848
  # data as a hash:
811
849
  #
@@ -820,9 +858,11 @@ module Aws::MediaLive
820
858
  # }
821
859
  #
822
860
  # @!attribute [rw] audio_language_selection
861
+ # Audio Language Selection
823
862
  # @return [Types::AudioLanguageSelection]
824
863
  #
825
864
  # @!attribute [rw] audio_pid_selection
865
+ # Audio Pid Selection
826
866
  # @return [Types::AudioPidSelection]
827
867
  #
828
868
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelectorSettings AWS API Documentation
@@ -833,6 +873,8 @@ module Aws::MediaLive
833
873
  include Aws::Structure
834
874
  end
835
875
 
876
+ # Avail Blanking
877
+ #
836
878
  # @note When making an API call, you may pass AvailBlanking
837
879
  # data as a hash:
838
880
  #
@@ -863,6 +905,8 @@ module Aws::MediaLive
863
905
  include Aws::Structure
864
906
  end
865
907
 
908
+ # Avail Configuration
909
+ #
866
910
  # @note When making an API call, you may pass AvailConfiguration
867
911
  # data as a hash:
868
912
  #
@@ -892,6 +936,8 @@ module Aws::MediaLive
892
936
  include Aws::Structure
893
937
  end
894
938
 
939
+ # Avail Settings
940
+ #
895
941
  # @note When making an API call, you may pass AvailSettings
896
942
  # data as a hash:
897
943
  #
@@ -909,9 +955,11 @@ module Aws::MediaLive
909
955
  # }
910
956
  #
911
957
  # @!attribute [rw] scte_35_splice_insert
958
+ # Scte35 Splice Insert
912
959
  # @return [Types::Scte35SpliceInsert]
913
960
  #
914
961
  # @!attribute [rw] scte_35_time_signal_apos
962
+ # Scte35 Time Signal Apos
915
963
  # @return [Types::Scte35TimeSignalApos]
916
964
  #
917
965
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AvailSettings AWS API Documentation
@@ -1222,6 +1270,8 @@ module Aws::MediaLive
1222
1270
  include Aws::Structure
1223
1271
  end
1224
1272
 
1273
+ # Blackout Slate
1274
+ #
1225
1275
  # @note When making an API call, you may pass BlackoutSlate
1226
1276
  # data as a hash:
1227
1277
  #
@@ -1282,6 +1332,8 @@ module Aws::MediaLive
1282
1332
  include Aws::Structure
1283
1333
  end
1284
1334
 
1335
+ # Burn In Destination Settings
1336
+ #
1285
1337
  # @note When making an API call, you may pass BurnInDestinationSettings
1286
1338
  # data as a hash:
1287
1339
  #
@@ -1569,6 +1621,8 @@ module Aws::MediaLive
1569
1621
  include Aws::Structure
1570
1622
  end
1571
1623
 
1624
+ # Caption Destination Settings
1625
+ #
1572
1626
  # @note When making an API call, you may pass CaptionDestinationSettings
1573
1627
  # data as a hash:
1574
1628
  #
@@ -1643,39 +1697,51 @@ module Aws::MediaLive
1643
1697
  # }
1644
1698
  #
1645
1699
  # @!attribute [rw] arib_destination_settings
1700
+ # Arib Destination Settings
1646
1701
  # @return [Types::AribDestinationSettings]
1647
1702
  #
1648
1703
  # @!attribute [rw] burn_in_destination_settings
1704
+ # Burn In Destination Settings
1649
1705
  # @return [Types::BurnInDestinationSettings]
1650
1706
  #
1651
1707
  # @!attribute [rw] dvb_sub_destination_settings
1708
+ # Dvb Sub Destination Settings
1652
1709
  # @return [Types::DvbSubDestinationSettings]
1653
1710
  #
1654
1711
  # @!attribute [rw] embedded_destination_settings
1712
+ # Embedded Destination Settings
1655
1713
  # @return [Types::EmbeddedDestinationSettings]
1656
1714
  #
1657
1715
  # @!attribute [rw] embedded_plus_scte_20_destination_settings
1716
+ # Embedded Plus Scte20 Destination Settings
1658
1717
  # @return [Types::EmbeddedPlusScte20DestinationSettings]
1659
1718
  #
1660
1719
  # @!attribute [rw] rtmp_caption_info_destination_settings
1720
+ # Rtmp Caption Info Destination Settings
1661
1721
  # @return [Types::RtmpCaptionInfoDestinationSettings]
1662
1722
  #
1663
1723
  # @!attribute [rw] scte_20_plus_embedded_destination_settings
1724
+ # Scte20 Plus Embedded Destination Settings
1664
1725
  # @return [Types::Scte20PlusEmbeddedDestinationSettings]
1665
1726
  #
1666
1727
  # @!attribute [rw] scte_27_destination_settings
1728
+ # Scte27 Destination Settings
1667
1729
  # @return [Types::Scte27DestinationSettings]
1668
1730
  #
1669
1731
  # @!attribute [rw] smpte_tt_destination_settings
1732
+ # Smpte Tt Destination Settings
1670
1733
  # @return [Types::SmpteTtDestinationSettings]
1671
1734
  #
1672
1735
  # @!attribute [rw] teletext_destination_settings
1736
+ # Teletext Destination Settings
1673
1737
  # @return [Types::TeletextDestinationSettings]
1674
1738
  #
1675
1739
  # @!attribute [rw] ttml_destination_settings
1740
+ # Ttml Destination Settings
1676
1741
  # @return [Types::TtmlDestinationSettings]
1677
1742
  #
1678
1743
  # @!attribute [rw] webvtt_destination_settings
1744
+ # Webvtt Destination Settings
1679
1745
  # @return [Types::WebvttDestinationSettings]
1680
1746
  #
1681
1747
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionDestinationSettings AWS API Documentation
@@ -1790,6 +1856,8 @@ module Aws::MediaLive
1790
1856
  include Aws::Structure
1791
1857
  end
1792
1858
 
1859
+ # Caption Selector Settings
1860
+ #
1793
1861
  # @note When making an API call, you may pass CaptionSelectorSettings
1794
1862
  # data as a hash:
1795
1863
  #
@@ -1818,21 +1886,27 @@ module Aws::MediaLive
1818
1886
  # }
1819
1887
  #
1820
1888
  # @!attribute [rw] arib_source_settings
1889
+ # Arib Source Settings
1821
1890
  # @return [Types::AribSourceSettings]
1822
1891
  #
1823
1892
  # @!attribute [rw] dvb_sub_source_settings
1893
+ # Dvb Sub Source Settings
1824
1894
  # @return [Types::DvbSubSourceSettings]
1825
1895
  #
1826
1896
  # @!attribute [rw] embedded_source_settings
1897
+ # Embedded Source Settings
1827
1898
  # @return [Types::EmbeddedSourceSettings]
1828
1899
  #
1829
1900
  # @!attribute [rw] scte_20_source_settings
1901
+ # Scte20 Source Settings
1830
1902
  # @return [Types::Scte20SourceSettings]
1831
1903
  #
1832
1904
  # @!attribute [rw] scte_27_source_settings
1905
+ # Scte27 Source Settings
1833
1906
  # @return [Types::Scte27SourceSettings]
1834
1907
  #
1835
1908
  # @!attribute [rw] teletext_source_settings
1909
+ # Teletext Source Settings
1836
1910
  # @return [Types::TeletextSourceSettings]
1837
1911
  #
1838
1912
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
@@ -1862,6 +1936,7 @@ module Aws::MediaLive
1862
1936
  # @return [Array<Types::ChannelEgressEndpoint>]
1863
1937
  #
1864
1938
  # @!attribute [rw] encoder_settings
1939
+ # Encoder Settings
1865
1940
  # @return [Types::EncoderSettings]
1866
1941
  #
1867
1942
  # @!attribute [rw] id
@@ -2015,6 +2090,7 @@ module Aws::MediaLive
2015
2090
  # @return [Array<Types::OutputDestination>]
2016
2091
  #
2017
2092
  # @!attribute [rw] encoder_settings
2093
+ # Encoder Settings
2018
2094
  # @return [Types::EncoderSettings]
2019
2095
  #
2020
2096
  # @!attribute [rw] input_attachments
@@ -2301,6 +2377,7 @@ module Aws::MediaLive
2301
2377
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
2302
2378
  # repeat_frame_msec: 1,
2303
2379
  # },
2380
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
2304
2381
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
2305
2382
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
2306
2383
  # },
@@ -2803,6 +2880,7 @@ module Aws::MediaLive
2803
2880
  # @return [Array<Types::OutputDestination>]
2804
2881
  #
2805
2882
  # @!attribute [rw] encoder_settings
2883
+ # Encoder Settings
2806
2884
  # @return [Types::EncoderSettings]
2807
2885
  #
2808
2886
  # @!attribute [rw] input_attachments
@@ -3144,6 +3222,7 @@ module Aws::MediaLive
3144
3222
  # @return [Array<Types::ChannelEgressEndpoint>]
3145
3223
  #
3146
3224
  # @!attribute [rw] encoder_settings
3225
+ # Encoder Settings
3147
3226
  # @return [Types::EncoderSettings]
3148
3227
  #
3149
3228
  # @!attribute [rw] id
@@ -3379,6 +3458,7 @@ module Aws::MediaLive
3379
3458
  # @return [Array<Types::ChannelEgressEndpoint>]
3380
3459
  #
3381
3460
  # @!attribute [rw] encoder_settings
3461
+ # Encoder Settings
3382
3462
  # @return [Types::EncoderSettings]
3383
3463
  #
3384
3464
  # @!attribute [rw] id
@@ -3834,6 +3914,8 @@ module Aws::MediaLive
3834
3914
  include Aws::Structure
3835
3915
  end
3836
3916
 
3917
+ # Dvb Sub Destination Settings
3918
+ #
3837
3919
  # @note When making an API call, you may pass DvbSubDestinationSettings
3838
3920
  # data as a hash:
3839
3921
  #
@@ -4009,6 +4091,8 @@ module Aws::MediaLive
4009
4091
  include Aws::Structure
4010
4092
  end
4011
4093
 
4094
+ # Dvb Sub Source Settings
4095
+ #
4012
4096
  # @note When making an API call, you may pass DvbSubSourceSettings
4013
4097
  # data as a hash:
4014
4098
  #
@@ -4050,6 +4134,8 @@ module Aws::MediaLive
4050
4134
  include Aws::Structure
4051
4135
  end
4052
4136
 
4137
+ # Eac3 Settings
4138
+ #
4053
4139
  # @note When making an API call, you may pass Eac3Settings
4054
4140
  # data as a hash:
4055
4141
  #
@@ -4203,18 +4289,24 @@ module Aws::MediaLive
4203
4289
  include Aws::Structure
4204
4290
  end
4205
4291
 
4292
+ # Embedded Destination Settings
4293
+ #
4206
4294
  # @api private
4207
4295
  #
4208
4296
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EmbeddedDestinationSettings AWS API Documentation
4209
4297
  #
4210
4298
  class EmbeddedDestinationSettings < Aws::EmptyStructure; end
4211
4299
 
4300
+ # Embedded Plus Scte20 Destination Settings
4301
+ #
4212
4302
  # @api private
4213
4303
  #
4214
4304
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EmbeddedPlusScte20DestinationSettings AWS API Documentation
4215
4305
  #
4216
4306
  class EmbeddedPlusScte20DestinationSettings < Aws::EmptyStructure; end
4217
4307
 
4308
+ # Embedded Source Settings
4309
+ #
4218
4310
  # @note When making an API call, you may pass EmbeddedSourceSettings
4219
4311
  # data as a hash:
4220
4312
  #
@@ -4260,6 +4352,8 @@ module Aws::MediaLive
4260
4352
  #
4261
4353
  class Empty < Aws::EmptyStructure; end
4262
4354
 
4355
+ # Encoder Settings
4356
+ #
4263
4357
  # @note When making an API call, you may pass EncoderSettings
4264
4358
  # data as a hash:
4265
4359
  #
@@ -4474,6 +4568,7 @@ module Aws::MediaLive
4474
4568
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
4475
4569
  # repeat_frame_msec: 1,
4476
4570
  # },
4571
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
4477
4572
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
4478
4573
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
4479
4574
  # },
@@ -4930,6 +5025,8 @@ module Aws::MediaLive
4930
5025
  include Aws::Structure
4931
5026
  end
4932
5027
 
5028
+ # Fec Output Settings
5029
+ #
4933
5030
  # @note When making an API call, you may pass FecOutputSettings
4934
5031
  # data as a hash:
4935
5032
  #
@@ -5091,6 +5188,8 @@ module Aws::MediaLive
5091
5188
  include Aws::Structure
5092
5189
  end
5093
5190
 
5191
+ # Global Configuration
5192
+ #
5094
5193
  # @note When making an API call, you may pass GlobalConfiguration
5095
5194
  # data as a hash:
5096
5195
  #
@@ -5108,6 +5207,7 @@ module Aws::MediaLive
5108
5207
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
5109
5208
  # repeat_frame_msec: 1,
5110
5209
  # },
5210
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
5111
5211
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
5112
5212
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
5113
5213
  # }
@@ -5130,6 +5230,13 @@ module Aws::MediaLive
5130
5230
  # Settings for system actions when input is lost.
5131
5231
  # @return [Types::InputLossBehavior]
5132
5232
  #
5233
+ # @!attribute [rw] output_locking_mode
5234
+ # Indicates how MediaLive pipelines are synchronized. PIPELINELOCKING
5235
+ # - MediaLive will attempt to synchronize the output of each pipeline
5236
+ # to the other. EPOCHLOCKING - MediaLive will attempt to synchronize
5237
+ # the output of each pipeline to the Unix epoch.
5238
+ # @return [String]
5239
+ #
5133
5240
  # @!attribute [rw] output_timing_source
5134
5241
  # Indicates whether the rate of frames emitted by the Live encoder
5135
5242
  # should be paced by its system clock (which optionally may be locked
@@ -5149,11 +5256,14 @@ module Aws::MediaLive
5149
5256
  :initial_audio_gain,
5150
5257
  :input_end_action,
5151
5258
  :input_loss_behavior,
5259
+ :output_locking_mode,
5152
5260
  :output_timing_source,
5153
5261
  :support_low_framerate_inputs)
5154
5262
  include Aws::Structure
5155
5263
  end
5156
5264
 
5265
+ # H264 Settings
5266
+ #
5157
5267
  # @note When making an API call, you may pass H264Settings
5158
5268
  # data as a hash:
5159
5269
  #
@@ -5457,6 +5567,8 @@ module Aws::MediaLive
5457
5567
  include Aws::Structure
5458
5568
  end
5459
5569
 
5570
+ # Hls Akamai Settings
5571
+ #
5460
5572
  # @note When making an API call, you may pass HlsAkamaiSettings
5461
5573
  # data as a hash:
5462
5574
  #
@@ -5516,6 +5628,8 @@ module Aws::MediaLive
5516
5628
  include Aws::Structure
5517
5629
  end
5518
5630
 
5631
+ # Hls Basic Put Settings
5632
+ #
5519
5633
  # @note When making an API call, you may pass HlsBasicPutSettings
5520
5634
  # data as a hash:
5521
5635
  #
@@ -5555,6 +5669,8 @@ module Aws::MediaLive
5555
5669
  include Aws::Structure
5556
5670
  end
5557
5671
 
5672
+ # Hls Cdn Settings
5673
+ #
5558
5674
  # @note When making an API call, you may pass HlsCdnSettings
5559
5675
  # data as a hash:
5560
5676
  #
@@ -5591,15 +5707,19 @@ module Aws::MediaLive
5591
5707
  # }
5592
5708
  #
5593
5709
  # @!attribute [rw] hls_akamai_settings
5710
+ # Hls Akamai Settings
5594
5711
  # @return [Types::HlsAkamaiSettings]
5595
5712
  #
5596
5713
  # @!attribute [rw] hls_basic_put_settings
5714
+ # Hls Basic Put Settings
5597
5715
  # @return [Types::HlsBasicPutSettings]
5598
5716
  #
5599
5717
  # @!attribute [rw] hls_media_store_settings
5718
+ # Hls Media Store Settings
5600
5719
  # @return [Types::HlsMediaStoreSettings]
5601
5720
  #
5602
5721
  # @!attribute [rw] hls_webdav_settings
5722
+ # Hls Webdav Settings
5603
5723
  # @return [Types::HlsWebdavSettings]
5604
5724
  #
5605
5725
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsCdnSettings AWS API Documentation
@@ -5612,6 +5732,8 @@ module Aws::MediaLive
5612
5732
  include Aws::Structure
5613
5733
  end
5614
5734
 
5735
+ # Hls Group Settings
5736
+ #
5615
5737
  # @note When making an API call, you may pass HlsGroupSettings
5616
5738
  # data as a hash:
5617
5739
  #
@@ -5978,6 +6100,8 @@ module Aws::MediaLive
5978
6100
  include Aws::Structure
5979
6101
  end
5980
6102
 
6103
+ # Hls Input Settings
6104
+ #
5981
6105
  # @note When making an API call, you may pass HlsInputSettings
5982
6106
  # data as a hash:
5983
6107
  #
@@ -6022,6 +6146,8 @@ module Aws::MediaLive
6022
6146
  include Aws::Structure
6023
6147
  end
6024
6148
 
6149
+ # Hls Media Store Settings
6150
+ #
6025
6151
  # @note When making an API call, you may pass HlsMediaStoreSettings
6026
6152
  # data as a hash:
6027
6153
  #
@@ -6068,6 +6194,8 @@ module Aws::MediaLive
6068
6194
  include Aws::Structure
6069
6195
  end
6070
6196
 
6197
+ # Hls Output Settings
6198
+ #
6071
6199
  # @note When making an API call, you may pass HlsOutputSettings
6072
6200
  # data as a hash:
6073
6201
  #
@@ -6131,6 +6259,8 @@ module Aws::MediaLive
6131
6259
  include Aws::Structure
6132
6260
  end
6133
6261
 
6262
+ # Hls Settings
6263
+ #
6134
6264
  # @note When making an API call, you may pass HlsSettings
6135
6265
  # data as a hash:
6136
6266
  #
@@ -6168,9 +6298,11 @@ module Aws::MediaLive
6168
6298
  # }
6169
6299
  #
6170
6300
  # @!attribute [rw] audio_only_hls_settings
6301
+ # Audio Only Hls Settings
6171
6302
  # @return [Types::AudioOnlyHlsSettings]
6172
6303
  #
6173
6304
  # @!attribute [rw] standard_hls_settings
6305
+ # Standard Hls Settings
6174
6306
  # @return [Types::StandardHlsSettings]
6175
6307
  #
6176
6308
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsSettings AWS API Documentation
@@ -6202,6 +6334,8 @@ module Aws::MediaLive
6202
6334
  include Aws::Structure
6203
6335
  end
6204
6336
 
6337
+ # Hls Webdav Settings
6338
+ #
6205
6339
  # @note When making an API call, you may pass HlsWebdavSettings
6206
6340
  # data as a hash:
6207
6341
  #
@@ -6415,6 +6549,8 @@ module Aws::MediaLive
6415
6549
  include Aws::Structure
6416
6550
  end
6417
6551
 
6552
+ # Input Channel Level
6553
+ #
6418
6554
  # @note When making an API call, you may pass InputChannelLevel
6419
6555
  # data as a hash:
6420
6556
  #
@@ -6508,6 +6644,8 @@ module Aws::MediaLive
6508
6644
  include Aws::Structure
6509
6645
  end
6510
6646
 
6647
+ # Input Location
6648
+ #
6511
6649
  # @note When making an API call, you may pass InputLocation
6512
6650
  # data as a hash:
6513
6651
  #
@@ -6545,6 +6683,8 @@ module Aws::MediaLive
6545
6683
  include Aws::Structure
6546
6684
  end
6547
6685
 
6686
+ # Input Loss Behavior
6687
+ #
6548
6688
  # @note When making an API call, you may pass InputLossBehavior
6549
6689
  # data as a hash:
6550
6690
  #
@@ -6989,6 +7129,8 @@ module Aws::MediaLive
6989
7129
  include Aws::Structure
6990
7130
  end
6991
7131
 
7132
+ # Key Provider Settings
7133
+ #
6992
7134
  # @note When making an API call, you may pass KeyProviderSettings
6993
7135
  # data as a hash:
6994
7136
  #
@@ -7004,6 +7146,7 @@ module Aws::MediaLive
7004
7146
  # }
7005
7147
  #
7006
7148
  # @!attribute [rw] static_key_settings
7149
+ # Static Key Settings
7007
7150
  # @return [Types::StaticKeySettings]
7008
7151
  #
7009
7152
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/KeyProviderSettings AWS API Documentation
@@ -7386,6 +7529,8 @@ module Aws::MediaLive
7386
7529
  include Aws::Structure
7387
7530
  end
7388
7531
 
7532
+ # M2ts Settings
7533
+ #
7389
7534
  # @note When making an API call, you may pass M2tsSettings
7390
7535
  # data as a hash:
7391
7536
  #
@@ -8005,6 +8150,8 @@ module Aws::MediaLive
8005
8150
  #
8006
8151
  class MediaPackageOutputSettings < Aws::EmptyStructure; end
8007
8152
 
8153
+ # Mp2 Settings
8154
+ #
8008
8155
  # @note When making an API call, you may pass Mp2Settings
8009
8156
  # data as a hash:
8010
8157
  #
@@ -8036,6 +8183,8 @@ module Aws::MediaLive
8036
8183
  include Aws::Structure
8037
8184
  end
8038
8185
 
8186
+ # Ms Smooth Group Settings
8187
+ #
8039
8188
  # @note When making an API call, you may pass MsSmoothGroupSettings
8040
8189
  # data as a hash:
8041
8190
  #
@@ -8191,6 +8340,8 @@ module Aws::MediaLive
8191
8340
  include Aws::Structure
8192
8341
  end
8193
8342
 
8343
+ # Ms Smooth Output Settings
8344
+ #
8194
8345
  # @note When making an API call, you may pass MsSmoothOutputSettings
8195
8346
  # data as a hash:
8196
8347
  #
@@ -9001,6 +9152,8 @@ module Aws::MediaLive
9001
9152
  include Aws::Structure
9002
9153
  end
9003
9154
 
9155
+ # Output Group Settings
9156
+ #
9004
9157
  # @note When making an API call, you may pass OutputGroupSettings
9005
9158
  # data as a hash:
9006
9159
  #
@@ -9146,6 +9299,7 @@ module Aws::MediaLive
9146
9299
  # }
9147
9300
  #
9148
9301
  # @!attribute [rw] archive_group_settings
9302
+ # Archive Group Settings
9149
9303
  # @return [Types::ArchiveGroupSettings]
9150
9304
  #
9151
9305
  # @!attribute [rw] frame_capture_group_settings
@@ -9153,6 +9307,7 @@ module Aws::MediaLive
9153
9307
  # @return [Types::FrameCaptureGroupSettings]
9154
9308
  #
9155
9309
  # @!attribute [rw] hls_group_settings
9310
+ # Hls Group Settings
9156
9311
  # @return [Types::HlsGroupSettings]
9157
9312
  #
9158
9313
  # @!attribute [rw] media_package_group_settings
@@ -9160,12 +9315,15 @@ module Aws::MediaLive
9160
9315
  # @return [Types::MediaPackageGroupSettings]
9161
9316
  #
9162
9317
  # @!attribute [rw] ms_smooth_group_settings
9318
+ # Ms Smooth Group Settings
9163
9319
  # @return [Types::MsSmoothGroupSettings]
9164
9320
  #
9165
9321
  # @!attribute [rw] rtmp_group_settings
9322
+ # Rtmp Group Settings
9166
9323
  # @return [Types::RtmpGroupSettings]
9167
9324
  #
9168
9325
  # @!attribute [rw] udp_group_settings
9326
+ # Udp Group Settings
9169
9327
  # @return [Types::UdpGroupSettings]
9170
9328
  #
9171
9329
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputGroupSettings AWS API Documentation
@@ -9200,6 +9358,8 @@ module Aws::MediaLive
9200
9358
  include Aws::Structure
9201
9359
  end
9202
9360
 
9361
+ # Output Settings
9362
+ #
9203
9363
  # @note When making an API call, you may pass OutputSettings
9204
9364
  # data as a hash:
9205
9365
  #
@@ -9396,6 +9556,7 @@ module Aws::MediaLive
9396
9556
  # }
9397
9557
  #
9398
9558
  # @!attribute [rw] archive_output_settings
9559
+ # Archive Output Settings
9399
9560
  # @return [Types::ArchiveOutputSettings]
9400
9561
  #
9401
9562
  # @!attribute [rw] frame_capture_output_settings
@@ -9403,6 +9564,7 @@ module Aws::MediaLive
9403
9564
  # @return [Types::FrameCaptureOutputSettings]
9404
9565
  #
9405
9566
  # @!attribute [rw] hls_output_settings
9567
+ # Hls Output Settings
9406
9568
  # @return [Types::HlsOutputSettings]
9407
9569
  #
9408
9570
  # @!attribute [rw] media_package_output_settings
@@ -9410,12 +9572,15 @@ module Aws::MediaLive
9410
9572
  # @return [Types::MediaPackageOutputSettings]
9411
9573
  #
9412
9574
  # @!attribute [rw] ms_smooth_output_settings
9575
+ # Ms Smooth Output Settings
9413
9576
  # @return [Types::MsSmoothOutputSettings]
9414
9577
  #
9415
9578
  # @!attribute [rw] rtmp_output_settings
9579
+ # Rtmp Output Settings
9416
9580
  # @return [Types::RtmpOutputSettings]
9417
9581
  #
9418
9582
  # @!attribute [rw] udp_output_settings
9583
+ # Udp Output Settings
9419
9584
  # @return [Types::UdpOutputSettings]
9420
9585
  #
9421
9586
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/OutputSettings AWS API Documentation
@@ -9431,6 +9596,8 @@ module Aws::MediaLive
9431
9596
  include Aws::Structure
9432
9597
  end
9433
9598
 
9599
+ # Pass Through Settings
9600
+ #
9434
9601
  # @api private
9435
9602
  #
9436
9603
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PassThroughSettings AWS API Documentation
@@ -9574,6 +9741,8 @@ module Aws::MediaLive
9574
9741
  include Aws::Structure
9575
9742
  end
9576
9743
 
9744
+ # Remix Settings
9745
+ #
9577
9746
  # @note When making an API call, you may pass RemixSettings
9578
9747
  # data as a hash:
9579
9748
  #
@@ -9778,12 +9947,16 @@ module Aws::MediaLive
9778
9947
  include Aws::Structure
9779
9948
  end
9780
9949
 
9950
+ # Rtmp Caption Info Destination Settings
9951
+ #
9781
9952
  # @api private
9782
9953
  #
9783
9954
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RtmpCaptionInfoDestinationSettings AWS API Documentation
9784
9955
  #
9785
9956
  class RtmpCaptionInfoDestinationSettings < Aws::EmptyStructure; end
9786
9957
 
9958
+ # Rtmp Group Settings
9959
+ #
9787
9960
  # @note When making an API call, you may pass RtmpGroupSettings
9788
9961
  # data as a hash:
9789
9962
  #
@@ -9849,6 +10022,8 @@ module Aws::MediaLive
9849
10022
  include Aws::Structure
9850
10023
  end
9851
10024
 
10025
+ # Rtmp Output Settings
10026
+ #
9852
10027
  # @note When making an API call, you may pass RtmpOutputSettings
9853
10028
  # data as a hash:
9854
10029
  #
@@ -10173,12 +10348,16 @@ module Aws::MediaLive
10173
10348
  include Aws::Structure
10174
10349
  end
10175
10350
 
10351
+ # Scte20 Plus Embedded Destination Settings
10352
+ #
10176
10353
  # @api private
10177
10354
  #
10178
10355
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte20PlusEmbeddedDestinationSettings AWS API Documentation
10179
10356
  #
10180
10357
  class Scte20PlusEmbeddedDestinationSettings < Aws::EmptyStructure; end
10181
10358
 
10359
+ # Scte20 Source Settings
10360
+ #
10182
10361
  # @note When making an API call, you may pass Scte20SourceSettings
10183
10362
  # data as a hash:
10184
10363
  #
@@ -10207,12 +10386,16 @@ module Aws::MediaLive
10207
10386
  include Aws::Structure
10208
10387
  end
10209
10388
 
10389
+ # Scte27 Destination Settings
10390
+ #
10210
10391
  # @api private
10211
10392
  #
10212
10393
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte27DestinationSettings AWS API Documentation
10213
10394
  #
10214
10395
  class Scte27DestinationSettings < Aws::EmptyStructure; end
10215
10396
 
10397
+ # Scte27 Source Settings
10398
+ #
10216
10399
  # @note When making an API call, you may pass Scte27SourceSettings
10217
10400
  # data as a hash:
10218
10401
  #
@@ -10484,6 +10667,8 @@ module Aws::MediaLive
10484
10667
  include Aws::Structure
10485
10668
  end
10486
10669
 
10670
+ # Scte35 Splice Insert
10671
+ #
10487
10672
  # @note When making an API call, you may pass Scte35SpliceInsert
10488
10673
  # data as a hash:
10489
10674
  #
@@ -10551,6 +10736,8 @@ module Aws::MediaLive
10551
10736
  include Aws::Structure
10552
10737
  end
10553
10738
 
10739
+ # Scte35 Time Signal Apos
10740
+ #
10554
10741
  # @note When making an API call, you may pass Scte35TimeSignalApos
10555
10742
  # data as a hash:
10556
10743
  #
@@ -10629,12 +10816,16 @@ module Aws::MediaLive
10629
10816
  include Aws::Structure
10630
10817
  end
10631
10818
 
10819
+ # Smpte Tt Destination Settings
10820
+ #
10632
10821
  # @api private
10633
10822
  #
10634
10823
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SmpteTtDestinationSettings AWS API Documentation
10635
10824
  #
10636
10825
  class SmpteTtDestinationSettings < Aws::EmptyStructure; end
10637
10826
 
10827
+ # Standard Hls Settings
10828
+ #
10638
10829
  # @note When making an API call, you may pass StandardHlsSettings
10639
10830
  # data as a hash:
10640
10831
  #
@@ -10705,6 +10896,7 @@ module Aws::MediaLive
10705
10896
  # @return [Array<Types::ChannelEgressEndpoint>]
10706
10897
  #
10707
10898
  # @!attribute [rw] encoder_settings
10899
+ # Encoder Settings
10708
10900
  # @return [Types::EncoderSettings]
10709
10901
  #
10710
10902
  # @!attribute [rw] id
@@ -10884,6 +11076,8 @@ module Aws::MediaLive
10884
11076
  include Aws::Structure
10885
11077
  end
10886
11078
 
11079
+ # Static Key Settings
11080
+ #
10887
11081
  # @note When making an API call, you may pass StaticKeySettings
10888
11082
  # data as a hash:
10889
11083
  #
@@ -10939,6 +11133,7 @@ module Aws::MediaLive
10939
11133
  # @return [Array<Types::ChannelEgressEndpoint>]
10940
11134
  #
10941
11135
  # @!attribute [rw] encoder_settings
11136
+ # Encoder Settings
10942
11137
  # @return [Types::EncoderSettings]
10943
11138
  #
10944
11139
  # @!attribute [rw] id
@@ -10998,12 +11193,16 @@ module Aws::MediaLive
10998
11193
  include Aws::Structure
10999
11194
  end
11000
11195
 
11196
+ # Teletext Destination Settings
11197
+ #
11001
11198
  # @api private
11002
11199
  #
11003
11200
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TeletextDestinationSettings AWS API Documentation
11004
11201
  #
11005
11202
  class TeletextDestinationSettings < Aws::EmptyStructure; end
11006
11203
 
11204
+ # Teletext Source Settings
11205
+ #
11007
11206
  # @note When making an API call, you may pass TeletextSourceSettings
11008
11207
  # data as a hash:
11009
11208
  #
@@ -11025,6 +11224,8 @@ module Aws::MediaLive
11025
11224
  include Aws::Structure
11026
11225
  end
11027
11226
 
11227
+ # Timecode Config
11228
+ #
11028
11229
  # @note When making an API call, you may pass TimecodeConfig
11029
11230
  # data as a hash:
11030
11231
  #
@@ -11058,6 +11259,8 @@ module Aws::MediaLive
11058
11259
  include Aws::Structure
11059
11260
  end
11060
11261
 
11262
+ # Ttml Destination Settings
11263
+ #
11061
11264
  # @note When making an API call, you may pass TtmlDestinationSettings
11062
11265
  # data as a hash:
11063
11266
  #
@@ -11078,6 +11281,8 @@ module Aws::MediaLive
11078
11281
  include Aws::Structure
11079
11282
  end
11080
11283
 
11284
+ # Udp Container Settings
11285
+ #
11081
11286
  # @note When making an API call, you may pass UdpContainerSettings
11082
11287
  # data as a hash:
11083
11288
  #
@@ -11144,6 +11349,7 @@ module Aws::MediaLive
11144
11349
  # }
11145
11350
  #
11146
11351
  # @!attribute [rw] m2ts_settings
11352
+ # M2ts Settings
11147
11353
  # @return [Types::M2tsSettings]
11148
11354
  #
11149
11355
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UdpContainerSettings AWS API Documentation
@@ -11153,6 +11359,8 @@ module Aws::MediaLive
11153
11359
  include Aws::Structure
11154
11360
  end
11155
11361
 
11362
+ # Udp Group Settings
11363
+ #
11156
11364
  # @note When making an API call, you may pass UdpGroupSettings
11157
11365
  # data as a hash:
11158
11366
  #
@@ -11190,6 +11398,8 @@ module Aws::MediaLive
11190
11398
  include Aws::Structure
11191
11399
  end
11192
11400
 
11401
+ # Udp Output Settings
11402
+ #
11193
11403
  # @note When making an API call, you may pass UdpOutputSettings
11194
11404
  # data as a hash:
11195
11405
  #
@@ -11275,6 +11485,7 @@ module Aws::MediaLive
11275
11485
  # @return [Integer]
11276
11486
  #
11277
11487
  # @!attribute [rw] container_settings
11488
+ # Udp Container Settings
11278
11489
  # @return [Types::UdpContainerSettings]
11279
11490
  #
11280
11491
  # @!attribute [rw] destination
@@ -11575,6 +11786,7 @@ module Aws::MediaLive
11575
11786
  # input_loss_image_type: "COLOR", # accepts COLOR, SLATE
11576
11787
  # repeat_frame_msec: 1,
11577
11788
  # },
11789
+ # output_locking_mode: "EPOCH_LOCKING", # accepts EPOCH_LOCKING, PIPELINE_LOCKING
11578
11790
  # output_timing_source: "INPUT_CLOCK", # accepts INPUT_CLOCK, SYSTEM_CLOCK
11579
11791
  # support_low_framerate_inputs: "DISABLED", # accepts DISABLED, ENABLED
11580
11792
  # },
@@ -12075,6 +12287,7 @@ module Aws::MediaLive
12075
12287
  # @return [Array<Types::OutputDestination>]
12076
12288
  #
12077
12289
  # @!attribute [rw] encoder_settings
12290
+ # Encoder Settings
12078
12291
  # @return [Types::EncoderSettings]
12079
12292
  #
12080
12293
  # @!attribute [rw] input_attachments
@@ -12322,6 +12535,8 @@ module Aws::MediaLive
12322
12535
  include Aws::Structure
12323
12536
  end
12324
12537
 
12538
+ # Video Codec Settings
12539
+ #
12325
12540
  # @note When making an API call, you may pass VideoCodecSettings
12326
12541
  # data as a hash:
12327
12542
  #
@@ -12375,6 +12590,7 @@ module Aws::MediaLive
12375
12590
  # @return [Types::FrameCaptureSettings]
12376
12591
  #
12377
12592
  # @!attribute [rw] h264_settings
12593
+ # H264 Settings
12378
12594
  # @return [Types::H264Settings]
12379
12595
  #
12380
12596
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
@@ -12557,6 +12773,8 @@ module Aws::MediaLive
12557
12773
  include Aws::Structure
12558
12774
  end
12559
12775
 
12776
+ # Video Selector Pid
12777
+ #
12560
12778
  # @note When making an API call, you may pass VideoSelectorPid
12561
12779
  # data as a hash:
12562
12780
  #
@@ -12575,6 +12793,8 @@ module Aws::MediaLive
12575
12793
  include Aws::Structure
12576
12794
  end
12577
12795
 
12796
+ # Video Selector Program Id
12797
+ #
12578
12798
  # @note When making an API call, you may pass VideoSelectorProgramId
12579
12799
  # data as a hash:
12580
12800
  #
@@ -12595,6 +12815,8 @@ module Aws::MediaLive
12595
12815
  include Aws::Structure
12596
12816
  end
12597
12817
 
12818
+ # Video Selector Settings
12819
+ #
12598
12820
  # @note When making an API call, you may pass VideoSelectorSettings
12599
12821
  # data as a hash:
12600
12822
  #
@@ -12608,9 +12830,11 @@ module Aws::MediaLive
12608
12830
  # }
12609
12831
  #
12610
12832
  # @!attribute [rw] video_selector_pid
12833
+ # Video Selector Pid
12611
12834
  # @return [Types::VideoSelectorPid]
12612
12835
  #
12613
12836
  # @!attribute [rw] video_selector_program_id
12837
+ # Video Selector Program Id
12614
12838
  # @return [Types::VideoSelectorProgramId]
12615
12839
  #
12616
12840
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelectorSettings AWS API Documentation
@@ -12621,6 +12845,8 @@ module Aws::MediaLive
12621
12845
  include Aws::Structure
12622
12846
  end
12623
12847
 
12848
+ # Webvtt Destination Settings
12849
+ #
12624
12850
  # @api private
12625
12851
  #
12626
12852
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WebvttDestinationSettings AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core