aws-sdk-medialive 1.76.0 → 1.80.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +121 -7
- data/lib/aws-sdk-medialive/client_api.rb +52 -0
- data/lib/aws-sdk-medialive/types.rb +246 -7
- data/lib/aws-sdk-medialive.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 248039f4e02175804d6dfc14d5b322dc72f7269f8655f099fd9ce56446fc7bcf
|
4
|
+
data.tar.gz: d5afb1de5e3b396b510d42dece6e2d85f58a49a3efd2a2149908a13560699fa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 056adf3a8b324ad5aba9f0e9f613c1be1782b28b5204546d96792e284f98cc8cbab33824056610794da7129c995c3b3bbe7adbd28f097106970b84d45b7c5eee
|
7
|
+
data.tar.gz: 3cc9c652f50c829a4536dbe66846ea369c370b13c7a1d30d98f5287766901061eb5c608096dc2fff859140bf43b832bb9e9050df53326dd91553533aef2b9eda
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2021-11-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for specifying a SCTE-35 PID on input. MediaLive now supports SCTE-35 PID selection on inputs containing one or more active SCTE-35 PIDs.
|
8
|
+
|
9
|
+
1.79.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.78.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.77.0 (2021-10-11)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds support for Transport Stream files as an input type to MediaLive encoders.
|
23
|
+
|
4
24
|
1.76.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -275,6 +275,15 @@ module Aws::MediaLive
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -769,6 +778,30 @@ module Aws::MediaLive
|
|
769
778
|
req.send_request(options)
|
770
779
|
end
|
771
780
|
|
781
|
+
# Send a request to claim an AWS Elemental device that you have
|
782
|
+
# purchased from a third-party vendor. After the request succeeds, you
|
783
|
+
# will own the device.
|
784
|
+
#
|
785
|
+
# @option params [String] :id
|
786
|
+
# The id of the device you want to claim.
|
787
|
+
#
|
788
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
789
|
+
#
|
790
|
+
# @example Request syntax with placeholder values
|
791
|
+
#
|
792
|
+
# resp = client.claim_device({
|
793
|
+
# id: "__string",
|
794
|
+
# })
|
795
|
+
#
|
796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ClaimDevice AWS API Documentation
|
797
|
+
#
|
798
|
+
# @overload claim_device(params = {})
|
799
|
+
# @param [Hash] params ({})
|
800
|
+
def claim_device(params = {}, options = {})
|
801
|
+
req = build_request(:claim_device, params)
|
802
|
+
req.send_request(options)
|
803
|
+
end
|
804
|
+
|
772
805
|
# Creates a new channel
|
773
806
|
#
|
774
807
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
@@ -850,6 +883,20 @@ module Aws::MediaLive
|
|
850
883
|
# audio_selector_name: "__string", # required
|
851
884
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
852
885
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
886
|
+
# audio_watermarking_settings: {
|
887
|
+
# nielsen_watermarks_settings: {
|
888
|
+
# nielsen_cbet_settings: {
|
889
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
890
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
891
|
+
# csid: "__stringMin1Max7", # required
|
892
|
+
# },
|
893
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
894
|
+
# nielsen_naes_ii_nw_settings: {
|
895
|
+
# check_digit_string: "__stringMin2Max2", # required
|
896
|
+
# sid: 1.0, # required
|
897
|
+
# },
|
898
|
+
# },
|
899
|
+
# },
|
853
900
|
# codec_settings: {
|
854
901
|
# aac_settings: {
|
855
902
|
# bitrate: 1.0,
|
@@ -1717,6 +1764,7 @@ module Aws::MediaLive
|
|
1717
1764
|
# },
|
1718
1765
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
1719
1766
|
# },
|
1767
|
+
# scte_35_pid: 1,
|
1720
1768
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
1721
1769
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
1722
1770
|
# video_selector: {
|
@@ -1785,6 +1833,12 @@ module Aws::MediaLive
|
|
1785
1833
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
1786
1834
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
1787
1835
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1836
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
1837
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
1838
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
1839
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
1840
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
1841
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
1788
1842
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
1789
1843
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
1790
1844
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -2337,6 +2391,7 @@ module Aws::MediaLive
|
|
2337
2391
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
2338
2392
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
2339
2393
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
2394
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
2340
2395
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
2341
2396
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
2342
2397
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -2402,6 +2457,7 @@ module Aws::MediaLive
|
|
2402
2457
|
# @option params [Hash<String,String>] :tags
|
2403
2458
|
#
|
2404
2459
|
# @option params [String] :type
|
2460
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
2405
2461
|
#
|
2406
2462
|
# @option params [Types::InputVpcRequest] :vpc
|
2407
2463
|
# Settings for a private VPC Input. When this property is specified, the
|
@@ -2446,7 +2502,7 @@ module Aws::MediaLive
|
|
2446
2502
|
# tags: {
|
2447
2503
|
# "__string" => "__string",
|
2448
2504
|
# },
|
2449
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
2505
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
|
2450
2506
|
# vpc: {
|
2451
2507
|
# security_group_ids: ["__string"],
|
2452
2508
|
# subnet_ids: ["__string"], # required
|
@@ -2484,7 +2540,7 @@ module Aws::MediaLive
|
|
2484
2540
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2485
2541
|
# resp.input.tags #=> Hash
|
2486
2542
|
# resp.input.tags["__string"] #=> String
|
2487
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
2543
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
2488
2544
|
#
|
2489
2545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2490
2546
|
#
|
@@ -2741,7 +2797,7 @@ module Aws::MediaLive
|
|
2741
2797
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2742
2798
|
# resp.input.tags #=> Hash
|
2743
2799
|
# resp.input.tags["__string"] #=> String
|
2744
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
2800
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
2745
2801
|
#
|
2746
2802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2747
2803
|
#
|
@@ -2833,6 +2889,12 @@ module Aws::MediaLive
|
|
2833
2889
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
2834
2890
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
2835
2891
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2892
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
2893
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
2894
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
2895
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
2896
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
2897
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
2836
2898
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
2837
2899
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
2838
2900
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -3385,6 +3447,7 @@ module Aws::MediaLive
|
|
3385
3447
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
3386
3448
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
3387
3449
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
3450
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
3388
3451
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
3389
3452
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
3390
3453
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -3752,6 +3815,12 @@ module Aws::MediaLive
|
|
3752
3815
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
3753
3816
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
3754
3817
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3818
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
3819
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
3820
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
3821
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
3822
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
3823
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
3755
3824
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
3756
3825
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
3757
3826
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -4304,6 +4373,7 @@ module Aws::MediaLive
|
|
4304
4373
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
4305
4374
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
4306
4375
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4376
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
4307
4377
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4308
4378
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
4309
4379
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -4414,7 +4484,7 @@ module Aws::MediaLive
|
|
4414
4484
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4415
4485
|
# resp.tags #=> Hash
|
4416
4486
|
# resp.tags["__string"] #=> String
|
4417
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
4487
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
4418
4488
|
#
|
4419
4489
|
#
|
4420
4490
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5008,6 +5078,7 @@ module Aws::MediaLive
|
|
5008
5078
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5009
5079
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
5010
5080
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
5081
|
+
# resp.channels[0].input_attachments[0].input_settings.scte_35_pid #=> Integer
|
5011
5082
|
# resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
5012
5083
|
# resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
5013
5084
|
# resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -5248,7 +5319,7 @@ module Aws::MediaLive
|
|
5248
5319
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5249
5320
|
# resp.inputs[0].tags #=> Hash
|
5250
5321
|
# resp.inputs[0].tags["__string"] #=> String
|
5251
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
5322
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
5252
5323
|
# resp.next_token #=> String
|
5253
5324
|
#
|
5254
5325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -5685,6 +5756,12 @@ module Aws::MediaLive
|
|
5685
5756
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
5686
5757
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
5687
5758
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5759
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
5760
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
5761
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
5762
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
5763
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
5764
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
5688
5765
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
5689
5766
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
5690
5767
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -6237,6 +6314,7 @@ module Aws::MediaLive
|
|
6237
6314
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6238
6315
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6239
6316
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6317
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
6240
6318
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6241
6319
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
6242
6320
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -6386,6 +6464,12 @@ module Aws::MediaLive
|
|
6386
6464
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
6387
6465
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
6388
6466
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
6467
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
6468
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
6469
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
6470
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
6471
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
6472
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
6389
6473
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
6390
6474
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
6391
6475
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -6938,6 +7022,7 @@ module Aws::MediaLive
|
|
6938
7022
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6939
7023
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6940
7024
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
7025
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
6941
7026
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6942
7027
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
6943
7028
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -7129,6 +7214,20 @@ module Aws::MediaLive
|
|
7129
7214
|
# audio_selector_name: "__string", # required
|
7130
7215
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
7131
7216
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
7217
|
+
# audio_watermarking_settings: {
|
7218
|
+
# nielsen_watermarks_settings: {
|
7219
|
+
# nielsen_cbet_settings: {
|
7220
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
7221
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
7222
|
+
# csid: "__stringMin1Max7", # required
|
7223
|
+
# },
|
7224
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
7225
|
+
# nielsen_naes_ii_nw_settings: {
|
7226
|
+
# check_digit_string: "__stringMin2Max2", # required
|
7227
|
+
# sid: 1.0, # required
|
7228
|
+
# },
|
7229
|
+
# },
|
7230
|
+
# },
|
7132
7231
|
# codec_settings: {
|
7133
7232
|
# aac_settings: {
|
7134
7233
|
# bitrate: 1.0,
|
@@ -7996,6 +8095,7 @@ module Aws::MediaLive
|
|
7996
8095
|
# },
|
7997
8096
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
7998
8097
|
# },
|
8098
|
+
# scte_35_pid: 1,
|
7999
8099
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
8000
8100
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
8001
8101
|
# video_selector: {
|
@@ -8054,6 +8154,12 @@ module Aws::MediaLive
|
|
8054
8154
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
8055
8155
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
8056
8156
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
8157
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
8158
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
8159
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
8160
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
8161
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
8162
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
8057
8163
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
8058
8164
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
8059
8165
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -8606,6 +8712,7 @@ module Aws::MediaLive
|
|
8606
8712
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
8607
8713
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
8608
8714
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
8715
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
8609
8716
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
8610
8717
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
8611
8718
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -8716,6 +8823,12 @@ module Aws::MediaLive
|
|
8716
8823
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
8717
8824
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
8718
8825
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
8826
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
8827
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
8828
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
8829
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
8830
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
8831
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
8719
8832
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
8720
8833
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.coding_mode #=> String, one of "AD_RECEIVER_MIX", "CODING_MODE_1_0", "CODING_MODE_1_1", "CODING_MODE_2_0", "CODING_MODE_5_1"
|
8721
8834
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -9268,6 +9381,7 @@ module Aws::MediaLive
|
|
9268
9381
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
9269
9382
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
9270
9383
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
9384
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
9271
9385
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
9272
9386
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
9273
9387
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -9394,7 +9508,7 @@ module Aws::MediaLive
|
|
9394
9508
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
9395
9509
|
# resp.input.tags #=> Hash
|
9396
9510
|
# resp.input.tags["__string"] #=> String
|
9397
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
9511
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
9398
9512
|
#
|
9399
9513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
9400
9514
|
#
|
@@ -9737,7 +9851,7 @@ module Aws::MediaLive
|
|
9737
9851
|
params: params,
|
9738
9852
|
config: config)
|
9739
9853
|
context[:gem_name] = 'aws-sdk-medialive'
|
9740
|
-
context[:gem_version] = '1.
|
9854
|
+
context[:gem_version] = '1.80.0'
|
9741
9855
|
Seahorse::Client::Request.new(handlers, context)
|
9742
9856
|
end
|
9743
9857
|
|
@@ -62,6 +62,7 @@ module Aws::MediaLive
|
|
62
62
|
AudioTrack = Shapes::StructureShape.new(name: 'AudioTrack')
|
63
63
|
AudioTrackSelection = Shapes::StructureShape.new(name: 'AudioTrackSelection')
|
64
64
|
AudioType = Shapes::StringShape.new(name: 'AudioType')
|
65
|
+
AudioWatermarkSettings = Shapes::StructureShape.new(name: 'AudioWatermarkSettings')
|
65
66
|
AuthenticationScheme = Shapes::StringShape.new(name: 'AuthenticationScheme')
|
66
67
|
AutomaticInputFailoverSettings = Shapes::StructureShape.new(name: 'AutomaticInputFailoverSettings')
|
67
68
|
AvailBlanking = Shapes::StructureShape.new(name: 'AvailBlanking')
|
@@ -117,6 +118,8 @@ module Aws::MediaLive
|
|
117
118
|
ChannelEgressEndpoint = Shapes::StructureShape.new(name: 'ChannelEgressEndpoint')
|
118
119
|
ChannelState = Shapes::StringShape.new(name: 'ChannelState')
|
119
120
|
ChannelSummary = Shapes::StructureShape.new(name: 'ChannelSummary')
|
121
|
+
ClaimDeviceRequest = Shapes::StructureShape.new(name: 'ClaimDeviceRequest')
|
122
|
+
ClaimDeviceResponse = Shapes::StructureShape.new(name: 'ClaimDeviceResponse')
|
120
123
|
ColorSpacePassthroughSettings = Shapes::StructureShape.new(name: 'ColorSpacePassthroughSettings')
|
121
124
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
122
125
|
ContentType = Shapes::StringShape.new(name: 'ContentType')
|
@@ -496,8 +499,13 @@ module Aws::MediaLive
|
|
496
499
|
MultiplexVideoSettings = Shapes::StructureShape.new(name: 'MultiplexVideoSettings')
|
497
500
|
NetworkInputServerValidation = Shapes::StringShape.new(name: 'NetworkInputServerValidation')
|
498
501
|
NetworkInputSettings = Shapes::StructureShape.new(name: 'NetworkInputSettings')
|
502
|
+
NielsenCBET = Shapes::StructureShape.new(name: 'NielsenCBET')
|
499
503
|
NielsenConfiguration = Shapes::StructureShape.new(name: 'NielsenConfiguration')
|
504
|
+
NielsenNaesIiNw = Shapes::StructureShape.new(name: 'NielsenNaesIiNw')
|
500
505
|
NielsenPcmToId3TaggingState = Shapes::StringShape.new(name: 'NielsenPcmToId3TaggingState')
|
506
|
+
NielsenWatermarksCbetStepaside = Shapes::StringShape.new(name: 'NielsenWatermarksCbetStepaside')
|
507
|
+
NielsenWatermarksDistributionTypes = Shapes::StringShape.new(name: 'NielsenWatermarksDistributionTypes')
|
508
|
+
NielsenWatermarksSettings = Shapes::StructureShape.new(name: 'NielsenWatermarksSettings')
|
501
509
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
502
510
|
Offering = Shapes::StructureShape.new(name: 'Offering')
|
503
511
|
OfferingDurationUnits = Shapes::StringShape.new(name: 'OfferingDurationUnits')
|
@@ -674,6 +682,7 @@ module Aws::MediaLive
|
|
674
682
|
__doubleMin0Max1 = Shapes::FloatShape.new(name: '__doubleMin0Max1')
|
675
683
|
__doubleMin0Max100 = Shapes::FloatShape.new(name: '__doubleMin0Max100')
|
676
684
|
__doubleMin1 = Shapes::FloatShape.new(name: '__doubleMin1')
|
685
|
+
__doubleMin1Max65535 = Shapes::FloatShape.new(name: '__doubleMin1Max65535')
|
677
686
|
__doubleMinNegative59Max0 = Shapes::FloatShape.new(name: '__doubleMinNegative59Max0')
|
678
687
|
__integer = Shapes::IntegerShape.new(name: '__integer')
|
679
688
|
__integerMin0 = Shapes::IntegerShape.new(name: '__integerMin0')
|
@@ -719,6 +728,7 @@ module Aws::MediaLive
|
|
719
728
|
__integerMin25Max2000 = Shapes::IntegerShape.new(name: '__integerMin25Max2000')
|
720
729
|
__integerMin3 = Shapes::IntegerShape.new(name: '__integerMin3')
|
721
730
|
__integerMin30 = Shapes::IntegerShape.new(name: '__integerMin30')
|
731
|
+
__integerMin32Max8191 = Shapes::IntegerShape.new(name: '__integerMin32Max8191')
|
722
732
|
__integerMin4Max20 = Shapes::IntegerShape.new(name: '__integerMin4Max20')
|
723
733
|
__integerMin800Max3000 = Shapes::IntegerShape.new(name: '__integerMin800Max3000')
|
724
734
|
__integerMin96Max600 = Shapes::IntegerShape.new(name: '__integerMin96Max600')
|
@@ -788,6 +798,8 @@ module Aws::MediaLive
|
|
788
798
|
__stringMin1Max255 = Shapes::StringShape.new(name: '__stringMin1Max255')
|
789
799
|
__stringMin1Max256 = Shapes::StringShape.new(name: '__stringMin1Max256')
|
790
800
|
__stringMin1Max35 = Shapes::StringShape.new(name: '__stringMin1Max35')
|
801
|
+
__stringMin1Max7 = Shapes::StringShape.new(name: '__stringMin1Max7')
|
802
|
+
__stringMin2Max2 = Shapes::StringShape.new(name: '__stringMin2Max2')
|
791
803
|
__stringMin32Max32 = Shapes::StringShape.new(name: '__stringMin32Max32')
|
792
804
|
__stringMin34Max34 = Shapes::StringShape.new(name: '__stringMin34Max34')
|
793
805
|
__stringMin3Max3 = Shapes::StringShape.new(name: '__stringMin3Max3')
|
@@ -867,6 +879,7 @@ module Aws::MediaLive
|
|
867
879
|
AudioDescription.add_member(:audio_selector_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "audioSelectorName"))
|
868
880
|
AudioDescription.add_member(:audio_type, Shapes::ShapeRef.new(shape: AudioType, location_name: "audioType"))
|
869
881
|
AudioDescription.add_member(:audio_type_control, Shapes::ShapeRef.new(shape: AudioDescriptionAudioTypeControl, location_name: "audioTypeControl"))
|
882
|
+
AudioDescription.add_member(:audio_watermarking_settings, Shapes::ShapeRef.new(shape: AudioWatermarkSettings, location_name: "audioWatermarkingSettings"))
|
870
883
|
AudioDescription.add_member(:codec_settings, Shapes::ShapeRef.new(shape: AudioCodecSettings, location_name: "codecSettings"))
|
871
884
|
AudioDescription.add_member(:language_code, Shapes::ShapeRef.new(shape: __stringMin1Max35, location_name: "languageCode"))
|
872
885
|
AudioDescription.add_member(:language_code_control, Shapes::ShapeRef.new(shape: AudioDescriptionLanguageCodeControl, location_name: "languageCodeControl"))
|
@@ -917,6 +930,9 @@ module Aws::MediaLive
|
|
917
930
|
AudioTrackSelection.add_member(:tracks, Shapes::ShapeRef.new(shape: __listOfAudioTrack, required: true, location_name: "tracks"))
|
918
931
|
AudioTrackSelection.struct_class = Types::AudioTrackSelection
|
919
932
|
|
933
|
+
AudioWatermarkSettings.add_member(:nielsen_watermarks_settings, Shapes::ShapeRef.new(shape: NielsenWatermarksSettings, location_name: "nielsenWatermarksSettings"))
|
934
|
+
AudioWatermarkSettings.struct_class = Types::AudioWatermarkSettings
|
935
|
+
|
920
936
|
AutomaticInputFailoverSettings.add_member(:error_clear_time_msec, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "errorClearTimeMsec"))
|
921
937
|
AutomaticInputFailoverSettings.add_member(:failover_conditions, Shapes::ShapeRef.new(shape: __listOfFailoverCondition, location_name: "failoverConditions"))
|
922
938
|
AutomaticInputFailoverSettings.add_member(:input_preference, Shapes::ShapeRef.new(shape: InputPreference, location_name: "inputPreference"))
|
@@ -1152,6 +1168,11 @@ module Aws::MediaLive
|
|
1152
1168
|
ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1153
1169
|
ChannelSummary.struct_class = Types::ChannelSummary
|
1154
1170
|
|
1171
|
+
ClaimDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
1172
|
+
ClaimDeviceRequest.struct_class = Types::ClaimDeviceRequest
|
1173
|
+
|
1174
|
+
ClaimDeviceResponse.struct_class = Types::ClaimDeviceResponse
|
1175
|
+
|
1155
1176
|
ColorSpacePassthroughSettings.struct_class = Types::ColorSpacePassthroughSettings
|
1156
1177
|
|
1157
1178
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -2052,6 +2073,7 @@ module Aws::MediaLive
|
|
2052
2073
|
InputSettings.add_member(:filter_strength, Shapes::ShapeRef.new(shape: __integerMin1Max5, location_name: "filterStrength"))
|
2053
2074
|
InputSettings.add_member(:input_filter, Shapes::ShapeRef.new(shape: InputFilter, location_name: "inputFilter"))
|
2054
2075
|
InputSettings.add_member(:network_input_settings, Shapes::ShapeRef.new(shape: NetworkInputSettings, location_name: "networkInputSettings"))
|
2076
|
+
InputSettings.add_member(:scte_35_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8191, location_name: "scte35Pid"))
|
2055
2077
|
InputSettings.add_member(:smpte_2038_data_preference, Shapes::ShapeRef.new(shape: Smpte2038DataPreference, location_name: "smpte2038DataPreference"))
|
2056
2078
|
InputSettings.add_member(:source_end_behavior, Shapes::ShapeRef.new(shape: InputSourceEndBehavior, location_name: "sourceEndBehavior"))
|
2057
2079
|
InputSettings.add_member(:video_selector, Shapes::ShapeRef.new(shape: VideoSelector, location_name: "videoSelector"))
|
@@ -2488,10 +2510,24 @@ module Aws::MediaLive
|
|
2488
2510
|
NetworkInputSettings.add_member(:server_validation, Shapes::ShapeRef.new(shape: NetworkInputServerValidation, location_name: "serverValidation"))
|
2489
2511
|
NetworkInputSettings.struct_class = Types::NetworkInputSettings
|
2490
2512
|
|
2513
|
+
NielsenCBET.add_member(:cbet_check_digit_string, Shapes::ShapeRef.new(shape: __stringMin2Max2, required: true, location_name: "cbetCheckDigitString"))
|
2514
|
+
NielsenCBET.add_member(:cbet_stepaside, Shapes::ShapeRef.new(shape: NielsenWatermarksCbetStepaside, required: true, location_name: "cbetStepaside"))
|
2515
|
+
NielsenCBET.add_member(:csid, Shapes::ShapeRef.new(shape: __stringMin1Max7, required: true, location_name: "csid"))
|
2516
|
+
NielsenCBET.struct_class = Types::NielsenCBET
|
2517
|
+
|
2491
2518
|
NielsenConfiguration.add_member(:distributor_id, Shapes::ShapeRef.new(shape: __string, location_name: "distributorId"))
|
2492
2519
|
NielsenConfiguration.add_member(:nielsen_pcm_to_id_3_tagging, Shapes::ShapeRef.new(shape: NielsenPcmToId3TaggingState, location_name: "nielsenPcmToId3Tagging"))
|
2493
2520
|
NielsenConfiguration.struct_class = Types::NielsenConfiguration
|
2494
2521
|
|
2522
|
+
NielsenNaesIiNw.add_member(:check_digit_string, Shapes::ShapeRef.new(shape: __stringMin2Max2, required: true, location_name: "checkDigitString"))
|
2523
|
+
NielsenNaesIiNw.add_member(:sid, Shapes::ShapeRef.new(shape: __doubleMin1Max65535, required: true, location_name: "sid"))
|
2524
|
+
NielsenNaesIiNw.struct_class = Types::NielsenNaesIiNw
|
2525
|
+
|
2526
|
+
NielsenWatermarksSettings.add_member(:nielsen_cbet_settings, Shapes::ShapeRef.new(shape: NielsenCBET, location_name: "nielsenCbetSettings"))
|
2527
|
+
NielsenWatermarksSettings.add_member(:nielsen_distribution_type, Shapes::ShapeRef.new(shape: NielsenWatermarksDistributionTypes, location_name: "nielsenDistributionType"))
|
2528
|
+
NielsenWatermarksSettings.add_member(:nielsen_naes_ii_nw_settings, Shapes::ShapeRef.new(shape: NielsenNaesIiNw, location_name: "nielsenNaesIiNwSettings"))
|
2529
|
+
NielsenWatermarksSettings.struct_class = Types::NielsenWatermarksSettings
|
2530
|
+
|
2495
2531
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
2496
2532
|
NotFoundException.struct_class = Types::NotFoundException
|
2497
2533
|
|
@@ -3338,6 +3374,22 @@ module Aws::MediaLive
|
|
3338
3374
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
3339
3375
|
end)
|
3340
3376
|
|
3377
|
+
api.add_operation(:claim_device, Seahorse::Model::Operation.new.tap do |o|
|
3378
|
+
o.name = "ClaimDevice"
|
3379
|
+
o.http_method = "POST"
|
3380
|
+
o.http_request_uri = "/prod/claimDevice"
|
3381
|
+
o.input = Shapes::ShapeRef.new(shape: ClaimDeviceRequest)
|
3382
|
+
o.output = Shapes::ShapeRef.new(shape: ClaimDeviceResponse)
|
3383
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3384
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
3385
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
3386
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3387
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
3388
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3389
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
3390
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
3391
|
+
end)
|
3392
|
+
|
3341
3393
|
api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
|
3342
3394
|
o.name = "CreateChannel"
|
3343
3395
|
o.http_method = "POST"
|
@@ -650,6 +650,20 @@ module Aws::MediaLive
|
|
650
650
|
# audio_selector_name: "__string", # required
|
651
651
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
652
652
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
653
|
+
# audio_watermarking_settings: {
|
654
|
+
# nielsen_watermarks_settings: {
|
655
|
+
# nielsen_cbet_settings: {
|
656
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
657
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
658
|
+
# csid: "__stringMin1Max7", # required
|
659
|
+
# },
|
660
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
661
|
+
# nielsen_naes_ii_nw_settings: {
|
662
|
+
# check_digit_string: "__stringMin2Max2", # required
|
663
|
+
# sid: 1.0, # required
|
664
|
+
# },
|
665
|
+
# },
|
666
|
+
# },
|
653
667
|
# codec_settings: {
|
654
668
|
# aac_settings: {
|
655
669
|
# bitrate: 1.0,
|
@@ -750,6 +764,11 @@ module Aws::MediaLive
|
|
750
764
|
# audioType are both ignored if inputType is broadcasterMixedAd.
|
751
765
|
# @return [String]
|
752
766
|
#
|
767
|
+
# @!attribute [rw] audio_watermarking_settings
|
768
|
+
# Settings to configure one or more solutions that insert audio
|
769
|
+
# watermarks in the audio encode
|
770
|
+
# @return [Types::AudioWatermarkSettings]
|
771
|
+
#
|
753
772
|
# @!attribute [rw] codec_settings
|
754
773
|
# Audio codec settings.
|
755
774
|
# @return [Types::AudioCodecSettings]
|
@@ -791,6 +810,7 @@ module Aws::MediaLive
|
|
791
810
|
:audio_selector_name,
|
792
811
|
:audio_type,
|
793
812
|
:audio_type_control,
|
813
|
+
:audio_watermarking_settings,
|
794
814
|
:codec_settings,
|
795
815
|
:language_code,
|
796
816
|
:language_code_control,
|
@@ -1158,6 +1178,38 @@ module Aws::MediaLive
|
|
1158
1178
|
include Aws::Structure
|
1159
1179
|
end
|
1160
1180
|
|
1181
|
+
# Audio Watermark Settings
|
1182
|
+
#
|
1183
|
+
# @note When making an API call, you may pass AudioWatermarkSettings
|
1184
|
+
# data as a hash:
|
1185
|
+
#
|
1186
|
+
# {
|
1187
|
+
# nielsen_watermarks_settings: {
|
1188
|
+
# nielsen_cbet_settings: {
|
1189
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
1190
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
1191
|
+
# csid: "__stringMin1Max7", # required
|
1192
|
+
# },
|
1193
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
1194
|
+
# nielsen_naes_ii_nw_settings: {
|
1195
|
+
# check_digit_string: "__stringMin2Max2", # required
|
1196
|
+
# sid: 1.0, # required
|
1197
|
+
# },
|
1198
|
+
# },
|
1199
|
+
# }
|
1200
|
+
#
|
1201
|
+
# @!attribute [rw] nielsen_watermarks_settings
|
1202
|
+
# Settings to configure Nielsen Watermarks in the audio encode
|
1203
|
+
# @return [Types::NielsenWatermarksSettings]
|
1204
|
+
#
|
1205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioWatermarkSettings AWS API Documentation
|
1206
|
+
#
|
1207
|
+
class AudioWatermarkSettings < Struct.new(
|
1208
|
+
:nielsen_watermarks_settings)
|
1209
|
+
SENSITIVE = []
|
1210
|
+
include Aws::Structure
|
1211
|
+
end
|
1212
|
+
|
1161
1213
|
# The settings for Automatic Input Failover.
|
1162
1214
|
#
|
1163
1215
|
# @note When making an API call, you may pass AutomaticInputFailoverSettings
|
@@ -3023,7 +3075,7 @@ module Aws::MediaLive
|
|
3023
3075
|
# @return [Hash<String,String>]
|
3024
3076
|
#
|
3025
3077
|
# @!attribute [rw] vpc
|
3026
|
-
# Settings for VPC
|
3078
|
+
# Settings for any VPC outputs.
|
3027
3079
|
# @return [Types::VpcOutputSettingsDescription]
|
3028
3080
|
#
|
3029
3081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelSummary AWS API Documentation
|
@@ -3048,6 +3100,32 @@ module Aws::MediaLive
|
|
3048
3100
|
include Aws::Structure
|
3049
3101
|
end
|
3050
3102
|
|
3103
|
+
# Request to claim an AWS Elemental device that you have purchased from
|
3104
|
+
# a third-party vendor.
|
3105
|
+
#
|
3106
|
+
# @note When making an API call, you may pass ClaimDeviceRequest
|
3107
|
+
# data as a hash:
|
3108
|
+
#
|
3109
|
+
# {
|
3110
|
+
# id: "__string",
|
3111
|
+
# }
|
3112
|
+
#
|
3113
|
+
# @!attribute [rw] id
|
3114
|
+
# The id of the device you want to claim.
|
3115
|
+
# @return [String]
|
3116
|
+
#
|
3117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ClaimDeviceRequest AWS API Documentation
|
3118
|
+
#
|
3119
|
+
class ClaimDeviceRequest < Struct.new(
|
3120
|
+
:id)
|
3121
|
+
SENSITIVE = []
|
3122
|
+
include Aws::Structure
|
3123
|
+
end
|
3124
|
+
|
3125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ClaimDeviceResponse AWS API Documentation
|
3126
|
+
#
|
3127
|
+
class ClaimDeviceResponse < Aws::EmptyStructure; end
|
3128
|
+
|
3051
3129
|
# Passthrough applies no color space conversion to the output
|
3052
3130
|
#
|
3053
3131
|
# @api private
|
@@ -3118,7 +3196,7 @@ module Aws::MediaLive
|
|
3118
3196
|
# @return [Hash<String,String>]
|
3119
3197
|
#
|
3120
3198
|
# @!attribute [rw] vpc
|
3121
|
-
# Settings for VPC
|
3199
|
+
# Settings for the VPC outputs
|
3122
3200
|
# @return [Types::VpcOutputSettings]
|
3123
3201
|
#
|
3124
3202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
@@ -3182,6 +3260,20 @@ module Aws::MediaLive
|
|
3182
3260
|
# audio_selector_name: "__string", # required
|
3183
3261
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
3184
3262
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
3263
|
+
# audio_watermarking_settings: {
|
3264
|
+
# nielsen_watermarks_settings: {
|
3265
|
+
# nielsen_cbet_settings: {
|
3266
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
3267
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
3268
|
+
# csid: "__stringMin1Max7", # required
|
3269
|
+
# },
|
3270
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
3271
|
+
# nielsen_naes_ii_nw_settings: {
|
3272
|
+
# check_digit_string: "__stringMin2Max2", # required
|
3273
|
+
# sid: 1.0, # required
|
3274
|
+
# },
|
3275
|
+
# },
|
3276
|
+
# },
|
3185
3277
|
# codec_settings: {
|
3186
3278
|
# aac_settings: {
|
3187
3279
|
# bitrate: 1.0,
|
@@ -4049,6 +4141,7 @@ module Aws::MediaLive
|
|
4049
4141
|
# },
|
4050
4142
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
4051
4143
|
# },
|
4144
|
+
# scte_35_pid: 1,
|
4052
4145
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
4053
4146
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
4054
4147
|
# video_selector: {
|
@@ -4227,6 +4320,7 @@ module Aws::MediaLive
|
|
4227
4320
|
# @return [Hash<String,String>]
|
4228
4321
|
#
|
4229
4322
|
# @!attribute [rw] type
|
4323
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
4230
4324
|
# @return [String]
|
4231
4325
|
#
|
4232
4326
|
# @!attribute [rw] vpc
|
@@ -4288,7 +4382,7 @@ module Aws::MediaLive
|
|
4288
4382
|
# tags: {
|
4289
4383
|
# "__string" => "__string",
|
4290
4384
|
# },
|
4291
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
4385
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
|
4292
4386
|
# vpc: {
|
4293
4387
|
# security_group_ids: ["__string"],
|
4294
4388
|
# subnet_ids: ["__string"], # required
|
@@ -4325,6 +4419,7 @@ module Aws::MediaLive
|
|
4325
4419
|
# @return [Hash<String,String>]
|
4326
4420
|
#
|
4327
4421
|
# @!attribute [rw] type
|
4422
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
4328
4423
|
# @return [String]
|
4329
4424
|
#
|
4330
4425
|
# @!attribute [rw] vpc
|
@@ -5416,9 +5511,9 @@ module Aws::MediaLive
|
|
5416
5511
|
# @!attribute [rw] input_source_type
|
5417
5512
|
# There are two types of input sources, static and dynamic. If an
|
5418
5513
|
# input source is dynamic you can change the source url of the input
|
5419
|
-
# dynamically using an input switch action.
|
5420
|
-
#
|
5421
|
-
# all input sources are static.
|
5514
|
+
# dynamically using an input switch action. Currently, two input types
|
5515
|
+
# support a dynamic url at this time, MP4\_FILE and TS\_FILE. By
|
5516
|
+
# default all input sources are static.
|
5422
5517
|
# @return [String]
|
5423
5518
|
#
|
5424
5519
|
# @!attribute [rw] media_connect_flows
|
@@ -5443,6 +5538,7 @@ module Aws::MediaLive
|
|
5443
5538
|
# @return [Hash<String,String>]
|
5444
5539
|
#
|
5445
5540
|
# @!attribute [rw] type
|
5541
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
5446
5542
|
# @return [String]
|
5447
5543
|
#
|
5448
5544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
@@ -6468,6 +6564,20 @@ module Aws::MediaLive
|
|
6468
6564
|
# audio_selector_name: "__string", # required
|
6469
6565
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
6470
6566
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
6567
|
+
# audio_watermarking_settings: {
|
6568
|
+
# nielsen_watermarks_settings: {
|
6569
|
+
# nielsen_cbet_settings: {
|
6570
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
6571
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
6572
|
+
# csid: "__stringMin1Max7", # required
|
6573
|
+
# },
|
6574
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
6575
|
+
# nielsen_naes_ii_nw_settings: {
|
6576
|
+
# check_digit_string: "__stringMin2Max2", # required
|
6577
|
+
# sid: 1.0, # required
|
6578
|
+
# },
|
6579
|
+
# },
|
6580
|
+
# },
|
6471
6581
|
# codec_settings: {
|
6472
6582
|
# aac_settings: {
|
6473
6583
|
# bitrate: 1.0,
|
@@ -9632,7 +9742,8 @@ module Aws::MediaLive
|
|
9632
9742
|
# @!attribute [rw] input_source_type
|
9633
9743
|
# Certain pull input sources can be dynamic, meaning that they can
|
9634
9744
|
# have their URL's dynamically changes during input switch actions.
|
9635
|
-
# Presently, this functionality only works with MP4\_FILE
|
9745
|
+
# Presently, this functionality only works with MP4\_FILE and TS\_FILE
|
9746
|
+
# inputs.
|
9636
9747
|
# @return [String]
|
9637
9748
|
#
|
9638
9749
|
# @!attribute [rw] media_connect_flows
|
@@ -9665,6 +9776,7 @@ module Aws::MediaLive
|
|
9665
9776
|
# @return [Hash<String,String>]
|
9666
9777
|
#
|
9667
9778
|
# @!attribute [rw] type
|
9779
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
9668
9780
|
# @return [String]
|
9669
9781
|
#
|
9670
9782
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
@@ -9798,6 +9910,7 @@ module Aws::MediaLive
|
|
9798
9910
|
# },
|
9799
9911
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
9800
9912
|
# },
|
9913
|
+
# scte_35_pid: 1,
|
9801
9914
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
9802
9915
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
9803
9916
|
# video_selector: {
|
@@ -10683,6 +10796,7 @@ module Aws::MediaLive
|
|
10683
10796
|
# },
|
10684
10797
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
10685
10798
|
# },
|
10799
|
+
# scte_35_pid: 1,
|
10686
10800
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
10687
10801
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
10688
10802
|
# video_selector: {
|
@@ -10740,6 +10854,11 @@ module Aws::MediaLive
|
|
10740
10854
|
# Input settings.
|
10741
10855
|
# @return [Types::NetworkInputSettings]
|
10742
10856
|
#
|
10857
|
+
# @!attribute [rw] scte_35_pid
|
10858
|
+
# PID from which to read SCTE-35 messages. If left undefined, EML will
|
10859
|
+
# select the first SCTE-35 PID found in the input.
|
10860
|
+
# @return [Integer]
|
10861
|
+
#
|
10743
10862
|
# @!attribute [rw] smpte_2038_data_preference
|
10744
10863
|
# Specifies whether to extract applicable ancillary data from a
|
10745
10864
|
# SMPTE-2038 source in this input. Applicable data types are captions,
|
@@ -10769,6 +10888,7 @@ module Aws::MediaLive
|
|
10769
10888
|
:filter_strength,
|
10770
10889
|
:input_filter,
|
10771
10890
|
:network_input_settings,
|
10891
|
+
:scte_35_pid,
|
10772
10892
|
:smpte_2038_data_preference,
|
10773
10893
|
:source_end_behavior,
|
10774
10894
|
:video_selector)
|
@@ -13454,6 +13574,40 @@ module Aws::MediaLive
|
|
13454
13574
|
include Aws::Structure
|
13455
13575
|
end
|
13456
13576
|
|
13577
|
+
# Nielsen CBET
|
13578
|
+
#
|
13579
|
+
# @note When making an API call, you may pass NielsenCBET
|
13580
|
+
# data as a hash:
|
13581
|
+
#
|
13582
|
+
# {
|
13583
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
13584
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
13585
|
+
# csid: "__stringMin1Max7", # required
|
13586
|
+
# }
|
13587
|
+
#
|
13588
|
+
# @!attribute [rw] cbet_check_digit_string
|
13589
|
+
# Enter the CBET check digits to use in the watermark.
|
13590
|
+
# @return [String]
|
13591
|
+
#
|
13592
|
+
# @!attribute [rw] cbet_stepaside
|
13593
|
+
# Determines the method of CBET insertion mode when prior encoding is
|
13594
|
+
# detected on the same layer.
|
13595
|
+
# @return [String]
|
13596
|
+
#
|
13597
|
+
# @!attribute [rw] csid
|
13598
|
+
# Enter the CBET Source ID (CSID) to use in the watermark
|
13599
|
+
# @return [String]
|
13600
|
+
#
|
13601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenCBET AWS API Documentation
|
13602
|
+
#
|
13603
|
+
class NielsenCBET < Struct.new(
|
13604
|
+
:cbet_check_digit_string,
|
13605
|
+
:cbet_stepaside,
|
13606
|
+
:csid)
|
13607
|
+
SENSITIVE = []
|
13608
|
+
include Aws::Structure
|
13609
|
+
end
|
13610
|
+
|
13457
13611
|
# Nielsen Configuration
|
13458
13612
|
#
|
13459
13613
|
# @note When making an API call, you may pass NielsenConfiguration
|
@@ -13481,6 +13635,76 @@ module Aws::MediaLive
|
|
13481
13635
|
include Aws::Structure
|
13482
13636
|
end
|
13483
13637
|
|
13638
|
+
# Nielsen Naes Ii Nw
|
13639
|
+
#
|
13640
|
+
# @note When making an API call, you may pass NielsenNaesIiNw
|
13641
|
+
# data as a hash:
|
13642
|
+
#
|
13643
|
+
# {
|
13644
|
+
# check_digit_string: "__stringMin2Max2", # required
|
13645
|
+
# sid: 1.0, # required
|
13646
|
+
# }
|
13647
|
+
#
|
13648
|
+
# @!attribute [rw] check_digit_string
|
13649
|
+
# Enter the check digit string for the watermark
|
13650
|
+
# @return [String]
|
13651
|
+
#
|
13652
|
+
# @!attribute [rw] sid
|
13653
|
+
# Enter the Nielsen Source ID (SID) to include in the watermark
|
13654
|
+
# @return [Float]
|
13655
|
+
#
|
13656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenNaesIiNw AWS API Documentation
|
13657
|
+
#
|
13658
|
+
class NielsenNaesIiNw < Struct.new(
|
13659
|
+
:check_digit_string,
|
13660
|
+
:sid)
|
13661
|
+
SENSITIVE = []
|
13662
|
+
include Aws::Structure
|
13663
|
+
end
|
13664
|
+
|
13665
|
+
# Nielsen Watermarks Settings
|
13666
|
+
#
|
13667
|
+
# @note When making an API call, you may pass NielsenWatermarksSettings
|
13668
|
+
# data as a hash:
|
13669
|
+
#
|
13670
|
+
# {
|
13671
|
+
# nielsen_cbet_settings: {
|
13672
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
13673
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
13674
|
+
# csid: "__stringMin1Max7", # required
|
13675
|
+
# },
|
13676
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
13677
|
+
# nielsen_naes_ii_nw_settings: {
|
13678
|
+
# check_digit_string: "__stringMin2Max2", # required
|
13679
|
+
# sid: 1.0, # required
|
13680
|
+
# },
|
13681
|
+
# }
|
13682
|
+
#
|
13683
|
+
# @!attribute [rw] nielsen_cbet_settings
|
13684
|
+
# Complete these fields only if you want to insert watermarks of type
|
13685
|
+
# Nielsen CBET
|
13686
|
+
# @return [Types::NielsenCBET]
|
13687
|
+
#
|
13688
|
+
# @!attribute [rw] nielsen_distribution_type
|
13689
|
+
# Choose the distribution types that you want to assign to the
|
13690
|
+
# watermarks: - PROGRAM\_CONTENT - FINAL\_DISTRIBUTOR
|
13691
|
+
# @return [String]
|
13692
|
+
#
|
13693
|
+
# @!attribute [rw] nielsen_naes_ii_nw_settings
|
13694
|
+
# Complete these fields only if you want to insert watermarks of type
|
13695
|
+
# Nielsen NAES II (N2) and Nielsen NAES VI (NW).
|
13696
|
+
# @return [Types::NielsenNaesIiNw]
|
13697
|
+
#
|
13698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenWatermarksSettings AWS API Documentation
|
13699
|
+
#
|
13700
|
+
class NielsenWatermarksSettings < Struct.new(
|
13701
|
+
:nielsen_cbet_settings,
|
13702
|
+
:nielsen_distribution_type,
|
13703
|
+
:nielsen_naes_ii_nw_settings)
|
13704
|
+
SENSITIVE = []
|
13705
|
+
include Aws::Structure
|
13706
|
+
end
|
13707
|
+
|
13484
13708
|
# @!attribute [rw] message
|
13485
13709
|
# @return [String]
|
13486
13710
|
#
|
@@ -17582,6 +17806,20 @@ module Aws::MediaLive
|
|
17582
17806
|
# audio_selector_name: "__string", # required
|
17583
17807
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
17584
17808
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
17809
|
+
# audio_watermarking_settings: {
|
17810
|
+
# nielsen_watermarks_settings: {
|
17811
|
+
# nielsen_cbet_settings: {
|
17812
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
17813
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
17814
|
+
# csid: "__stringMin1Max7", # required
|
17815
|
+
# },
|
17816
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
17817
|
+
# nielsen_naes_ii_nw_settings: {
|
17818
|
+
# check_digit_string: "__stringMin2Max2", # required
|
17819
|
+
# sid: 1.0, # required
|
17820
|
+
# },
|
17821
|
+
# },
|
17822
|
+
# },
|
17585
17823
|
# codec_settings: {
|
17586
17824
|
# aac_settings: {
|
17587
17825
|
# bitrate: 1.0,
|
@@ -18449,6 +18687,7 @@ module Aws::MediaLive
|
|
18449
18687
|
# },
|
18450
18688
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
18451
18689
|
# },
|
18690
|
+
# scte_35_pid: 1,
|
18452
18691
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
18453
18692
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
18454
18693
|
# video_selector: {
|
data/lib/aws-sdk-medialive.rb
CHANGED
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.
|
4
|
+
version: 1.80.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: 2021-
|
11
|
+
date: 2021-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|