aws-sdk-medialive 1.67.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4863b16b787e7a5ca63f40dafbbece4a0aed74554c6558b95f51085f4b870a5
4
- data.tar.gz: d7f957a6d7567f9fa3915cbe1f1b4aa44676676392951ae022afa8e31cc998bd
3
+ metadata.gz: b976ae265b3c8e6bc313ceb9879e52ed042f7174cfa65c7bcd7827982f3433b1
4
+ data.tar.gz: 74c8e0ccaa9cedb490558026503e64c7fa8f076cf51376a299cf90b9922d92b0
5
5
  SHA512:
6
- metadata.gz: 712e63c7d0c781e5135aaa39ed4697a1088b98da4a54778d48e0ef703cdeb5c21664c4aabc3229b7a1d09b8b1d32c240a1c6c5c05b6d851e751ef0b061ac753c
7
- data.tar.gz: dfb3c1e23bca532fac942d577f2b5f39b147beaeb0b1b12ba348378f043bfc546c3efcae6acdd848c52ed13a8941770b22b9b4a547d8d43d9152ea8e1dca7535
6
+ metadata.gz: be1decf175d55eea7520d9842fd480c949367c9d450d29e57eb3f4dc41c6f52eddae613c1d54126014d33d99af067ecfbcb1509d85d26e60a73ccf68ecf4f790
7
+ data.tar.gz: eadcf583eab4f0530f0888933a3c779cbacbd829392581988ebdebb088dfd191e2b62fc7b7ae6711eb7b14ad793424cd43bfa4df16a3f23b25e00734631500c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2021-03-25)
5
+ ------------------
6
+
7
+ * Feature - EML now supports handling HDR10 and HLG 2020 color space from a Link input.
8
+
4
9
  1.67.0 (2021-03-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.67.0'
52
+ GEM_VERSION = '1.68.0'
53
53
 
54
54
  end
@@ -1689,7 +1689,13 @@ module Aws::MediaLive
1689
1689
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
1690
1690
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
1691
1691
  # video_selector: {
1692
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
1692
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
1693
+ # color_space_settings: {
1694
+ # hdr_10_settings: {
1695
+ # max_cll: 1,
1696
+ # max_fall: 1,
1697
+ # },
1698
+ # },
1693
1699
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
1694
1700
  # selector_settings: {
1695
1701
  # video_selector_pid: {
@@ -2295,7 +2301,9 @@ module Aws::MediaLive
2295
2301
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
2296
2302
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
2297
2303
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
2298
- # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
2304
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
2305
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
2306
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
2299
2307
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
2300
2308
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
2301
2309
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -3330,7 +3338,9 @@ module Aws::MediaLive
3330
3338
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
3331
3339
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
3332
3340
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
3333
- # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
3341
+ # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
3342
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
3343
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
3334
3344
  # resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
3335
3345
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
3336
3346
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -4236,7 +4246,9 @@ module Aws::MediaLive
4236
4246
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
4237
4247
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
4238
4248
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
4239
- # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
4249
+ # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
4250
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
4251
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
4240
4252
  # resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
4241
4253
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
4242
4254
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -4925,7 +4937,9 @@ module Aws::MediaLive
4925
4937
  # resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
4926
4938
  # resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
4927
4939
  # resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
4928
- # resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
4940
+ # resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
4941
+ # resp.channels[0].input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
4942
+ # resp.channels[0].input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
4929
4943
  # resp.channels[0].input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
4930
4944
  # resp.channels[0].input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
4931
4945
  # resp.channels[0].input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -6144,7 +6158,9 @@ module Aws::MediaLive
6144
6158
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
6145
6159
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
6146
6160
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
6147
- # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
6161
+ # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
6162
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
6163
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
6148
6164
  # resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
6149
6165
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
6150
6166
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -6832,7 +6848,9 @@ module Aws::MediaLive
6832
6848
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
6833
6849
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
6834
6850
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
6835
- # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
6851
+ # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
6852
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
6853
+ # resp.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
6836
6854
  # resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
6837
6855
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
6838
6856
  # resp.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -7870,7 +7888,13 @@ module Aws::MediaLive
7870
7888
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
7871
7889
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
7872
7890
  # video_selector: {
7873
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
7891
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
7892
+ # color_space_settings: {
7893
+ # hdr_10_settings: {
7894
+ # max_cll: 1,
7895
+ # max_fall: 1,
7896
+ # },
7897
+ # },
7874
7898
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
7875
7899
  # selector_settings: {
7876
7900
  # video_selector_pid: {
@@ -8466,7 +8490,9 @@ module Aws::MediaLive
8466
8490
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
8467
8491
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
8468
8492
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
8469
- # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
8493
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
8494
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
8495
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
8470
8496
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
8471
8497
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
8472
8498
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -9115,7 +9141,9 @@ module Aws::MediaLive
9115
9141
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
9116
9142
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
9117
9143
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
9118
- # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
9144
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
9145
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_cll #=> Integer
9146
+ # resp.channel.input_attachments[0].input_settings.video_selector.color_space_settings.hdr_10_settings.max_fall #=> Integer
9119
9147
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
9120
9148
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_pid.pid #=> Integer
9121
9149
  # resp.channel.input_attachments[0].input_settings.video_selector.selector_settings.video_selector_program_id.program_id #=> Integer
@@ -9576,7 +9604,7 @@ module Aws::MediaLive
9576
9604
  params: params,
9577
9605
  config: config)
