aws-sdk-mediaconnect 1.46.0 → 1.48.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +1065 -24
- data/lib/aws-sdk-mediaconnect/client_api.rb +787 -24
- data/lib/aws-sdk-mediaconnect/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-mediaconnect/endpoints.rb +280 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/plugins/endpoints.rb +40 -0
- data/lib/aws-sdk-mediaconnect/types.rb +1697 -1091
- data/lib/aws-sdk-mediaconnect.rb +2 -2
- metadata +2 -2
|
@@ -10,36 +10,229 @@
|
|
|
10
10
|
module Aws::MediaConnect
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
-
#
|
|
13
|
+
# Add a flow source to an existing bridge.
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] flow_arn
|
|
16
|
+
# The Amazon Resource Number (ARN) of the cloud flow to use as a
|
|
17
|
+
# source of this bridge.
|
|
18
|
+
# @return [String]
|
|
19
|
+
#
|
|
20
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
|
21
|
+
# The name of the VPC interface attachment to use for this source.
|
|
22
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
23
|
+
#
|
|
24
|
+
# @!attribute [rw] name
|
|
25
|
+
# The name of the flow source. This name is used to reference the
|
|
26
|
+
# source and must be unique among sources in this bridge.
|
|
27
|
+
# @return [String]
|
|
28
|
+
#
|
|
29
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeFlowSourceRequest AWS API Documentation
|
|
30
|
+
#
|
|
31
|
+
class AddBridgeFlowSourceRequest < Struct.new(
|
|
32
|
+
:flow_arn,
|
|
33
|
+
:flow_vpc_interface_attachment,
|
|
34
|
+
:name)
|
|
35
|
+
SENSITIVE = []
|
|
36
|
+
include Aws::Structure
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
# Add a network output to an existing bridge.
|
|
40
|
+
#
|
|
41
|
+
# @!attribute [rw] ip_address
|
|
42
|
+
# The network output IP Address.
|
|
43
|
+
# @return [String]
|
|
44
|
+
#
|
|
45
|
+
# @!attribute [rw] name
|
|
46
|
+
# The network output name. This name is used to reference the output
|
|
47
|
+
# and must be unique among outputs in this bridge.
|
|
48
|
+
# @return [String]
|
|
49
|
+
#
|
|
50
|
+
# @!attribute [rw] network_name
|
|
51
|
+
# The network output's gateway network name.
|
|
52
|
+
# @return [String]
|
|
53
|
+
#
|
|
54
|
+
# @!attribute [rw] port
|
|
55
|
+
# The network output port.
|
|
56
|
+
# @return [Integer]
|
|
57
|
+
#
|
|
58
|
+
# @!attribute [rw] protocol
|
|
59
|
+
# The network output protocol.
|
|
60
|
+
# @return [String]
|
|
61
|
+
#
|
|
62
|
+
# @!attribute [rw] ttl
|
|
63
|
+
# The network output TTL.
|
|
64
|
+
# @return [Integer]
|
|
65
|
+
#
|
|
66
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeNetworkOutputRequest AWS API Documentation
|
|
67
|
+
#
|
|
68
|
+
class AddBridgeNetworkOutputRequest < Struct.new(
|
|
69
|
+
:ip_address,
|
|
70
|
+
:name,
|
|
71
|
+
:network_name,
|
|
72
|
+
:port,
|
|
73
|
+
:protocol,
|
|
74
|
+
:ttl)
|
|
75
|
+
SENSITIVE = []
|
|
76
|
+
include Aws::Structure
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# Add a network source to an existing bridge.
|
|
80
|
+
#
|
|
81
|
+
# @!attribute [rw] multicast_ip
|
|
82
|
+
# The network source multicast IP.
|
|
83
|
+
# @return [String]
|
|
14
84
|
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
#
|
|
28
|
-
#
|
|
29
|
-
#
|
|
30
|
-
#
|
|
31
|
-
#
|
|
32
|
-
#
|
|
33
|
-
#
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
85
|
+
# @!attribute [rw] name
|
|
86
|
+
# The name of the network source. This name is used to reference the
|
|
87
|
+
# source and must be unique among sources in this bridge.
|
|
88
|
+
# @return [String]
|
|
89
|
+
#
|
|
90
|
+
# @!attribute [rw] network_name
|
|
91
|
+
# The network source's gateway network name.
|
|
92
|
+
# @return [String]
|
|
93
|
+
#
|
|
94
|
+
# @!attribute [rw] port
|
|
95
|
+
# The network source port.
|
|
96
|
+
# @return [Integer]
|
|
97
|
+
#
|
|
98
|
+
# @!attribute [rw] protocol
|
|
99
|
+
# The network source protocol.
|
|
100
|
+
# @return [String]
|
|
101
|
+
#
|
|
102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeNetworkSourceRequest AWS API Documentation
|
|
103
|
+
#
|
|
104
|
+
class AddBridgeNetworkSourceRequest < Struct.new(
|
|
105
|
+
:multicast_ip,
|
|
106
|
+
:name,
|
|
107
|
+
:network_name,
|
|
108
|
+
:port,
|
|
109
|
+
:protocol)
|
|
110
|
+
SENSITIVE = []
|
|
111
|
+
include Aws::Structure
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# Add an output to a bridge.
|
|
115
|
+
#
|
|
116
|
+
# @!attribute [rw] network_output
|
|
117
|
+
# Add a network output to an existing bridge.
|
|
118
|
+
# @return [Types::AddBridgeNetworkOutputRequest]
|
|
119
|
+
#
|
|
120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputRequest AWS API Documentation
|
|
121
|
+
#
|
|
122
|
+
class AddBridgeOutputRequest < Struct.new(
|
|
123
|
+
:network_output)
|
|
124
|
+
SENSITIVE = []
|
|
125
|
+
include Aws::Structure
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# Adds outputs to an existing bridge. You can create up to 2 outputs per
|
|
129
|
+
# bridge.
|
|
130
|
+
#
|
|
131
|
+
# @!attribute [rw] bridge_arn
|
|
132
|
+
# @return [String]
|
|
133
|
+
#
|
|
134
|
+
# @!attribute [rw] outputs
|
|
135
|
+
# The outputs that you want to add to this bridge.
|
|
136
|
+
# @return [Array<Types::AddBridgeOutputRequest>]
|
|
137
|
+
#
|
|
138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputsRequest AWS API Documentation
|
|
139
|
+
#
|
|
140
|
+
class AddBridgeOutputsRequest < Struct.new(
|
|
141
|
+
:bridge_arn,
|
|
142
|
+
:outputs)
|
|
143
|
+
SENSITIVE = []
|
|
144
|
+
include Aws::Structure
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# The result of a successful AddBridgeOutputs request.
|
|
148
|
+
#
|
|
149
|
+
# @!attribute [rw] bridge_arn
|
|
150
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
151
|
+
# @return [String]
|
|
152
|
+
#
|
|
153
|
+
# @!attribute [rw] outputs
|
|
154
|
+
# The outputs that you added to this bridge.
|
|
155
|
+
# @return [Array<Types::BridgeOutput>]
|
|
156
|
+
#
|
|
157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputsResponse AWS API Documentation
|
|
158
|
+
#
|
|
159
|
+
class AddBridgeOutputsResponse < Struct.new(
|
|
160
|
+
:bridge_arn,
|
|
161
|
+
:outputs)
|
|
162
|
+
SENSITIVE = []
|
|
163
|
+
include Aws::Structure
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
# Add a source to an existing bridge.
|
|
167
|
+
#
|
|
168
|
+
# @!attribute [rw] flow_source
|
|
169
|
+
# Add a flow source to an existing bridge.
|
|
170
|
+
# @return [Types::AddBridgeFlowSourceRequest]
|
|
171
|
+
#
|
|
172
|
+
# @!attribute [rw] network_source
|
|
173
|
+
# Add a network source to an existing bridge.
|
|
174
|
+
# @return [Types::AddBridgeNetworkSourceRequest]
|
|
175
|
+
#
|
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourceRequest AWS API Documentation
|
|
177
|
+
#
|
|
178
|
+
class AddBridgeSourceRequest < Struct.new(
|
|
179
|
+
:flow_source,
|
|
180
|
+
:network_source)
|
|
181
|
+
SENSITIVE = []
|
|
182
|
+
include Aws::Structure
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
# Add sources to an existing bridge. You can create up to 2 sources per
|
|
186
|
+
# bridge.
|
|
187
|
+
#
|
|
188
|
+
# @!attribute [rw] bridge_arn
|
|
189
|
+
# @return [String]
|
|
190
|
+
#
|
|
191
|
+
# @!attribute [rw] sources
|
|
192
|
+
# The sources that you want to add to this bridge.
|
|
193
|
+
# @return [Array<Types::AddBridgeSourceRequest>]
|
|
194
|
+
#
|
|
195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourcesRequest AWS API Documentation
|
|
196
|
+
#
|
|
197
|
+
class AddBridgeSourcesRequest < Struct.new(
|
|
198
|
+
:bridge_arn,
|
|
199
|
+
:sources)
|
|
200
|
+
SENSITIVE = []
|
|
201
|
+
include Aws::Structure
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
# The result of a successful AddBridgeSources request.
|
|
205
|
+
#
|
|
206
|
+
# @!attribute [rw] bridge_arn
|
|
207
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
208
|
+
# @return [String]
|
|
209
|
+
#
|
|
210
|
+
# @!attribute [rw] sources
|
|
211
|
+
# The sources that you added to this bridge.
|
|
212
|
+
# @return [Array<Types::BridgeSource>]
|
|
213
|
+
#
|
|
214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourcesResponse AWS API Documentation
|
|
215
|
+
#
|
|
216
|
+
class AddBridgeSourcesResponse < Struct.new(
|
|
217
|
+
:bridge_arn,
|
|
218
|
+
:sources)
|
|
219
|
+
SENSITIVE = []
|
|
220
|
+
include Aws::Structure
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
# @!attribute [rw] max_bitrate
|
|
224
|
+
# The maximum expected bitrate (in bps).
|
|
225
|
+
# @return [Integer]
|
|
226
|
+
#
|
|
227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddEgressGatewayBridgeRequest AWS API Documentation
|
|
228
|
+
#
|
|
229
|
+
class AddEgressGatewayBridgeRequest < Struct.new(
|
|
230
|
+
:max_bitrate)
|
|
231
|
+
SENSITIVE = []
|
|
232
|
+
include Aws::Structure
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
# Adds media streams to an existing flow.
|
|
43
236
|
#
|
|
44
237
|
# @!attribute [rw] flow_arn
|
|
45
238
|
# @return [String]
|
|
@@ -57,8 +250,8 @@ module Aws::MediaConnect
|
|
|
57
250
|
include Aws::Structure
|
|
58
251
|
end
|
|
59
252
|
|
|
60
|
-
# The result of a successful
|
|
61
|
-
#
|
|
253
|
+
# The result of a successful AddFlowMediaStreams request. The response
|
|
254
|
+
# includes the details of the newly added media streams.
|
|
62
255
|
#
|
|
63
256
|
# @!attribute [rw] flow_arn
|
|
64
257
|
# The ARN of the flow that you added media streams to.
|
|
@@ -95,62 +288,6 @@ module Aws::MediaConnect
|
|
|
95
288
|
# Adds outputs to an existing flow. You can create up to 50 outputs per
|
|
96
289
|
# flow.
|
|
97
290
|
#
|
|
98
|
-
# @note When making an API call, you may pass AddFlowOutputsRequest
|
|
99
|
-
# data as a hash:
|
|
100
|
-
#
|
|
101
|
-
# {
|
|
102
|
-
# flow_arn: "__string", # required
|
|
103
|
-
# outputs: [ # required
|
|
104
|
-
# {
|
|
105
|
-
# cidr_allow_list: ["__string"],
|
|
106
|
-
# description: "__string",
|
|
107
|
-
# destination: "__string",
|
|
108
|
-
# encryption: {
|
|
109
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
110
|
-
# constant_initialization_vector: "__string",
|
|
111
|
-
# device_id: "__string",
|
|
112
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
113
|
-
# region: "__string",
|
|
114
|
-
# resource_id: "__string",
|
|
115
|
-
# role_arn: "__string", # required
|
|
116
|
-
# secret_arn: "__string",
|
|
117
|
-
# url: "__string",
|
|
118
|
-
# },
|
|
119
|
-
# max_latency: 1,
|
|
120
|
-
# media_stream_output_configurations: [
|
|
121
|
-
# {
|
|
122
|
-
# destination_configurations: [
|
|
123
|
-
# {
|
|
124
|
-
# destination_ip: "__string", # required
|
|
125
|
-
# destination_port: 1, # required
|
|
126
|
-
# interface: { # required
|
|
127
|
-
# name: "__string", # required
|
|
128
|
-
# },
|
|
129
|
-
# },
|
|
130
|
-
# ],
|
|
131
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
132
|
-
# encoding_parameters: {
|
|
133
|
-
# compression_factor: 1.0, # required
|
|
134
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
135
|
-
# },
|
|
136
|
-
# media_stream_name: "__string", # required
|
|
137
|
-
# },
|
|
138
|
-
# ],
|
|
139
|
-
# min_latency: 1,
|
|
140
|
-
# name: "__string",
|
|
141
|
-
# port: 1,
|
|
142
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
143
|
-
# remote_id: "__string",
|
|
144
|
-
# sender_control_port: 1,
|
|
145
|
-
# smoothing_latency: 1,
|
|
146
|
-
# stream_id: "__string",
|
|
147
|
-
# vpc_interface_attachment: {
|
|
148
|
-
# vpc_interface_name: "__string",
|
|
149
|
-
# },
|
|
150
|
-
# },
|
|
151
|
-
# ],
|
|
152
|
-
# }
|
|
153
|
-
#
|
|
154
291
|
# @!attribute [rw] flow_arn
|
|
155
292
|
# @return [String]
|
|
156
293
|
#
|
|
@@ -189,58 +326,6 @@ module Aws::MediaConnect
|
|
|
189
326
|
|
|
190
327
|
# Adds sources to an existing flow.
|
|
191
328
|
#
|
|
192
|
-
# @note When making an API call, you may pass AddFlowSourcesRequest
|
|
193
|
-
# data as a hash:
|
|
194
|
-
#
|
|
195
|
-
# {
|
|
196
|
-
# flow_arn: "__string", # required
|
|
197
|
-
# sources: [ # required
|
|
198
|
-
# {
|
|
199
|
-
# decryption: {
|
|
200
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
201
|
-
# constant_initialization_vector: "__string",
|
|
202
|
-
# device_id: "__string",
|
|
203
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
204
|
-
# region: "__string",
|
|
205
|
-
# resource_id: "__string",
|
|
206
|
-
# role_arn: "__string", # required
|
|
207
|
-
# secret_arn: "__string",
|
|
208
|
-
# url: "__string",
|
|
209
|
-
# },
|
|
210
|
-
# description: "__string",
|
|
211
|
-
# entitlement_arn: "__string",
|
|
212
|
-
# ingest_port: 1,
|
|
213
|
-
# max_bitrate: 1,
|
|
214
|
-
# max_latency: 1,
|
|
215
|
-
# max_sync_buffer: 1,
|
|
216
|
-
# media_stream_source_configurations: [
|
|
217
|
-
# {
|
|
218
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
219
|
-
# input_configurations: [
|
|
220
|
-
# {
|
|
221
|
-
# input_port: 1, # required
|
|
222
|
-
# interface: { # required
|
|
223
|
-
# name: "__string", # required
|
|
224
|
-
# },
|
|
225
|
-
# },
|
|
226
|
-
# ],
|
|
227
|
-
# media_stream_name: "__string", # required
|
|
228
|
-
# },
|
|
229
|
-
# ],
|
|
230
|
-
# min_latency: 1,
|
|
231
|
-
# name: "__string",
|
|
232
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
233
|
-
# sender_control_port: 1,
|
|
234
|
-
# sender_ip_address: "__string",
|
|
235
|
-
# source_listener_address: "__string",
|
|
236
|
-
# source_listener_port: 1,
|
|
237
|
-
# stream_id: "__string",
|
|
238
|
-
# vpc_interface_name: "__string",
|
|
239
|
-
# whitelist_cidr: "__string",
|
|
240
|
-
# },
|
|
241
|
-
# ],
|
|
242
|
-
# }
|
|
243
|
-
#
|
|
244
329
|
# @!attribute [rw] flow_arn
|
|
245
330
|
# @return [String]
|
|
246
331
|
#
|
|
@@ -279,22 +364,6 @@ module Aws::MediaConnect
|
|
|
279
364
|
|
|
280
365
|
# Adds VPC interfaces to an existing flow.
|
|
281
366
|
#
|
|
282
|
-
# @note When making an API call, you may pass AddFlowVpcInterfacesRequest
|
|
283
|
-
# data as a hash:
|
|
284
|
-
#
|
|
285
|
-
# {
|
|
286
|
-
# flow_arn: "__string", # required
|
|
287
|
-
# vpc_interfaces: [ # required
|
|
288
|
-
# {
|
|
289
|
-
# name: "__string", # required
|
|
290
|
-
# network_interface_type: "ena", # accepts ena, efa
|
|
291
|
-
# role_arn: "__string", # required
|
|
292
|
-
# security_group_ids: ["__string"], # required
|
|
293
|
-
# subnet_id: "__string", # required
|
|
294
|
-
# },
|
|
295
|
-
# ],
|
|
296
|
-
# }
|
|
297
|
-
#
|
|
298
367
|
# @!attribute [rw] flow_arn
|
|
299
368
|
# @return [String]
|
|
300
369
|
#
|
|
@@ -331,15 +400,24 @@ module Aws::MediaConnect
|
|
|
331
400
|
include Aws::Structure
|
|
332
401
|
end
|
|
333
402
|
|
|
334
|
-
#
|
|
403
|
+
# @!attribute [rw] max_bitrate
|
|
404
|
+
# The maximum expected bitrate (in bps).
|
|
405
|
+
# @return [Integer]
|
|
406
|
+
#
|
|
407
|
+
# @!attribute [rw] max_outputs
|
|
408
|
+
# The maximum number of expected outputs.
|
|
409
|
+
# @return [Integer]
|
|
335
410
|
#
|
|
336
|
-
# @
|
|
337
|
-
# data as a hash:
|
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddIngressGatewayBridgeRequest AWS API Documentation
|
|
338
412
|
#
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
413
|
+
class AddIngressGatewayBridgeRequest < Struct.new(
|
|
414
|
+
:max_bitrate,
|
|
415
|
+
:max_outputs)
|
|
416
|
+
SENSITIVE = []
|
|
417
|
+
include Aws::Structure
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
# Create maintenance setting for a flow
|
|
343
421
|
#
|
|
344
422
|
# @!attribute [rw] maintenance_day
|
|
345
423
|
# A day of a week when the maintenance will happen. Use
|
|
@@ -362,30 +440,6 @@ module Aws::MediaConnect
|
|
|
362
440
|
|
|
363
441
|
# The media stream that you want to add to the flow.
|
|
364
442
|
#
|
|
365
|
-
# @note When making an API call, you may pass AddMediaStreamRequest
|
|
366
|
-
# data as a hash:
|
|
367
|
-
#
|
|
368
|
-
# {
|
|
369
|
-
# attributes: {
|
|
370
|
-
# fmtp: {
|
|
371
|
-
# channel_order: "__string",
|
|
372
|
-
# colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
|
|
373
|
-
# exact_framerate: "__string",
|
|
374
|
-
# par: "__string",
|
|
375
|
-
# range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
|
|
376
|
-
# scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
|
|
377
|
-
# tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
|
|
378
|
-
# },
|
|
379
|
-
# lang: "__string",
|
|
380
|
-
# },
|
|
381
|
-
# clock_rate: 1,
|
|
382
|
-
# description: "__string",
|
|
383
|
-
# media_stream_id: 1, # required
|
|
384
|
-
# media_stream_name: "__string", # required
|
|
385
|
-
# media_stream_type: "video", # required, accepts video, audio, ancillary-data
|
|
386
|
-
# video_format: "__string",
|
|
387
|
-
# }
|
|
388
|
-
#
|
|
389
443
|
# @!attribute [rw] attributes
|
|
390
444
|
# The attributes that you want to assign to the new media stream.
|
|
391
445
|
# @return [Types::MediaStreamAttributesRequest]
|
|
@@ -433,57 +487,6 @@ module Aws::MediaConnect
|
|
|
433
487
|
|
|
434
488
|
# The output that you want to add to this flow.
|
|
435
489
|
#
|
|
436
|
-
# @note When making an API call, you may pass AddOutputRequest
|
|
437
|
-
# data as a hash:
|
|
438
|
-
#
|
|
439
|
-
# {
|
|
440
|
-
# cidr_allow_list: ["__string"],
|
|
441
|
-
# description: "__string",
|
|
442
|
-
# destination: "__string",
|
|
443
|
-
# encryption: {
|
|
444
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
445
|
-
# constant_initialization_vector: "__string",
|
|
446
|
-
# device_id: "__string",
|
|
447
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
448
|
-
# region: "__string",
|
|
449
|
-
# resource_id: "__string",
|
|
450
|
-
# role_arn: "__string", # required
|
|
451
|
-
# secret_arn: "__string",
|
|
452
|
-
# url: "__string",
|
|
453
|
-
# },
|
|
454
|
-
# max_latency: 1,
|
|
455
|
-
# media_stream_output_configurations: [
|
|
456
|
-
# {
|
|
457
|
-
# destination_configurations: [
|
|
458
|
-
# {
|
|
459
|
-
# destination_ip: "__string", # required
|
|
460
|
-
# destination_port: 1, # required
|
|
461
|
-
# interface: { # required
|
|
462
|
-
# name: "__string", # required
|
|
463
|
-
# },
|
|
464
|
-
# },
|
|
465
|
-
# ],
|
|
466
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
467
|
-
# encoding_parameters: {
|
|
468
|
-
# compression_factor: 1.0, # required
|
|
469
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
470
|
-
# },
|
|
471
|
-
# media_stream_name: "__string", # required
|
|
472
|
-
# },
|
|
473
|
-
# ],
|
|
474
|
-
# min_latency: 1,
|
|
475
|
-
# name: "__string",
|
|
476
|
-
# port: 1,
|
|
477
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
478
|
-
# remote_id: "__string",
|
|
479
|
-
# sender_control_port: 1,
|
|
480
|
-
# smoothing_latency: 1,
|
|
481
|
-
# stream_id: "__string",
|
|
482
|
-
# vpc_interface_attachment: {
|
|
483
|
-
# vpc_interface_name: "__string",
|
|
484
|
-
# },
|
|
485
|
-
# }
|
|
486
|
-
#
|
|
487
490
|
# @!attribute [rw] cidr_allow_list
|
|
488
491
|
# The range of IP addresses that should be allowed to initiate output
|
|
489
492
|
# requests to this flow. These IP addresses should be in the form of a
|
|
@@ -555,7 +558,7 @@ module Aws::MediaConnect
|
|
|
555
558
|
#
|
|
556
559
|
# @!attribute [rw] stream_id
|
|
557
560
|
# The stream ID that you want to use for this transport. This
|
|
558
|
-
# parameter applies only to Zixi-based streams.
|
|
561
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
|
559
562
|
# @return [String]
|
|
560
563
|
#
|
|
561
564
|
# @!attribute [rw] vpc_interface_attachment
|
|
@@ -591,14 +594,337 @@ module Aws::MediaConnect
|
|
|
591
594
|
# @!attribute [rw] message
|
|
592
595
|
# @return [String]
|
|
593
596
|
#
|
|
594
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BadRequestException AWS API Documentation
|
|
597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BadRequestException AWS API Documentation
|
|
598
|
+
#
|
|
599
|
+
class BadRequestException < Struct.new(
|
|
600
|
+
:message)
|
|
601
|
+
SENSITIVE = []
|
|
602
|
+
include Aws::Structure
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
# A Bridge is the connection between your datacenter's Instances and
|
|
606
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
|
607
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
|
608
|
+
#
|
|
609
|
+
# @!attribute [rw] bridge_arn
|
|
610
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
611
|
+
# @return [String]
|
|
612
|
+
#
|
|
613
|
+
# @!attribute [rw] bridge_messages
|
|
614
|
+
# @return [Array<Types::MessageDetail>]
|
|
615
|
+
#
|
|
616
|
+
# @!attribute [rw] bridge_state
|
|
617
|
+
# @return [String]
|
|
618
|
+
#
|
|
619
|
+
# @!attribute [rw] egress_gateway_bridge
|
|
620
|
+
# @return [Types::EgressGatewayBridge]
|
|
621
|
+
#
|
|
622
|
+
# @!attribute [rw] ingress_gateway_bridge
|
|
623
|
+
# @return [Types::IngressGatewayBridge]
|
|
624
|
+
#
|
|
625
|
+
# @!attribute [rw] name
|
|
626
|
+
# The name of the bridge.
|
|
627
|
+
# @return [String]
|
|
628
|
+
#
|
|
629
|
+
# @!attribute [rw] outputs
|
|
630
|
+
# The outputs on this bridge.
|
|
631
|
+
# @return [Array<Types::BridgeOutput>]
|
|
632
|
+
#
|
|
633
|
+
# @!attribute [rw] placement_arn
|
|
634
|
+
# The placement Amazon Resource Number (ARN) of the bridge.
|
|
635
|
+
# @return [String]
|
|
636
|
+
#
|
|
637
|
+
# @!attribute [rw] source_failover_config
|
|
638
|
+
# The settings for source failover.
|
|
639
|
+
# @return [Types::FailoverConfig]
|
|
640
|
+
#
|
|
641
|
+
# @!attribute [rw] sources
|
|
642
|
+
# The sources on this bridge.
|
|
643
|
+
# @return [Array<Types::BridgeSource>]
|
|
644
|
+
#
|
|
645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Bridge AWS API Documentation
|
|
646
|
+
#
|
|
647
|
+
class Bridge < Struct.new(
|
|
648
|
+
:bridge_arn,
|
|
649
|
+
:bridge_messages,
|
|
650
|
+
:bridge_state,
|
|
651
|
+
:egress_gateway_bridge,
|
|
652
|
+
:ingress_gateway_bridge,
|
|
653
|
+
:name,
|
|
654
|
+
:outputs,
|
|
655
|
+
:placement_arn,
|
|
656
|
+
:source_failover_config,
|
|
657
|
+
:sources)
|
|
658
|
+
SENSITIVE = []
|
|
659
|
+
include Aws::Structure
|
|
660
|
+
end
|
|
661
|
+
|
|
662
|
+
# The output of the bridge. A flow output is delivered to the AWS cloud.
|
|
663
|
+
#
|
|
664
|
+
# @!attribute [rw] flow_arn
|
|
665
|
+
# The Amazon Resource Number (ARN) of the cloud flow.
|
|
666
|
+
# @return [String]
|
|
667
|
+
#
|
|
668
|
+
# @!attribute [rw] flow_source_arn
|
|
669
|
+
# The Amazon Resource Number (ARN) of the flow source.
|
|
670
|
+
# @return [String]
|
|
671
|
+
#
|
|
672
|
+
# @!attribute [rw] name
|
|
673
|
+
# The name of the bridge's output.
|
|
674
|
+
# @return [String]
|
|
675
|
+
#
|
|
676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeFlowOutput AWS API Documentation
|
|
677
|
+
#
|
|
678
|
+
class BridgeFlowOutput < Struct.new(
|
|
679
|
+
:flow_arn,
|
|
680
|
+
:flow_source_arn,
|
|
681
|
+
:name)
|
|
682
|
+
SENSITIVE = []
|
|
683
|
+
include Aws::Structure
|
|
684
|
+
end
|
|
685
|
+
|
|
686
|
+
# The source of the bridge. A flow source originates in MediaConnect as
|
|
687
|
+
# an existing cloud flow.
|
|
688
|
+
#
|
|
689
|
+
# @!attribute [rw] flow_arn
|
|
690
|
+
# The ARN of the cloud flow used as a source of this bridge.
|
|
691
|
+
# @return [String]
|
|
692
|
+
#
|
|
693
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
|
694
|
+
# The name of the VPC interface attachment to use for this source.
|
|
695
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
696
|
+
#
|
|
697
|
+
# @!attribute [rw] name
|
|
698
|
+
# The name of the flow source.
|
|
699
|
+
# @return [String]
|
|
700
|
+
#
|
|
701
|
+
# @!attribute [rw] output_arn
|
|
702
|
+
# The Amazon Resource Number (ARN) of the output.
|
|
703
|
+
# @return [String]
|
|
704
|
+
#
|
|
705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeFlowSource AWS API Documentation
|
|
706
|
+
#
|
|
707
|
+
class BridgeFlowSource < Struct.new(
|
|
708
|
+
:flow_arn,
|
|
709
|
+
:flow_vpc_interface_attachment,
|
|
710
|
+
:name,
|
|
711
|
+
:output_arn)
|
|
712
|
+
SENSITIVE = []
|
|
713
|
+
include Aws::Structure
|
|
714
|
+
end
|
|
715
|
+
|
|
716
|
+
# The output of the bridge. A network output is delivered to your
|
|
717
|
+
# premises.
|
|
718
|
+
#
|
|
719
|
+
# @!attribute [rw] ip_address
|
|
720
|
+
# The network output IP Address.
|
|
721
|
+
# @return [String]
|
|
722
|
+
#
|
|
723
|
+
# @!attribute [rw] name
|
|
724
|
+
# The network output name.
|
|
725
|
+
# @return [String]
|
|
726
|
+
#
|
|
727
|
+
# @!attribute [rw] network_name
|
|
728
|
+
# The network output's gateway network name.
|
|
729
|
+
# @return [String]
|
|
730
|
+
#
|
|
731
|
+
# @!attribute [rw] port
|
|
732
|
+
# The network output port.
|
|
733
|
+
# @return [Integer]
|
|
734
|
+
#
|
|
735
|
+
# @!attribute [rw] protocol
|
|
736
|
+
# The network output protocol.
|
|
737
|
+
# @return [String]
|
|
738
|
+
#
|
|
739
|
+
# @!attribute [rw] ttl
|
|
740
|
+
# The network output TTL.
|
|
741
|
+
# @return [Integer]
|
|
742
|
+
#
|
|
743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeNetworkOutput AWS API Documentation
|
|
744
|
+
#
|
|
745
|
+
class BridgeNetworkOutput < Struct.new(
|
|
746
|
+
:ip_address,
|
|
747
|
+
:name,
|
|
748
|
+
:network_name,
|
|
749
|
+
:port,
|
|
750
|
+
:protocol,
|
|
751
|
+
:ttl)
|
|
752
|
+
SENSITIVE = []
|
|
753
|
+
include Aws::Structure
|
|
754
|
+
end
|
|
755
|
+
|
|
756
|
+
# The source of the bridge. A network source originates at your
|
|
757
|
+
# premises.
|
|
758
|
+
#
|
|
759
|
+
# @!attribute [rw] multicast_ip
|
|
760
|
+
# The network source multicast IP.
|
|
761
|
+
# @return [String]
|
|
762
|
+
#
|
|
763
|
+
# @!attribute [rw] name
|
|
764
|
+
# The name of the network source.
|
|
765
|
+
# @return [String]
|
|
766
|
+
#
|
|
767
|
+
# @!attribute [rw] network_name
|
|
768
|
+
# The network source's gateway network name.
|
|
769
|
+
# @return [String]
|
|
770
|
+
#
|
|
771
|
+
# @!attribute [rw] port
|
|
772
|
+
# The network source port.
|
|
773
|
+
# @return [Integer]
|
|
774
|
+
#
|
|
775
|
+
# @!attribute [rw] protocol
|
|
776
|
+
# The network source protocol.
|
|
777
|
+
# @return [String]
|
|
778
|
+
#
|
|
779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeNetworkSource AWS API Documentation
|
|
780
|
+
#
|
|
781
|
+
class BridgeNetworkSource < Struct.new(
|
|
782
|
+
:multicast_ip,
|
|
783
|
+
:name,
|
|
784
|
+
:network_name,
|
|
785
|
+
:port,
|
|
786
|
+
:protocol)
|
|
787
|
+
SENSITIVE = []
|
|
788
|
+
include Aws::Structure
|
|
789
|
+
end
|
|
790
|
+
|
|
791
|
+
# The output of the bridge.
|
|
792
|
+
#
|
|
793
|
+
# @!attribute [rw] flow_output
|
|
794
|
+
# The output of the bridge. A flow output is delivered to the AWS
|
|
795
|
+
# cloud.
|
|
796
|
+
# @return [Types::BridgeFlowOutput]
|
|
797
|
+
#
|
|
798
|
+
# @!attribute [rw] network_output
|
|
799
|
+
# The output of the bridge. A network output is delivered to your
|
|
800
|
+
# premises.
|
|
801
|
+
# @return [Types::BridgeNetworkOutput]
|
|
802
|
+
#
|
|
803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeOutput AWS API Documentation
|
|
804
|
+
#
|
|
805
|
+
class BridgeOutput < Struct.new(
|
|
806
|
+
:flow_output,
|
|
807
|
+
:network_output)
|
|
808
|
+
SENSITIVE = []
|
|
809
|
+
include Aws::Structure
|
|
810
|
+
end
|
|
811
|
+
|
|
812
|
+
# The bridge's source.
|
|
813
|
+
#
|
|
814
|
+
# @!attribute [rw] flow_source
|
|
815
|
+
# The source of the bridge. A flow source originates in MediaConnect
|
|
816
|
+
# as an existing cloud flow.
|
|
817
|
+
# @return [Types::BridgeFlowSource]
|
|
818
|
+
#
|
|
819
|
+
# @!attribute [rw] network_source
|
|
820
|
+
# The source of the bridge. A network source originates at your
|
|
821
|
+
# premises.
|
|
822
|
+
# @return [Types::BridgeNetworkSource]
|
|
823
|
+
#
|
|
824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeSource AWS API Documentation
|
|
825
|
+
#
|
|
826
|
+
class BridgeSource < Struct.new(
|
|
827
|
+
:flow_source,
|
|
828
|
+
:network_source)
|
|
829
|
+
SENSITIVE = []
|
|
830
|
+
include Aws::Structure
|
|
831
|
+
end
|
|
832
|
+
|
|
833
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
|
834
|
+
# and documentation for the operation for more information on the cause
|
|
835
|
+
# of this exception.
|
|
836
|
+
#
|
|
837
|
+
# @!attribute [rw] message
|
|
838
|
+
# @return [String]
|
|
839
|
+
#
|
|
840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ConflictException AWS API Documentation
|
|
841
|
+
#
|
|
842
|
+
class ConflictException < Struct.new(
|
|
843
|
+
:message)
|
|
844
|
+
SENSITIVE = []
|
|
845
|
+
include Aws::Structure
|
|
846
|
+
end
|
|
847
|
+
|
|
848
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
|
849
|
+
# and documentation for the operation for more information on the cause
|
|
850
|
+
# of this exception.
|
|
851
|
+
#
|
|
852
|
+
# @!attribute [rw] message
|
|
853
|
+
# @return [String]
|
|
854
|
+
#
|
|
855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridge420Exception AWS API Documentation
|
|
595
856
|
#
|
|
596
|
-
class
|
|
857
|
+
class CreateBridge420Exception < Struct.new(
|
|
597
858
|
:message)
|
|
598
859
|
SENSITIVE = []
|
|
599
860
|
include Aws::Structure
|
|
600
861
|
end
|
|
601
862
|
|
|
863
|
+
# Creates a new bridge. The request must include one source.
|
|
864
|
+
#
|
|
865
|
+
# @!attribute [rw] egress_gateway_bridge
|
|
866
|
+
# Create a bridge with the egress bridge type. An egress bridge is a
|
|
867
|
+
# cloud-to-ground bridge. The content comes from an existing
|
|
868
|
+
# MediaConnect flow and is delivered to your premises.
|
|
869
|
+
# @return [Types::AddEgressGatewayBridgeRequest]
|
|
870
|
+
#
|
|
871
|
+
# @!attribute [rw] ingress_gateway_bridge
|
|
872
|
+
# Create a bridge with the ingress bridge type. An ingress bridge is a
|
|
873
|
+
# ground-to-cloud bridge. The content originates at your premises and
|
|
874
|
+
# is delivered to the cloud.
|
|
875
|
+
# @return [Types::AddIngressGatewayBridgeRequest]
|
|
876
|
+
#
|
|
877
|
+
# @!attribute [rw] name
|
|
878
|
+
# The name of the bridge. This name can not be modified after the
|
|
879
|
+
# bridge is created.
|
|
880
|
+
# @return [String]
|
|
881
|
+
#
|
|
882
|
+
# @!attribute [rw] outputs
|
|
883
|
+
# The outputs that you want to add to this bridge.
|
|
884
|
+
# @return [Array<Types::AddBridgeOutputRequest>]
|
|
885
|
+
#
|
|
886
|
+
# @!attribute [rw] placement_arn
|
|
887
|
+
# The bridge placement Amazon Resource Number (ARN).
|
|
888
|
+
# @return [String]
|
|
889
|
+
#
|
|
890
|
+
# @!attribute [rw] source_failover_config
|
|
891
|
+
# The settings for source failover.
|
|
892
|
+
# @return [Types::FailoverConfig]
|
|
893
|
+
#
|
|
894
|
+
# @!attribute [rw] sources
|
|
895
|
+
# The sources that you want to add to this bridge.
|
|
896
|
+
# @return [Array<Types::AddBridgeSourceRequest>]
|
|
897
|
+
#
|
|
898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeRequest AWS API Documentation
|
|
899
|
+
#
|
|
900
|
+
class CreateBridgeRequest < Struct.new(
|
|
901
|
+
:egress_gateway_bridge,
|
|
902
|
+
:ingress_gateway_bridge,
|
|
903
|
+
:name,
|
|
904
|
+
:outputs,
|
|
905
|
+
:placement_arn,
|
|
906
|
+
:source_failover_config,
|
|
907
|
+
:sources)
|
|
908
|
+
SENSITIVE = []
|
|
909
|
+
include Aws::Structure
|
|
910
|
+
end
|
|
911
|
+
|
|
912
|
+
# The result of a successful CreateBridge request.
|
|
913
|
+
#
|
|
914
|
+
# @!attribute [rw] bridge
|
|
915
|
+
# A Bridge is the connection between your datacenter's Instances and
|
|
916
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
|
917
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
|
918
|
+
# @return [Types::Bridge]
|
|
919
|
+
#
|
|
920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
|
|
921
|
+
#
|
|
922
|
+
class CreateBridgeResponse < Struct.new(
|
|
923
|
+
:bridge)
|
|
924
|
+
SENSITIVE = []
|
|
925
|
+
include Aws::Structure
|
|
926
|
+
end
|
|
927
|
+
|
|
602
928
|
# Exception raised by AWS Elemental MediaConnect. See the error message
|
|
603
929
|
# and documentation for the operation for more information on the cause
|
|
604
930
|
# of this exception.
|
|
@@ -617,214 +943,6 @@ module Aws::MediaConnect
|
|
|
617
943
|
# Creates a new flow. The request must include one source. The request
|
|
618
944
|
# optionally can include outputs (up to 50) and entitlements (up to 50.)
|
|
619
945
|
#
|
|
620
|
-
# @note When making an API call, you may pass CreateFlowRequest
|
|
621
|
-
# data as a hash:
|
|
622
|
-
#
|
|
623
|
-
# {
|
|
624
|
-
# availability_zone: "__string",
|
|
625
|
-
# entitlements: [
|
|
626
|
-
# {
|
|
627
|
-
# data_transfer_subscriber_fee_percent: 1,
|
|
628
|
-
# description: "__string",
|
|
629
|
-
# encryption: {
|
|
630
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
631
|
-
# constant_initialization_vector: "__string",
|
|
632
|
-
# device_id: "__string",
|
|
633
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
634
|
-
# region: "__string",
|
|
635
|
-
# resource_id: "__string",
|
|
636
|
-
# role_arn: "__string", # required
|
|
637
|
-
# secret_arn: "__string",
|
|
638
|
-
# url: "__string",
|
|
639
|
-
# },
|
|
640
|
-
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
641
|
-
# name: "__string",
|
|
642
|
-
# subscribers: ["__string"], # required
|
|
643
|
-
# },
|
|
644
|
-
# ],
|
|
645
|
-
# media_streams: [
|
|
646
|
-
# {
|
|
647
|
-
# attributes: {
|
|
648
|
-
# fmtp: {
|
|
649
|
-
# channel_order: "__string",
|
|
650
|
-
# colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
|
|
651
|
-
# exact_framerate: "__string",
|
|
652
|
-
# par: "__string",
|
|
653
|
-
# range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
|
|
654
|
-
# scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
|
|
655
|
-
# tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
|
|
656
|
-
# },
|
|
657
|
-
# lang: "__string",
|
|
658
|
-
# },
|
|
659
|
-
# clock_rate: 1,
|
|
660
|
-
# description: "__string",
|
|
661
|
-
# media_stream_id: 1, # required
|
|
662
|
-
# media_stream_name: "__string", # required
|
|
663
|
-
# media_stream_type: "video", # required, accepts video, audio, ancillary-data
|
|
664
|
-
# video_format: "__string",
|
|
665
|
-
# },
|
|
666
|
-
# ],
|
|
667
|
-
# name: "__string", # required
|
|
668
|
-
# outputs: [
|
|
669
|
-
# {
|
|
670
|
-
# cidr_allow_list: ["__string"],
|
|
671
|
-
# description: "__string",
|
|
672
|
-
# destination: "__string",
|
|
673
|
-
# encryption: {
|
|
674
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
675
|
-
# constant_initialization_vector: "__string",
|
|
676
|
-
# device_id: "__string",
|
|
677
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
678
|
-
# region: "__string",
|
|
679
|
-
# resource_id: "__string",
|
|
680
|
-
# role_arn: "__string", # required
|
|
681
|
-
# secret_arn: "__string",
|
|
682
|
-
# url: "__string",
|
|
683
|
-
# },
|
|
684
|
-
# max_latency: 1,
|
|
685
|
-
# media_stream_output_configurations: [
|
|
686
|
-
# {
|
|
687
|
-
# destination_configurations: [
|
|
688
|
-
# {
|
|
689
|
-
# destination_ip: "__string", # required
|
|
690
|
-
# destination_port: 1, # required
|
|
691
|
-
# interface: { # required
|
|
692
|
-
# name: "__string", # required
|
|
693
|
-
# },
|
|
694
|
-
# },
|
|
695
|
-
# ],
|
|
696
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
697
|
-
# encoding_parameters: {
|
|
698
|
-
# compression_factor: 1.0, # required
|
|
699
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
700
|
-
# },
|
|
701
|
-
# media_stream_name: "__string", # required
|
|
702
|
-
# },
|
|
703
|
-
# ],
|
|
704
|
-
# min_latency: 1,
|
|
705
|
-
# name: "__string",
|
|
706
|
-
# port: 1,
|
|
707
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
708
|
-
# remote_id: "__string",
|
|
709
|
-
# sender_control_port: 1,
|
|
710
|
-
# smoothing_latency: 1,
|
|
711
|
-
# stream_id: "__string",
|
|
712
|
-
# vpc_interface_attachment: {
|
|
713
|
-
# vpc_interface_name: "__string",
|
|
714
|
-
# },
|
|
715
|
-
# },
|
|
716
|
-
# ],
|
|
717
|
-
# source: {
|
|
718
|
-
# decryption: {
|
|
719
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
720
|
-
# constant_initialization_vector: "__string",
|
|
721
|
-
# device_id: "__string",
|
|
722
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
723
|
-
# region: "__string",
|
|
724
|
-
# resource_id: "__string",
|
|
725
|
-
# role_arn: "__string", # required
|
|
726
|
-
# secret_arn: "__string",
|
|
727
|
-
# url: "__string",
|
|
728
|
-
# },
|
|
729
|
-
# description: "__string",
|
|
730
|
-
# entitlement_arn: "__string",
|
|
731
|
-
# ingest_port: 1,
|
|
732
|
-
# max_bitrate: 1,
|
|
733
|
-
# max_latency: 1,
|
|
734
|
-
# max_sync_buffer: 1,
|
|
735
|
-
# media_stream_source_configurations: [
|
|
736
|
-
# {
|
|
737
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
738
|
-
# input_configurations: [
|
|
739
|
-
# {
|
|
740
|
-
# input_port: 1, # required
|
|
741
|
-
# interface: { # required
|
|
742
|
-
# name: "__string", # required
|
|
743
|
-
# },
|
|
744
|
-
# },
|
|
745
|
-
# ],
|
|
746
|
-
# media_stream_name: "__string", # required
|
|
747
|
-
# },
|
|
748
|
-
# ],
|
|
749
|
-
# min_latency: 1,
|
|
750
|
-
# name: "__string",
|
|
751
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
752
|
-
# sender_control_port: 1,
|
|
753
|
-
# sender_ip_address: "__string",
|
|
754
|
-
# source_listener_address: "__string",
|
|
755
|
-
# source_listener_port: 1,
|
|
756
|
-
# stream_id: "__string",
|
|
757
|
-
# vpc_interface_name: "__string",
|
|
758
|
-
# whitelist_cidr: "__string",
|
|
759
|
-
# },
|
|
760
|
-
# source_failover_config: {
|
|
761
|
-
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
|
762
|
-
# recovery_window: 1,
|
|
763
|
-
# source_priority: {
|
|
764
|
-
# primary_source: "__string",
|
|
765
|
-
# },
|
|
766
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
767
|
-
# },
|
|
768
|
-
# sources: [
|
|
769
|
-
# {
|
|
770
|
-
# decryption: {
|
|
771
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
772
|
-
# constant_initialization_vector: "__string",
|
|
773
|
-
# device_id: "__string",
|
|
774
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
775
|
-
# region: "__string",
|
|
776
|
-
# resource_id: "__string",
|
|
777
|
-
# role_arn: "__string", # required
|
|
778
|
-
# secret_arn: "__string",
|
|
779
|
-
# url: "__string",
|
|
780
|
-
# },
|
|
781
|
-
# description: "__string",
|
|
782
|
-
# entitlement_arn: "__string",
|
|
783
|
-
# ingest_port: 1,
|
|
784
|
-
# max_bitrate: 1,
|
|
785
|
-
# max_latency: 1,
|
|
786
|
-
# max_sync_buffer: 1,
|
|
787
|
-
# media_stream_source_configurations: [
|
|
788
|
-
# {
|
|
789
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
790
|
-
# input_configurations: [
|
|
791
|
-
# {
|
|
792
|
-
# input_port: 1, # required
|
|
793
|
-
# interface: { # required
|
|
794
|
-
# name: "__string", # required
|
|
795
|
-
# },
|
|
796
|
-
# },
|
|
797
|
-
# ],
|
|
798
|
-
# media_stream_name: "__string", # required
|
|
799
|
-
# },
|
|
800
|
-
# ],
|
|
801
|
-
# min_latency: 1,
|
|
802
|
-
# name: "__string",
|
|
803
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
804
|
-
# sender_control_port: 1,
|
|
805
|
-
# sender_ip_address: "__string",
|
|
806
|
-
# source_listener_address: "__string",
|
|
807
|
-
# source_listener_port: 1,
|
|
808
|
-
# stream_id: "__string",
|
|
809
|
-
# vpc_interface_name: "__string",
|
|
810
|
-
# whitelist_cidr: "__string",
|
|
811
|
-
# },
|
|
812
|
-
# ],
|
|
813
|
-
# vpc_interfaces: [
|
|
814
|
-
# {
|
|
815
|
-
# name: "__string", # required
|
|
816
|
-
# network_interface_type: "ena", # accepts ena, efa
|
|
817
|
-
# role_arn: "__string", # required
|
|
818
|
-
# security_group_ids: ["__string"], # required
|
|
819
|
-
# subnet_id: "__string", # required
|
|
820
|
-
# },
|
|
821
|
-
# ],
|
|
822
|
-
# maintenance: {
|
|
823
|
-
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
824
|
-
# maintenance_start_hour: "__string", # required
|
|
825
|
-
# },
|
|
826
|
-
# }
|
|
827
|
-
#
|
|
828
946
|
# @!attribute [rw] availability_zone
|
|
829
947
|
# The Availability Zone that you want to create the flow in. These
|
|
830
948
|
# options are limited to the Availability Zones within the current AWS
|
|
@@ -899,13 +1017,86 @@ module Aws::MediaConnect
|
|
|
899
1017
|
include Aws::Structure
|
|
900
1018
|
end
|
|
901
1019
|
|
|
902
|
-
#
|
|
903
|
-
#
|
|
1020
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
|
1021
|
+
# and documentation for the operation for more information on the cause
|
|
1022
|
+
# of this exception.
|
|
1023
|
+
#
|
|
1024
|
+
# @!attribute [rw] message
|
|
1025
|
+
# @return [String]
|
|
1026
|
+
#
|
|
1027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGateway420Exception AWS API Documentation
|
|
1028
|
+
#
|
|
1029
|
+
class CreateGateway420Exception < Struct.new(
|
|
1030
|
+
:message)
|
|
1031
|
+
SENSITIVE = []
|
|
1032
|
+
include Aws::Structure
|
|
1033
|
+
end
|
|
1034
|
+
|
|
1035
|
+
# Creates a new gateway. The request must include one network (up to 4).
|
|
1036
|
+
#
|
|
1037
|
+
# @!attribute [rw] egress_cidr_blocks
|
|
1038
|
+
# The range of IP addresses that are allowed to contribute content or
|
|
1039
|
+
# initiate output requests for flows communicating with this gateway.
|
|
1040
|
+
# These IP addresses should be in the form of a Classless Inter-Domain
|
|
1041
|
+
# Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1042
|
+
# @return [Array<String>]
|
|
1043
|
+
#
|
|
1044
|
+
# @!attribute [rw] name
|
|
1045
|
+
# The name of the gateway. This name can not be modified after the
|
|
1046
|
+
# gateway is created.
|
|
1047
|
+
# @return [String]
|
|
1048
|
+
#
|
|
1049
|
+
# @!attribute [rw] networks
|
|
1050
|
+
# The list of networks that you want to add.
|
|
1051
|
+
# @return [Array<Types::GatewayNetwork>]
|
|
1052
|
+
#
|
|
1053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayRequest AWS API Documentation
|
|
1054
|
+
#
|
|
1055
|
+
class CreateGatewayRequest < Struct.new(
|
|
1056
|
+
:egress_cidr_blocks,
|
|
1057
|
+
:name,
|
|
1058
|
+
:networks)
|
|
1059
|
+
SENSITIVE = []
|
|
1060
|
+
include Aws::Structure
|
|
1061
|
+
end
|
|
1062
|
+
|
|
1063
|
+
# @!attribute [rw] gateway
|
|
1064
|
+
# The settings for a gateway, including its networks.
|
|
1065
|
+
# @return [Types::Gateway]
|
|
1066
|
+
#
|
|
1067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayResponse AWS API Documentation
|
|
1068
|
+
#
|
|
1069
|
+
class CreateGatewayResponse < Struct.new(
|
|
1070
|
+
:gateway)
|
|
1071
|
+
SENSITIVE = []
|
|
1072
|
+
include Aws::Structure
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
# @!attribute [rw] bridge_arn
|
|
1076
|
+
# @return [String]
|
|
1077
|
+
#
|
|
1078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeRequest AWS API Documentation
|
|
1079
|
+
#
|
|
1080
|
+
class DeleteBridgeRequest < Struct.new(
|
|
1081
|
+
:bridge_arn)
|
|
1082
|
+
SENSITIVE = []
|
|
1083
|
+
include Aws::Structure
|
|
1084
|
+
end
|
|
1085
|
+
|
|
1086
|
+
# The result of a successful DeleteBridge request.
|
|
904
1087
|
#
|
|
905
|
-
#
|
|
906
|
-
#
|
|
907
|
-
#
|
|
1088
|
+
# @!attribute [rw] bridge_arn
|
|
1089
|
+
# The Amazon Resource Number (ARN) of the deleted bridge.
|
|
1090
|
+
# @return [String]
|
|
1091
|
+
#
|
|
1092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeResponse AWS API Documentation
|
|
908
1093
|
#
|
|
1094
|
+
class DeleteBridgeResponse < Struct.new(
|
|
1095
|
+
:bridge_arn)
|
|
1096
|
+
SENSITIVE = []
|
|
1097
|
+
include Aws::Structure
|
|
1098
|
+
end
|
|
1099
|
+
|
|
909
1100
|
# @!attribute [rw] flow_arn
|
|
910
1101
|
# @return [String]
|
|
911
1102
|
#
|
|
@@ -936,13 +1127,92 @@ module Aws::MediaConnect
|
|
|
936
1127
|
include Aws::Structure
|
|
937
1128
|
end
|
|
938
1129
|
|
|
939
|
-
#
|
|
940
|
-
#
|
|
1130
|
+
# @!attribute [rw] gateway_arn
|
|
1131
|
+
# @return [String]
|
|
1132
|
+
#
|
|
1133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayRequest AWS API Documentation
|
|
1134
|
+
#
|
|
1135
|
+
class DeleteGatewayRequest < Struct.new(
|
|
1136
|
+
:gateway_arn)
|
|
1137
|
+
SENSITIVE = []
|
|
1138
|
+
include Aws::Structure
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1141
|
+
# The result of a successful DeleteGateway request.
|
|
1142
|
+
#
|
|
1143
|
+
# @!attribute [rw] gateway_arn
|
|
1144
|
+
# The Amazon Resource Name (ARN) of the gateway that was deleted.
|
|
1145
|
+
# @return [String]
|
|
1146
|
+
#
|
|
1147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayResponse AWS API Documentation
|
|
1148
|
+
#
|
|
1149
|
+
class DeleteGatewayResponse < Struct.new(
|
|
1150
|
+
:gateway_arn)
|
|
1151
|
+
SENSITIVE = []
|
|
1152
|
+
include Aws::Structure
|
|
1153
|
+
end
|
|
1154
|
+
|
|
1155
|
+
# @!attribute [rw] force
|
|
1156
|
+
# @return [Boolean]
|
|
1157
|
+
#
|
|
1158
|
+
# @!attribute [rw] gateway_instance_arn
|
|
1159
|
+
# @return [String]
|
|
1160
|
+
#
|
|
1161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstanceRequest AWS API Documentation
|
|
1162
|
+
#
|
|
1163
|
+
class DeregisterGatewayInstanceRequest < Struct.new(
|
|
1164
|
+
:force,
|
|
1165
|
+
:gateway_instance_arn)
|
|
1166
|
+
SENSITIVE = []
|
|
1167
|
+
include Aws::Structure
|
|
1168
|
+
end
|
|
1169
|
+
|
|
1170
|
+
# The result of a successful DeregisterGatewayInstance request.
|
|
1171
|
+
#
|
|
1172
|
+
# @!attribute [rw] gateway_instance_arn
|
|
1173
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
1174
|
+
# @return [String]
|
|
1175
|
+
#
|
|
1176
|
+
# @!attribute [rw] instance_state
|
|
1177
|
+
# The status of the instance.
|
|
1178
|
+
# @return [String]
|
|
1179
|
+
#
|
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstanceResponse AWS API Documentation
|
|
1181
|
+
#
|
|
1182
|
+
class DeregisterGatewayInstanceResponse < Struct.new(
|
|
1183
|
+
:gateway_instance_arn,
|
|
1184
|
+
:instance_state)
|
|
1185
|
+
SENSITIVE = []
|
|
1186
|
+
include Aws::Structure
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
# @!attribute [rw] bridge_arn
|
|
1190
|
+
# @return [String]
|
|
1191
|
+
#
|
|
1192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeRequest AWS API Documentation
|
|
1193
|
+
#
|
|
1194
|
+
class DescribeBridgeRequest < Struct.new(
|
|
1195
|
+
:bridge_arn)
|
|
1196
|
+
SENSITIVE = []
|
|
1197
|
+
include Aws::Structure
|
|
1198
|
+
end
|
|
1199
|
+
|
|
1200
|
+
# The result of a successful DescribeBridge request.
|
|
941
1201
|
#
|
|
942
|
-
#
|
|
943
|
-
#
|
|
944
|
-
#
|
|
1202
|
+
# @!attribute [rw] bridge
|
|
1203
|
+
# A Bridge is the connection between your datacenter's Instances and
|
|
1204
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
|
1205
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
|
1206
|
+
# @return [Types::Bridge]
|
|
945
1207
|
#
|
|
1208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
|
|
1209
|
+
#
|
|
1210
|
+
class DescribeBridgeResponse < Struct.new(
|
|
1211
|
+
:bridge)
|
|
1212
|
+
SENSITIVE = []
|
|
1213
|
+
include Aws::Structure
|
|
1214
|
+
end
|
|
1215
|
+
|
|
946
1216
|
# @!attribute [rw] flow_arn
|
|
947
1217
|
# @return [String]
|
|
948
1218
|
#
|
|
@@ -974,13 +1244,56 @@ module Aws::MediaConnect
|
|
|
974
1244
|
include Aws::Structure
|
|
975
1245
|
end
|
|
976
1246
|
|
|
977
|
-
#
|
|
978
|
-
#
|
|
1247
|
+
# @!attribute [rw] gateway_instance_arn
|
|
1248
|
+
# @return [String]
|
|
1249
|
+
#
|
|
1250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceRequest AWS API Documentation
|
|
1251
|
+
#
|
|
1252
|
+
class DescribeGatewayInstanceRequest < Struct.new(
|
|
1253
|
+
:gateway_instance_arn)
|
|
1254
|
+
SENSITIVE = []
|
|
1255
|
+
include Aws::Structure
|
|
1256
|
+
end
|
|
1257
|
+
|
|
1258
|
+
# The result of a successful DescribeGatewayInstance request.
|
|
1259
|
+
#
|
|
1260
|
+
# @!attribute [rw] gateway_instance
|
|
1261
|
+
# The settings for an instance in a gateway.
|
|
1262
|
+
# @return [Types::GatewayInstance]
|
|
1263
|
+
#
|
|
1264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceResponse AWS API Documentation
|
|
1265
|
+
#
|
|
1266
|
+
class DescribeGatewayInstanceResponse < Struct.new(
|
|
1267
|
+
:gateway_instance)
|
|
1268
|
+
SENSITIVE = []
|
|
1269
|
+
include Aws::Structure
|
|
1270
|
+
end
|
|
1271
|
+
|
|
1272
|
+
# @!attribute [rw] gateway_arn
|
|
1273
|
+
# @return [String]
|
|
1274
|
+
#
|
|
1275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayRequest AWS API Documentation
|
|
1276
|
+
#
|
|
1277
|
+
class DescribeGatewayRequest < Struct.new(
|
|
1278
|
+
:gateway_arn)
|
|
1279
|
+
SENSITIVE = []
|
|
1280
|
+
include Aws::Structure
|
|
1281
|
+
end
|
|
1282
|
+
|
|
1283
|
+
# The result of a successful DescribeGateway request.
|
|
979
1284
|
#
|
|
980
|
-
#
|
|
981
|
-
#
|
|
982
|
-
#
|
|
1285
|
+
# @!attribute [rw] gateway
|
|
1286
|
+
# The settings for a gateway, including its networks.
|
|
1287
|
+
# @return [Types::Gateway]
|
|
983
1288
|
#
|
|
1289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayResponse AWS API Documentation
|
|
1290
|
+
#
|
|
1291
|
+
class DescribeGatewayResponse < Struct.new(
|
|
1292
|
+
:gateway)
|
|
1293
|
+
SENSITIVE = []
|
|
1294
|
+
include Aws::Structure
|
|
1295
|
+
end
|
|
1296
|
+
|
|
984
1297
|
# @!attribute [rw] offering_arn
|
|
985
1298
|
# @return [String]
|
|
986
1299
|
#
|
|
@@ -1007,13 +1320,6 @@ module Aws::MediaConnect
|
|
|
1007
1320
|
include Aws::Structure
|
|
1008
1321
|
end
|
|
1009
1322
|
|
|
1010
|
-
# @note When making an API call, you may pass DescribeReservationRequest
|
|
1011
|
-
# data as a hash:
|
|
1012
|
-
#
|
|
1013
|
-
# {
|
|
1014
|
-
# reservation_arn: "__string", # required
|
|
1015
|
-
# }
|
|
1016
|
-
#
|
|
1017
1323
|
# @!attribute [rw] reservation_arn
|
|
1018
1324
|
# @return [String]
|
|
1019
1325
|
#
|
|
@@ -1083,17 +1389,6 @@ module Aws::MediaConnect
|
|
|
1083
1389
|
# The transport parameters that you want to associate with an outbound
|
|
1084
1390
|
# media stream.
|
|
1085
1391
|
#
|
|
1086
|
-
# @note When making an API call, you may pass DestinationConfigurationRequest
|
|
1087
|
-
# data as a hash:
|
|
1088
|
-
#
|
|
1089
|
-
# {
|
|
1090
|
-
# destination_ip: "__string", # required
|
|
1091
|
-
# destination_port: 1, # required
|
|
1092
|
-
# interface: { # required
|
|
1093
|
-
# name: "__string", # required
|
|
1094
|
-
# },
|
|
1095
|
-
# }
|
|
1096
|
-
#
|
|
1097
1392
|
# @!attribute [rw] destination_ip
|
|
1098
1393
|
# The IP address where you want MediaConnect to send contents of the
|
|
1099
1394
|
# media stream.
|
|
@@ -1119,6 +1414,23 @@ module Aws::MediaConnect
|
|
|
1119
1414
|
include Aws::Structure
|
|
1120
1415
|
end
|
|
1121
1416
|
|
|
1417
|
+
# @!attribute [rw] instance_id
|
|
1418
|
+
# The ID of the instance running this bridge.
|
|
1419
|
+
# @return [String]
|
|
1420
|
+
#
|
|
1421
|
+
# @!attribute [rw] max_bitrate
|
|
1422
|
+
# The maximum expected bitrate (in bps) of the egress bridge.
|
|
1423
|
+
# @return [Integer]
|
|
1424
|
+
#
|
|
1425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/EgressGatewayBridge AWS API Documentation
|
|
1426
|
+
#
|
|
1427
|
+
class EgressGatewayBridge < Struct.new(
|
|
1428
|
+
:instance_id,
|
|
1429
|
+
:max_bitrate)
|
|
1430
|
+
SENSITIVE = []
|
|
1431
|
+
include Aws::Structure
|
|
1432
|
+
end
|
|
1433
|
+
|
|
1122
1434
|
# A collection of parameters that determine how MediaConnect will
|
|
1123
1435
|
# convert the content. These fields only apply to outputs on flows that
|
|
1124
1436
|
# have a CDI source.
|
|
@@ -1152,14 +1464,6 @@ module Aws::MediaConnect
|
|
|
1152
1464
|
# convert the content. These fields only apply to outputs on flows that
|
|
1153
1465
|
# have a CDI source.
|
|
1154
1466
|
#
|
|
1155
|
-
# @note When making an API call, you may pass EncodingParametersRequest
|
|
1156
|
-
# data as a hash:
|
|
1157
|
-
#
|
|
1158
|
-
# {
|
|
1159
|
-
# compression_factor: 1.0, # required
|
|
1160
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
1161
|
-
# }
|
|
1162
|
-
#
|
|
1163
1467
|
# @!attribute [rw] compression_factor
|
|
1164
1468
|
# A value that is used to calculate compression for an output. The
|
|
1165
1469
|
# bitrate of the output is calculated as follows: Output bitrate = (1
|
|
@@ -1187,21 +1491,6 @@ module Aws::MediaConnect
|
|
|
1187
1491
|
|
|
1188
1492
|
# Information about the encryption of the flow.
|
|
1189
1493
|
#
|
|
1190
|
-
# @note When making an API call, you may pass Encryption
|
|
1191
|
-
# data as a hash:
|
|
1192
|
-
#
|
|
1193
|
-
# {
|
|
1194
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
1195
|
-
# constant_initialization_vector: "__string",
|
|
1196
|
-
# device_id: "__string",
|
|
1197
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
1198
|
-
# region: "__string",
|
|
1199
|
-
# resource_id: "__string",
|
|
1200
|
-
# role_arn: "__string", # required
|
|
1201
|
-
# secret_arn: "__string",
|
|
1202
|
-
# url: "__string",
|
|
1203
|
-
# }
|
|
1204
|
-
#
|
|
1205
1494
|
# @!attribute [rw] algorithm
|
|
1206
1495
|
# The type of algorithm that is used for the encryption (such as
|
|
1207
1496
|
# aes128, aes192, or aes256).
|
|
@@ -1321,18 +1610,6 @@ module Aws::MediaConnect
|
|
|
1321
1610
|
|
|
1322
1611
|
# The settings for source failover.
|
|
1323
1612
|
#
|
|
1324
|
-
# @note When making an API call, you may pass FailoverConfig
|
|
1325
|
-
# data as a hash:
|
|
1326
|
-
#
|
|
1327
|
-
# {
|
|
1328
|
-
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
|
1329
|
-
# recovery_window: 1,
|
|
1330
|
-
# source_priority: {
|
|
1331
|
-
# primary_source: "__string",
|
|
1332
|
-
# },
|
|
1333
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
1334
|
-
# }
|
|
1335
|
-
#
|
|
1336
1613
|
# @!attribute [rw] failover_mode
|
|
1337
1614
|
# The type of failover you choose for this flow. MERGE combines the
|
|
1338
1615
|
# source streams into a single stream, allowing graceful recovery from
|
|
@@ -1386,8 +1663,7 @@ module Aws::MediaConnect
|
|
|
1386
1663
|
# @return [Array<Types::Entitlement>]
|
|
1387
1664
|
#
|
|
1388
1665
|
# @!attribute [rw] flow_arn
|
|
1389
|
-
# The Amazon Resource Name (ARN)
|
|
1390
|
-
# resource, of the flow.
|
|
1666
|
+
# The Amazon Resource Name (ARN) of the flow.
|
|
1391
1667
|
# @return [String]
|
|
1392
1668
|
#
|
|
1393
1669
|
# @!attribute [rw] media_streams
|
|
@@ -1496,106 +1772,208 @@ module Aws::MediaConnect
|
|
|
1496
1772
|
include Aws::Structure
|
|
1497
1773
|
end
|
|
1498
1774
|
|
|
1499
|
-
# The settings that you want to use to define the media stream.
|
|
1775
|
+
# The settings that you want to use to define the media stream.
|
|
1776
|
+
#
|
|
1777
|
+
# @!attribute [rw] channel_order
|
|
1778
|
+
# The format of the audio channel.
|
|
1779
|
+
# @return [String]
|
|
1780
|
+
#
|
|
1781
|
+
# @!attribute [rw] colorimetry
|
|
1782
|
+
# The format that is used for the representation of color.
|
|
1783
|
+
# @return [String]
|
|
1784
|
+
#
|
|
1785
|
+
# @!attribute [rw] exact_framerate
|
|
1786
|
+
# The frame rate for the video stream, in frames/second. For example:
|
|
1787
|
+
# 60000/1001. If you specify a whole number, MediaConnect uses a ratio
|
|
1788
|
+
# of N/1. For example, if you specify 60, MediaConnect uses 60/1 as
|
|
1789
|
+
# the exactFramerate.
|
|
1790
|
+
# @return [String]
|
|
1791
|
+
#
|
|
1792
|
+
# @!attribute [rw] par
|
|
1793
|
+
# The pixel aspect ratio (PAR) of the video.
|
|
1794
|
+
# @return [String]
|
|
1795
|
+
#
|
|
1796
|
+
# @!attribute [rw] range
|
|
1797
|
+
# The encoding range of the video.
|
|
1798
|
+
# @return [String]
|
|
1799
|
+
#
|
|
1800
|
+
# @!attribute [rw] scan_mode
|
|
1801
|
+
# The type of compression that was used to smooth the video’s
|
|
1802
|
+
# appearance.
|
|
1803
|
+
# @return [String]
|
|
1804
|
+
#
|
|
1805
|
+
# @!attribute [rw] tcs
|
|
1806
|
+
# The transfer characteristic system (TCS) that is used in the video.
|
|
1807
|
+
# @return [String]
|
|
1808
|
+
#
|
|
1809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/FmtpRequest AWS API Documentation
|
|
1810
|
+
#
|
|
1811
|
+
class FmtpRequest < Struct.new(
|
|
1812
|
+
:channel_order,
|
|
1813
|
+
:colorimetry,
|
|
1814
|
+
:exact_framerate,
|
|
1815
|
+
:par,
|
|
1816
|
+
:range,
|
|
1817
|
+
:scan_mode,
|
|
1818
|
+
:tcs)
|
|
1819
|
+
SENSITIVE = []
|
|
1820
|
+
include Aws::Structure
|
|
1821
|
+
end
|
|
1822
|
+
|
|
1823
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
|
1824
|
+
# and documentation for the operation for more information on the cause
|
|
1825
|
+
# of this exception.
|
|
1826
|
+
#
|
|
1827
|
+
# @!attribute [rw] message
|
|
1828
|
+
# @return [String]
|
|
1829
|
+
#
|
|
1830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ForbiddenException AWS API Documentation
|
|
1831
|
+
#
|
|
1832
|
+
class ForbiddenException < Struct.new(
|
|
1833
|
+
:message)
|
|
1834
|
+
SENSITIVE = []
|
|
1835
|
+
include Aws::Structure
|
|
1836
|
+
end
|
|
1837
|
+
|
|
1838
|
+
# The settings for a gateway, including its networks.
|
|
1839
|
+
#
|
|
1840
|
+
# @!attribute [rw] egress_cidr_blocks
|
|
1841
|
+
# The range of IP addresses that contribute content or initiate output
|
|
1842
|
+
# requests for flows communicating with this gateway. These IP
|
|
1843
|
+
# addresses should be in the form of a Classless Inter-Domain Routing
|
|
1844
|
+
# (CIDR) block; for example, 10.0.0.0/16.
|
|
1845
|
+
# @return [Array<String>]
|
|
1846
|
+
#
|
|
1847
|
+
# @!attribute [rw] gateway_arn
|
|
1848
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
|
1849
|
+
# @return [String]
|
|
1850
|
+
#
|
|
1851
|
+
# @!attribute [rw] gateway_messages
|
|
1852
|
+
# @return [Array<Types::MessageDetail>]
|
|
1853
|
+
#
|
|
1854
|
+
# @!attribute [rw] gateway_state
|
|
1855
|
+
# The current status of the gateway.
|
|
1856
|
+
# @return [String]
|
|
1857
|
+
#
|
|
1858
|
+
# @!attribute [rw] name
|
|
1859
|
+
# The name of the gateway. This name can not be modified after the
|
|
1860
|
+
# gateway is created.
|
|
1861
|
+
# @return [String]
|
|
1862
|
+
#
|
|
1863
|
+
# @!attribute [rw] networks
|
|
1864
|
+
# The list of networks in the gateway.
|
|
1865
|
+
# @return [Array<Types::GatewayNetwork>]
|
|
1866
|
+
#
|
|
1867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Gateway AWS API Documentation
|
|
1868
|
+
#
|
|
1869
|
+
class Gateway < Struct.new(
|
|
1870
|
+
:egress_cidr_blocks,
|
|
1871
|
+
:gateway_arn,
|
|
1872
|
+
:gateway_messages,
|
|
1873
|
+
:gateway_state,
|
|
1874
|
+
:name,
|
|
1875
|
+
:networks)
|
|
1876
|
+
SENSITIVE = []
|
|
1877
|
+
include Aws::Structure
|
|
1878
|
+
end
|
|
1879
|
+
|
|
1880
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
1881
|
+
# bridge.
|
|
1500
1882
|
#
|
|
1501
|
-
#
|
|
1502
|
-
#
|
|
1883
|
+
# @!attribute [rw] bridge_arn
|
|
1884
|
+
# The ARN of the bridge feeding this flow.
|
|
1885
|
+
# @return [String]
|
|
1503
1886
|
#
|
|
1504
|
-
#
|
|
1505
|
-
#
|
|
1506
|
-
#
|
|
1507
|
-
#
|
|
1508
|
-
# par: "__string",
|
|
1509
|
-
# range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
|
|
1510
|
-
# scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
|
|
1511
|
-
# tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
|
|
1512
|
-
# }
|
|
1887
|
+
# @!attribute [rw] vpc_interface_attachment
|
|
1888
|
+
# The name of the VPC interface attachment to use for this bridge
|
|
1889
|
+
# source.
|
|
1890
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
1513
1891
|
#
|
|
1514
|
-
#
|
|
1515
|
-
# The format of the audio channel.
|
|
1516
|
-
# @return [String]
|
|
1892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayBridgeSource AWS API Documentation
|
|
1517
1893
|
#
|
|
1518
|
-
|
|
1519
|
-
|
|
1894
|
+
class GatewayBridgeSource < Struct.new(
|
|
1895
|
+
:bridge_arn,
|
|
1896
|
+
:vpc_interface_attachment)
|
|
1897
|
+
SENSITIVE = []
|
|
1898
|
+
include Aws::Structure
|
|
1899
|
+
end
|
|
1900
|
+
|
|
1901
|
+
# The settings for an instance in a gateway.
|
|
1902
|
+
#
|
|
1903
|
+
# @!attribute [rw] bridge_placement
|
|
1904
|
+
# The availability of the instance to host new bridges. The
|
|
1905
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
|
1906
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
|
1907
|
+
# AVAILABLE, new bridges can be added to this instance.
|
|
1520
1908
|
# @return [String]
|
|
1521
1909
|
#
|
|
1522
|
-
# @!attribute [rw]
|
|
1523
|
-
# The
|
|
1524
|
-
# 60000/1001. If you specify a whole number, MediaConnect uses a ratio
|
|
1525
|
-
# of N/1. For example, if you specify 60, MediaConnect uses 60/1 as
|
|
1526
|
-
# the exactFramerate.
|
|
1910
|
+
# @!attribute [rw] connection_status
|
|
1911
|
+
# The connection state of the instance.
|
|
1527
1912
|
# @return [String]
|
|
1528
1913
|
#
|
|
1529
|
-
# @!attribute [rw]
|
|
1530
|
-
# The
|
|
1914
|
+
# @!attribute [rw] gateway_arn
|
|
1915
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
1531
1916
|
# @return [String]
|
|
1532
1917
|
#
|
|
1533
|
-
# @!attribute [rw]
|
|
1534
|
-
# The
|
|
1918
|
+
# @!attribute [rw] gateway_instance_arn
|
|
1919
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
|
1535
1920
|
# @return [String]
|
|
1536
1921
|
#
|
|
1537
|
-
# @!attribute [rw]
|
|
1538
|
-
# The
|
|
1539
|
-
#
|
|
1922
|
+
# @!attribute [rw] instance_id
|
|
1923
|
+
# The managed instance ID generated by the SSM install. This will
|
|
1924
|
+
# begin with "mi-".
|
|
1540
1925
|
# @return [String]
|
|
1541
1926
|
#
|
|
1542
|
-
# @!attribute [rw]
|
|
1543
|
-
#
|
|
1927
|
+
# @!attribute [rw] instance_messages
|
|
1928
|
+
# @return [Array<Types::MessageDetail>]
|
|
1929
|
+
#
|
|
1930
|
+
# @!attribute [rw] instance_state
|
|
1931
|
+
# The status of the instance.
|
|
1544
1932
|
# @return [String]
|
|
1545
1933
|
#
|
|
1546
|
-
#
|
|
1934
|
+
# @!attribute [rw] running_bridge_count
|
|
1935
|
+
# The running bridge count.
|
|
1936
|
+
# @return [Integer]
|
|
1547
1937
|
#
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
:
|
|
1552
|
-
:
|
|
1553
|
-
:
|
|
1554
|
-
:
|
|
1555
|
-
:
|
|
1938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayInstance AWS API Documentation
|
|
1939
|
+
#
|
|
1940
|
+
class GatewayInstance < Struct.new(
|
|
1941
|
+
:bridge_placement,
|
|
1942
|
+
:connection_status,
|
|
1943
|
+
:gateway_arn,
|
|
1944
|
+
:gateway_instance_arn,
|
|
1945
|
+
:instance_id,
|
|
1946
|
+
:instance_messages,
|
|
1947
|
+
:instance_state,
|
|
1948
|
+
:running_bridge_count)
|
|
1556
1949
|
SENSITIVE = []
|
|
1557
1950
|
include Aws::Structure
|
|
1558
1951
|
end
|
|
1559
1952
|
|
|
1560
|
-
#
|
|
1561
|
-
# and documentation for the operation for more information on the cause
|
|
1562
|
-
# of this exception.
|
|
1953
|
+
# The network settings for a gateway.
|
|
1563
1954
|
#
|
|
1564
|
-
# @!attribute [rw]
|
|
1955
|
+
# @!attribute [rw] cidr_block
|
|
1956
|
+
# A unique IP address range to use for this network. These IP
|
|
1957
|
+
# addresses should be in the form of a Classless Inter-Domain Routing
|
|
1958
|
+
# (CIDR) block; for example, 10.0.0.0/16.
|
|
1565
1959
|
# @return [String]
|
|
1566
1960
|
#
|
|
1567
|
-
#
|
|
1961
|
+
# @!attribute [rw] name
|
|
1962
|
+
# The name of the network. This name is used to reference the network
|
|
1963
|
+
# and must be unique among networks in this gateway.
|
|
1964
|
+
# @return [String]
|
|
1568
1965
|
#
|
|
1569
|
-
|
|
1570
|
-
|
|
1966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayNetwork AWS API Documentation
|
|
1967
|
+
#
|
|
1968
|
+
class GatewayNetwork < Struct.new(
|
|
1969
|
+
:cidr_block,
|
|
1970
|
+
:name)
|
|
1571
1971
|
SENSITIVE = []
|
|
1572
1972
|
include Aws::Structure
|
|
1573
1973
|
end
|
|
1574
1974
|
|
|
1575
1975
|
# The entitlements that you want to grant on a flow.
|
|
1576
1976
|
#
|
|
1577
|
-
# @note When making an API call, you may pass GrantEntitlementRequest
|
|
1578
|
-
# data as a hash:
|
|
1579
|
-
#
|
|
1580
|
-
# {
|
|
1581
|
-
# data_transfer_subscriber_fee_percent: 1,
|
|
1582
|
-
# description: "__string",
|
|
1583
|
-
# encryption: {
|
|
1584
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
1585
|
-
# constant_initialization_vector: "__string",
|
|
1586
|
-
# device_id: "__string",
|
|
1587
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
1588
|
-
# region: "__string",
|
|
1589
|
-
# resource_id: "__string",
|
|
1590
|
-
# role_arn: "__string", # required
|
|
1591
|
-
# secret_arn: "__string",
|
|
1592
|
-
# url: "__string",
|
|
1593
|
-
# },
|
|
1594
|
-
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
1595
|
-
# name: "__string",
|
|
1596
|
-
# subscribers: ["__string"], # required
|
|
1597
|
-
# }
|
|
1598
|
-
#
|
|
1599
1977
|
# @!attribute [rw] data_transfer_subscriber_fee_percent
|
|
1600
1978
|
# Percentage from 0-100 of the data transfer cost to be billed to the
|
|
1601
1979
|
# subscriber.
|
|
@@ -1661,33 +2039,6 @@ module Aws::MediaConnect
|
|
|
1661
2039
|
|
|
1662
2040
|
# Grants an entitlement on a flow.
|
|
1663
2041
|
#
|
|
1664
|
-
# @note When making an API call, you may pass GrantFlowEntitlementsRequest
|
|
1665
|
-
# data as a hash:
|
|
1666
|
-
#
|
|
1667
|
-
# {
|
|
1668
|
-
# entitlements: [ # required
|
|
1669
|
-
# {
|
|
1670
|
-
# data_transfer_subscriber_fee_percent: 1,
|
|
1671
|
-
# description: "__string",
|
|
1672
|
-
# encryption: {
|
|
1673
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
1674
|
-
# constant_initialization_vector: "__string",
|
|
1675
|
-
# device_id: "__string",
|
|
1676
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
1677
|
-
# region: "__string",
|
|
1678
|
-
# resource_id: "__string",
|
|
1679
|
-
# role_arn: "__string", # required
|
|
1680
|
-
# secret_arn: "__string",
|
|
1681
|
-
# url: "__string",
|
|
1682
|
-
# },
|
|
1683
|
-
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
1684
|
-
# name: "__string",
|
|
1685
|
-
# subscribers: ["__string"], # required
|
|
1686
|
-
# },
|
|
1687
|
-
# ],
|
|
1688
|
-
# flow_arn: "__string", # required
|
|
1689
|
-
# }
|
|
1690
|
-
#
|
|
1691
2042
|
# @!attribute [rw] entitlements
|
|
1692
2043
|
# The list of entitlements that you want to grant.
|
|
1693
2044
|
# @return [Array<Types::GrantEntitlementRequest>]
|
|
@@ -1704,7 +2055,7 @@ module Aws::MediaConnect
|
|
|
1704
2055
|
include Aws::Structure
|
|
1705
2056
|
end
|
|
1706
2057
|
|
|
1707
|
-
# The
|
|
2058
|
+
# The result of a successful GrantFlowEntitlements request.
|
|
1708
2059
|
#
|
|
1709
2060
|
# @!attribute [rw] entitlements
|
|
1710
2061
|
# The entitlements that were just granted.
|
|
@@ -1723,6 +2074,28 @@ module Aws::MediaConnect
|
|
|
1723
2074
|
include Aws::Structure
|
|
1724
2075
|
end
|
|
1725
2076
|
|
|
2077
|
+
# @!attribute [rw] instance_id
|
|
2078
|
+
# The ID of the instance running this bridge.
|
|
2079
|
+
# @return [String]
|
|
2080
|
+
#
|
|
2081
|
+
# @!attribute [rw] max_bitrate
|
|
2082
|
+
# The maximum expected bitrate (in bps) of the ingress bridge.
|
|
2083
|
+
# @return [Integer]
|
|
2084
|
+
#
|
|
2085
|
+
# @!attribute [rw] max_outputs
|
|
2086
|
+
# The maximum number of outputs on the ingress bridge.
|
|
2087
|
+
# @return [Integer]
|
|
2088
|
+
#
|
|
2089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/IngressGatewayBridge AWS API Documentation
|
|
2090
|
+
#
|
|
2091
|
+
class IngressGatewayBridge < Struct.new(
|
|
2092
|
+
:instance_id,
|
|
2093
|
+
:max_bitrate,
|
|
2094
|
+
:max_outputs)
|
|
2095
|
+
SENSITIVE = []
|
|
2096
|
+
include Aws::Structure
|
|
2097
|
+
end
|
|
2098
|
+
|
|
1726
2099
|
# The transport parameters that are associated with an incoming media
|
|
1727
2100
|
# stream.
|
|
1728
2101
|
#
|
|
@@ -1752,16 +2125,6 @@ module Aws::MediaConnect
|
|
|
1752
2125
|
# The transport parameters that you want to associate with an incoming
|
|
1753
2126
|
# media stream.
|
|
1754
2127
|
#
|
|
1755
|
-
# @note When making an API call, you may pass InputConfigurationRequest
|
|
1756
|
-
# data as a hash:
|
|
1757
|
-
#
|
|
1758
|
-
# {
|
|
1759
|
-
# input_port: 1, # required
|
|
1760
|
-
# interface: { # required
|
|
1761
|
-
# name: "__string", # required
|
|
1762
|
-
# },
|
|
1763
|
-
# }
|
|
1764
|
-
#
|
|
1765
2128
|
# @!attribute [rw] input_port
|
|
1766
2129
|
# The port that you want the flow to listen on for an incoming media
|
|
1767
2130
|
# stream.
|
|
@@ -1799,13 +2162,6 @@ module Aws::MediaConnect
|
|
|
1799
2162
|
# The VPC interface that you want to designate where the media stream is
|
|
1800
2163
|
# coming from or going to.
|
|
1801
2164
|
#
|
|
1802
|
-
# @note When making an API call, you may pass InterfaceRequest
|
|
1803
|
-
# data as a hash:
|
|
1804
|
-
#
|
|
1805
|
-
# {
|
|
1806
|
-
# name: "__string", # required
|
|
1807
|
-
# }
|
|
1808
|
-
#
|
|
1809
2165
|
# @!attribute [rw] name
|
|
1810
2166
|
# The name of the VPC interface.
|
|
1811
2167
|
# @return [String]
|
|
@@ -1833,14 +2189,51 @@ module Aws::MediaConnect
|
|
|
1833
2189
|
include Aws::Structure
|
|
1834
2190
|
end
|
|
1835
2191
|
|
|
1836
|
-
#
|
|
1837
|
-
#
|
|
2192
|
+
# @!attribute [rw] filter_arn
|
|
2193
|
+
# @return [String]
|
|
2194
|
+
#
|
|
2195
|
+
# @!attribute [rw] max_results
|
|
2196
|
+
# @return [Integer]
|
|
2197
|
+
#
|
|
2198
|
+
# @!attribute [rw] next_token
|
|
2199
|
+
# @return [String]
|
|
2200
|
+
#
|
|
2201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesRequest AWS API Documentation
|
|
2202
|
+
#
|
|
2203
|
+
class ListBridgesRequest < Struct.new(
|
|
2204
|
+
:filter_arn,
|
|
2205
|
+
:max_results,
|
|
2206
|
+
:next_token)
|
|
2207
|
+
SENSITIVE = []
|
|
2208
|
+
include Aws::Structure
|
|
2209
|
+
end
|
|
2210
|
+
|
|
2211
|
+
# The result of a successful ListBridges request. The response includes
|
|
2212
|
+
# bridge summaries and the NextToken to use in a subsequent ListBridges
|
|
2213
|
+
# request.
|
|
2214
|
+
#
|
|
2215
|
+
# @!attribute [rw] bridges
|
|
2216
|
+
# A list of bridge summaries.
|
|
2217
|
+
# @return [Array<Types::ListedBridge>]
|
|
2218
|
+
#
|
|
2219
|
+
# @!attribute [rw] next_token
|
|
2220
|
+
# The token that identifies which batch of results that you want to
|
|
2221
|
+
# see. For example, you submit a ListBridges request with MaxResults
|
|
2222
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
|
2223
|
+
# and a NextToken value. To see the next batch of results, you can
|
|
2224
|
+
# submit the ListBridges request a second time and specify the
|
|
2225
|
+
# NextToken value.
|
|
2226
|
+
# @return [String]
|
|
1838
2227
|
#
|
|
1839
|
-
#
|
|
1840
|
-
# max_results: 1,
|
|
1841
|
-
# next_token: "__string",
|
|
1842
|
-
# }
|
|
2228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesResponse AWS API Documentation
|
|
1843
2229
|
#
|
|
2230
|
+
class ListBridgesResponse < Struct.new(
|
|
2231
|
+
:bridges,
|
|
2232
|
+
:next_token)
|
|
2233
|
+
SENSITIVE = []
|
|
2234
|
+
include Aws::Structure
|
|
2235
|
+
end
|
|
2236
|
+
|
|
1844
2237
|
# @!attribute [rw] max_results
|
|
1845
2238
|
# @return [Integer]
|
|
1846
2239
|
#
|
|
@@ -1883,14 +2276,6 @@ module Aws::MediaConnect
|
|
|
1883
2276
|
include Aws::Structure
|
|
1884
2277
|
end
|
|
1885
2278
|
|
|
1886
|
-
# @note When making an API call, you may pass ListFlowsRequest
|
|
1887
|
-
# data as a hash:
|
|
1888
|
-
#
|
|
1889
|
-
# {
|
|
1890
|
-
# max_results: 1,
|
|
1891
|
-
# next_token: "__string",
|
|
1892
|
-
# }
|
|
1893
|
-
#
|
|
1894
2279
|
# @!attribute [rw] max_results
|
|
1895
2280
|
# @return [Integer]
|
|
1896
2281
|
#
|
|
@@ -1931,14 +2316,92 @@ module Aws::MediaConnect
|
|
|
1931
2316
|
include Aws::Structure
|
|
1932
2317
|
end
|
|
1933
2318
|
|
|
1934
|
-
#
|
|
1935
|
-
#
|
|
2319
|
+
# @!attribute [rw] filter_arn
|
|
2320
|
+
# @return [String]
|
|
2321
|
+
#
|
|
2322
|
+
# @!attribute [rw] max_results
|
|
2323
|
+
# @return [Integer]
|
|
2324
|
+
#
|
|
2325
|
+
# @!attribute [rw] next_token
|
|
2326
|
+
# @return [String]
|
|
2327
|
+
#
|
|
2328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesRequest AWS API Documentation
|
|
2329
|
+
#
|
|
2330
|
+
class ListGatewayInstancesRequest < Struct.new(
|
|
2331
|
+
:filter_arn,
|
|
2332
|
+
:max_results,
|
|
2333
|
+
:next_token)
|
|
2334
|
+
SENSITIVE = []
|
|
2335
|
+
include Aws::Structure
|
|
2336
|
+
end
|
|
2337
|
+
|
|
2338
|
+
# The result of a successful ListGatewayInstances request. The response
|
|
2339
|
+
# includes instance summaries and the NextToken to use in a subsequent
|
|
2340
|
+
# ListInstances request.
|
|
2341
|
+
#
|
|
2342
|
+
# @!attribute [rw] instances
|
|
2343
|
+
# A list of instance summaries.
|
|
2344
|
+
# @return [Array<Types::ListedGatewayInstance>]
|
|
2345
|
+
#
|
|
2346
|
+
# @!attribute [rw] next_token
|
|
2347
|
+
# The token that identifies which batch of results that you want to
|
|
2348
|
+
# see. For example, you submit a ListInstances request with MaxResults
|
|
2349
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
|
2350
|
+
# and a NextToken value. To see the next batch of results, you can
|
|
2351
|
+
# submit the ListInstances request a second time and specify the
|
|
2352
|
+
# NextToken value.
|
|
2353
|
+
# @return [String]
|
|
2354
|
+
#
|
|
2355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesResponse AWS API Documentation
|
|
2356
|
+
#
|
|
2357
|
+
class ListGatewayInstancesResponse < Struct.new(
|
|
2358
|
+
:instances,
|
|
2359
|
+
:next_token)
|
|
2360
|
+
SENSITIVE = []
|
|
2361
|
+
include Aws::Structure
|
|
2362
|
+
end
|
|
2363
|
+
|
|
2364
|
+
# @!attribute [rw] max_results
|
|
2365
|
+
# @return [Integer]
|
|
2366
|
+
#
|
|
2367
|
+
# @!attribute [rw] next_token
|
|
2368
|
+
# @return [String]
|
|
2369
|
+
#
|
|
2370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysRequest AWS API Documentation
|
|
2371
|
+
#
|
|
2372
|
+
class ListGatewaysRequest < Struct.new(
|
|
2373
|
+
:max_results,
|
|
2374
|
+
:next_token)
|
|
2375
|
+
SENSITIVE = []
|
|
2376
|
+
include Aws::Structure
|
|
2377
|
+
end
|
|
2378
|
+
|
|
2379
|
+
# The result of a successful ListGateways request. The response includes
|
|
2380
|
+
# gateway summaries and the NextToken to use in a subsequent
|
|
2381
|
+
# ListGateways request.
|
|
2382
|
+
#
|
|
2383
|
+
# @!attribute [rw] gateways
|
|
2384
|
+
# A list of gateway summaries.
|
|
2385
|
+
# @return [Array<Types::ListedGateway>]
|
|
2386
|
+
#
|
|
2387
|
+
# @!attribute [rw] next_token
|
|
2388
|
+
# The token that identifies which batch of results that you want to
|
|
2389
|
+
# see. For example, you submit a ListGateways request with MaxResults
|
|
2390
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
|
2391
|
+
# and a NextToken value. To see the next batch of results, you can
|
|
2392
|
+
# submit the ListGateways request a second time and specify the
|
|
2393
|
+
# NextToken value.
|
|
2394
|
+
# @return [String]
|
|
1936
2395
|
#
|
|
1937
|
-
#
|
|
1938
|
-
# max_results: 1,
|
|
1939
|
-
# next_token: "__string",
|
|
1940
|
-
# }
|
|
2396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysResponse AWS API Documentation
|
|
1941
2397
|
#
|
|
2398
|
+
class ListGatewaysResponse < Struct.new(
|
|
2399
|
+
:gateways,
|
|
2400
|
+
:next_token)
|
|
2401
|
+
SENSITIVE = []
|
|
2402
|
+
include Aws::Structure
|
|
2403
|
+
end
|
|
2404
|
+
|
|
1942
2405
|
# @!attribute [rw] max_results
|
|
1943
2406
|
# @return [Integer]
|
|
1944
2407
|
#
|
|
@@ -1984,14 +2447,6 @@ module Aws::MediaConnect
|
|
|
1984
2447
|
include Aws::Structure
|
|
1985
2448
|
end
|
|
1986
2449
|
|
|
1987
|
-
# @note When making an API call, you may pass ListReservationsRequest
|
|
1988
|
-
# data as a hash:
|
|
1989
|
-
#
|
|
1990
|
-
# {
|
|
1991
|
-
# max_results: 1,
|
|
1992
|
-
# next_token: "__string",
|
|
1993
|
-
# }
|
|
1994
|
-
#
|
|
1995
2450
|
# @!attribute [rw] max_results
|
|
1996
2451
|
# @return [Integer]
|
|
1997
2452
|
#
|
|
@@ -2037,13 +2492,6 @@ module Aws::MediaConnect
|
|
|
2037
2492
|
include Aws::Structure
|
|
2038
2493
|
end
|
|
2039
2494
|
|
|
2040
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
|
2041
|
-
# data as a hash:
|
|
2042
|
-
#
|
|
2043
|
-
# {
|
|
2044
|
-
# resource_arn: "__string", # required
|
|
2045
|
-
# }
|
|
2046
|
-
#
|
|
2047
2495
|
# @!attribute [rw] resource_arn
|
|
2048
2496
|
# @return [String]
|
|
2049
2497
|
#
|
|
@@ -2071,6 +2519,39 @@ module Aws::MediaConnect
|
|
|
2071
2519
|
include Aws::Structure
|
|
2072
2520
|
end
|
|
2073
2521
|
|
|
2522
|
+
# Displays details of the selected bridge.
|
|
2523
|
+
#
|
|
2524
|
+
# @!attribute [rw] bridge_arn
|
|
2525
|
+
# The ARN of the bridge.
|
|
2526
|
+
# @return [String]
|
|
2527
|
+
#
|
|
2528
|
+
# @!attribute [rw] bridge_state
|
|
2529
|
+
# @return [String]
|
|
2530
|
+
#
|
|
2531
|
+
# @!attribute [rw] bridge_type
|
|
2532
|
+
# The type of the bridge.
|
|
2533
|
+
# @return [String]
|
|
2534
|
+
#
|
|
2535
|
+
# @!attribute [rw] name
|
|
2536
|
+
# The name of the bridge.
|
|
2537
|
+
# @return [String]
|
|
2538
|
+
#
|
|
2539
|
+
# @!attribute [rw] placement_arn
|
|
2540
|
+
# The ARN of the gateway associated with the bridge.
|
|
2541
|
+
# @return [String]
|
|
2542
|
+
#
|
|
2543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedBridge AWS API Documentation
|
|
2544
|
+
#
|
|
2545
|
+
class ListedBridge < Struct.new(
|
|
2546
|
+
:bridge_arn,
|
|
2547
|
+
:bridge_state,
|
|
2548
|
+
:bridge_type,
|
|
2549
|
+
:name,
|
|
2550
|
+
:placement_arn)
|
|
2551
|
+
SENSITIVE = []
|
|
2552
|
+
include Aws::Structure
|
|
2553
|
+
end
|
|
2554
|
+
|
|
2074
2555
|
# An entitlement that has been granted to you from other AWS accounts.
|
|
2075
2556
|
#
|
|
2076
2557
|
# @!attribute [rw] data_transfer_subscriber_fee_percent
|
|
@@ -2144,6 +2625,59 @@ module Aws::MediaConnect
|
|
|
2144
2625
|
include Aws::Structure
|
|
2145
2626
|
end
|
|
2146
2627
|
|
|
2628
|
+
# Provides a summary of a gateway, including its name, ARN, and status.
|
|
2629
|
+
#
|
|
2630
|
+
# @!attribute [rw] gateway_arn
|
|
2631
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
|
2632
|
+
# @return [String]
|
|
2633
|
+
#
|
|
2634
|
+
# @!attribute [rw] gateway_state
|
|
2635
|
+
# @return [String]
|
|
2636
|
+
#
|
|
2637
|
+
# @!attribute [rw] name
|
|
2638
|
+
# The name of the gateway.
|
|
2639
|
+
# @return [String]
|
|
2640
|
+
#
|
|
2641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedGateway AWS API Documentation
|
|
2642
|
+
#
|
|
2643
|
+
class ListedGateway < Struct.new(
|
|
2644
|
+
:gateway_arn,
|
|
2645
|
+
:gateway_state,
|
|
2646
|
+
:name)
|
|
2647
|
+
SENSITIVE = []
|
|
2648
|
+
include Aws::Structure
|
|
2649
|
+
end
|
|
2650
|
+
|
|
2651
|
+
# Provides a summary of an instance.
|
|
2652
|
+
#
|
|
2653
|
+
# @!attribute [rw] gateway_arn
|
|
2654
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
|
2655
|
+
# @return [String]
|
|
2656
|
+
#
|
|
2657
|
+
# @!attribute [rw] gateway_instance_arn
|
|
2658
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
2659
|
+
# @return [String]
|
|
2660
|
+
#
|
|
2661
|
+
# @!attribute [rw] instance_id
|
|
2662
|
+
# The managed instance ID generated by the SSM install. This will
|
|
2663
|
+
# begin with "mi-".
|
|
2664
|
+
# @return [String]
|
|
2665
|
+
#
|
|
2666
|
+
# @!attribute [rw] instance_state
|
|
2667
|
+
# The status of the instance.
|
|
2668
|
+
# @return [String]
|
|
2669
|
+
#
|
|
2670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedGatewayInstance AWS API Documentation
|
|
2671
|
+
#
|
|
2672
|
+
class ListedGatewayInstance < Struct.new(
|
|
2673
|
+
:gateway_arn,
|
|
2674
|
+
:gateway_instance_arn,
|
|
2675
|
+
:instance_id,
|
|
2676
|
+
:instance_state)
|
|
2677
|
+
SENSITIVE = []
|
|
2678
|
+
include Aws::Structure
|
|
2679
|
+
end
|
|
2680
|
+
|
|
2147
2681
|
# The maintenance setting of a flow
|
|
2148
2682
|
#
|
|
2149
2683
|
# @!attribute [rw] maintenance_day
|
|
@@ -2255,22 +2789,6 @@ module Aws::MediaConnect
|
|
|
2255
2789
|
|
|
2256
2790
|
# Attributes that are related to the media stream.
|
|
2257
2791
|
#
|
|
2258
|
-
# @note When making an API call, you may pass MediaStreamAttributesRequest
|
|
2259
|
-
# data as a hash:
|
|
2260
|
-
#
|
|
2261
|
-
# {
|
|
2262
|
-
# fmtp: {
|
|
2263
|
-
# channel_order: "__string",
|
|
2264
|
-
# colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
|
|
2265
|
-
# exact_framerate: "__string",
|
|
2266
|
-
# par: "__string",
|
|
2267
|
-
# range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
|
|
2268
|
-
# scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
|
|
2269
|
-
# tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
|
|
2270
|
-
# },
|
|
2271
|
-
# lang: "__string",
|
|
2272
|
-
# }
|
|
2273
|
-
#
|
|
2274
2792
|
# @!attribute [rw] fmtp
|
|
2275
2793
|
# The settings that you want to use to define the media stream.
|
|
2276
2794
|
# @return [Types::FmtpRequest]
|
|
@@ -2326,27 +2844,6 @@ module Aws::MediaConnect
|
|
|
2326
2844
|
# The media stream that you want to associate with the output, and the
|
|
2327
2845
|
# parameters for that association.
|
|
2328
2846
|
#
|
|
2329
|
-
# @note When making an API call, you may pass MediaStreamOutputConfigurationRequest
|
|
2330
|
-
# data as a hash:
|
|
2331
|
-
#
|
|
2332
|
-
# {
|
|
2333
|
-
# destination_configurations: [
|
|
2334
|
-
# {
|
|
2335
|
-
# destination_ip: "__string", # required
|
|
2336
|
-
# destination_port: 1, # required
|
|
2337
|
-
# interface: { # required
|
|
2338
|
-
# name: "__string", # required
|
|
2339
|
-
# },
|
|
2340
|
-
# },
|
|
2341
|
-
# ],
|
|
2342
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
2343
|
-
# encoding_parameters: {
|
|
2344
|
-
# compression_factor: 1.0, # required
|
|
2345
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
2346
|
-
# },
|
|
2347
|
-
# media_stream_name: "__string", # required
|
|
2348
|
-
# }
|
|
2349
|
-
#
|
|
2350
2847
|
# @!attribute [rw] destination_configurations
|
|
2351
2848
|
# The transport parameters that you want to associate with the media
|
|
2352
2849
|
# stream.
|
|
@@ -2414,22 +2911,6 @@ module Aws::MediaConnect
|
|
|
2414
2911
|
# The definition of a media stream that you want to associate with the
|
|
2415
2912
|
# source.
|
|
2416
2913
|
#
|
|
2417
|
-
# @note When making an API call, you may pass MediaStreamSourceConfigurationRequest
|
|
2418
|
-
# data as a hash:
|
|
2419
|
-
#
|
|
2420
|
-
# {
|
|
2421
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
2422
|
-
# input_configurations: [
|
|
2423
|
-
# {
|
|
2424
|
-
# input_port: 1, # required
|
|
2425
|
-
# interface: { # required
|
|
2426
|
-
# name: "__string", # required
|
|
2427
|
-
# },
|
|
2428
|
-
# },
|
|
2429
|
-
# ],
|
|
2430
|
-
# media_stream_name: "__string", # required
|
|
2431
|
-
# }
|
|
2432
|
-
#
|
|
2433
2914
|
# @!attribute [rw] encoding_name
|
|
2434
2915
|
# The format you want to use to encode the data. For ancillary data
|
|
2435
2916
|
# streams, set the encoding name to smpte291. For audio streams, set
|
|
@@ -2457,6 +2938,29 @@ module Aws::MediaConnect
|
|
|
2457
2938
|
include Aws::Structure
|
|
2458
2939
|
end
|
|
2459
2940
|
|
|
2941
|
+
# @!attribute [rw] code
|
|
2942
|
+
# The error code.
|
|
2943
|
+
# @return [String]
|
|
2944
|
+
#
|
|
2945
|
+
# @!attribute [rw] message
|
|
2946
|
+
# The specific error message that MediaConnect returns to help you
|
|
2947
|
+
# understand the reason that the request did not succeed.
|
|
2948
|
+
# @return [String]
|
|
2949
|
+
#
|
|
2950
|
+
# @!attribute [rw] resource_name
|
|
2951
|
+
# The name of the resource.
|
|
2952
|
+
# @return [String]
|
|
2953
|
+
#
|
|
2954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MessageDetail AWS API Documentation
|
|
2955
|
+
#
|
|
2956
|
+
class MessageDetail < Struct.new(
|
|
2957
|
+
:code,
|
|
2958
|
+
:message,
|
|
2959
|
+
:resource_name)
|
|
2960
|
+
SENSITIVE = []
|
|
2961
|
+
include Aws::Structure
|
|
2962
|
+
end
|
|
2963
|
+
|
|
2460
2964
|
# Messages that provide the state of the flow.
|
|
2461
2965
|
#
|
|
2462
2966
|
# @!attribute [rw] errors
|
|
@@ -2609,6 +3113,14 @@ module Aws::MediaConnect
|
|
|
2609
3113
|
# The name of the VPC interface attachment to use for this output.
|
|
2610
3114
|
# @return [Types::VpcInterfaceAttachment]
|
|
2611
3115
|
#
|
|
3116
|
+
# @!attribute [rw] bridge_arn
|
|
3117
|
+
# The ARN of the bridge that added this output.
|
|
3118
|
+
# @return [String]
|
|
3119
|
+
#
|
|
3120
|
+
# @!attribute [rw] bridge_ports
|
|
3121
|
+
# The bridge output ports currently in use.
|
|
3122
|
+
# @return [Array<Integer>]
|
|
3123
|
+
#
|
|
2612
3124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Output AWS API Documentation
|
|
2613
3125
|
#
|
|
2614
3126
|
class Output < Struct.new(
|
|
@@ -2624,7 +3136,9 @@ module Aws::MediaConnect
|
|
|
2624
3136
|
:output_arn,
|
|
2625
3137
|
:port,
|
|
2626
3138
|
:transport,
|
|
2627
|
-
:vpc_interface_attachment
|
|
3139
|
+
:vpc_interface_attachment,
|
|
3140
|
+
:bridge_arn,
|
|
3141
|
+
:bridge_ports)
|
|
2628
3142
|
SENSITIVE = []
|
|
2629
3143
|
include Aws::Structure
|
|
2630
3144
|
end
|
|
@@ -2633,15 +3147,6 @@ module Aws::MediaConnect
|
|
|
2633
3147
|
# in your AWS account. If you already have an active reservation, you
|
|
2634
3148
|
# can't purchase another offering.
|
|
2635
3149
|
#
|
|
2636
|
-
# @note When making an API call, you may pass PurchaseOfferingRequest
|
|
2637
|
-
# data as a hash:
|
|
2638
|
-
#
|
|
2639
|
-
# {
|
|
2640
|
-
# offering_arn: "__string", # required
|
|
2641
|
-
# reservation_name: "__string", # required
|
|
2642
|
-
# start: "__string", # required
|
|
2643
|
-
# }
|
|
2644
|
-
#
|
|
2645
3150
|
# @!attribute [rw] offering_arn
|
|
2646
3151
|
# @return [String]
|
|
2647
3152
|
#
|
|
@@ -2681,22 +3186,78 @@ module Aws::MediaConnect
|
|
|
2681
3186
|
# month, the overage is charged at the on-demand rate.
|
|
2682
3187
|
# @return [Types::Reservation]
|
|
2683
3188
|
#
|
|
2684
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/PurchaseOfferingResponse AWS API Documentation
|
|
3189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/PurchaseOfferingResponse AWS API Documentation
|
|
3190
|
+
#
|
|
3191
|
+
class PurchaseOfferingResponse < Struct.new(
|
|
3192
|
+
:reservation)
|
|
3193
|
+
SENSITIVE = []
|
|
3194
|
+
include Aws::Structure
|
|
3195
|
+
end
|
|
3196
|
+
|
|
3197
|
+
# @!attribute [rw] bridge_arn
|
|
3198
|
+
# @return [String]
|
|
3199
|
+
#
|
|
3200
|
+
# @!attribute [rw] output_name
|
|
3201
|
+
# @return [String]
|
|
3202
|
+
#
|
|
3203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputRequest AWS API Documentation
|
|
3204
|
+
#
|
|
3205
|
+
class RemoveBridgeOutputRequest < Struct.new(
|
|
3206
|
+
:bridge_arn,
|
|
3207
|
+
:output_name)
|
|
3208
|
+
SENSITIVE = []
|
|
3209
|
+
include Aws::Structure
|
|
3210
|
+
end
|
|
3211
|
+
|
|
3212
|
+
# The result of a successful RemoveBridgeOutput request.
|
|
3213
|
+
#
|
|
3214
|
+
# @!attribute [rw] bridge_arn
|
|
3215
|
+
# @return [String]
|
|
3216
|
+
#
|
|
3217
|
+
# @!attribute [rw] output_name
|
|
3218
|
+
# @return [String]
|
|
3219
|
+
#
|
|
3220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputResponse AWS API Documentation
|
|
3221
|
+
#
|
|
3222
|
+
class RemoveBridgeOutputResponse < Struct.new(
|
|
3223
|
+
:bridge_arn,
|
|
3224
|
+
:output_name)
|
|
3225
|
+
SENSITIVE = []
|
|
3226
|
+
include Aws::Structure
|
|
3227
|
+
end
|
|
3228
|
+
|
|
3229
|
+
# @!attribute [rw] bridge_arn
|
|
3230
|
+
# @return [String]
|
|
3231
|
+
#
|
|
3232
|
+
# @!attribute [rw] source_name
|
|
3233
|
+
# @return [String]
|
|
2685
3234
|
#
|
|
2686
|
-
|
|
2687
|
-
|
|
3235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceRequest AWS API Documentation
|
|
3236
|
+
#
|
|
3237
|
+
class RemoveBridgeSourceRequest < Struct.new(
|
|
3238
|
+
:bridge_arn,
|
|
3239
|
+
:source_name)
|
|
2688
3240
|
SENSITIVE = []
|
|
2689
3241
|
include Aws::Structure
|
|
2690
3242
|
end
|
|
2691
3243
|
|
|
2692
|
-
#
|
|
2693
|
-
#
|
|
3244
|
+
# The result of a successful RemoveBridgeSource request.
|
|
3245
|
+
#
|
|
3246
|
+
# @!attribute [rw] bridge_arn
|
|
3247
|
+
# @return [String]
|
|
3248
|
+
#
|
|
3249
|
+
# @!attribute [rw] source_name
|
|
3250
|
+
# @return [String]
|
|
2694
3251
|
#
|
|
2695
|
-
#
|
|
2696
|
-
# flow_arn: "__string", # required
|
|
2697
|
-
# media_stream_name: "__string", # required
|
|
2698
|
-
# }
|
|
3252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceResponse AWS API Documentation
|
|
2699
3253
|
#
|
|
3254
|
+
class RemoveBridgeSourceResponse < Struct.new(
|
|
3255
|
+
:bridge_arn,
|
|
3256
|
+
:source_name)
|
|
3257
|
+
SENSITIVE = []
|
|
3258
|
+
include Aws::Structure
|
|
3259
|
+
end
|
|
3260
|
+
|
|
2700
3261
|
# @!attribute [rw] flow_arn
|
|
2701
3262
|
# @return [String]
|
|
2702
3263
|
#
|
|
@@ -2731,14 +3292,6 @@ module Aws::MediaConnect
|
|
|
2731
3292
|
include Aws::Structure
|
|
2732
3293
|
end
|
|
2733
3294
|
|
|
2734
|
-
# @note When making an API call, you may pass RemoveFlowOutputRequest
|
|
2735
|
-
# data as a hash:
|
|
2736
|
-
#
|
|
2737
|
-
# {
|
|
2738
|
-
# flow_arn: "__string", # required
|
|
2739
|
-
# output_arn: "__string", # required
|
|
2740
|
-
# }
|
|
2741
|
-
#
|
|
2742
3295
|
# @!attribute [rw] flow_arn
|
|
2743
3296
|
# @return [String]
|
|
2744
3297
|
#
|
|
@@ -2774,14 +3327,6 @@ module Aws::MediaConnect
|
|
|
2774
3327
|
include Aws::Structure
|
|
2775
3328
|
end
|
|
2776
3329
|
|
|
2777
|
-
# @note When making an API call, you may pass RemoveFlowSourceRequest
|
|
2778
|
-
# data as a hash:
|
|
2779
|
-
#
|
|
2780
|
-
# {
|
|
2781
|
-
# flow_arn: "__string", # required
|
|
2782
|
-
# source_arn: "__string", # required
|
|
2783
|
-
# }
|
|
2784
|
-
#
|
|
2785
3330
|
# @!attribute [rw] flow_arn
|
|
2786
3331
|
# @return [String]
|
|
2787
3332
|
#
|
|
@@ -2817,14 +3362,6 @@ module Aws::MediaConnect
|
|
|
2817
3362
|
include Aws::Structure
|
|
2818
3363
|
end
|
|
2819
3364
|
|
|
2820
|
-
# @note When making an API call, you may pass RemoveFlowVpcInterfaceRequest
|
|
2821
|
-
# data as a hash:
|
|
2822
|
-
#
|
|
2823
|
-
# {
|
|
2824
|
-
# flow_arn: "__string", # required
|
|
2825
|
-
# vpc_interface_name: "__string", # required
|
|
2826
|
-
# }
|
|
2827
|
-
#
|
|
2828
3365
|
# @!attribute [rw] flow_arn
|
|
2829
3366
|
# @return [String]
|
|
2830
3367
|
#
|
|
@@ -2999,14 +3536,6 @@ module Aws::MediaConnect
|
|
|
2999
3536
|
include Aws::Structure
|
|
3000
3537
|
end
|
|
3001
3538
|
|
|
3002
|
-
# @note When making an API call, you may pass RevokeFlowEntitlementRequest
|
|
3003
|
-
# data as a hash:
|
|
3004
|
-
#
|
|
3005
|
-
# {
|
|
3006
|
-
# entitlement_arn: "__string", # required
|
|
3007
|
-
# flow_arn: "__string", # required
|
|
3008
|
-
# }
|
|
3009
|
-
#
|
|
3010
3539
|
# @!attribute [rw] entitlement_arn
|
|
3011
3540
|
# @return [String]
|
|
3012
3541
|
#
|
|
@@ -3058,54 +3587,28 @@ module Aws::MediaConnect
|
|
|
3058
3587
|
include Aws::Structure
|
|
3059
3588
|
end
|
|
3060
3589
|
|
|
3061
|
-
# The
|
|
3590
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
3591
|
+
# bridge.
|
|
3592
|
+
#
|
|
3593
|
+
# @!attribute [rw] bridge_arn
|
|
3594
|
+
# The ARN of the bridge feeding this flow.
|
|
3595
|
+
# @return [String]
|
|
3596
|
+
#
|
|
3597
|
+
# @!attribute [rw] vpc_interface_attachment
|
|
3598
|
+
# The name of the VPC interface attachment to use for this bridge
|
|
3599
|
+
# source.
|
|
3600
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
3062
3601
|
#
|
|
3063
|
-
# @
|
|
3064
|
-
#
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
#
|
|
3073
|
-
# resource_id: "__string",
|
|
3074
|
-
# role_arn: "__string", # required
|
|
3075
|
-
# secret_arn: "__string",
|
|
3076
|
-
# url: "__string",
|
|
3077
|
-
# },
|
|
3078
|
-
# description: "__string",
|
|
3079
|
-
# entitlement_arn: "__string",
|
|
3080
|
-
# ingest_port: 1,
|
|
3081
|
-
# max_bitrate: 1,
|
|
3082
|
-
# max_latency: 1,
|
|
3083
|
-
# max_sync_buffer: 1,
|
|
3084
|
-
# media_stream_source_configurations: [
|
|
3085
|
-
# {
|
|
3086
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
3087
|
-
# input_configurations: [
|
|
3088
|
-
# {
|
|
3089
|
-
# input_port: 1, # required
|
|
3090
|
-
# interface: { # required
|
|
3091
|
-
# name: "__string", # required
|
|
3092
|
-
# },
|
|
3093
|
-
# },
|
|
3094
|
-
# ],
|
|
3095
|
-
# media_stream_name: "__string", # required
|
|
3096
|
-
# },
|
|
3097
|
-
# ],
|
|
3098
|
-
# min_latency: 1,
|
|
3099
|
-
# name: "__string",
|
|
3100
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
3101
|
-
# sender_control_port: 1,
|
|
3102
|
-
# sender_ip_address: "__string",
|
|
3103
|
-
# source_listener_address: "__string",
|
|
3104
|
-
# source_listener_port: 1,
|
|
3105
|
-
# stream_id: "__string",
|
|
3106
|
-
# vpc_interface_name: "__string",
|
|
3107
|
-
# whitelist_cidr: "__string",
|
|
3108
|
-
# }
|
|
3602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SetGatewayBridgeSourceRequest AWS API Documentation
|
|
3603
|
+
#
|
|
3604
|
+
class SetGatewayBridgeSourceRequest < Struct.new(
|
|
3605
|
+
:bridge_arn,
|
|
3606
|
+
:vpc_interface_attachment)
|
|
3607
|
+
SENSITIVE = []
|
|
3608
|
+
include Aws::Structure
|
|
3609
|
+
end
|
|
3610
|
+
|
|
3611
|
+
# The settings for the source of the flow.
|
|
3109
3612
|
#
|
|
3110
3613
|
# @!attribute [rw] decryption
|
|
3111
3614
|
# The type of encryption that is used on the content ingested from
|
|
@@ -3128,7 +3631,8 @@ module Aws::MediaConnect
|
|
|
3128
3631
|
# @return [Integer]
|
|
3129
3632
|
#
|
|
3130
3633
|
# @!attribute [rw] max_bitrate
|
|
3131
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
|
3634
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
|
3635
|
+
# streams.
|
|
3132
3636
|
# @return [Integer]
|
|
3133
3637
|
#
|
|
3134
3638
|
# @!attribute [rw] max_latency
|
|
@@ -3183,7 +3687,7 @@ module Aws::MediaConnect
|
|
|
3183
3687
|
#
|
|
3184
3688
|
# @!attribute [rw] stream_id
|
|
3185
3689
|
# The stream ID that you want to use for this transport. This
|
|
3186
|
-
# parameter applies only to Zixi-based streams.
|
|
3690
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
|
3187
3691
|
# @return [String]
|
|
3188
3692
|
#
|
|
3189
3693
|
# @!attribute [rw] vpc_interface_name
|
|
@@ -3197,6 +3701,11 @@ module Aws::MediaConnect
|
|
|
3197
3701
|
# 10.0.0.0/16.
|
|
3198
3702
|
# @return [String]
|
|
3199
3703
|
#
|
|
3704
|
+
# @!attribute [rw] gateway_bridge_source
|
|
3705
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
3706
|
+
# bridge.
|
|
3707
|
+
# @return [Types::SetGatewayBridgeSourceRequest]
|
|
3708
|
+
#
|
|
3200
3709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SetSourceRequest AWS API Documentation
|
|
3201
3710
|
#
|
|
3202
3711
|
class SetSourceRequest < Struct.new(
|
|
@@ -3217,7 +3726,8 @@ module Aws::MediaConnect
|
|
|
3217
3726
|
:source_listener_port,
|
|
3218
3727
|
:stream_id,
|
|
3219
3728
|
:vpc_interface_name,
|
|
3220
|
-
:whitelist_cidr
|
|
3729
|
+
:whitelist_cidr,
|
|
3730
|
+
:gateway_bridge_source)
|
|
3221
3731
|
SENSITIVE = []
|
|
3222
3732
|
include Aws::Structure
|
|
3223
3733
|
end
|
|
@@ -3294,6 +3804,11 @@ module Aws::MediaConnect
|
|
|
3294
3804
|
# 10.0.0.0/16.
|
|
3295
3805
|
# @return [String]
|
|
3296
3806
|
#
|
|
3807
|
+
# @!attribute [rw] gateway_bridge_source
|
|
3808
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
3809
|
+
# bridge.
|
|
3810
|
+
# @return [Types::GatewayBridgeSource]
|
|
3811
|
+
#
|
|
3297
3812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Source AWS API Documentation
|
|
3298
3813
|
#
|
|
3299
3814
|
class Source < Struct.new(
|
|
@@ -3310,7 +3825,8 @@ module Aws::MediaConnect
|
|
|
3310
3825
|
:source_arn,
|
|
3311
3826
|
:transport,
|
|
3312
3827
|
:vpc_interface_name,
|
|
3313
|
-
:whitelist_cidr
|
|
3828
|
+
:whitelist_cidr,
|
|
3829
|
+
:gateway_bridge_source)
|
|
3314
3830
|
SENSITIVE = []
|
|
3315
3831
|
include Aws::Structure
|
|
3316
3832
|
end
|
|
@@ -3318,13 +3834,6 @@ module Aws::MediaConnect
|
|
|
3318
3834
|
# The priority you want to assign to a source. You can have a primary
|
|
3319
3835
|
# stream and a backup stream or two equally prioritized streams.
|
|
3320
3836
|
#
|
|
3321
|
-
# @note When making an API call, you may pass SourcePriority
|
|
3322
|
-
# data as a hash:
|
|
3323
|
-
#
|
|
3324
|
-
# {
|
|
3325
|
-
# primary_source: "__string",
|
|
3326
|
-
# }
|
|
3327
|
-
#
|
|
3328
3837
|
# @!attribute [rw] primary_source
|
|
3329
3838
|
# The name of the source you choose as the primary source for this
|
|
3330
3839
|
# flow.
|
|
@@ -3338,13 +3847,6 @@ module Aws::MediaConnect
|
|
|
3338
3847
|
include Aws::Structure
|
|
3339
3848
|
end
|
|
3340
3849
|
|
|
3341
|
-
# @note When making an API call, you may pass StartFlowRequest
|
|
3342
|
-
# data as a hash:
|
|
3343
|
-
#
|
|
3344
|
-
# {
|
|
3345
|
-
# flow_arn: "__string", # required
|
|
3346
|
-
# }
|
|
3347
|
-
#
|
|
3348
3850
|
# @!attribute [rw] flow_arn
|
|
3349
3851
|
# @return [String]
|
|
3350
3852
|
#
|
|
@@ -3375,13 +3877,6 @@ module Aws::MediaConnect
|
|
|
3375
3877
|
include Aws::Structure
|
|
3376
3878
|
end
|
|
3377
3879
|
|
|
3378
|
-
# @note When making an API call, you may pass StopFlowRequest
|
|
3379
|
-
# data as a hash:
|
|
3380
|
-
#
|
|
3381
|
-
# {
|
|
3382
|
-
# flow_arn: "__string", # required
|
|
3383
|
-
# }
|
|
3384
|
-
#
|
|
3385
3880
|
# @!attribute [rw] flow_arn
|
|
3386
3881
|
# @return [String]
|
|
3387
3882
|
#
|
|
@@ -3416,16 +3911,6 @@ module Aws::MediaConnect
|
|
|
3416
3911
|
# length of 128 characters, and tag values can have a maximum length of
|
|
3417
3912
|
# 256 characters.
|
|
3418
3913
|
#
|
|
3419
|
-
# @note When making an API call, you may pass TagResourceRequest
|
|
3420
|
-
# data as a hash:
|
|
3421
|
-
#
|
|
3422
|
-
# {
|
|
3423
|
-
# resource_arn: "__string", # required
|
|
3424
|
-
# tags: { # required
|
|
3425
|
-
# "__string" => "__string",
|
|
3426
|
-
# },
|
|
3427
|
-
# }
|
|
3428
|
-
#
|
|
3429
3914
|
# @!attribute [rw] resource_arn
|
|
3430
3915
|
# @return [String]
|
|
3431
3916
|
#
|
|
@@ -3470,7 +3955,8 @@ module Aws::MediaConnect
|
|
|
3470
3955
|
# @return [Array<String>]
|
|
3471
3956
|
#
|
|
3472
3957
|
# @!attribute [rw] max_bitrate
|
|
3473
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
|
3958
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
|
3959
|
+
# streams.
|
|
3474
3960
|
# @return [Integer]
|
|
3475
3961
|
#
|
|
3476
3962
|
# @!attribute [rw] max_latency
|
|
@@ -3525,7 +4011,7 @@ module Aws::MediaConnect
|
|
|
3525
4011
|
#
|
|
3526
4012
|
# @!attribute [rw] stream_id
|
|
3527
4013
|
# The stream ID that you want to use for this transport. This
|
|
3528
|
-
# parameter applies only to Zixi-based streams.
|
|
4014
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
|
3529
4015
|
# @return [String]
|
|
3530
4016
|
#
|
|
3531
4017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Transport AWS API Documentation
|
|
@@ -3548,14 +4034,6 @@ module Aws::MediaConnect
|
|
|
3548
4034
|
include Aws::Structure
|
|
3549
4035
|
end
|
|
3550
4036
|
|
|
3551
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
|
3552
|
-
# data as a hash:
|
|
3553
|
-
#
|
|
3554
|
-
# {
|
|
3555
|
-
# resource_arn: "__string", # required
|
|
3556
|
-
# tag_keys: ["__string"], # required
|
|
3557
|
-
# }
|
|
3558
|
-
#
|
|
3559
4037
|
# @!attribute [rw] resource_arn
|
|
3560
4038
|
# @return [String]
|
|
3561
4039
|
#
|
|
@@ -3571,22 +4049,266 @@ module Aws::MediaConnect
|
|
|
3571
4049
|
include Aws::Structure
|
|
3572
4050
|
end
|
|
3573
4051
|
|
|
3574
|
-
#
|
|
4052
|
+
# Update the flow source of the bridge.
|
|
4053
|
+
#
|
|
4054
|
+
# @!attribute [rw] flow_arn
|
|
4055
|
+
# The ARN of the cloud flow to use as a source of this bridge.
|
|
4056
|
+
# @return [String]
|
|
4057
|
+
#
|
|
4058
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
|
4059
|
+
# The name of the VPC interface attachment to use for this source.
|
|
4060
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
4061
|
+
#
|
|
4062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeFlowSourceRequest AWS API Documentation
|
|
4063
|
+
#
|
|
4064
|
+
class UpdateBridgeFlowSourceRequest < Struct.new(
|
|
4065
|
+
:flow_arn,
|
|
4066
|
+
:flow_vpc_interface_attachment)
|
|
4067
|
+
SENSITIVE = []
|
|
4068
|
+
include Aws::Structure
|
|
4069
|
+
end
|
|
4070
|
+
|
|
4071
|
+
# Update an existing network output.
|
|
4072
|
+
#
|
|
4073
|
+
# @!attribute [rw] ip_address
|
|
4074
|
+
# The network output IP Address.
|
|
4075
|
+
# @return [String]
|
|
4076
|
+
#
|
|
4077
|
+
# @!attribute [rw] network_name
|
|
4078
|
+
# The network output's gateway network name.
|
|
4079
|
+
# @return [String]
|
|
4080
|
+
#
|
|
4081
|
+
# @!attribute [rw] port
|
|
4082
|
+
# The network output port.
|
|
4083
|
+
# @return [Integer]
|
|
4084
|
+
#
|
|
4085
|
+
# @!attribute [rw] protocol
|
|
4086
|
+
# The network output protocol.
|
|
4087
|
+
# @return [String]
|
|
4088
|
+
#
|
|
4089
|
+
# @!attribute [rw] ttl
|
|
4090
|
+
# The network output TTL.
|
|
4091
|
+
# @return [Integer]
|
|
4092
|
+
#
|
|
4093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeNetworkOutputRequest AWS API Documentation
|
|
4094
|
+
#
|
|
4095
|
+
class UpdateBridgeNetworkOutputRequest < Struct.new(
|
|
4096
|
+
:ip_address,
|
|
4097
|
+
:network_name,
|
|
4098
|
+
:port,
|
|
4099
|
+
:protocol,
|
|
4100
|
+
:ttl)
|
|
4101
|
+
SENSITIVE = []
|
|
4102
|
+
include Aws::Structure
|
|
4103
|
+
end
|
|
4104
|
+
|
|
4105
|
+
# Update the network source of the bridge.
|
|
4106
|
+
#
|
|
4107
|
+
# @!attribute [rw] multicast_ip
|
|
4108
|
+
# The network source multicast IP.
|
|
4109
|
+
# @return [String]
|
|
4110
|
+
#
|
|
4111
|
+
# @!attribute [rw] network_name
|
|
4112
|
+
# The network source's gateway network name.
|
|
4113
|
+
# @return [String]
|
|
4114
|
+
#
|
|
4115
|
+
# @!attribute [rw] port
|
|
4116
|
+
# The network source port.
|
|
4117
|
+
# @return [Integer]
|
|
4118
|
+
#
|
|
4119
|
+
# @!attribute [rw] protocol
|
|
4120
|
+
# The network source protocol.
|
|
4121
|
+
# @return [String]
|
|
4122
|
+
#
|
|
4123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeNetworkSourceRequest AWS API Documentation
|
|
4124
|
+
#
|
|
4125
|
+
class UpdateBridgeNetworkSourceRequest < Struct.new(
|
|
4126
|
+
:multicast_ip,
|
|
4127
|
+
:network_name,
|
|
4128
|
+
:port,
|
|
4129
|
+
:protocol)
|
|
4130
|
+
SENSITIVE = []
|
|
4131
|
+
include Aws::Structure
|
|
4132
|
+
end
|
|
4133
|
+
|
|
4134
|
+
# Update an existing bridge output.
|
|
4135
|
+
#
|
|
4136
|
+
# @!attribute [rw] bridge_arn
|
|
4137
|
+
# @return [String]
|
|
4138
|
+
#
|
|
4139
|
+
# @!attribute [rw] network_output
|
|
4140
|
+
# Update an existing network output.
|
|
4141
|
+
# @return [Types::UpdateBridgeNetworkOutputRequest]
|
|
4142
|
+
#
|
|
4143
|
+
# @!attribute [rw] output_name
|
|
4144
|
+
# @return [String]
|
|
4145
|
+
#
|
|
4146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputRequest AWS API Documentation
|
|
4147
|
+
#
|
|
4148
|
+
class UpdateBridgeOutputRequest < Struct.new(
|
|
4149
|
+
:bridge_arn,
|
|
4150
|
+
:network_output,
|
|
4151
|
+
:output_name)
|
|
4152
|
+
SENSITIVE = []
|
|
4153
|
+
include Aws::Structure
|
|
4154
|
+
end
|
|
4155
|
+
|
|
4156
|
+
# The result of a successful UpdateBridgeOutput request.
|
|
4157
|
+
#
|
|
4158
|
+
# @!attribute [rw] bridge_arn
|
|
4159
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
4160
|
+
# @return [String]
|
|
4161
|
+
#
|
|
4162
|
+
# @!attribute [rw] output
|
|
4163
|
+
# The output that you updated.
|
|
4164
|
+
# @return [Types::BridgeOutput]
|
|
4165
|
+
#
|
|
4166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputResponse AWS API Documentation
|
|
4167
|
+
#
|
|
4168
|
+
class UpdateBridgeOutputResponse < Struct.new(
|
|
4169
|
+
:bridge_arn,
|
|
4170
|
+
:output)
|
|
4171
|
+
SENSITIVE = []
|
|
4172
|
+
include Aws::Structure
|
|
4173
|
+
end
|
|
4174
|
+
|
|
4175
|
+
# Update an existing bridge.
|
|
4176
|
+
#
|
|
4177
|
+
# @!attribute [rw] bridge_arn
|
|
4178
|
+
# @return [String]
|
|
4179
|
+
#
|
|
4180
|
+
# @!attribute [rw] egress_gateway_bridge
|
|
4181
|
+
# @return [Types::UpdateEgressGatewayBridgeRequest]
|
|
3575
4182
|
#
|
|
3576
|
-
#
|
|
3577
|
-
#
|
|
3578
|
-
#
|
|
3579
|
-
#
|
|
3580
|
-
#
|
|
3581
|
-
#
|
|
3582
|
-
#
|
|
3583
|
-
#
|
|
3584
|
-
#
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
4183
|
+
# @!attribute [rw] ingress_gateway_bridge
|
|
4184
|
+
# @return [Types::UpdateIngressGatewayBridgeRequest]
|
|
4185
|
+
#
|
|
4186
|
+
# @!attribute [rw] source_failover_config
|
|
4187
|
+
# The settings for source failover.
|
|
4188
|
+
# @return [Types::UpdateFailoverConfig]
|
|
4189
|
+
#
|
|
4190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeRequest AWS API Documentation
|
|
4191
|
+
#
|
|
4192
|
+
class UpdateBridgeRequest < Struct.new(
|
|
4193
|
+
:bridge_arn,
|
|
4194
|
+
:egress_gateway_bridge,
|
|
4195
|
+
:ingress_gateway_bridge,
|
|
4196
|
+
:source_failover_config)
|
|
4197
|
+
SENSITIVE = []
|
|
4198
|
+
include Aws::Structure
|
|
4199
|
+
end
|
|
4200
|
+
|
|
4201
|
+
# The bridge has been successfully updated.
|
|
4202
|
+
#
|
|
4203
|
+
# @!attribute [rw] bridge
|
|
4204
|
+
# A Bridge is the connection between your datacenter's Instances and
|
|
4205
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
|
4206
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
|
4207
|
+
# @return [Types::Bridge]
|
|
4208
|
+
#
|
|
4209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
|
|
4210
|
+
#
|
|
4211
|
+
class UpdateBridgeResponse < Struct.new(
|
|
4212
|
+
:bridge)
|
|
4213
|
+
SENSITIVE = []
|
|
4214
|
+
include Aws::Structure
|
|
4215
|
+
end
|
|
4216
|
+
|
|
4217
|
+
# Update the bridge source.
|
|
4218
|
+
#
|
|
4219
|
+
# @!attribute [rw] bridge_arn
|
|
4220
|
+
# @return [String]
|
|
4221
|
+
#
|
|
4222
|
+
# @!attribute [rw] flow_source
|
|
4223
|
+
# Update the flow source of the bridge.
|
|
4224
|
+
# @return [Types::UpdateBridgeFlowSourceRequest]
|
|
4225
|
+
#
|
|
4226
|
+
# @!attribute [rw] network_source
|
|
4227
|
+
# Update the network source of the bridge.
|
|
4228
|
+
# @return [Types::UpdateBridgeNetworkSourceRequest]
|
|
4229
|
+
#
|
|
4230
|
+
# @!attribute [rw] source_name
|
|
4231
|
+
# @return [String]
|
|
4232
|
+
#
|
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceRequest AWS API Documentation
|
|
4234
|
+
#
|
|
4235
|
+
class UpdateBridgeSourceRequest < Struct.new(
|
|
4236
|
+
:bridge_arn,
|
|
4237
|
+
:flow_source,
|
|
4238
|
+
:network_source,
|
|
4239
|
+
:source_name)
|
|
4240
|
+
SENSITIVE = []
|
|
4241
|
+
include Aws::Structure
|
|
4242
|
+
end
|
|
4243
|
+
|
|
4244
|
+
# The result of a successful UpdateBridgeSource request.
|
|
4245
|
+
#
|
|
4246
|
+
# @!attribute [rw] bridge_arn
|
|
4247
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
4248
|
+
# @return [String]
|
|
4249
|
+
#
|
|
4250
|
+
# @!attribute [rw] source
|
|
4251
|
+
# The bridge's source.
|
|
4252
|
+
# @return [Types::BridgeSource]
|
|
4253
|
+
#
|
|
4254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceResponse AWS API Documentation
|
|
4255
|
+
#
|
|
4256
|
+
class UpdateBridgeSourceResponse < Struct.new(
|
|
4257
|
+
:bridge_arn,
|
|
4258
|
+
:source)
|
|
4259
|
+
SENSITIVE = []
|
|
4260
|
+
include Aws::Structure
|
|
4261
|
+
end
|
|
4262
|
+
|
|
4263
|
+
# Update the state of a bridge. ACTIVE or STANDBY.
|
|
4264
|
+
#
|
|
4265
|
+
# @!attribute [rw] bridge_arn
|
|
4266
|
+
# @return [String]
|
|
4267
|
+
#
|
|
4268
|
+
# @!attribute [rw] desired_state
|
|
4269
|
+
# @return [String]
|
|
4270
|
+
#
|
|
4271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateRequest AWS API Documentation
|
|
4272
|
+
#
|
|
4273
|
+
class UpdateBridgeStateRequest < Struct.new(
|
|
4274
|
+
:bridge_arn,
|
|
4275
|
+
:desired_state)
|
|
4276
|
+
SENSITIVE = []
|
|
4277
|
+
include Aws::Structure
|
|
4278
|
+
end
|
|
4279
|
+
|
|
4280
|
+
# The bridge state has been updated.
|
|
4281
|
+
#
|
|
4282
|
+
# @!attribute [rw] bridge_arn
|
|
4283
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
|
4284
|
+
# @return [String]
|
|
4285
|
+
#
|
|
4286
|
+
# @!attribute [rw] desired_state
|
|
4287
|
+
# The state of the bridge. ACTIVE or STANDBY.
|
|
4288
|
+
# @return [String]
|
|
4289
|
+
#
|
|
4290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateResponse AWS API Documentation
|
|
4291
|
+
#
|
|
4292
|
+
class UpdateBridgeStateResponse < Struct.new(
|
|
4293
|
+
:bridge_arn,
|
|
4294
|
+
:desired_state)
|
|
4295
|
+
SENSITIVE = []
|
|
4296
|
+
include Aws::Structure
|
|
4297
|
+
end
|
|
4298
|
+
|
|
4299
|
+
# @!attribute [rw] max_bitrate
|
|
4300
|
+
# Update an existing egress-type bridge.
|
|
4301
|
+
# @return [Integer]
|
|
4302
|
+
#
|
|
4303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateEgressGatewayBridgeRequest AWS API Documentation
|
|
4304
|
+
#
|
|
4305
|
+
class UpdateEgressGatewayBridgeRequest < Struct.new(
|
|
4306
|
+
:max_bitrate)
|
|
4307
|
+
SENSITIVE = []
|
|
4308
|
+
include Aws::Structure
|
|
4309
|
+
end
|
|
4310
|
+
|
|
4311
|
+
# Information about the encryption of the flow.
|
|
3590
4312
|
#
|
|
3591
4313
|
# @!attribute [rw] algorithm
|
|
3592
4314
|
# The type of algorithm that is used for the encryption (such as
|
|
@@ -3659,18 +4381,6 @@ module Aws::MediaConnect
|
|
|
3659
4381
|
|
|
3660
4382
|
# The settings for source failover.
|
|
3661
4383
|
#
|
|
3662
|
-
# @note When making an API call, you may pass UpdateFailoverConfig
|
|
3663
|
-
# data as a hash:
|
|
3664
|
-
#
|
|
3665
|
-
# {
|
|
3666
|
-
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
|
3667
|
-
# recovery_window: 1,
|
|
3668
|
-
# source_priority: {
|
|
3669
|
-
# primary_source: "__string",
|
|
3670
|
-
# },
|
|
3671
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
3672
|
-
# }
|
|
3673
|
-
#
|
|
3674
4384
|
# @!attribute [rw] failover_mode
|
|
3675
4385
|
# The type of failover you choose for this flow. MERGE combines the
|
|
3676
4386
|
# source streams into a single stream, allowing graceful recovery from
|
|
@@ -3703,28 +4413,6 @@ module Aws::MediaConnect
|
|
|
3703
4413
|
|
|
3704
4414
|
# The updates that you want to make to a specific entitlement.
|
|
3705
4415
|
#
|
|
3706
|
-
# @note When making an API call, you may pass UpdateFlowEntitlementRequest
|
|
3707
|
-
# data as a hash:
|
|
3708
|
-
#
|
|
3709
|
-
# {
|
|
3710
|
-
# description: "__string",
|
|
3711
|
-
# encryption: {
|
|
3712
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
3713
|
-
# constant_initialization_vector: "__string",
|
|
3714
|
-
# device_id: "__string",
|
|
3715
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
3716
|
-
# region: "__string",
|
|
3717
|
-
# resource_id: "__string",
|
|
3718
|
-
# role_arn: "__string",
|
|
3719
|
-
# secret_arn: "__string",
|
|
3720
|
-
# url: "__string",
|
|
3721
|
-
# },
|
|
3722
|
-
# entitlement_arn: "__string", # required
|
|
3723
|
-
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
3724
|
-
# flow_arn: "__string", # required
|
|
3725
|
-
# subscribers: ["__string"],
|
|
3726
|
-
# }
|
|
3727
|
-
#
|
|
3728
4416
|
# @!attribute [rw] description
|
|
3729
4417
|
# A description of the entitlement. This description appears only on
|
|
3730
4418
|
# the AWS Elemental MediaConnect console and will not be seen by the
|
|
@@ -3792,30 +4480,6 @@ module Aws::MediaConnect
|
|
|
3792
4480
|
|
|
3793
4481
|
# Update a media stream on a flow.
|
|
3794
4482
|
#
|
|
3795
|
-
# @note When making an API call, you may pass UpdateFlowMediaStreamRequest
|
|
3796
|
-
# data as a hash:
|
|
3797
|
-
#
|
|
3798
|
-
# {
|
|
3799
|
-
# attributes: {
|
|
3800
|
-
# fmtp: {
|
|
3801
|
-
# channel_order: "__string",
|
|
3802
|
-
# colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
|
|
3803
|
-
# exact_framerate: "__string",
|
|
3804
|
-
# par: "__string",
|
|
3805
|
-
# range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
|
|
3806
|
-
# scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
|
|
3807
|
-
# tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
|
|
3808
|
-
# },
|
|
3809
|
-
# lang: "__string",
|
|
3810
|
-
# },
|
|
3811
|
-
# clock_rate: 1,
|
|
3812
|
-
# description: "__string",
|
|
3813
|
-
# flow_arn: "__string", # required
|
|
3814
|
-
# media_stream_name: "__string", # required
|
|
3815
|
-
# media_stream_type: "video", # accepts video, audio, ancillary-data
|
|
3816
|
-
# video_format: "__string",
|
|
3817
|
-
# }
|
|
3818
|
-
#
|
|
3819
4483
|
# @!attribute [rw] attributes
|
|
3820
4484
|
# The attributes that you want to assign to the media stream.
|
|
3821
4485
|
# @return [Types::MediaStreamAttributesRequest]
|
|
@@ -3858,7 +4522,7 @@ module Aws::MediaConnect
|
|
|
3858
4522
|
include Aws::Structure
|
|
3859
4523
|
end
|
|
3860
4524
|
|
|
3861
|
-
#
|
|
4525
|
+
# The result of a successful UpdateFlowMediaStream request.
|
|
3862
4526
|
#
|
|
3863
4527
|
# @!attribute [rw] flow_arn
|
|
3864
4528
|
# The ARN of the flow that is associated with the media stream that
|
|
@@ -3881,59 +4545,6 @@ module Aws::MediaConnect
|
|
|
3881
4545
|
# The updates that you want to make to an existing output of an existing
|
|
3882
4546
|
# flow.
|
|
3883
4547
|
#
|
|
3884
|
-
# @note When making an API call, you may pass UpdateFlowOutputRequest
|
|
3885
|
-
# data as a hash:
|
|
3886
|
-
#
|
|
3887
|
-
# {
|
|
3888
|
-
# cidr_allow_list: ["__string"],
|
|
3889
|
-
# description: "__string",
|
|
3890
|
-
# destination: "__string",
|
|
3891
|
-
# encryption: {
|
|
3892
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
3893
|
-
# constant_initialization_vector: "__string",
|
|
3894
|
-
# device_id: "__string",
|
|
3895
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
3896
|
-
# region: "__string",
|
|
3897
|
-
# resource_id: "__string",
|
|
3898
|
-
# role_arn: "__string",
|
|
3899
|
-
# secret_arn: "__string",
|
|
3900
|
-
# url: "__string",
|
|
3901
|
-
# },
|
|
3902
|
-
# flow_arn: "__string", # required
|
|
3903
|
-
# max_latency: 1,
|
|
3904
|
-
# media_stream_output_configurations: [
|
|
3905
|
-
# {
|
|
3906
|
-
# destination_configurations: [
|
|
3907
|
-
# {
|
|
3908
|
-
# destination_ip: "__string", # required
|
|
3909
|
-
# destination_port: 1, # required
|
|
3910
|
-
# interface: { # required
|
|
3911
|
-
# name: "__string", # required
|
|
3912
|
-
# },
|
|
3913
|
-
# },
|
|
3914
|
-
# ],
|
|
3915
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
3916
|
-
# encoding_parameters: {
|
|
3917
|
-
# compression_factor: 1.0, # required
|
|
3918
|
-
# encoder_profile: "main", # required, accepts main, high
|
|
3919
|
-
# },
|
|
3920
|
-
# media_stream_name: "__string", # required
|
|
3921
|
-
# },
|
|
3922
|
-
# ],
|
|
3923
|
-
# min_latency: 1,
|
|
3924
|
-
# output_arn: "__string", # required
|
|
3925
|
-
# port: 1,
|
|
3926
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
3927
|
-
# remote_id: "__string",
|
|
3928
|
-
# sender_control_port: 1,
|
|
3929
|
-
# sender_ip_address: "__string",
|
|
3930
|
-
# smoothing_latency: 1,
|
|
3931
|
-
# stream_id: "__string",
|
|
3932
|
-
# vpc_interface_attachment: {
|
|
3933
|
-
# vpc_interface_name: "__string",
|
|
3934
|
-
# },
|
|
3935
|
-
# }
|
|
3936
|
-
#
|
|
3937
4548
|
# @!attribute [rw] cidr_allow_list
|
|
3938
4549
|
# The range of IP addresses that should be allowed to initiate output
|
|
3939
4550
|
# requests to this flow. These IP addresses should be in the form of a
|
|
@@ -4011,7 +4622,7 @@ module Aws::MediaConnect
|
|
|
4011
4622
|
#
|
|
4012
4623
|
# @!attribute [rw] stream_id
|
|
4013
4624
|
# The stream ID that you want to use for this transport. This
|
|
4014
|
-
# parameter applies only to Zixi-based streams.
|
|
4625
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
|
4015
4626
|
# @return [String]
|
|
4016
4627
|
#
|
|
4017
4628
|
# @!attribute [rw] vpc_interface_attachment
|
|
@@ -4064,26 +4675,6 @@ module Aws::MediaConnect
|
|
|
4064
4675
|
|
|
4065
4676
|
# Updates an existing flow.
|
|
4066
4677
|
#
|
|
4067
|
-
# @note When making an API call, you may pass UpdateFlowRequest
|
|
4068
|
-
# data as a hash:
|
|
4069
|
-
#
|
|
4070
|
-
# {
|
|
4071
|
-
# flow_arn: "__string", # required
|
|
4072
|
-
# source_failover_config: {
|
|
4073
|
-
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
|
4074
|
-
# recovery_window: 1,
|
|
4075
|
-
# source_priority: {
|
|
4076
|
-
# primary_source: "__string",
|
|
4077
|
-
# },
|
|
4078
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
4079
|
-
# },
|
|
4080
|
-
# maintenance: {
|
|
4081
|
-
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
4082
|
-
# maintenance_scheduled_date: "__string",
|
|
4083
|
-
# maintenance_start_hour: "__string",
|
|
4084
|
-
# },
|
|
4085
|
-
# }
|
|
4086
|
-
#
|
|
4087
4678
|
# @!attribute [rw] flow_arn
|
|
4088
4679
|
# @return [String]
|
|
4089
4680
|
#
|
|
@@ -4105,7 +4696,8 @@ module Aws::MediaConnect
|
|
|
4105
4696
|
include Aws::Structure
|
|
4106
4697
|
end
|
|
4107
4698
|
|
|
4108
|
-
# Updates an existing
|
|
4699
|
+
# The result of a successful UpdateFlow request. Updates an existing
|
|
4700
|
+
# flow.
|
|
4109
4701
|
#
|
|
4110
4702
|
# @!attribute [rw] flow
|
|
4111
4703
|
# The settings for a flow, including its source, outputs, and
|
|
@@ -4123,54 +4715,6 @@ module Aws::MediaConnect
|
|
|
4123
4715
|
# The updates that you want to make to an existing source of an existing
|
|
4124
4716
|
# flow.
|
|
4125
4717
|
#
|
|
4126
|
-
# @note When making an API call, you may pass UpdateFlowSourceRequest
|
|
4127
|
-
# data as a hash:
|
|
4128
|
-
#
|
|
4129
|
-
# {
|
|
4130
|
-
# decryption: {
|
|
4131
|
-
# algorithm: "aes128", # accepts aes128, aes192, aes256
|
|
4132
|
-
# constant_initialization_vector: "__string",
|
|
4133
|
-
# device_id: "__string",
|
|
4134
|
-
# key_type: "speke", # accepts speke, static-key, srt-password
|
|
4135
|
-
# region: "__string",
|
|
4136
|
-
# resource_id: "__string",
|
|
4137
|
-
# role_arn: "__string",
|
|
4138
|
-
# secret_arn: "__string",
|
|
4139
|
-
# url: "__string",
|
|
4140
|
-
# },
|
|
4141
|
-
# description: "__string",
|
|
4142
|
-
# entitlement_arn: "__string",
|
|
4143
|
-
# flow_arn: "__string", # required
|
|
4144
|
-
# ingest_port: 1,
|
|
4145
|
-
# max_bitrate: 1,
|
|
4146
|
-
# max_latency: 1,
|
|
4147
|
-
# max_sync_buffer: 1,
|
|
4148
|
-
# media_stream_source_configurations: [
|
|
4149
|
-
# {
|
|
4150
|
-
# encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
|
|
4151
|
-
# input_configurations: [
|
|
4152
|
-
# {
|
|
4153
|
-
# input_port: 1, # required
|
|
4154
|
-
# interface: { # required
|
|
4155
|
-
# name: "__string", # required
|
|
4156
|
-
# },
|
|
4157
|
-
# },
|
|
4158
|
-
# ],
|
|
4159
|
-
# media_stream_name: "__string", # required
|
|
4160
|
-
# },
|
|
4161
|
-
# ],
|
|
4162
|
-
# min_latency: 1,
|
|
4163
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
4164
|
-
# sender_control_port: 1,
|
|
4165
|
-
# sender_ip_address: "__string",
|
|
4166
|
-
# source_arn: "__string", # required
|
|
4167
|
-
# source_listener_address: "__string",
|
|
4168
|
-
# source_listener_port: 1,
|
|
4169
|
-
# stream_id: "__string",
|
|
4170
|
-
# vpc_interface_name: "__string",
|
|
4171
|
-
# whitelist_cidr: "__string",
|
|
4172
|
-
# }
|
|
4173
|
-
#
|
|
4174
4718
|
# @!attribute [rw] decryption
|
|
4175
4719
|
# The type of encryption used on the content ingested from this
|
|
4176
4720
|
# source. Allowable encryption types: static-key.
|
|
@@ -4195,7 +4739,8 @@ module Aws::MediaConnect
|
|
|
4195
4739
|
# @return [Integer]
|
|
4196
4740
|
#
|
|
4197
4741
|
# @!attribute [rw] max_bitrate
|
|
4198
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
|
4742
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
|
4743
|
+
# streams.
|
|
4199
4744
|
# @return [Integer]
|
|
4200
4745
|
#
|
|
4201
4746
|
# @!attribute [rw] max_latency
|
|
@@ -4249,7 +4794,7 @@ module Aws::MediaConnect
|
|
|
4249
4794
|
#
|
|
4250
4795
|
# @!attribute [rw] stream_id
|
|
4251
4796
|
# The stream ID that you want to use for this transport. This
|
|
4252
|
-
# parameter applies only to Zixi-based streams.
|
|
4797
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
|
4253
4798
|
# @return [String]
|
|
4254
4799
|
#
|
|
4255
4800
|
# @!attribute [rw] vpc_interface_name
|
|
@@ -4263,6 +4808,11 @@ module Aws::MediaConnect
|
|
|
4263
4808
|
# 10.0.0.0/16.
|
|
4264
4809
|
# @return [String]
|
|
4265
4810
|
#
|
|
4811
|
+
# @!attribute [rw] gateway_bridge_source
|
|
4812
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
4813
|
+
# bridge.
|
|
4814
|
+
# @return [Types::UpdateGatewayBridgeSourceRequest]
|
|
4815
|
+
#
|
|
4266
4816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSourceRequest AWS API Documentation
|
|
4267
4817
|
#
|
|
4268
4818
|
class UpdateFlowSourceRequest < Struct.new(
|
|
@@ -4284,7 +4834,8 @@ module Aws::MediaConnect
|
|
|
4284
4834
|
:source_listener_port,
|
|
4285
4835
|
:stream_id,
|
|
4286
4836
|
:vpc_interface_name,
|
|
4287
|
-
:whitelist_cidr
|
|
4837
|
+
:whitelist_cidr,
|
|
4838
|
+
:gateway_bridge_source)
|
|
4288
4839
|
SENSITIVE = []
|
|
4289
4840
|
include Aws::Structure
|
|
4290
4841
|
end
|
|
@@ -4310,16 +4861,89 @@ module Aws::MediaConnect
|
|
|
4310
4861
|
include Aws::Structure
|
|
4311
4862
|
end
|
|
4312
4863
|
|
|
4313
|
-
#
|
|
4864
|
+
# The source configuration for cloud flows receiving a stream from a
|
|
4865
|
+
# bridge.
|
|
4866
|
+
#
|
|
4867
|
+
# @!attribute [rw] bridge_arn
|
|
4868
|
+
# The ARN of the bridge feeding this flow.
|
|
4869
|
+
# @return [String]
|
|
4870
|
+
#
|
|
4871
|
+
# @!attribute [rw] vpc_interface_attachment
|
|
4872
|
+
# The name of the VPC interface attachment to use for this bridge
|
|
4873
|
+
# source.
|
|
4874
|
+
# @return [Types::VpcInterfaceAttachment]
|
|
4875
|
+
#
|
|
4876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayBridgeSourceRequest AWS API Documentation
|
|
4877
|
+
#
|
|
4878
|
+
class UpdateGatewayBridgeSourceRequest < Struct.new(
|
|
4879
|
+
:bridge_arn,
|
|
4880
|
+
:vpc_interface_attachment)
|
|
4881
|
+
SENSITIVE = []
|
|
4882
|
+
include Aws::Structure
|
|
4883
|
+
end
|
|
4884
|
+
|
|
4885
|
+
# The state update that you want to make to an existing gateway
|
|
4886
|
+
# instance.
|
|
4887
|
+
#
|
|
4888
|
+
# @!attribute [rw] bridge_placement
|
|
4889
|
+
# The availability of the instance to host new bridges. The
|
|
4890
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
|
4891
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
|
4892
|
+
# AVAILABLE, new bridges can be added to this instance.
|
|
4893
|
+
# @return [String]
|
|
4314
4894
|
#
|
|
4315
|
-
#
|
|
4316
|
-
#
|
|
4895
|
+
# @!attribute [rw] gateway_instance_arn
|
|
4896
|
+
# @return [String]
|
|
4897
|
+
#
|
|
4898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceRequest AWS API Documentation
|
|
4899
|
+
#
|
|
4900
|
+
class UpdateGatewayInstanceRequest < Struct.new(
|
|
4901
|
+
:bridge_placement,
|
|
4902
|
+
:gateway_instance_arn)
|
|
4903
|
+
SENSITIVE = []
|
|
4904
|
+
include Aws::Structure
|
|
4905
|
+
end
|
|
4906
|
+
|
|
4907
|
+
# The result of a successful UpdateGatewayInstance request.
|
|
4908
|
+
#
|
|
4909
|
+
# @!attribute [rw] bridge_placement
|
|
4910
|
+
# The availability of the instance to host new bridges. The
|
|
4911
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
|
4912
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
|
4913
|
+
# AVAILABLE, new bridges can be added to this instance.
|
|
4914
|
+
# @return [String]
|
|
4915
|
+
#
|
|
4916
|
+
# @!attribute [rw] gateway_instance_arn
|
|
4917
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
4918
|
+
# @return [String]
|
|
4919
|
+
#
|
|
4920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceResponse AWS API Documentation
|
|
4921
|
+
#
|
|
4922
|
+
class UpdateGatewayInstanceResponse < Struct.new(
|
|
4923
|
+
:bridge_placement,
|
|
4924
|
+
:gateway_instance_arn)
|
|
4925
|
+
SENSITIVE = []
|
|
4926
|
+
include Aws::Structure
|
|
4927
|
+
end
|
|
4928
|
+
|
|
4929
|
+
# @!attribute [rw] max_bitrate
|
|
4930
|
+
# The maximum expected bitrate (in bps).
|
|
4931
|
+
# @return [Integer]
|
|
4932
|
+
#
|
|
4933
|
+
# @!attribute [rw] max_outputs
|
|
4934
|
+
# The maximum number of expected outputs.
|
|
4935
|
+
# @return [Integer]
|
|
4936
|
+
#
|
|
4937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateIngressGatewayBridgeRequest AWS API Documentation
|
|
4317
4938
|
#
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4939
|
+
class UpdateIngressGatewayBridgeRequest < Struct.new(
|
|
4940
|
+
:max_bitrate,
|
|
4941
|
+
:max_outputs)
|
|
4942
|
+
SENSITIVE = []
|
|
4943
|
+
include Aws::Structure
|
|
4944
|
+
end
|
|
4945
|
+
|
|
4946
|
+
# Update maintenance setting for a flow
|
|
4323
4947
|
#
|
|
4324
4948
|
# @!attribute [rw] maintenance_day
|
|
4325
4949
|
# A day of a week when the maintenance will happen. use
|
|
@@ -4388,17 +5012,10 @@ module Aws::MediaConnect
|
|
|
4388
5012
|
include Aws::Structure
|
|
4389
5013
|
end
|
|
4390
5014
|
|
|
4391
|
-
# The settings for attaching a VPC interface to an
|
|
4392
|
-
#
|
|
4393
|
-
# @note When making an API call, you may pass VpcInterfaceAttachment
|
|
4394
|
-
# data as a hash:
|
|
4395
|
-
#
|
|
4396
|
-
# {
|
|
4397
|
-
# vpc_interface_name: "__string",
|
|
4398
|
-
# }
|
|
5015
|
+
# The settings for attaching a VPC interface to an resource.
|
|
4399
5016
|
#
|
|
4400
5017
|
# @!attribute [rw] vpc_interface_name
|
|
4401
|
-
# The name of the VPC interface to use for this
|
|
5018
|
+
# The name of the VPC interface to use for this resource.
|
|
4402
5019
|
# @return [String]
|
|
4403
5020
|
#
|
|
4404
5021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VpcInterfaceAttachment AWS API Documentation
|
|
@@ -4411,17 +5028,6 @@ module Aws::MediaConnect
|
|
|
4411
5028
|
|
|
4412
5029
|
# Desired VPC Interface for a Flow
|
|
4413
5030
|
#
|
|
4414
|
-
# @note When making an API call, you may pass VpcInterfaceRequest
|
|
4415
|
-
# data as a hash:
|
|
4416
|
-
#
|
|
4417
|
-
# {
|
|
4418
|
-
# name: "__string", # required
|
|
4419
|
-
# network_interface_type: "ena", # accepts ena, efa
|
|
4420
|
-
# role_arn: "__string", # required
|
|
4421
|
-
# security_group_ids: ["__string"], # required
|
|
4422
|
-
# subnet_id: "__string", # required
|
|
4423
|
-
# }
|
|
4424
|
-
#
|
|
4425
5031
|
# @!attribute [rw] name
|
|
4426
5032
|
# The name of the VPC Interface. This value must be unique within the
|
|
4427
5033
|
# current flow.
|