aws-sdk-medialive 1.76.0 → 1.77.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +102 -7
- data/lib/aws-sdk-medialive/client_api.rb +50 -0
- data/lib/aws-sdk-medialive/types.rb +236 -7
- data/lib/aws-sdk-medialive.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da36f10d0a389cbf162ea6f246b268a84ac25300f90d2b92a561e6a32a758143
|
4
|
+
data.tar.gz: 3de8b627da88eb5b9f834f505564a8e12ffd119cc73101f6f0096472f6c0bd9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 779eb2937f23fabe5643feeba1064de43bbc6d1cba519dcd5de359ce546feaf226f694e89a679c732aa053ede0dd14a7c0a7c5b93177cd824334f1352fa3c951
|
7
|
+
data.tar.gz: 5f5966e8fe7e069f60063615f3dbd95d633c25e0f672823ad8b59903db96cb188760efbb55459a4e939453651f386fa1bbbbba6662d2dd74d9f80681cfa62f6f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
@@ -769,6 +769,30 @@ module Aws::MediaLive
|
|
769
769
|
req.send_request(options)
|
770
770
|
end
|
771
771
|
|
772
|
+
# Send a request to claim an AWS Elemental device that you have
|
773
|
+
# purchased from a third-party vendor. After the request succeeds, you
|
774
|
+
# will own the device.
|
775
|
+
#
|
776
|
+
# @option params [String] :id
|
777
|
+
# The id of the device you want to claim.
|
778
|
+
#
|
779
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
780
|
+
#
|
781
|
+
# @example Request syntax with placeholder values
|
782
|
+
#
|
783
|
+
# resp = client.claim_device({
|
784
|
+
# id: "__string",
|
785
|
+
# })
|
786
|
+
#
|
787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ClaimDevice AWS API Documentation
|
788
|
+
#
|
789
|
+
# @overload claim_device(params = {})
|
790
|
+
# @param [Hash] params ({})
|
791
|
+
def claim_device(params = {}, options = {})
|
792
|
+
req = build_request(:claim_device, params)
|
793
|
+
req.send_request(options)
|
794
|
+
end
|
795
|
+
|
772
796
|
# Creates a new channel
|
773
797
|
#
|
774
798
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
@@ -850,6 +874,20 @@ module Aws::MediaLive
|
|
850
874
|
# audio_selector_name: "__string", # required
|
851
875
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
852
876
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
877
|
+
# audio_watermarking_settings: {
|
878
|
+
# nielsen_watermarks_settings: {
|
879
|
+
# nielsen_cbet_settings: {
|
880
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
881
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
882
|
+
# csid: "__stringMin1Max7", # required
|
883
|
+
# },
|
884
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
885
|
+
# nielsen_naes_ii_nw_settings: {
|
886
|
+
# check_digit_string: "__stringMin2Max2", # required
|
887
|
+
# sid: 1.0, # required
|
888
|
+
# },
|
889
|
+
# },
|
890
|
+
# },
|
853
891
|
# codec_settings: {
|
854
892
|
# aac_settings: {
|
855
893
|
# bitrate: 1.0,
|
@@ -1785,6 +1823,12 @@ module Aws::MediaLive
|
|
1785
1823
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
1786
1824
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
1787
1825
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1826
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
1827
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
1828
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
1829
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
1830
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
1831
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
1788
1832
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
1789
1833
|
# 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
1834
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -2402,6 +2446,7 @@ module Aws::MediaLive
|
|
2402
2446
|
# @option params [Hash<String,String>] :tags
|
2403
2447
|
#
|
2404
2448
|
# @option params [String] :type
|
2449
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
2405
2450
|
#
|
2406
2451
|
# @option params [Types::InputVpcRequest] :vpc
|
2407
2452
|
# Settings for a private VPC Input. When this property is specified, the
|
@@ -2446,7 +2491,7 @@ module Aws::MediaLive
|
|
2446
2491
|
# tags: {
|
2447
2492
|
# "__string" => "__string",
|
2448
2493
|
# },
|
2449
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
2494
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
|
2450
2495
|
# vpc: {
|
2451
2496
|
# security_group_ids: ["__string"],
|
2452
2497
|
# subnet_ids: ["__string"], # required
|
@@ -2484,7 +2529,7 @@ module Aws::MediaLive
|
|
2484
2529
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2485
2530
|
# resp.input.tags #=> Hash
|
2486
2531
|
# 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"
|
2532
|
+
# 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
2533
|
#
|
2489
2534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2490
2535
|
#
|
@@ -2741,7 +2786,7 @@ module Aws::MediaLive
|
|
2741
2786
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2742
2787
|
# resp.input.tags #=> Hash
|
2743
2788
|
# 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"
|
2789
|
+
# 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
2790
|
#
|
2746
2791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2747
2792
|
#
|
@@ -2833,6 +2878,12 @@ module Aws::MediaLive
|
|
2833
2878
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
2834
2879
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
2835
2880
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2881
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
2882
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
2883
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
2884
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
2885
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
2886
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
2836
2887
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
2837
2888
|
# 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
2889
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -3752,6 +3803,12 @@ module Aws::MediaLive
|
|
3752
3803
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
3753
3804
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
3754
3805
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3806
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
3807
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
3808
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
3809
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
3810
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
3811
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
3755
3812
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
3756
3813
|
# 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
3814
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -4414,7 +4471,7 @@ module Aws::MediaLive
|
|
4414
4471
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4415
4472
|
# resp.tags #=> Hash
|
4416
4473
|
# 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"
|
4474
|
+
# 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
4475
|
#
|
4419
4476
|
#
|
4420
4477
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5248,7 +5305,7 @@ module Aws::MediaLive
|
|
5248
5305
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5249
5306
|
# resp.inputs[0].tags #=> Hash
|
5250
5307
|
# 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"
|
5308
|
+
# 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
5309
|
# resp.next_token #=> String
|
5253
5310
|
#
|
5254
5311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -5685,6 +5742,12 @@ module Aws::MediaLive
|
|
5685
5742
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
5686
5743
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
5687
5744
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5745
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
5746
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
5747
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
5748
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
5749
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
5750
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
5688
5751
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
5689
5752
|
# 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
5753
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -6386,6 +6449,12 @@ module Aws::MediaLive
|
|
6386
6449
|
# resp.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
6387
6450
|
# resp.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
6388
6451
|
# resp.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
6452
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
6453
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
6454
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
6455
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
6456
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
6457
|
+
# resp.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
6389
6458
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
6390
6459
|
# 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
6460
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -7129,6 +7198,20 @@ module Aws::MediaLive
|
|
7129
7198
|
# audio_selector_name: "__string", # required
|
7130
7199
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
7131
7200
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
7201
|
+
# audio_watermarking_settings: {
|
7202
|
+
# nielsen_watermarks_settings: {
|
7203
|
+
# nielsen_cbet_settings: {
|
7204
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
7205
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
7206
|
+
# csid: "__stringMin1Max7", # required
|
7207
|
+
# },
|
7208
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
7209
|
+
# nielsen_naes_ii_nw_settings: {
|
7210
|
+
# check_digit_string: "__stringMin2Max2", # required
|
7211
|
+
# sid: 1.0, # required
|
7212
|
+
# },
|
7213
|
+
# },
|
7214
|
+
# },
|
7132
7215
|
# codec_settings: {
|
7133
7216
|
# aac_settings: {
|
7134
7217
|
# bitrate: 1.0,
|
@@ -8054,6 +8137,12 @@ module Aws::MediaLive
|
|
8054
8137
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
8055
8138
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
8056
8139
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
8140
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
8141
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
8142
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
8143
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
8144
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
8145
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
8057
8146
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
8058
8147
|
# 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
8148
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -8716,6 +8805,12 @@ module Aws::MediaLive
|
|
8716
8805
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_selector_name #=> String
|
8717
8806
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type #=> String, one of "CLEAN_EFFECTS", "HEARING_IMPAIRED", "UNDEFINED", "VISUAL_IMPAIRED_COMMENTARY"
|
8718
8807
|
# resp.channel.encoder_settings.audio_descriptions[0].audio_type_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
8808
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_check_digit_string #=> String
|
8809
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.cbet_stepaside #=> String, one of "DISABLED", "ENABLED"
|
8810
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_cbet_settings.csid #=> String
|
8811
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_distribution_type #=> String, one of "FINAL_DISTRIBUTOR", "PROGRAM_CONTENT"
|
8812
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.check_digit_string #=> String
|
8813
|
+
# resp.channel.encoder_settings.audio_descriptions[0].audio_watermarking_settings.nielsen_watermarks_settings.nielsen_naes_ii_nw_settings.sid #=> Float
|
8719
8814
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.bitrate #=> Float
|
8720
8815
|
# 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
8816
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.aac_settings.input_type #=> String, one of "BROADCASTER_MIXED_AD", "NORMAL"
|
@@ -9394,7 +9489,7 @@ module Aws::MediaLive
|
|
9394
9489
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
9395
9490
|
# resp.input.tags #=> Hash
|
9396
9491
|
# 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"
|
9492
|
+
# 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
9493
|
#
|
9399
9494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
9400
9495
|
#
|
@@ -9737,7 +9832,7 @@ module Aws::MediaLive
|
|
9737
9832
|
params: params,
|
9738
9833
|
config: config)
|
9739
9834
|
context[:gem_name] = 'aws-sdk-medialive'
|
9740
|
-
context[:gem_version] = '1.
|
9835
|
+
context[:gem_version] = '1.77.0'
|
9741
9836
|
Seahorse::Client::Request.new(handlers, context)
|
9742
9837
|
end
|
9743
9838
|
|
@@ -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')
|
@@ -788,6 +797,8 @@ module Aws::MediaLive
|
|
788
797
|
__stringMin1Max255 = Shapes::StringShape.new(name: '__stringMin1Max255')
|
789
798
|
__stringMin1Max256 = Shapes::StringShape.new(name: '__stringMin1Max256')
|
790
799
|
__stringMin1Max35 = Shapes::StringShape.new(name: '__stringMin1Max35')
|
800
|
+
__stringMin1Max7 = Shapes::StringShape.new(name: '__stringMin1Max7')
|
801
|
+
__stringMin2Max2 = Shapes::StringShape.new(name: '__stringMin2Max2')
|
791
802
|
__stringMin32Max32 = Shapes::StringShape.new(name: '__stringMin32Max32')
|
792
803
|
__stringMin34Max34 = Shapes::StringShape.new(name: '__stringMin34Max34')
|
793
804
|
__stringMin3Max3 = Shapes::StringShape.new(name: '__stringMin3Max3')
|
@@ -867,6 +878,7 @@ module Aws::MediaLive
|
|
867
878
|
AudioDescription.add_member(:audio_selector_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "audioSelectorName"))
|
868
879
|
AudioDescription.add_member(:audio_type, Shapes::ShapeRef.new(shape: AudioType, location_name: "audioType"))
|
869
880
|
AudioDescription.add_member(:audio_type_control, Shapes::ShapeRef.new(shape: AudioDescriptionAudioTypeControl, location_name: "audioTypeControl"))
|
881
|
+
AudioDescription.add_member(:audio_watermarking_settings, Shapes::ShapeRef.new(shape: AudioWatermarkSettings, location_name: "audioWatermarkingSettings"))
|
870
882
|
AudioDescription.add_member(:codec_settings, Shapes::ShapeRef.new(shape: AudioCodecSettings, location_name: "codecSettings"))
|
871
883
|
AudioDescription.add_member(:language_code, Shapes::ShapeRef.new(shape: __stringMin1Max35, location_name: "languageCode"))
|
872
884
|
AudioDescription.add_member(:language_code_control, Shapes::ShapeRef.new(shape: AudioDescriptionLanguageCodeControl, location_name: "languageCodeControl"))
|
@@ -917,6 +929,9 @@ module Aws::MediaLive
|
|
917
929
|
AudioTrackSelection.add_member(:tracks, Shapes::ShapeRef.new(shape: __listOfAudioTrack, required: true, location_name: "tracks"))
|
918
930
|
AudioTrackSelection.struct_class = Types::AudioTrackSelection
|
919
931
|
|
932
|
+
AudioWatermarkSettings.add_member(:nielsen_watermarks_settings, Shapes::ShapeRef.new(shape: NielsenWatermarksSettings, location_name: "nielsenWatermarksSettings"))
|
933
|
+
AudioWatermarkSettings.struct_class = Types::AudioWatermarkSettings
|
934
|
+
|
920
935
|
AutomaticInputFailoverSettings.add_member(:error_clear_time_msec, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "errorClearTimeMsec"))
|
921
936
|
AutomaticInputFailoverSettings.add_member(:failover_conditions, Shapes::ShapeRef.new(shape: __listOfFailoverCondition, location_name: "failoverConditions"))
|
922
937
|
AutomaticInputFailoverSettings.add_member(:input_preference, Shapes::ShapeRef.new(shape: InputPreference, location_name: "inputPreference"))
|
@@ -1152,6 +1167,11 @@ module Aws::MediaLive
|
|
1152
1167
|
ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1153
1168
|
ChannelSummary.struct_class = Types::ChannelSummary
|
1154
1169
|
|
1170
|
+
ClaimDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
1171
|
+
ClaimDeviceRequest.struct_class = Types::ClaimDeviceRequest
|
1172
|
+
|
1173
|
+
ClaimDeviceResponse.struct_class = Types::ClaimDeviceResponse
|
1174
|
+
|
1155
1175
|
ColorSpacePassthroughSettings.struct_class = Types::ColorSpacePassthroughSettings
|
1156
1176
|
|
1157
1177
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -2488,10 +2508,24 @@ module Aws::MediaLive
|
|
2488
2508
|
NetworkInputSettings.add_member(:server_validation, Shapes::ShapeRef.new(shape: NetworkInputServerValidation, location_name: "serverValidation"))
|
2489
2509
|
NetworkInputSettings.struct_class = Types::NetworkInputSettings
|
2490
2510
|
|
2511
|
+
NielsenCBET.add_member(:cbet_check_digit_string, Shapes::ShapeRef.new(shape: __stringMin2Max2, required: true, location_name: "cbetCheckDigitString"))
|
2512
|
+
NielsenCBET.add_member(:cbet_stepaside, Shapes::ShapeRef.new(shape: NielsenWatermarksCbetStepaside, required: true, location_name: "cbetStepaside"))
|
2513
|
+
NielsenCBET.add_member(:csid, Shapes::ShapeRef.new(shape: __stringMin1Max7, required: true, location_name: "csid"))
|
2514
|
+
NielsenCBET.struct_class = Types::NielsenCBET
|
2515
|
+
|
2491
2516
|
NielsenConfiguration.add_member(:distributor_id, Shapes::ShapeRef.new(shape: __string, location_name: "distributorId"))
|
2492
2517
|
NielsenConfiguration.add_member(:nielsen_pcm_to_id_3_tagging, Shapes::ShapeRef.new(shape: NielsenPcmToId3TaggingState, location_name: "nielsenPcmToId3Tagging"))
|
2493
2518
|
NielsenConfiguration.struct_class = Types::NielsenConfiguration
|
2494
2519
|
|
2520
|
+
NielsenNaesIiNw.add_member(:check_digit_string, Shapes::ShapeRef.new(shape: __stringMin2Max2, required: true, location_name: "checkDigitString"))
|
2521
|
+
NielsenNaesIiNw.add_member(:sid, Shapes::ShapeRef.new(shape: __doubleMin1Max65535, required: true, location_name: "sid"))
|
2522
|
+
NielsenNaesIiNw.struct_class = Types::NielsenNaesIiNw
|
2523
|
+
|
2524
|
+
NielsenWatermarksSettings.add_member(:nielsen_cbet_settings, Shapes::ShapeRef.new(shape: NielsenCBET, location_name: "nielsenCbetSettings"))
|
2525
|
+
NielsenWatermarksSettings.add_member(:nielsen_distribution_type, Shapes::ShapeRef.new(shape: NielsenWatermarksDistributionTypes, location_name: "nielsenDistributionType"))
|
2526
|
+
NielsenWatermarksSettings.add_member(:nielsen_naes_ii_nw_settings, Shapes::ShapeRef.new(shape: NielsenNaesIiNw, location_name: "nielsenNaesIiNwSettings"))
|
2527
|
+
NielsenWatermarksSettings.struct_class = Types::NielsenWatermarksSettings
|
2528
|
+
|
2495
2529
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
2496
2530
|
NotFoundException.struct_class = Types::NotFoundException
|
2497
2531
|
|
@@ -3338,6 +3372,22 @@ module Aws::MediaLive
|
|
3338
3372
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
3339
3373
|
end)
|
3340
3374
|
|
3375
|
+
api.add_operation(:claim_device, Seahorse::Model::Operation.new.tap do |o|
|
3376
|
+
o.name = "ClaimDevice"
|
3377
|
+
o.http_method = "POST"
|
3378
|
+
o.http_request_uri = "/prod/claimDevice"
|
3379
|
+
o.input = Shapes::ShapeRef.new(shape: ClaimDeviceRequest)
|
3380
|
+
o.output = Shapes::ShapeRef.new(shape: ClaimDeviceResponse)
|
3381
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3382
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
3383
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
3384
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3385
|
+
o.errors << Shapes::ShapeRef.new(shape: BadGatewayException)
|
3386
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3387
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimeoutException)
|
3388
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
3389
|
+
end)
|
3390
|
+
|
3341
3391
|
api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
|
3342
3392
|
o.name = "CreateChannel"
|
3343
3393
|
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,
|
@@ -4227,6 +4319,7 @@ module Aws::MediaLive
|
|
4227
4319
|
# @return [Hash<String,String>]
|
4228
4320
|
#
|
4229
4321
|
# @!attribute [rw] type
|
4322
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
4230
4323
|
# @return [String]
|
4231
4324
|
#
|
4232
4325
|
# @!attribute [rw] vpc
|
@@ -4288,7 +4381,7 @@ module Aws::MediaLive
|
|
4288
4381
|
# tags: {
|
4289
4382
|
# "__string" => "__string",
|
4290
4383
|
# },
|
4291
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
4384
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
|
4292
4385
|
# vpc: {
|
4293
4386
|
# security_group_ids: ["__string"],
|
4294
4387
|
# subnet_ids: ["__string"], # required
|
@@ -4325,6 +4418,7 @@ module Aws::MediaLive
|
|
4325
4418
|
# @return [Hash<String,String>]
|
4326
4419
|
#
|
4327
4420
|
# @!attribute [rw] type
|
4421
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
4328
4422
|
# @return [String]
|
4329
4423
|
#
|
4330
4424
|
# @!attribute [rw] vpc
|
@@ -5416,9 +5510,9 @@ module Aws::MediaLive
|
|
5416
5510
|
# @!attribute [rw] input_source_type
|
5417
5511
|
# There are two types of input sources, static and dynamic. If an
|
5418
5512
|
# 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.
|
5513
|
+
# dynamically using an input switch action. Currently, two input types
|
5514
|
+
# support a dynamic url at this time, MP4\_FILE and TS\_FILE. By
|
5515
|
+
# default all input sources are static.
|
5422
5516
|
# @return [String]
|
5423
5517
|
#
|
5424
5518
|
# @!attribute [rw] media_connect_flows
|
@@ -5443,6 +5537,7 @@ module Aws::MediaLive
|
|
5443
5537
|
# @return [Hash<String,String>]
|
5444
5538
|
#
|
5445
5539
|
# @!attribute [rw] type
|
5540
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
5446
5541
|
# @return [String]
|
5447
5542
|
#
|
5448
5543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
@@ -6468,6 +6563,20 @@ module Aws::MediaLive
|
|
6468
6563
|
# audio_selector_name: "__string", # required
|
6469
6564
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
6470
6565
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
6566
|
+
# audio_watermarking_settings: {
|
6567
|
+
# nielsen_watermarks_settings: {
|
6568
|
+
# nielsen_cbet_settings: {
|
6569
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
6570
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
6571
|
+
# csid: "__stringMin1Max7", # required
|
6572
|
+
# },
|
6573
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
6574
|
+
# nielsen_naes_ii_nw_settings: {
|
6575
|
+
# check_digit_string: "__stringMin2Max2", # required
|
6576
|
+
# sid: 1.0, # required
|
6577
|
+
# },
|
6578
|
+
# },
|
6579
|
+
# },
|
6471
6580
|
# codec_settings: {
|
6472
6581
|
# aac_settings: {
|
6473
6582
|
# bitrate: 1.0,
|
@@ -9632,7 +9741,8 @@ module Aws::MediaLive
|
|
9632
9741
|
# @!attribute [rw] input_source_type
|
9633
9742
|
# Certain pull input sources can be dynamic, meaning that they can
|
9634
9743
|
# have their URL's dynamically changes during input switch actions.
|
9635
|
-
# Presently, this functionality only works with MP4\_FILE
|
9744
|
+
# Presently, this functionality only works with MP4\_FILE and TS\_FILE
|
9745
|
+
# inputs.
|
9636
9746
|
# @return [String]
|
9637
9747
|
#
|
9638
9748
|
# @!attribute [rw] media_connect_flows
|
@@ -9665,6 +9775,7 @@ module Aws::MediaLive
|
|
9665
9775
|
# @return [Hash<String,String>]
|
9666
9776
|
#
|
9667
9777
|
# @!attribute [rw] type
|
9778
|
+
# The different types of inputs that AWS Elemental MediaLive supports.
|
9668
9779
|
# @return [String]
|
9669
9780
|
#
|
9670
9781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
@@ -13454,6 +13565,40 @@ module Aws::MediaLive
|
|
13454
13565
|
include Aws::Structure
|
13455
13566
|
end
|
13456
13567
|
|
13568
|
+
# Nielsen CBET
|
13569
|
+
#
|
13570
|
+
# @note When making an API call, you may pass NielsenCBET
|
13571
|
+
# data as a hash:
|
13572
|
+
#
|
13573
|
+
# {
|
13574
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
13575
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
13576
|
+
# csid: "__stringMin1Max7", # required
|
13577
|
+
# }
|
13578
|
+
#
|
13579
|
+
# @!attribute [rw] cbet_check_digit_string
|
13580
|
+
# Enter the CBET check digits to use in the watermark.
|
13581
|
+
# @return [String]
|
13582
|
+
#
|
13583
|
+
# @!attribute [rw] cbet_stepaside
|
13584
|
+
# Determines the method of CBET insertion mode when prior encoding is
|
13585
|
+
# detected on the same layer.
|
13586
|
+
# @return [String]
|
13587
|
+
#
|
13588
|
+
# @!attribute [rw] csid
|
13589
|
+
# Enter the CBET Source ID (CSID) to use in the watermark
|
13590
|
+
# @return [String]
|
13591
|
+
#
|
13592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenCBET AWS API Documentation
|
13593
|
+
#
|
13594
|
+
class NielsenCBET < Struct.new(
|
13595
|
+
:cbet_check_digit_string,
|
13596
|
+
:cbet_stepaside,
|
13597
|
+
:csid)
|
13598
|
+
SENSITIVE = []
|
13599
|
+
include Aws::Structure
|
13600
|
+
end
|
13601
|
+
|
13457
13602
|
# Nielsen Configuration
|
13458
13603
|
#
|
13459
13604
|
# @note When making an API call, you may pass NielsenConfiguration
|
@@ -13481,6 +13626,76 @@ module Aws::MediaLive
|
|
13481
13626
|
include Aws::Structure
|
13482
13627
|
end
|
13483
13628
|
|
13629
|
+
# Nielsen Naes Ii Nw
|
13630
|
+
#
|
13631
|
+
# @note When making an API call, you may pass NielsenNaesIiNw
|
13632
|
+
# data as a hash:
|
13633
|
+
#
|
13634
|
+
# {
|
13635
|
+
# check_digit_string: "__stringMin2Max2", # required
|
13636
|
+
# sid: 1.0, # required
|
13637
|
+
# }
|
13638
|
+
#
|
13639
|
+
# @!attribute [rw] check_digit_string
|
13640
|
+
# Enter the check digit string for the watermark
|
13641
|
+
# @return [String]
|
13642
|
+
#
|
13643
|
+
# @!attribute [rw] sid
|
13644
|
+
# Enter the Nielsen Source ID (SID) to include in the watermark
|
13645
|
+
# @return [Float]
|
13646
|
+
#
|
13647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenNaesIiNw AWS API Documentation
|
13648
|
+
#
|
13649
|
+
class NielsenNaesIiNw < Struct.new(
|
13650
|
+
:check_digit_string,
|
13651
|
+
:sid)
|
13652
|
+
SENSITIVE = []
|
13653
|
+
include Aws::Structure
|
13654
|
+
end
|
13655
|
+
|
13656
|
+
# Nielsen Watermarks Settings
|
13657
|
+
#
|
13658
|
+
# @note When making an API call, you may pass NielsenWatermarksSettings
|
13659
|
+
# data as a hash:
|
13660
|
+
#
|
13661
|
+
# {
|
13662
|
+
# nielsen_cbet_settings: {
|
13663
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
13664
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
13665
|
+
# csid: "__stringMin1Max7", # required
|
13666
|
+
# },
|
13667
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
13668
|
+
# nielsen_naes_ii_nw_settings: {
|
13669
|
+
# check_digit_string: "__stringMin2Max2", # required
|
13670
|
+
# sid: 1.0, # required
|
13671
|
+
# },
|
13672
|
+
# }
|
13673
|
+
#
|
13674
|
+
# @!attribute [rw] nielsen_cbet_settings
|
13675
|
+
# Complete these fields only if you want to insert watermarks of type
|
13676
|
+
# Nielsen CBET
|
13677
|
+
# @return [Types::NielsenCBET]
|
13678
|
+
#
|
13679
|
+
# @!attribute [rw] nielsen_distribution_type
|
13680
|
+
# Choose the distribution types that you want to assign to the
|
13681
|
+
# watermarks: - PROGRAM\_CONTENT - FINAL\_DISTRIBUTOR
|
13682
|
+
# @return [String]
|
13683
|
+
#
|
13684
|
+
# @!attribute [rw] nielsen_naes_ii_nw_settings
|
13685
|
+
# Complete these fields only if you want to insert watermarks of type
|
13686
|
+
# Nielsen NAES II (N2) and Nielsen NAES VI (NW).
|
13687
|
+
# @return [Types::NielsenNaesIiNw]
|
13688
|
+
#
|
13689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NielsenWatermarksSettings AWS API Documentation
|
13690
|
+
#
|
13691
|
+
class NielsenWatermarksSettings < Struct.new(
|
13692
|
+
:nielsen_cbet_settings,
|
13693
|
+
:nielsen_distribution_type,
|
13694
|
+
:nielsen_naes_ii_nw_settings)
|
13695
|
+
SENSITIVE = []
|
13696
|
+
include Aws::Structure
|
13697
|
+
end
|
13698
|
+
|
13484
13699
|
# @!attribute [rw] message
|
13485
13700
|
# @return [String]
|
13486
13701
|
#
|
@@ -17582,6 +17797,20 @@ module Aws::MediaLive
|
|
17582
17797
|
# audio_selector_name: "__string", # required
|
17583
17798
|
# audio_type: "CLEAN_EFFECTS", # accepts CLEAN_EFFECTS, HEARING_IMPAIRED, UNDEFINED, VISUAL_IMPAIRED_COMMENTARY
|
17584
17799
|
# audio_type_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
17800
|
+
# audio_watermarking_settings: {
|
17801
|
+
# nielsen_watermarks_settings: {
|
17802
|
+
# nielsen_cbet_settings: {
|
17803
|
+
# cbet_check_digit_string: "__stringMin2Max2", # required
|
17804
|
+
# cbet_stepaside: "DISABLED", # required, accepts DISABLED, ENABLED
|
17805
|
+
# csid: "__stringMin1Max7", # required
|
17806
|
+
# },
|
17807
|
+
# nielsen_distribution_type: "FINAL_DISTRIBUTOR", # accepts FINAL_DISTRIBUTOR, PROGRAM_CONTENT
|
17808
|
+
# nielsen_naes_ii_nw_settings: {
|
17809
|
+
# check_digit_string: "__stringMin2Max2", # required
|
17810
|
+
# sid: 1.0, # required
|
17811
|
+
# },
|
17812
|
+
# },
|
17813
|
+
# },
|
17585
17814
|
# codec_settings: {
|
17586
17815
|
# aac_settings: {
|
17587
17816
|
# bitrate: 1.0,
|
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.77.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-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|