9578
9606
  context[:gem_name] = 'aws-sdk-medialive'
9579
- context[:gem_version] = '1.67.0'
9607
+ context[:gem_version] = '1.68.0'
9580
9608
  Seahorse::Client::Request.new(handlers, context)
9581
9609
  end
9582
9610
 
@@ -647,6 +647,7 @@ module Aws::MediaLive
647
647
  VideoDescriptionScalingBehavior = Shapes::StringShape.new(name: 'VideoDescriptionScalingBehavior')
648
648
  VideoSelector = Shapes::StructureShape.new(name: 'VideoSelector')
649
649
  VideoSelectorColorSpace = Shapes::StringShape.new(name: 'VideoSelectorColorSpace')
650
+ VideoSelectorColorSpaceSettings = Shapes::StructureShape.new(name: 'VideoSelectorColorSpaceSettings')
650
651
  VideoSelectorColorSpaceUsage = Shapes::StringShape.new(name: 'VideoSelectorColorSpaceUsage')
651
652
  VideoSelectorPid = Shapes::StructureShape.new(name: 'VideoSelectorPid')
652
653
  VideoSelectorProgramId = Shapes::StructureShape.new(name: 'VideoSelectorProgramId')
@@ -3043,10 +3044,14 @@ module Aws::MediaLive
3043
3044
  VideoDescription.struct_class = Types::VideoDescription
3044
3045
 
3045
3046
  VideoSelector.add_member(:color_space, Shapes::ShapeRef.new(shape: VideoSelectorColorSpace, location_name: "colorSpace"))
3047
+ VideoSelector.add_member(:color_space_settings, Shapes::ShapeRef.new(shape: VideoSelectorColorSpaceSettings, location_name: "colorSpaceSettings"))
3046
3048
  VideoSelector.add_member(:color_space_usage, Shapes::ShapeRef.new(shape: VideoSelectorColorSpaceUsage, location_name: "colorSpaceUsage"))
3047
3049
  VideoSelector.add_member(:selector_settings, Shapes::ShapeRef.new(shape: VideoSelectorSettings, location_name: "selectorSettings"))
3048
3050
  VideoSelector.struct_class = Types::VideoSelector
3049
3051
 
3052
+ VideoSelectorColorSpaceSettings.add_member(:hdr_10_settings, Shapes::ShapeRef.new(shape: Hdr10Settings, location_name: "hdr10Settings"))
3053
+ VideoSelectorColorSpaceSettings.struct_class = Types::VideoSelectorColorSpaceSettings
3054
+
3050
3055
  VideoSelectorPid.add_member(:pid, Shapes::ShapeRef.new(shape: __integerMin0Max8191, location_name: "pid"))
3051
3056
  VideoSelectorPid.struct_class = Types::VideoSelectorPid
3052
3057
 
@@ -3973,7 +3973,13 @@ module Aws::MediaLive
3973
3973
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
3974
3974
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
3975
3975
  # video_selector: {
3976
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
3976
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
3977
+ # color_space_settings: {
3978
+ # hdr_10_settings: {
3979
+ # max_cll: 1,
3980
+ # max_fall: 1,
3981
+ # },
3982
+ # },
3977
3983
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
3978
3984
  # selector_settings: {
3979
3985
  # video_selector_pid: {
@@ -9633,7 +9639,13 @@ module Aws::MediaLive
9633
9639
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
9634
9640
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
9635
9641
  # video_selector: {
