aws-sdk-medialive 1.141.0 → 1.143.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5c6ee2d35be736b1f9276a627dc976a3e7ee522d0874a83b33c3ea2d415b8b9
4
- data.tar.gz: 1df12370c121db786420de2214cf02b3e52e9175ef3aec223e101107f2c967a0
3
+ metadata.gz: 7aa0ff4c41e6422c5a89c80bb59bc7495646954f72f799e9fba4bb289f6e3d07
4
+ data.tar.gz: b3eac9d5a521af3440ec4cf472aa83f7f3bad0109d0784ed6107ae421e36c6b1
5
5
  SHA512:
6
- metadata.gz: 58120998b4cd921155f57ed5d2a9bb7cb8e9733b35c0ea1e581e3013ce6f01856470955c38cbf93d52b78840a643403c2ca0b0ab78500d0735940b3a5ba9b8fb
7
- data.tar.gz: be7d6255926ff83bb32f3e02e1de5f1a25e55a73d05976f22a3cd3d00e162e46f086b1bec24192adcd64de7b783214d2dcc0f90f14d46e40ecf0a381d41d58e6
6
+ metadata.gz: 3722bfcd86a92c8f3a8734fa4b2cefa6a74bc97e31cc3110b2ac0180d87f2eeceeb6ccf0b74213ec3a0ef29f0945b958d6ce3eeb7bd563070e6903d05fdd2d0c
7
+ data.tar.gz: 776c1e427df0943e2fa31fd7d00a11e104c85d40f7b12c1dd02dc9a55e095781a2edeafcaed22ff72f6323900271e4cf82302f3a62e3a404685fdfa672ad4949
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.143.0 (2025-01-22)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.142.0 (2025-01-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.141.0 (2024-12-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.141.0
1
+ 1.143.0
@@ -257,11 +257,34 @@ module Aws::MediaLive
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -745,6 +768,13 @@ module Aws::MediaLive
745
768
  # layer: 1,
746
769
  # output_names: ["__string"], # required
747
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
+ # },
748
778
  # },
749
779
  # schedule_action_start_settings: { # required
750
780
  # fixed_mode_schedule_action_start_settings: {
@@ -844,6 +874,9 @@ module Aws::MediaLive
844
874
  # resp.creates.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
845
875
  # resp.creates.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
846
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
847
880
  # resp.creates.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
848
881
  # resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
849
882
  # resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
@@ -924,6 +957,9 @@ module Aws::MediaLive
924
957
  # resp.deletes.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
925
958
  # resp.deletes.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
926
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
927
963
  # resp.deletes.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
928
964
  # resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
929
965
  # resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
@@ -1352,6 +1388,8 @@ module Aws::MediaLive
1352
1388
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
1353
1389
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
1354
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
1355
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"
1356
1394
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
1357
1395
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -2676,6 +2714,8 @@ module Aws::MediaLive
2676
2714
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
2677
2715
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
2678
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
2679
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"
2680
2720
  # resp.encoder_settings.output_groups[0].outputs #=> Array
2681
2721
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -3817,6 +3857,8 @@ module Aws::MediaLive
3817
3857
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
3818
3858
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
3819
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
3820
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"
3821
3863
  # resp.encoder_settings.output_groups[0].outputs #=> Array
3822
3864
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -4935,6 +4977,9 @@ module Aws::MediaLive
4935
4977
  # resp.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.layer #=> Integer
4936
4978
  # resp.schedule_actions[0].schedule_action_settings.static_image_output_deactivate_settings.output_names #=> Array
4937
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
4938
4983
  # resp.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
4939
4984
  # resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
4940
4985
  # resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
@@ -6144,6 +6189,8 @@ module Aws::MediaLive
6144
6189
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
6145
6190
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
6146
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
6147
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"
6148
6195
  # resp.encoder_settings.output_groups[0].outputs #=> Array
6149
6196
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -7092,6 +7139,8 @@ module Aws::MediaLive
7092
7139
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
7093
7140
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
7094
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
7095
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"
7096
7145
  # resp.encoder_settings.output_groups[0].outputs #=> Array
7097
7146
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -8070,6 +8119,8 @@ module Aws::MediaLive
8070
8119
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
8071
8120
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
8072
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
8073
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"
8074
8125
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
8075
8126
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -8933,6 +8984,8 @@ module Aws::MediaLive
8933
8984
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
8934
8985
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
8935
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
8936
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"
8937
8990
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
8938
8991
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -10339,6 +10392,8 @@ module Aws::MediaLive
10339
10392
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
10340
10393
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
10341
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
10342
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"
10343
10398
  # resp.encoder_settings.output_groups[0].outputs #=> Array
10344
10399
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -13711,7 +13766,7 @@ module Aws::MediaLive
13711
13766
  tracer: tracer
13712
13767
  )
13713
13768
  context[:gem_name] = 'aws-sdk-medialive'
13714
- context[:gem_version] = '1.141.0'
13769
+ context[:gem_version] = '1.143.0'
13715
13770
  Seahorse::Client::Request.new(handlers, context)
13716
13771
  end
13717
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
 
@@ -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
 
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.141.0'
58
+ GEM_VERSION = '1.143.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -263,6 +265,13 @@ module Aws
263
265
  fade_out: ::Integer?,
264
266
  layer: ::Integer?,
265
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
266
275
  }?
267
276
  },
268
277
  schedule_action_start_settings: {
@@ -810,7 +819,9 @@ module Aws
810
819
  klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
811
820
  klv_name_modifier: ::String?,
812
821
  nielsen_id_3_name_modifier: ::String?,
813
- scte_35_name_modifier: ::String?
822
+ scte_35_name_modifier: ::String?,
823
+ id_3_behavior: ("DISABLED" | "ENABLED")?,
824
+ id_3_name_modifier: ::String?
814
825
  }?,
815
826
  srt_group_settings: {
816
827
  input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
@@ -2868,7 +2879,9 @@ module Aws
2868
2879
  klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
2869
2880
  klv_name_modifier: ::String?,
2870
2881
  nielsen_id_3_name_modifier: ::String?,
2871
- scte_35_name_modifier: ::String?
2882
+ scte_35_name_modifier: ::String?,
2883
+ id_3_behavior: ("DISABLED" | "ENABLED")?,
2884
+ id_3_name_modifier: ::String?
2872
2885
  }?,
2873
2886
  srt_group_settings: {
2874
2887
  input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.141.0
4
+ version: 1.143.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: 2024-12-19 00:00:00.000000000 Z
11
+ date: 2025-01-22 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement