aws-sdk-medialive 1.92.0 → 1.93.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +12 -4
- data/lib/aws-sdk-medialive/client_api.rb +5 -2
- data/lib/aws-sdk-medialive/endpoint_provider.rb +53 -54
- data/lib/aws-sdk-medialive/errors.rb +4 -4
- data/lib/aws-sdk-medialive/types.rb +25 -8
- 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: c4bea33ed502282d68320f072a505cd1fd9e99bf96ec4c0618c12be7baebb5f8
|
4
|
+
data.tar.gz: 296d4afd7a0d2e6deb17e1020ebcbe5cf1fb8a1330335ba4f88279bf1561bd7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c87db053555362f08e6f23054b678164f48d4d04adbf594077b0480eca97f8f1e025f8e083090c4107ce57b6f006b79ff33748c1f3d0ae483444c6a8365472fa
|
7
|
+
data.tar.gz: 5eda8f2315c65ac84d04e826ed581a23e9e08b0fb847c145970951e8b47ccd6a7e744b87f18c6fcc09726c9bcaae2a2358788d710582f2a8b1c33b9c3e15db06
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.93.0 (2022-12-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Link devices now support buffer size (latency) configuration. A higher latency value means a longer delay in transmitting from the device to MediaLive, but improved resiliency. A lower latency value means a shorter delay, but less resiliency.
|
8
|
+
|
4
9
|
1.92.0 (2022-12-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.0
|
@@ -4670,6 +4670,7 @@ module Aws::MediaLive
|
|
4670
4670
|
# resp.hd_device_settings.max_bitrate #=> Integer
|
4671
4671
|
# resp.hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4672
4672
|
# resp.hd_device_settings.width #=> Integer
|
4673
|
+
# resp.hd_device_settings.latency_ms #=> Integer
|
4673
4674
|
# resp.id #=> String
|
4674
4675
|
# resp.mac_address #=> String
|
4675
4676
|
# resp.name #=> String
|
@@ -4680,7 +4681,7 @@ module Aws::MediaLive
|
|
4680
4681
|
# resp.network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
4681
4682
|
# resp.network_settings.subnet_mask #=> String
|
4682
4683
|
# resp.serial_number #=> String
|
4683
|
-
# resp.type #=> String, one of "HD"
|
4684
|
+
# resp.type #=> String, one of "HD", "UHD"
|
4684
4685
|
# resp.uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4685
4686
|
# resp.uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4686
4687
|
# resp.uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -4689,6 +4690,7 @@ module Aws::MediaLive
|
|
4689
4690
|
# resp.uhd_device_settings.max_bitrate #=> Integer
|
4690
4691
|
# resp.uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4691
4692
|
# resp.uhd_device_settings.width #=> Integer
|
4693
|
+
# resp.uhd_device_settings.latency_ms #=> Integer
|
4692
4694
|
#
|
4693
4695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDevice AWS API Documentation
|
4694
4696
|
#
|
@@ -5332,6 +5334,7 @@ module Aws::MediaLive
|
|
5332
5334
|
# resp.input_devices[0].hd_device_settings.max_bitrate #=> Integer
|
5333
5335
|
# resp.input_devices[0].hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
5334
5336
|
# resp.input_devices[0].hd_device_settings.width #=> Integer
|
5337
|
+
# resp.input_devices[0].hd_device_settings.latency_ms #=> Integer
|
5335
5338
|
# resp.input_devices[0].id #=> String
|
5336
5339
|
# resp.input_devices[0].mac_address #=> String
|
5337
5340
|
# resp.input_devices[0].name #=> String
|
@@ -5342,7 +5345,7 @@ module Aws::MediaLive
|
|
5342
5345
|
# resp.input_devices[0].network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
5343
5346
|
# resp.input_devices[0].network_settings.subnet_mask #=> String
|
5344
5347
|
# resp.input_devices[0].serial_number #=> String
|
5345
|
-
# resp.input_devices[0].type #=> String, one of "HD"
|
5348
|
+
# resp.input_devices[0].type #=> String, one of "HD", "UHD"
|
5346
5349
|
# resp.input_devices[0].uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
5347
5350
|
# resp.input_devices[0].uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
5348
5351
|
# resp.input_devices[0].uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -5351,6 +5354,7 @@ module Aws::MediaLive
|
|
5351
5354
|
# resp.input_devices[0].uhd_device_settings.max_bitrate #=> Integer
|
5352
5355
|
# resp.input_devices[0].uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
5353
5356
|
# resp.input_devices[0].uhd_device_settings.width #=> Integer
|
5357
|
+
# resp.input_devices[0].uhd_device_settings.latency_ms #=> Integer
|
5354
5358
|
# resp.next_token #=> String
|
5355
5359
|
#
|
5356
5360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevices AWS API Documentation
|
@@ -9864,12 +9868,14 @@ module Aws::MediaLive
|
|
9864
9868
|
# hd_device_settings: {
|
9865
9869
|
# configured_input: "AUTO", # accepts AUTO, HDMI, SDI
|
9866
9870
|
# max_bitrate: 1,
|
9871
|
+
# latency_ms: 1,
|
9867
9872
|
# },
|
9868
9873
|
# input_device_id: "__string", # required
|
9869
9874
|
# name: "__string",
|
9870
9875
|
# uhd_device_settings: {
|
9871
9876
|
# configured_input: "AUTO", # accepts AUTO, HDMI, SDI
|
9872
9877
|
# max_bitrate: 1,
|
9878
|
+
# latency_ms: 1,
|
9873
9879
|
# },
|
9874
9880
|
# })
|
9875
9881
|
#
|
@@ -9887,6 +9893,7 @@ module Aws::MediaLive
|
|
9887
9893
|
# resp.hd_device_settings.max_bitrate #=> Integer
|
9888
9894
|
# resp.hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
9889
9895
|
# resp.hd_device_settings.width #=> Integer
|
9896
|
+
# resp.hd_device_settings.latency_ms #=> Integer
|
9890
9897
|
# resp.id #=> String
|
9891
9898
|
# resp.mac_address #=> String
|
9892
9899
|
# resp.name #=> String
|
@@ -9897,7 +9904,7 @@ module Aws::MediaLive
|
|
9897
9904
|
# resp.network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
9898
9905
|
# resp.network_settings.subnet_mask #=> String
|
9899
9906
|
# resp.serial_number #=> String
|
9900
|
-
# resp.type #=> String, one of "HD"
|
9907
|
+
# resp.type #=> String, one of "HD", "UHD"
|
9901
9908
|
# resp.uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
9902
9909
|
# resp.uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
9903
9910
|
# resp.uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -9906,6 +9913,7 @@ module Aws::MediaLive
|
|
9906
9913
|
# resp.uhd_device_settings.max_bitrate #=> Integer
|
9907
9914
|
# resp.uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
9908
9915
|
# resp.uhd_device_settings.width #=> Integer
|
9916
|
+
# resp.uhd_device_settings.latency_ms #=> Integer
|
9909
9917
|
#
|
9910
9918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
|
9911
9919
|
#
|
@@ -10172,7 +10180,7 @@ module Aws::MediaLive
|
|
10172
10180
|
params: params,
|
10173
10181
|
config: config)
|
10174
10182
|
context[:gem_name] = 'aws-sdk-medialive'
|
10175
|
-
context[:gem_version] = '1.
|
10183
|
+
context[:gem_version] = '1.93.0'
|
10176
10184
|
Seahorse::Client::Request.new(handlers, context)
|
10177
10185
|
end
|
10178
10186
|
|
@@ -2038,6 +2038,7 @@ module Aws::MediaLive
|
|
2038
2038
|
|
2039
2039
|
InputDeviceConfigurableSettings.add_member(:configured_input, Shapes::ShapeRef.new(shape: InputDeviceConfiguredInput, location_name: "configuredInput"))
|
2040
2040
|
InputDeviceConfigurableSettings.add_member(:max_bitrate, Shapes::ShapeRef.new(shape: __integer, location_name: "maxBitrate"))
|
2041
|
+
InputDeviceConfigurableSettings.add_member(:latency_ms, Shapes::ShapeRef.new(shape: __integer, location_name: "latencyMs"))
|
2041
2042
|
InputDeviceConfigurableSettings.struct_class = Types::InputDeviceConfigurableSettings
|
2042
2043
|
|
2043
2044
|
InputDeviceConfigurationValidationError.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -2052,6 +2053,7 @@ module Aws::MediaLive
|
|
2052
2053
|
InputDeviceHdSettings.add_member(:max_bitrate, Shapes::ShapeRef.new(shape: __integer, location_name: "maxBitrate"))
|
2053
2054
|
InputDeviceHdSettings.add_member(:scan_type, Shapes::ShapeRef.new(shape: InputDeviceScanType, location_name: "scanType"))
|
2054
2055
|
InputDeviceHdSettings.add_member(:width, Shapes::ShapeRef.new(shape: __integer, location_name: "width"))
|
2056
|
+
InputDeviceHdSettings.add_member(:latency_ms, Shapes::ShapeRef.new(shape: __integer, location_name: "latencyMs"))
|
2055
2057
|
InputDeviceHdSettings.struct_class = Types::InputDeviceHdSettings
|
2056
2058
|
|
2057
2059
|
InputDeviceNetworkSettings.add_member(:dns_addresses, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "dnsAddresses"))
|
@@ -2089,6 +2091,7 @@ module Aws::MediaLive
|
|
2089
2091
|
InputDeviceUhdSettings.add_member(:max_bitrate, Shapes::ShapeRef.new(shape: __integer, location_name: "maxBitrate"))
|
2090
2092
|
InputDeviceUhdSettings.add_member(:scan_type, Shapes::ShapeRef.new(shape: InputDeviceScanType, location_name: "scanType"))
|
2091
2093
|
InputDeviceUhdSettings.add_member(:width, Shapes::ShapeRef.new(shape: __integer, location_name: "width"))
|
2094
|
+
InputDeviceUhdSettings.add_member(:latency_ms, Shapes::ShapeRef.new(shape: __integer, location_name: "latencyMs"))
|
2092
2095
|
InputDeviceUhdSettings.struct_class = Types::InputDeviceUhdSettings
|
2093
2096
|
|
2094
2097
|
InputLocation.add_member(:password_param, Shapes::ShapeRef.new(shape: __string, location_name: "passwordParam"))
|
@@ -3052,8 +3055,8 @@ module Aws::MediaLive
|
|
3052
3055
|
UdpOutputSettings.add_member(:fec_output_settings, Shapes::ShapeRef.new(shape: FecOutputSettings, location_name: "fecOutputSettings"))
|
3053
3056
|
UdpOutputSettings.struct_class = Types::UdpOutputSettings
|
3054
3057
|
|
3055
|
-
UnprocessableEntityException.add_member(:
|
3056
|
-
UnprocessableEntityException.add_member(:
|
3058
|
+
UnprocessableEntityException.add_member(:element_path, Shapes::ShapeRef.new(shape: __string, location_name: "elementPath"))
|
3059
|
+
UnprocessableEntityException.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
|
3057
3060
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
3058
3061
|
|
3059
3062
|
UpdateChannel.add_member(:cdi_input_specification, Shapes::ShapeRef.new(shape: CdiInputSpecification, location_name: "cdiInputSpecification"))
|
@@ -50,61 +50,60 @@ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
|
50
50
|
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
51
|
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
52
|
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
73
|
-
cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
74
|
-
cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
|
75
|
-
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
76
|
-
Ijp7InVybCI6Imh0dHBzOi8vbWVkaWFsaXZlLWZpcHMue1JlZ2lvbn0ue1Bh
|
77
|
-
cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
|
78
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
|
79
|
-
bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
|
80
|
-
ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
|
81
|
-
b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
82
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
83
|
-
UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
84
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
59
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
64
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
85
72
|
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9tZWRpYWxpdmUtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1
|
76
|
+
YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
|
77
|
+
e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
78
|
+
cm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhp
|
79
|
+
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5
|
80
|
+
cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
81
|
+
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlw
|
82
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
83
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
|
84
|
+
IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19
|
85
|
+
XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
|
86
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
|
87
|
+
aW50Ijp7InVybCI6Imh0dHBzOi8vbWVkaWFsaXZlLWZpcHMue1JlZ2lvbn0u
|
88
|
+
e1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
89
|
+
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0
|
90
|
+
aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
|
91
|
+
cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3Ii
|
92
|
+
fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
93
|
+
diI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
94
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
95
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
96
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1d
|
97
|
+
fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJl
|
98
|
+
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21lZGlhbGl2ZS57UmVnaW9ufS57
|
99
|
+
UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
100
|
+
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsi
|
101
|
+
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVuYWJsZWQg
|
102
|
+
YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVhbFN0YWNr
|
103
|
+
IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
104
|
+
dCI6eyJ1cmwiOiJodHRwczovL21lZGlhbGl2ZS57UmVnaW9ufS57UGFydGl0
|
105
|
+
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
106
|
+
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
|
108
107
|
|
109
108
|
JSON
|
110
109
|
end
|
@@ -173,13 +173,13 @@ module Aws::MediaLive
|
|
173
173
|
end
|
174
174
|
|
175
175
|
# @return [String]
|
176
|
-
def
|
177
|
-
@
|
176
|
+
def element_path
|
177
|
+
@data[:element_path]
|
178
178
|
end
|
179
179
|
|
180
180
|
# @return [String]
|
181
|
-
def
|
182
|
-
@data[:
|
181
|
+
def error_message
|
182
|
+
@data[:error_message]
|
183
183
|
end
|
184
184
|
end
|
185
185
|
|
@@ -6254,11 +6254,16 @@ module Aws::MediaLive
|
|
6254
6254
|
# the bitrate of the source video.
|
6255
6255
|
# @return [Integer]
|
6256
6256
|
#
|
6257
|
+
# @!attribute [rw] latency_ms
|
6258
|
+
# The Link device's buffer size (latency) in milliseconds (ms).
|
6259
|
+
# @return [Integer]
|
6260
|
+
#
|
6257
6261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceConfigurableSettings AWS API Documentation
|
6258
6262
|
#
|
6259
6263
|
class InputDeviceConfigurableSettings < Struct.new(
|
6260
6264
|
:configured_input,
|
6261
|
-
:max_bitrate
|
6265
|
+
:max_bitrate,
|
6266
|
+
:latency_ms)
|
6262
6267
|
SENSITIVE = []
|
6263
6268
|
include Aws::Structure
|
6264
6269
|
end
|
@@ -6318,6 +6323,11 @@ module Aws::MediaLive
|
|
6318
6323
|
# The width of the video source, in pixels.
|
6319
6324
|
# @return [Integer]
|
6320
6325
|
#
|
6326
|
+
# @!attribute [rw] latency_ms
|
6327
|
+
# The Link device's buffer size (latency) in milliseconds (ms). You
|
6328
|
+
# can specify this value.
|
6329
|
+
# @return [Integer]
|
6330
|
+
#
|
6321
6331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceHdSettings AWS API Documentation
|
6322
6332
|
#
|
6323
6333
|
class InputDeviceHdSettings < Struct.new(
|
@@ -6328,7 +6338,8 @@ module Aws::MediaLive
|
|
6328
6338
|
:height,
|
6329
6339
|
:max_bitrate,
|
6330
6340
|
:scan_type,
|
6331
|
-
:width
|
6341
|
+
:width,
|
6342
|
+
:latency_ms)
|
6332
6343
|
SENSITIVE = []
|
6333
6344
|
include Aws::Structure
|
6334
6345
|
end
|
@@ -6509,6 +6520,11 @@ module Aws::MediaLive
|
|
6509
6520
|
# The width of the video source, in pixels.
|
6510
6521
|
# @return [Integer]
|
6511
6522
|
#
|
6523
|
+
# @!attribute [rw] latency_ms
|
6524
|
+
# The Link device's buffer size (latency) in milliseconds (ms). You
|
6525
|
+
# can specify this value.
|
6526
|
+
# @return [Integer]
|
6527
|
+
#
|
6512
6528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceUhdSettings AWS API Documentation
|
6513
6529
|
#
|
6514
6530
|
class InputDeviceUhdSettings < Struct.new(
|
@@ -6519,7 +6535,8 @@ module Aws::MediaLive
|
|
6519
6535
|
:height,
|
6520
6536
|
:max_bitrate,
|
6521
6537
|
:scan_type,
|
6522
|
-
:width
|
6538
|
+
:width,
|
6539
|
+
:latency_ms)
|
6523
6540
|
SENSITIVE = []
|
6524
6541
|
include Aws::Structure
|
6525
6542
|
end
|
@@ -11358,17 +11375,17 @@ module Aws::MediaLive
|
|
11358
11375
|
include Aws::Structure
|
11359
11376
|
end
|
11360
11377
|
|
11361
|
-
# @!attribute [rw]
|
11378
|
+
# @!attribute [rw] element_path
|
11362
11379
|
# @return [String]
|
11363
11380
|
#
|
11364
|
-
# @!attribute [rw]
|
11365
|
-
# @return [
|
11381
|
+
# @!attribute [rw] error_message
|
11382
|
+
# @return [String]
|
11366
11383
|
#
|
11367
11384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UnprocessableEntityException AWS API Documentation
|
11368
11385
|
#
|
11369
11386
|
class UnprocessableEntityException < Struct.new(
|
11370
|
-
:
|
11371
|
-
:
|
11387
|
+
:element_path,
|
11388
|
+
:error_message)
|
11372
11389
|
SENSITIVE = []
|
11373
11390
|
include Aws::Structure
|
11374
11391
|
end
|
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.93.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: 2022-12-
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|