9636
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
9642
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
9643
+ # color_space_settings: {
9644
+ # hdr_10_settings: {
9645
+ # max_cll: 1,
9646
+ # max_fall: 1,
9647
+ # },
9648
+ # },
9637
9649
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
9638
9650
  # selector_settings: {
9639
9651
  # video_selector_pid: {
@@ -10505,7 +10517,13 @@ module Aws::MediaLive
10505
10517
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
10506
10518
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
10507
10519
  # video_selector: {
10508
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
10520
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
10521
+ # color_space_settings: {
10522
+ # hdr_10_settings: {
10523
+ # max_cll: 1,
10524
+ # max_fall: 1,
10525
+ # },
10526
+ # },
10509
10527
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
10510
10528
  # selector_settings: {
10511
10529
  # video_selector_pid: {
@@ -18103,7 +18121,13 @@ module Aws::MediaLive
18103
18121
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
18104
18122
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
18105
18123
  # video_selector: {
18106
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
18124
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
18125
+ # color_space_settings: {
18126
+ # hdr_10_settings: {
18127
+ # max_cll: 1,
18128
+ # max_fall: 1,
18129
+ # },
18130
+ # },
18107
18131
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
18108
18132
  # selector_settings: {
18109
18133
  # video_selector_pid: {
@@ -19186,7 +19210,13 @@ module Aws::MediaLive
19186
19210
  # data as a hash:
19187
19211
  #
19188
19212
  # {
19189
- # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
19213
+ # color_space: "FOLLOW", # accepts FOLLOW, HDR10, HLG_2020, REC_601, REC_709
19214
+ # color_space_settings: {
19215
+ # hdr_10_settings: {
19216
+ # max_cll: 1,
19217
+ # max_fall: 1,
19218
+ # },
19219
+ # },
19190
19220
  # color_space_usage: "FALLBACK", # accepts FALLBACK, FORCE
19191
19221
  # selector_settings: {
19192
19222
  # video_selector_pid: {
@@ -19205,6 +19235,10 @@ module Aws::MediaLive
19205
19235
  # performed.
19206
19236
  # @return [String]
19207
19237
  #
19238
+ # @!attribute [rw] color_space_settings
19239
+ # Color space settings
19240
+ # @return [Types::VideoSelectorColorSpaceSettings]
19241
+ #
19208
19242
  # @!attribute [rw] color_space_usage
19209
19243
  # Applies only if colorSpace is a value other than follow. This field
19210
19244
  # controls how the value in the colorSpace field will be used.
@@ -19225,12 +19259,37 @@ module Aws::MediaLive
19225
19259
  #
19226
19260
  class VideoSelector < Struct.new(
19227
19261
  :color_space,
19262
+ :color_space_settings,
19228
19263
  :color_space_usage,
19229
19264
  :selector_settings)
19230
19265
  SENSITIVE = []
19231
19266
  include Aws::Structure
19232
19267
  end
19233
19268
 
19269
+ # Video Selector Color Space Settings
19270
+ #
19271
+ # @note When making an API call, you may pass VideoSelectorColorSpaceSettings
19272
+ # data as a hash:
19273
+ #
19274
+ # {
19275
+ # hdr_10_settings: {
19276
+ # max_cll: 1,
19277
+ # max_fall: 1,
19278
+ # },
19279
+ # }
19280
+ #
19281
+ # @!attribute [rw] hdr_10_settings
19282
+ # Hdr10 Settings
19283
+ # @return [Types::Hdr10Settings]
19284
+ #
19285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoSelectorColorSpaceSettings AWS API Documentation
19286
+ #
19287
+ class VideoSelectorColorSpaceSettings < Struct.new(
19288
+ :hdr_10_settings)
19289
+ SENSITIVE = []
19290
+ include Aws::Structure
19291
+ end
19292
+
19234
19293
  # Video Selector Pid
19235
19294
  #
19236
19295
  # @note When making an API call, you may pass VideoSelectorPid
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.67.0
4
+ version: 1.68.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-03-11 00:00:00.000000000 Z
11
+ date: 2021-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -67,8 +67,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
67
67
  licenses:
68
68
  - Apache-2.0
69
69
  metadata:
70
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-medialive
71
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-medialive/CHANGELOG.md
70
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-medialive
71
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-medialive/CHANGELOG.md
72
72
  post_install_message:
73
73
  rdoc_options: []
74
74
  require_paths: