aws-sdk-medialive 1.142.0 → 1.144.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +33 -1
- data/lib/aws-sdk-medialive/client_api.rb +14 -0
- data/lib/aws-sdk-medialive/endpoint_provider.rb +13 -17
- data/lib/aws-sdk-medialive/types.rb +72 -2
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +13 -2
- data/sig/types.rbs +15 -0
- 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: 17102b24d3fef9809145dd021b0fcd4e03219a42dfaacb5f90ea82cc9bfb476c
|
4
|
+
data.tar.gz: a0bb5413f4962f02a3fb62680af34d6d48fc0ac7d71a70a4b16f7e45344b2120
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aba6f0400b57d4234f0a5fa3833db0630f1039de524efa91b369b0e60955f23eddf7be92265b1014b486a55b1f27a91b1cf7feb32ec5acee877eb7d433e5d6db
|
7
|
+
data.tar.gz: cce9a3bfc90444aa6a871b81320955c45d55861d32939ad0a9110ab7d07a748f053db9504c626bf8b4fb0322bcc475247c43b00851bf24dce357920559e01f55
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.144.0 (2025-02-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.143.0 (2025-01-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Elemental MediaLive adds a new feature, ID3 segment tagging, in CMAF Ingest output groups. It allows customers to insert ID3 tags into every output segment, controlled by a newly added channel schedule action Id3SegmentTagging.
|
13
|
+
|
4
14
|
1.142.0 (2025-01-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
@@ -768,6 +768,13 @@ module Aws::MediaLive
|
|
768
768
|
# layer: 1,
|
769
769
|
# output_names: ["__string"], # required
|
770
770
|
# },
|
771
|
+
# id_3_segment_tagging_settings: {
|
772
|
+
# id_3: "__string",
|
773
|
+
# tag: "__string",
|
774
|
+
# },
|
775
|
+
# timed_metadata_settings: {
|
776
|
+
# id_3: "__string", # required
|
777
|
+
# },
|
771
778
|
# },
|
772
779
|
# schedule_action_start_settings: { # required
|
773
780
|
# fixed_mode_schedule_action_start_settings: {
|
@@ -867,6 +874,9 @@ module Aws::MediaLive
|
|
867
874
|
# resp.creates.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
|
868
875
|
# resp.creates.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
|
869
876
|
# resp.creates.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names[0] #=> String
|
877
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.id_3 #=> String
|
878
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.tag #=> String
|
879
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.timed_metadata_settings.id_3 #=> String
|
870
880
|
# resp.creates.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
871
881
|
# resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
872
882
|
# resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
@@ -947,6 +957,9 @@ module Aws::MediaLive
|
|
947
957
|
# resp.deletes.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
|
948
958
|
# resp.deletes.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
|
949
959
|
# resp.deletes.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names[0] #=> String
|
960
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.id_3 #=> String
|
961
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.tag #=> String
|
962
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.timed_metadata_settings.id_3 #=> String
|
950
963
|
# resp.deletes.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
951
964
|
# resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
952
965
|
# resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
@@ -1375,6 +1388,8 @@ module Aws::MediaLive
|
|
1375
1388
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
1376
1389
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
1377
1390
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
1391
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
1392
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
1378
1393
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
1379
1394
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
1380
1395
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -2699,6 +2714,8 @@ module Aws::MediaLive
|
|
2699
2714
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
2700
2715
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
2701
2716
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
2717
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
2718
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
2702
2719
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
2703
2720
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
2704
2721
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -3840,6 +3857,8 @@ module Aws::MediaLive
|
|
3840
3857
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
3841
3858
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
3842
3859
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
3860
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
3861
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
3843
3862
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
3844
3863
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
3845
3864
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -4958,6 +4977,9 @@ module Aws::MediaLive
|
|
4958
4977
|
# resp.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
|
4959
4978
|
# resp.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
|
4960
4979
|
# resp.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names[0] #=> String
|
4980
|
+
# resp.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.id_3 #=> String
|
4981
|
+
# resp.schedule_actions[0].schedule_action_settings.id_3_segment_tagging_settings.tag #=> String
|
4982
|
+
# resp.schedule_actions[0].schedule_action_settings.timed_metadata_settings.id_3 #=> String
|
4961
4983
|
# resp.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
4962
4984
|
# resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
4963
4985
|
# resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
@@ -6167,6 +6189,8 @@ module Aws::MediaLive
|
|
6167
6189
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
6168
6190
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
6169
6191
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
6192
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
6193
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
6170
6194
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
6171
6195
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
6172
6196
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -7115,6 +7139,8 @@ module Aws::MediaLive
|
|
7115
7139
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
7116
7140
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
7117
7141
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
7142
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
7143
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
7118
7144
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
7119
7145
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
7120
7146
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -8093,6 +8119,8 @@ module Aws::MediaLive
|
|
8093
8119
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
8094
8120
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
8095
8121
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
8122
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
8123
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
8096
8124
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
8097
8125
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
8098
8126
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -8956,6 +8984,8 @@ module Aws::MediaLive
|
|
8956
8984
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
8957
8985
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
8958
8986
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
8987
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
8988
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
8959
8989
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
8960
8990
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
8961
8991
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -10362,6 +10392,8 @@ module Aws::MediaLive
|
|
10362
10392
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
|
10363
10393
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
|
10364
10394
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
10395
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
10396
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
10365
10397
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
10366
10398
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
10367
10399
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -13734,7 +13766,7 @@ module Aws::MediaLive
|
|
13734
13766
|
tracer: tracer
|
13735
13767
|
)
|
13736
13768
|
context[:gem_name] = 'aws-sdk-medialive'
|
13737
|
-
context[:gem_version] = '1.
|
13769
|
+
context[:gem_version] = '1.144.0'
|
13738
13770
|
Seahorse::Client::Request.new(handlers, context)
|
13739
13771
|
end
|
13740
13772
|
|
@@ -152,6 +152,7 @@ module Aws::MediaLive
|
|
152
152
|
ClusterNetworkSettingsUpdateRequest = Shapes::StructureShape.new(name: 'ClusterNetworkSettingsUpdateRequest')
|
153
153
|
ClusterState = Shapes::StringShape.new(name: 'ClusterState')
|
154
154
|
ClusterType = Shapes::StringShape.new(name: 'ClusterType')
|
155
|
+
CmafId3Behavior = Shapes::StringShape.new(name: 'CmafId3Behavior')
|
155
156
|
CmafIngestGroupSettings = Shapes::StructureShape.new(name: 'CmafIngestGroupSettings')
|
156
157
|
CmafIngestOutputSettings = Shapes::StructureShape.new(name: 'CmafIngestOutputSettings')
|
157
158
|
CmafIngestSegmentLengthUnits = Shapes::StringShape.new(name: 'CmafIngestSegmentLengthUnits')
|
@@ -479,6 +480,7 @@ module Aws::MediaLive
|
|
479
480
|
HlsWebdavSettings = Shapes::StructureShape.new(name: 'HlsWebdavSettings')
|
480
481
|
HtmlMotionGraphicsSettings = Shapes::StructureShape.new(name: 'HtmlMotionGraphicsSettings')
|
481
482
|
IFrameOnlyPlaylistType = Shapes::StringShape.new(name: 'IFrameOnlyPlaylistType')
|
483
|
+
Id3SegmentTaggingScheduleActionSettings = Shapes::StructureShape.new(name: 'Id3SegmentTaggingScheduleActionSettings')
|
482
484
|
ImmediateModeScheduleActionStartSettings = Shapes::StructureShape.new(name: 'ImmediateModeScheduleActionStartSettings')
|
483
485
|
IncludeFillerNalUnits = Shapes::StringShape.new(name: 'IncludeFillerNalUnits')
|
484
486
|
Input = Shapes::StructureShape.new(name: 'Input')
|
@@ -900,6 +902,7 @@ module Aws::MediaLive
|
|
900
902
|
TimecodeBurninSettings = Shapes::StructureShape.new(name: 'TimecodeBurninSettings')
|
901
903
|
TimecodeConfig = Shapes::StructureShape.new(name: 'TimecodeConfig')
|
902
904
|
TimecodeConfigSource = Shapes::StringShape.new(name: 'TimecodeConfigSource')
|
905
|
+
TimedMetadataScheduleActionSettings = Shapes::StructureShape.new(name: 'TimedMetadataScheduleActionSettings')
|
903
906
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
904
907
|
TooManyRequestsExceptionResponseContent = Shapes::StructureShape.new(name: 'TooManyRequestsExceptionResponseContent')
|
905
908
|
TransferInputDevice = Shapes::StructureShape.new(name: 'TransferInputDevice')
|
@@ -1678,6 +1681,8 @@ module Aws::MediaLive
|
|
1678
1681
|
CmafIngestGroupSettings.add_member(:klv_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "klvNameModifier"))
|
1679
1682
|
CmafIngestGroupSettings.add_member(:nielsen_id_3_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "nielsenId3NameModifier"))
|
1680
1683
|
CmafIngestGroupSettings.add_member(:scte_35_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "scte35NameModifier"))
|
1684
|
+
CmafIngestGroupSettings.add_member(:id_3_behavior, Shapes::ShapeRef.new(shape: CmafId3Behavior, location_name: "id3Behavior"))
|
1685
|
+
CmafIngestGroupSettings.add_member(:id_3_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "id3NameModifier"))
|
1681
1686
|
CmafIngestGroupSettings.struct_class = Types::CmafIngestGroupSettings
|
1682
1687
|
|
1683
1688
|
CmafIngestOutputSettings.add_member(:name_modifier, Shapes::ShapeRef.new(shape: __string, location_name: "nameModifier"))
|
@@ -3226,6 +3231,10 @@ module Aws::MediaLive
|
|
3226
3231
|
|
3227
3232
|
HtmlMotionGraphicsSettings.struct_class = Types::HtmlMotionGraphicsSettings
|
3228
3233
|
|
3234
|
+
Id3SegmentTaggingScheduleActionSettings.add_member(:id_3, Shapes::ShapeRef.new(shape: __string, location_name: "id3"))
|
3235
|
+
Id3SegmentTaggingScheduleActionSettings.add_member(:tag, Shapes::ShapeRef.new(shape: __string, location_name: "tag"))
|
3236
|
+
Id3SegmentTaggingScheduleActionSettings.struct_class = Types::Id3SegmentTaggingScheduleActionSettings
|
3237
|
+
|
3229
3238
|
ImmediateModeScheduleActionStartSettings.struct_class = Types::ImmediateModeScheduleActionStartSettings
|
3230
3239
|
|
3231
3240
|
Input.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
@@ -4404,6 +4413,8 @@ module Aws::MediaLive
|
|
4404
4413
|
ScheduleActionSettings.add_member(:static_image_deactivate_settings, Shapes::ShapeRef.new(shape: StaticImageDeactivateScheduleActionSettings, location_name: "staticImageDeactivateSettings"))
|
4405
4414
|
ScheduleActionSettings.add_member(:static_image_output_activate_settings, Shapes::ShapeRef.new(shape: StaticImageOutputActivateScheduleActionSettings, location_name: "staticImageOutputActivateSettings"))
|
4406
4415
|
ScheduleActionSettings.add_member(:static_image_output_deactivate_settings, Shapes::ShapeRef.new(shape: StaticImageOutputDeactivateScheduleActionSettings, location_name: "staticImageOutputDeactivateSettings"))
|
4416
|
+
ScheduleActionSettings.add_member(:id_3_segment_tagging_settings, Shapes::ShapeRef.new(shape: Id3SegmentTaggingScheduleActionSettings, location_name: "id3SegmentTaggingSettings"))
|
4417
|
+
ScheduleActionSettings.add_member(:timed_metadata_settings, Shapes::ShapeRef.new(shape: TimedMetadataScheduleActionSettings, location_name: "timedMetadataSettings"))
|
4407
4418
|
ScheduleActionSettings.struct_class = Types::ScheduleActionSettings
|
4408
4419
|
|
4409
4420
|
ScheduleActionStartSettings.add_member(:fixed_mode_schedule_action_start_settings, Shapes::ShapeRef.new(shape: FixedModeScheduleActionStartSettings, location_name: "fixedModeScheduleActionStartSettings"))
|
@@ -4875,6 +4886,9 @@ module Aws::MediaLive
|
|
4875
4886
|
TimecodeConfig.add_member(:sync_threshold, Shapes::ShapeRef.new(shape: __integerMin1Max1000000, location_name: "syncThreshold"))
|
4876
4887
|
TimecodeConfig.struct_class = Types::TimecodeConfig
|
4877
4888
|
|
4889
|
+
TimedMetadataScheduleActionSettings.add_member(:id_3, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id3"))
|
4890
|
+
TimedMetadataScheduleActionSettings.struct_class = Types::TimedMetadataScheduleActionSettings
|
4891
|
+
|
4878
4892
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
4879
4893
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
4880
4894
|
|
@@ -10,40 +10,36 @@
|
|
10
10
|
module Aws::MediaLive
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
use_fips = parameters.use_fips
|
16
|
-
endpoint = parameters.endpoint
|
17
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
13
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
14
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
19
15
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
16
|
end
|
21
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
17
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
22
18
|
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
19
|
end
|
24
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
20
|
+
return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
|
25
21
|
end
|
26
|
-
if Aws::Endpoints::Matchers.set?(region)
|
27
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
24
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
25
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://medialive-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
|
+
return Aws::Endpoints::Endpoint.new(url: "https://medialive-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
27
|
end
|
32
28
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
29
|
end
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
30
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
35
31
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
-
return Aws::Endpoints::Endpoint.new(url: "https://medialive-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
32
|
+
return Aws::Endpoints::Endpoint.new(url: "https://medialive-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
33
|
end
|
38
34
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
35
|
end
|
40
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
36
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
41
37
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://medialive.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
38
|
+
return Aws::Endpoints::Endpoint.new(url: "https://medialive.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
39
|
end
|
44
40
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
41
|
end
|
46
|
-
return Aws::Endpoints::Endpoint.new(url: "https://medialive.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://medialive.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
43
|
end
|
48
44
|
end
|
49
45
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|
@@ -11057,6 +11057,15 @@ module Aws::MediaLive
|
|
11057
11057
|
# outputs
|
11058
11058
|
# @return [Types::StaticImageOutputDeactivateScheduleActionSettings]
|
11059
11059
|
#
|
11060
|
+
# @!attribute [rw] id_3_segment_tagging_settings
|
11061
|
+
# Action to insert ID3 metadata in every segment, in applicable output
|
11062
|
+
# groups
|
11063
|
+
# @return [Types::Id3SegmentTaggingScheduleActionSettings]
|
11064
|
+
#
|
11065
|
+
# @!attribute [rw] timed_metadata_settings
|
11066
|
+
# Action to insert ID3 metadata once, in applicable output groups
|
11067
|
+
# @return [Types::TimedMetadataScheduleActionSettings]
|
11068
|
+
#
|
11060
11069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleActionSettings AWS API Documentation
|
11061
11070
|
#
|
11062
11071
|
class ScheduleActionSettings < Struct.new(
|
@@ -11074,7 +11083,9 @@ module Aws::MediaLive
|
|
11074
11083
|
:static_image_activate_settings,
|
11075
11084
|
:static_image_deactivate_settings,
|
11076
11085
|
:static_image_output_activate_settings,
|
11077
|
-
:static_image_output_deactivate_settings
|
11086
|
+
:static_image_output_deactivate_settings,
|
11087
|
+
:id_3_segment_tagging_settings,
|
11088
|
+
:timed_metadata_settings)
|
11078
11089
|
SENSITIVE = []
|
11079
11090
|
include Aws::Structure
|
11080
11091
|
end
|
@@ -13903,6 +13914,21 @@ module Aws::MediaLive
|
|
13903
13914
|
# period (.) and has a maximum length of 100 characters.
|
13904
13915
|
# @return [String]
|
13905
13916
|
#
|
13917
|
+
# @!attribute [rw] id_3_behavior
|
13918
|
+
# Set to ENABLED to enable ID3 metadata insertion. To include
|
13919
|
+
# metadata, you configure other parameters in the output group, or you
|
13920
|
+
# add an ID3 action to the channel schedule.
|
13921
|
+
# @return [String]
|
13922
|
+
#
|
13923
|
+
# @!attribute [rw] id_3_name_modifier
|
13924
|
+
# Change the modifier that MediaLive automatically adds to the
|
13925
|
+
# Streams() name that identifies an ID3 track. The default is "id3",
|
13926
|
+
# which means the default name will be Streams(id3.cmfm). Any string
|
13927
|
+
# you enter here will replace the "id3" string.\\nThe modifier can
|
13928
|
+
# only contain: numbers, letters, plus (+), minus (-), underscore (\_)
|
13929
|
+
# and period (.) and has a maximum length of 100 characters.
|
13930
|
+
# @return [String]
|
13931
|
+
#
|
13906
13932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CmafIngestGroupSettings AWS API Documentation
|
13907
13933
|
#
|
13908
13934
|
class CmafIngestGroupSettings < Struct.new(
|
@@ -13915,7 +13941,9 @@ module Aws::MediaLive
|
|
13915
13941
|
:klv_behavior,
|
13916
13942
|
:klv_name_modifier,
|
13917
13943
|
:nielsen_id_3_name_modifier,
|
13918
|
-
:scte_35_name_modifier
|
13944
|
+
:scte_35_name_modifier,
|
13945
|
+
:id_3_behavior,
|
13946
|
+
:id_3_name_modifier)
|
13919
13947
|
SENSITIVE = []
|
13920
13948
|
include Aws::Structure
|
13921
13949
|
end
|
@@ -20943,6 +20971,48 @@ module Aws::MediaLive
|
|
20943
20971
|
include Aws::Structure
|
20944
20972
|
end
|
20945
20973
|
|
20974
|
+
# Settings for the action to insert ID3 metadata in every segment, in
|
20975
|
+
# applicable output groups.
|
20976
|
+
#
|
20977
|
+
# @!attribute [rw] id_3
|
20978
|
+
# Complete this parameter if you want to specify the entire ID3
|
20979
|
+
# metadata. Enter a base64 string that contains one or more fully
|
20980
|
+
# formed ID3 tags, according to the ID3 specification:
|
20981
|
+
# http://id3.org/id3v2.4.0-structure
|
20982
|
+
# @return [String]
|
20983
|
+
#
|
20984
|
+
# @!attribute [rw] tag
|
20985
|
+
# Complete this parameter if you want to specify only the metadata,
|
20986
|
+
# not the entire frame. MediaLive will insert the metadata in a TXXX
|
20987
|
+
# frame. Enter the value as plain text. You can include standard
|
20988
|
+
# MediaLive variable data such as the current segment number.
|
20989
|
+
# @return [String]
|
20990
|
+
#
|
20991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Id3SegmentTaggingScheduleActionSettings AWS API Documentation
|
20992
|
+
#
|
20993
|
+
class Id3SegmentTaggingScheduleActionSettings < Struct.new(
|
20994
|
+
:id_3,
|
20995
|
+
:tag)
|
20996
|
+
SENSITIVE = []
|
20997
|
+
include Aws::Structure
|
20998
|
+
end
|
20999
|
+
|
21000
|
+
# Settings for the action to insert ID3 metadata (as a one-time action)
|
21001
|
+
# in applicable output groups.
|
21002
|
+
#
|
21003
|
+
# @!attribute [rw] id_3
|
21004
|
+
# Enter a base64 string that contains one or more fully formed ID3
|
21005
|
+
# tags.See the ID3 specification: http://id3.org/id3v2.4.0-structure
|
21006
|
+
# @return [String]
|
21007
|
+
#
|
21008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TimedMetadataScheduleActionSettings AWS API Documentation
|
21009
|
+
#
|
21010
|
+
class TimedMetadataScheduleActionSettings < Struct.new(
|
21011
|
+
:id_3)
|
21012
|
+
SENSITIVE = []
|
21013
|
+
include Aws::Structure
|
21014
|
+
end
|
21015
|
+
|
20946
21016
|
end
|
20947
21017
|
end
|
20948
21018
|
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -265,6 +265,13 @@ module Aws
|
|
265
265
|
fade_out: ::Integer?,
|
266
266
|
layer: ::Integer?,
|
267
267
|
output_names: Array[::String]
|
268
|
+
}?,
|
269
|
+
id_3_segment_tagging_settings: {
|
270
|
+
id_3: ::String?,
|
271
|
+
tag: ::String?
|
272
|
+
}?,
|
273
|
+
timed_metadata_settings: {
|
274
|
+
id_3: ::String
|
268
275
|
}?
|
269
276
|
},
|
270
277
|
schedule_action_start_settings: {
|
@@ -812,7 +819,9 @@ module Aws
|
|
812
819
|
klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
813
820
|
klv_name_modifier: ::String?,
|
814
821
|
nielsen_id_3_name_modifier: ::String?,
|
815
|
-
scte_35_name_modifier: ::String
|
822
|
+
scte_35_name_modifier: ::String?,
|
823
|
+
id_3_behavior: ("DISABLED" | "ENABLED")?,
|
824
|
+
id_3_name_modifier: ::String?
|
816
825
|
}?,
|
817
826
|
srt_group_settings: {
|
818
827
|
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
|
@@ -2870,7 +2879,9 @@ module Aws
|
|
2870
2879
|
klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2871
2880
|
klv_name_modifier: ::String?,
|
2872
2881
|
nielsen_id_3_name_modifier: ::String?,
|
2873
|
-
scte_35_name_modifier: ::String
|
2882
|
+
scte_35_name_modifier: ::String?,
|
2883
|
+
id_3_behavior: ("DISABLED" | "ENABLED")?,
|
2884
|
+
id_3_name_modifier: ::String?
|
2874
2885
|
}?,
|
2875
2886
|
srt_group_settings: {
|
2876
2887
|
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
|
data/sig/types.rbs
CHANGED
@@ -2785,6 +2785,8 @@ module Aws::MediaLive
|
|
2785
2785
|
attr_accessor static_image_deactivate_settings: Types::StaticImageDeactivateScheduleActionSettings
|
2786
2786
|
attr_accessor static_image_output_activate_settings: Types::StaticImageOutputActivateScheduleActionSettings
|
2787
2787
|
attr_accessor static_image_output_deactivate_settings: Types::StaticImageOutputDeactivateScheduleActionSettings
|
2788
|
+
attr_accessor id_3_segment_tagging_settings: Types::Id3SegmentTaggingScheduleActionSettings
|
2789
|
+
attr_accessor timed_metadata_settings: Types::TimedMetadataScheduleActionSettings
|
2788
2790
|
SENSITIVE: []
|
2789
2791
|
end
|
2790
2792
|
|
@@ -3583,6 +3585,8 @@ module Aws::MediaLive
|
|
3583
3585
|
attr_accessor klv_name_modifier: ::String
|
3584
3586
|
attr_accessor nielsen_id_3_name_modifier: ::String
|
3585
3587
|
attr_accessor scte_35_name_modifier: ::String
|
3588
|
+
attr_accessor id_3_behavior: ("DISABLED" | "ENABLED")
|
3589
|
+
attr_accessor id_3_name_modifier: ::String
|
3586
3590
|
SENSITIVE: []
|
3587
3591
|
end
|
3588
3592
|
|
@@ -5475,5 +5479,16 @@ module Aws::MediaLive
|
|
5475
5479
|
attr_accessor versions: ::Array[Types::ChannelEngineVersionResponse]
|
5476
5480
|
SENSITIVE: []
|
5477
5481
|
end
|
5482
|
+
|
5483
|
+
class Id3SegmentTaggingScheduleActionSettings
|
5484
|
+
attr_accessor id_3: ::String
|
5485
|
+
attr_accessor tag: ::String
|
5486
|
+
SENSITIVE: []
|
5487
|
+
end
|
5488
|
+
|
5489
|
+
class TimedMetadataScheduleActionSettings
|
5490
|
+
attr_accessor id_3: ::String
|
5491
|
+
SENSITIVE: []
|
5492
|
+
end
|
5478
5493
|
end
|
5479
5494
|
end
|
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.144.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: 2025-
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|