aws-sdk-mediaconnect 1.77.0 → 1.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +737 -422
- data/lib/aws-sdk-mediaconnect/client_api.rb +644 -573
- data/lib/aws-sdk-mediaconnect/errors.rb +16 -0
- data/lib/aws-sdk-mediaconnect/types.rb +775 -554
- data/lib/aws-sdk-mediaconnect/waiters.rb +28 -22
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +45 -16
- data/sig/types.rbs +36 -16
- metadata +2 -2
@@ -13,8 +13,8 @@ module Aws::MediaConnect
|
|
13
13
|
# Add a flow source to an existing bridge.
|
14
14
|
#
|
15
15
|
# @!attribute [rw] flow_arn
|
16
|
-
# The Amazon Resource Number (ARN) of the
|
17
|
-
#
|
16
|
+
# The Amazon Resource Number (ARN) of the flow to use as a source of
|
17
|
+
# this bridge.
|
18
18
|
# @return [String]
|
19
19
|
#
|
20
20
|
# @!attribute [rw] flow_vpc_interface_attachment
|
@@ -57,6 +57,11 @@ module Aws::MediaConnect
|
|
57
57
|
#
|
58
58
|
# @!attribute [rw] protocol
|
59
59
|
# The network output protocol.
|
60
|
+
#
|
61
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
62
|
+
# This reference is maintained for legacy purposes only.
|
63
|
+
#
|
64
|
+
# </note>
|
60
65
|
# @return [String]
|
61
66
|
#
|
62
67
|
# @!attribute [rw] ttl
|
@@ -83,7 +88,7 @@ module Aws::MediaConnect
|
|
83
88
|
# @return [String]
|
84
89
|
#
|
85
90
|
# @!attribute [rw] multicast_source_settings
|
86
|
-
# The
|
91
|
+
# The settings related to the multicast source.
|
87
92
|
# @return [Types::MulticastSourceSettings]
|
88
93
|
#
|
89
94
|
# @!attribute [rw] name
|
@@ -101,6 +106,11 @@ module Aws::MediaConnect
|
|
101
106
|
#
|
102
107
|
# @!attribute [rw] protocol
|
103
108
|
# The network source protocol.
|
109
|
+
#
|
110
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
111
|
+
# This reference is maintained for legacy purposes only.
|
112
|
+
#
|
113
|
+
# </note>
|
104
114
|
# @return [String]
|
105
115
|
#
|
106
116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeNetworkSourceRequest AWS API Documentation
|
@@ -116,10 +126,11 @@ module Aws::MediaConnect
|
|
116
126
|
include Aws::Structure
|
117
127
|
end
|
118
128
|
|
119
|
-
# Add
|
129
|
+
# Add outputs to the specified bridge.
|
120
130
|
#
|
121
131
|
# @!attribute [rw] network_output
|
122
|
-
#
|
132
|
+
# The network output of the bridge. A network output is delivered to
|
133
|
+
# your premises.
|
123
134
|
# @return [Types::AddBridgeNetworkOutputRequest]
|
124
135
|
#
|
125
136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputRequest AWS API Documentation
|
@@ -130,10 +141,9 @@ module Aws::MediaConnect
|
|
130
141
|
include Aws::Structure
|
131
142
|
end
|
132
143
|
|
133
|
-
# Adds outputs to an existing bridge. You can create up to 2 outputs per
|
134
|
-
# bridge.
|
135
|
-
#
|
136
144
|
# @!attribute [rw] bridge_arn
|
145
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
146
|
+
# update.
|
137
147
|
# @return [String]
|
138
148
|
#
|
139
149
|
# @!attribute [rw] outputs
|
@@ -149,10 +159,8 @@ module Aws::MediaConnect
|
|
149
159
|
include Aws::Structure
|
150
160
|
end
|
151
161
|
|
152
|
-
# The result of a successful AddBridgeOutputs request.
|
153
|
-
#
|
154
162
|
# @!attribute [rw] bridge_arn
|
155
|
-
# The
|
163
|
+
# The ARN of the bridge that you added outputs to.
|
156
164
|
# @return [String]
|
157
165
|
#
|
158
166
|
# @!attribute [rw] outputs
|
@@ -168,14 +176,14 @@ module Aws::MediaConnect
|
|
168
176
|
include Aws::Structure
|
169
177
|
end
|
170
178
|
|
171
|
-
# Add
|
179
|
+
# Add an output to a bridge.
|
172
180
|
#
|
173
181
|
# @!attribute [rw] flow_source
|
174
|
-
#
|
182
|
+
# The source of the flow.
|
175
183
|
# @return [Types::AddBridgeFlowSourceRequest]
|
176
184
|
#
|
177
185
|
# @!attribute [rw] network_source
|
178
|
-
#
|
186
|
+
# The source of the network.
|
179
187
|
# @return [Types::AddBridgeNetworkSourceRequest]
|
180
188
|
#
|
181
189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourceRequest AWS API Documentation
|
@@ -187,10 +195,9 @@ module Aws::MediaConnect
|
|
187
195
|
include Aws::Structure
|
188
196
|
end
|
189
197
|
|
190
|
-
# Add sources to an existing bridge. You can create up to 2 sources per
|
191
|
-
# bridge.
|
192
|
-
#
|
193
198
|
# @!attribute [rw] bridge_arn
|
199
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
200
|
+
# update.
|
194
201
|
# @return [String]
|
195
202
|
#
|
196
203
|
# @!attribute [rw] sources
|
@@ -206,10 +213,8 @@ module Aws::MediaConnect
|
|
206
213
|
include Aws::Structure
|
207
214
|
end
|
208
215
|
|
209
|
-
# The result of a successful AddBridgeSources request.
|
210
|
-
#
|
211
216
|
# @!attribute [rw] bridge_arn
|
212
|
-
# The
|
217
|
+
# The ARN of the bridge that you added sources to.
|
213
218
|
# @return [String]
|
214
219
|
#
|
215
220
|
# @!attribute [rw] sources
|
@@ -225,8 +230,12 @@ module Aws::MediaConnect
|
|
225
230
|
include Aws::Structure
|
226
231
|
end
|
227
232
|
|
233
|
+
# Create a bridge with the egress bridge type. An egress bridge is a
|
234
|
+
# cloud-to-ground bridge. The content comes from an existing
|
235
|
+
# MediaConnect flow and is delivered to your premises.
|
236
|
+
#
|
228
237
|
# @!attribute [rw] max_bitrate
|
229
|
-
# The maximum expected bitrate (in bps).
|
238
|
+
# The maximum expected bitrate (in bps) of the egress bridge.
|
230
239
|
# @return [Integer]
|
231
240
|
#
|
232
241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddEgressGatewayBridgeRequest AWS API Documentation
|
@@ -237,9 +246,8 @@ module Aws::MediaConnect
|
|
237
246
|
include Aws::Structure
|
238
247
|
end
|
239
248
|
|
240
|
-
# Adds media streams to an existing flow.
|
241
|
-
#
|
242
249
|
# @!attribute [rw] flow_arn
|
250
|
+
# The Amazon Resource Name (ARN) of the flow.
|
243
251
|
# @return [String]
|
244
252
|
#
|
245
253
|
# @!attribute [rw] media_streams
|
@@ -255,9 +263,6 @@ module Aws::MediaConnect
|
|
255
263
|
include Aws::Structure
|
256
264
|
end
|
257
265
|
|
258
|
-
# The result of a successful AddFlowMediaStreams request. The response
|
259
|
-
# includes the details of the newly added media streams.
|
260
|
-
#
|
261
266
|
# @!attribute [rw] flow_arn
|
262
267
|
# The ARN of the flow that you added media streams to.
|
263
268
|
# @return [String]
|
@@ -275,9 +280,9 @@ module Aws::MediaConnect
|
|
275
280
|
include Aws::Structure
|
276
281
|
end
|
277
282
|
|
278
|
-
# Exception raised by
|
279
|
-
#
|
280
|
-
# of this exception.
|
283
|
+
# Exception raised by Elemental MediaConnect when adding the flow
|
284
|
+
# output. See the error message for the operation for more information
|
285
|
+
# on the cause of this exception.
|
281
286
|
#
|
282
287
|
# @!attribute [rw] message
|
283
288
|
# @return [String]
|
@@ -290,14 +295,13 @@ module Aws::MediaConnect
|
|
290
295
|
include Aws::Structure
|
291
296
|
end
|
292
297
|
|
293
|
-
# Adds outputs to an existing flow. You can create up to 50 outputs per
|
294
|
-
# flow.
|
295
|
-
#
|
296
298
|
# @!attribute [rw] flow_arn
|
299
|
+
# The Amazon Resource Name (ARN) of the flow that you want to add
|
300
|
+
# outputs to.
|
297
301
|
# @return [String]
|
298
302
|
#
|
299
303
|
# @!attribute [rw] outputs
|
300
|
-
# A list of outputs that you want to add.
|
304
|
+
# A list of outputs that you want to add to the flow.
|
301
305
|
# @return [Array<Types::AddOutputRequest>]
|
302
306
|
#
|
303
307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowOutputsRequest AWS API Documentation
|
@@ -309,9 +313,6 @@ module Aws::MediaConnect
|
|
309
313
|
include Aws::Structure
|
310
314
|
end
|
311
315
|
|
312
|
-
# The result of a successful AddOutput request. The response includes
|
313
|
-
# the details of the newly added outputs.
|
314
|
-
#
|
315
316
|
# @!attribute [rw] flow_arn
|
316
317
|
# The ARN of the flow that these outputs were added to.
|
317
318
|
# @return [String]
|
@@ -329,13 +330,12 @@ module Aws::MediaConnect
|
|
329
330
|
include Aws::Structure
|
330
331
|
end
|
331
332
|
|
332
|
-
# Adds sources to an existing flow.
|
333
|
-
#
|
334
333
|
# @!attribute [rw] flow_arn
|
334
|
+
# The Amazon Resource Name (ARN) of the flow that you want to update.
|
335
335
|
# @return [String]
|
336
336
|
#
|
337
337
|
# @!attribute [rw] sources
|
338
|
-
# A list of sources that you want to add.
|
338
|
+
# A list of sources that you want to add to the flow.
|
339
339
|
# @return [Array<Types::SetSourceRequest>]
|
340
340
|
#
|
341
341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowSourcesRequest AWS API Documentation
|
@@ -347,9 +347,6 @@ module Aws::MediaConnect
|
|
347
347
|
include Aws::Structure
|
348
348
|
end
|
349
349
|
|
350
|
-
# The result of a successful AddFlowSources request. The response
|
351
|
-
# includes the details of the newly added sources.
|
352
|
-
#
|
353
350
|
# @!attribute [rw] flow_arn
|
354
351
|
# The ARN of the flow that these sources were added to.
|
355
352
|
# @return [String]
|
@@ -367,13 +364,12 @@ module Aws::MediaConnect
|
|
367
364
|
include Aws::Structure
|
368
365
|
end
|
369
366
|
|
370
|
-
# Adds VPC interfaces to an existing flow.
|
371
|
-
#
|
372
367
|
# @!attribute [rw] flow_arn
|
368
|
+
# The Amazon Resource Name (ARN) of the flow that you want to update.
|
373
369
|
# @return [String]
|
374
370
|
#
|
375
371
|
# @!attribute [rw] vpc_interfaces
|
376
|
-
# A list of VPC interfaces that you want to add.
|
372
|
+
# A list of VPC interfaces that you want to add to the flow.
|
377
373
|
# @return [Array<Types::VpcInterfaceRequest>]
|
378
374
|
#
|
379
375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowVpcInterfacesRequest AWS API Documentation
|
@@ -385,9 +381,6 @@ module Aws::MediaConnect
|
|
385
381
|
include Aws::Structure
|
386
382
|
end
|
387
383
|
|
388
|
-
# The result of a successful AddFlowVpcInterfaces request. The response
|
389
|
-
# includes the details of the newly added VPC interfaces.
|
390
|
-
#
|
391
384
|
# @!attribute [rw] flow_arn
|
392
385
|
# The ARN of the flow that these VPC interfaces were added to.
|
393
386
|
# @return [String]
|
@@ -405,12 +398,16 @@ module Aws::MediaConnect
|
|
405
398
|
include Aws::Structure
|
406
399
|
end
|
407
400
|
|
401
|
+
# Create a bridge with the ingress bridge type. An ingress bridge is a
|
402
|
+
# ground-to-cloud bridge. The content originates at your premises and is
|
403
|
+
# delivered to the cloud.
|
404
|
+
#
|
408
405
|
# @!attribute [rw] max_bitrate
|
409
|
-
# The maximum expected bitrate (in bps).
|
406
|
+
# The maximum expected bitrate (in bps) of the ingress bridge.
|
410
407
|
# @return [Integer]
|
411
408
|
#
|
412
409
|
# @!attribute [rw] max_outputs
|
413
|
-
# The maximum number of expected outputs.
|
410
|
+
# The maximum number of expected outputs on the ingress bridge.
|
414
411
|
# @return [Integer]
|
415
412
|
#
|
416
413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddIngressGatewayBridgeRequest AWS API Documentation
|
@@ -422,16 +419,22 @@ module Aws::MediaConnect
|
|
422
419
|
include Aws::Structure
|
423
420
|
end
|
424
421
|
|
425
|
-
# Create maintenance setting for a flow
|
422
|
+
# Create a maintenance setting for a flow.
|
426
423
|
#
|
427
424
|
# @!attribute [rw] maintenance_day
|
428
|
-
# A day of a week when the maintenance will happen.
|
429
|
-
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
425
|
+
# A day of a week when the maintenance will happen.
|
430
426
|
# @return [String]
|
431
427
|
#
|
432
428
|
# @!attribute [rw] maintenance_start_hour
|
433
|
-
# UTC time when the maintenance will happen.
|
434
|
-
#
|
429
|
+
# UTC time when the maintenance will happen.
|
430
|
+
#
|
431
|
+
# Use 24-hour HH:MM format.
|
432
|
+
#
|
433
|
+
# Minutes must be 00.
|
434
|
+
#
|
435
|
+
# Example: 13:00.
|
436
|
+
#
|
437
|
+
# The default value is 02:00.
|
435
438
|
# @return [String]
|
436
439
|
#
|
437
440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddMaintenance AWS API Documentation
|
@@ -490,7 +493,7 @@ module Aws::MediaConnect
|
|
490
493
|
include Aws::Structure
|
491
494
|
end
|
492
495
|
|
493
|
-
#
|
496
|
+
# A request to add an output to a flow.
|
494
497
|
#
|
495
498
|
# @!attribute [rw] cidr_allow_list
|
496
499
|
# The range of IP addresses that should be allowed to initiate output
|
@@ -501,8 +504,7 @@ module Aws::MediaConnect
|
|
501
504
|
#
|
502
505
|
# @!attribute [rw] description
|
503
506
|
# A description of the output. This description appears only on the
|
504
|
-
#
|
505
|
-
# user.
|
507
|
+
# Audit Manager console and will not be seen by the end user.
|
506
508
|
# @return [String]
|
507
509
|
#
|
508
510
|
# @!attribute [rw] destination
|
@@ -517,7 +519,7 @@ module Aws::MediaConnect
|
|
517
519
|
#
|
518
520
|
# @!attribute [rw] max_latency
|
519
521
|
# The maximum latency in milliseconds. This parameter applies only to
|
520
|
-
# RIST-based
|
522
|
+
# RIST-based and Zixi-based streams.
|
521
523
|
# @return [Integer]
|
522
524
|
#
|
523
525
|
# @!attribute [rw] media_stream_output_configurations
|
@@ -545,6 +547,11 @@ module Aws::MediaConnect
|
|
545
547
|
#
|
546
548
|
# @!attribute [rw] protocol
|
547
549
|
# The protocol to use for the output.
|
550
|
+
#
|
551
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
552
|
+
# This reference is maintained for legacy purposes only.
|
553
|
+
#
|
554
|
+
# </note>
|
548
555
|
# @return [String]
|
549
556
|
#
|
550
557
|
# @!attribute [rw] remote_id
|
@@ -576,6 +583,15 @@ module Aws::MediaConnect
|
|
576
583
|
# outputStatus field in your request, MediaConnect sets it to ENABLED.
|
577
584
|
# @return [String]
|
578
585
|
#
|
586
|
+
# @!attribute [rw] ndi_speed_hq_quality
|
587
|
+
# A quality setting for the NDI Speed HQ encoder.
|
588
|
+
# @return [Integer]
|
589
|
+
#
|
590
|
+
# @!attribute [rw] ndi_program_name
|
591
|
+
# A suffix for the names of the NDI sources that the flow creates. If
|
592
|
+
# a custom name isn't specified, MediaConnect uses the output name.
|
593
|
+
# @return [String]
|
594
|
+
#
|
579
595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddOutputRequest AWS API Documentation
|
580
596
|
#
|
581
597
|
class AddOutputRequest < Struct.new(
|
@@ -594,7 +610,9 @@ module Aws::MediaConnect
|
|
594
610
|
:smoothing_latency,
|
595
611
|
:stream_id,
|
596
612
|
:vpc_interface_attachment,
|
597
|
-
:output_status
|
613
|
+
:output_status,
|
614
|
+
:ndi_speed_hq_quality,
|
615
|
+
:ndi_program_name)
|
598
616
|
SENSITIVE = []
|
599
617
|
include Aws::Structure
|
600
618
|
end
|
@@ -613,9 +631,9 @@ module Aws::MediaConnect
|
|
613
631
|
include Aws::Structure
|
614
632
|
end
|
615
633
|
|
616
|
-
#
|
617
|
-
#
|
618
|
-
#
|
634
|
+
# This exception is thrown if the request contains a semantic error. The
|
635
|
+
# precise meaning depends on the API, and is documented in the error
|
636
|
+
# message.
|
619
637
|
#
|
620
638
|
# @!attribute [rw] message
|
621
639
|
# @return [String]
|
@@ -628,10 +646,10 @@ module Aws::MediaConnect
|
|
628
646
|
include Aws::Structure
|
629
647
|
end
|
630
648
|
|
631
|
-
# Configures settings for the BlackFrames metric.
|
649
|
+
# Configures settings for the `BlackFrames` metric.
|
632
650
|
#
|
633
651
|
# @!attribute [rw] state
|
634
|
-
# Indicates whether the BlackFrames metric is enabled or disabled
|
652
|
+
# Indicates whether the `BlackFrames` metric is enabled or disabled..
|
635
653
|
# @return [String]
|
636
654
|
#
|
637
655
|
# @!attribute [rw] threshold_seconds
|
@@ -649,23 +667,30 @@ module Aws::MediaConnect
|
|
649
667
|
end
|
650
668
|
|
651
669
|
# A Bridge is the connection between your data center's Instances and
|
652
|
-
# the
|
653
|
-
# to your data center or from your data
|
670
|
+
# the Amazon Web Services cloud. A bridge can be used to send video from
|
671
|
+
# the Amazon Web Services cloud to your data center or from your data
|
672
|
+
# center to the Amazon Web Services cloud.
|
654
673
|
#
|
655
674
|
# @!attribute [rw] bridge_arn
|
656
675
|
# The Amazon Resource Number (ARN) of the bridge.
|
657
676
|
# @return [String]
|
658
677
|
#
|
659
678
|
# @!attribute [rw] bridge_messages
|
679
|
+
# Messages with details about the bridge.
|
660
680
|
# @return [Array<Types::MessageDetail>]
|
661
681
|
#
|
662
682
|
# @!attribute [rw] bridge_state
|
683
|
+
# The state of the bridge.
|
663
684
|
# @return [String]
|
664
685
|
#
|
665
686
|
# @!attribute [rw] egress_gateway_bridge
|
687
|
+
# An egress bridge is a cloud-to-ground bridge. The content comes from
|
688
|
+
# an existing MediaConnect flow and is delivered to your premises.
|
666
689
|
# @return [Types::EgressGatewayBridge]
|
667
690
|
#
|
668
691
|
# @!attribute [rw] ingress_gateway_bridge
|
692
|
+
# An ingress bridge is a ground-to-cloud bridge. The content
|
693
|
+
# originates at your premises and is delivered to the cloud.
|
669
694
|
# @return [Types::IngressGatewayBridge]
|
670
695
|
#
|
671
696
|
# @!attribute [rw] name
|
@@ -705,7 +730,8 @@ module Aws::MediaConnect
|
|
705
730
|
include Aws::Structure
|
706
731
|
end
|
707
732
|
|
708
|
-
# The output of the bridge. A flow output is delivered to the
|
733
|
+
# The output of the bridge. A flow output is delivered to the Amazon Web
|
734
|
+
# Services cloud.
|
709
735
|
#
|
710
736
|
# @!attribute [rw] flow_arn
|
711
737
|
# The Amazon Resource Number (ARN) of the cloud flow.
|
@@ -763,7 +789,7 @@ module Aws::MediaConnect
|
|
763
789
|
# premises.
|
764
790
|
#
|
765
791
|
# @!attribute [rw] ip_address
|
766
|
-
# The network output IP
|
792
|
+
# The network output IP address.
|
767
793
|
# @return [String]
|
768
794
|
#
|
769
795
|
# @!attribute [rw] name
|
@@ -775,11 +801,16 @@ module Aws::MediaConnect
|
|
775
801
|
# @return [String]
|
776
802
|
#
|
777
803
|
# @!attribute [rw] port
|
778
|
-
# The network output port.
|
804
|
+
# The network output's port.
|
779
805
|
# @return [Integer]
|
780
806
|
#
|
781
807
|
# @!attribute [rw] protocol
|
782
808
|
# The network output protocol.
|
809
|
+
#
|
810
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
811
|
+
# This reference is maintained for legacy purposes only.
|
812
|
+
#
|
813
|
+
# </note>
|
783
814
|
# @return [String]
|
784
815
|
#
|
785
816
|
# @!attribute [rw] ttl
|
@@ -807,7 +838,7 @@ module Aws::MediaConnect
|
|
807
838
|
# @return [String]
|
808
839
|
#
|
809
840
|
# @!attribute [rw] multicast_source_settings
|
810
|
-
# The
|
841
|
+
# The settings related to the multicast source.
|
811
842
|
# @return [Types::MulticastSourceSettings]
|
812
843
|
#
|
813
844
|
# @!attribute [rw] name
|
@@ -824,6 +855,11 @@ module Aws::MediaConnect
|
|
824
855
|
#
|
825
856
|
# @!attribute [rw] protocol
|
826
857
|
# The network source protocol.
|
858
|
+
#
|
859
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
860
|
+
# This reference is maintained for legacy purposes only.
|
861
|
+
#
|
862
|
+
# </note>
|
827
863
|
# @return [String]
|
828
864
|
#
|
829
865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeNetworkSource AWS API Documentation
|
@@ -842,13 +878,11 @@ module Aws::MediaConnect
|
|
842
878
|
# The output of the bridge.
|
843
879
|
#
|
844
880
|
# @!attribute [rw] flow_output
|
845
|
-
# The output of the
|
846
|
-
# cloud.
|
881
|
+
# The output of the associated flow.
|
847
882
|
# @return [Types::BridgeFlowOutput]
|
848
883
|
#
|
849
884
|
# @!attribute [rw] network_output
|
850
|
-
# The output
|
851
|
-
# premises.
|
885
|
+
# The network output for the bridge.
|
852
886
|
# @return [Types::BridgeNetworkOutput]
|
853
887
|
#
|
854
888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeOutput AWS API Documentation
|
@@ -863,13 +897,11 @@ module Aws::MediaConnect
|
|
863
897
|
# The bridge's source.
|
864
898
|
#
|
865
899
|
# @!attribute [rw] flow_source
|
866
|
-
# The source of the
|
867
|
-
# as an existing cloud flow.
|
900
|
+
# The source of the associated flow.
|
868
901
|
# @return [Types::BridgeFlowSource]
|
869
902
|
#
|
870
903
|
# @!attribute [rw] network_source
|
871
|
-
# The source
|
872
|
-
# premises.
|
904
|
+
# The network source for the bridge.
|
873
905
|
# @return [Types::BridgeNetworkSource]
|
874
906
|
#
|
875
907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeSource AWS API Documentation
|
@@ -881,9 +913,9 @@ module Aws::MediaConnect
|
|
881
913
|
include Aws::Structure
|
882
914
|
end
|
883
915
|
|
884
|
-
#
|
885
|
-
#
|
886
|
-
#
|
916
|
+
# The requested operation would cause a conflict with the current state
|
917
|
+
# of a service resource associated with the request. Resolve the
|
918
|
+
# conflict before retrying this request.
|
887
919
|
#
|
888
920
|
# @!attribute [rw] message
|
889
921
|
# @return [String]
|
@@ -896,9 +928,9 @@ module Aws::MediaConnect
|
|
896
928
|
include Aws::Structure
|
897
929
|
end
|
898
930
|
|
899
|
-
# Exception raised by
|
900
|
-
#
|
901
|
-
# of this exception.
|
931
|
+
# Exception raised by Elemental MediaConnect when creating the bridge.
|
932
|
+
# See the error message for the operation for more information on the
|
933
|
+
# cause of this exception.
|
902
934
|
#
|
903
935
|
# @!attribute [rw] message
|
904
936
|
# @return [String]
|
@@ -911,18 +943,14 @@ module Aws::MediaConnect
|
|
911
943
|
include Aws::Structure
|
912
944
|
end
|
913
945
|
|
914
|
-
# Creates a new bridge. The request must include one source.
|
915
|
-
#
|
916
946
|
# @!attribute [rw] egress_gateway_bridge
|
917
|
-
#
|
918
|
-
#
|
919
|
-
# MediaConnect flow and is delivered to your premises.
|
947
|
+
# An egress bridge is a cloud-to-ground bridge. The content comes from
|
948
|
+
# an existing MediaConnect flow and is delivered to your premises.
|
920
949
|
# @return [Types::AddEgressGatewayBridgeRequest]
|
921
950
|
#
|
922
951
|
# @!attribute [rw] ingress_gateway_bridge
|
923
|
-
#
|
924
|
-
#
|
925
|
-
# is delivered to the cloud.
|
952
|
+
# An ingress bridge is a ground-to-cloud bridge. The content
|
953
|
+
# originates at your premises and is delivered to the cloud.
|
926
954
|
# @return [Types::AddIngressGatewayBridgeRequest]
|
927
955
|
#
|
928
956
|
# @!attribute [rw] name
|
@@ -960,12 +988,8 @@ module Aws::MediaConnect
|
|
960
988
|
include Aws::Structure
|
961
989
|
end
|
962
990
|
|
963
|
-
# The result of a successful CreateBridge request.
|
964
|
-
#
|
965
991
|
# @!attribute [rw] bridge
|
966
|
-
#
|
967
|
-
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
968
|
-
# to your data center or from your data center to the AWS cloud.
|
992
|
+
# The name of the bridge that was created.
|
969
993
|
# @return [Types::Bridge]
|
970
994
|
#
|
971
995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
|
@@ -976,8 +1000,8 @@ module Aws::MediaConnect
|
|
976
1000
|
include Aws::Structure
|
977
1001
|
end
|
978
1002
|
|
979
|
-
# Exception raised by
|
980
|
-
#
|
1003
|
+
# Exception raised by Elemental MediaConnect when creating the flow. See
|
1004
|
+
# the error message for the operation for more information on the cause
|
981
1005
|
# of this exception.
|
982
1006
|
#
|
983
1007
|
# @!attribute [rw] message
|
@@ -991,13 +1015,10 @@ module Aws::MediaConnect
|
|
991
1015
|
include Aws::Structure
|
992
1016
|
end
|
993
1017
|
|
994
|
-
# Creates a new flow. The request must include one source. The request
|
995
|
-
# optionally can include outputs (up to 50) and entitlements (up to 50.)
|
996
|
-
#
|
997
1018
|
# @!attribute [rw] availability_zone
|
998
1019
|
# The Availability Zone that you want to create the flow in. These
|
999
|
-
# options are limited to the Availability Zones within the current
|
1000
|
-
# Region.
|
1020
|
+
# options are limited to the Availability Zones within the current
|
1021
|
+
# Amazon Web Services Region.
|
1001
1022
|
# @return [String]
|
1002
1023
|
#
|
1003
1024
|
# @!attribute [rw] entitlements
|
@@ -1018,7 +1039,7 @@ module Aws::MediaConnect
|
|
1018
1039
|
# @return [Array<Types::AddOutputRequest>]
|
1019
1040
|
#
|
1020
1041
|
# @!attribute [rw] source
|
1021
|
-
# The settings for the source
|
1042
|
+
# The settings for the source that you want to use for the new flow.
|
1022
1043
|
# @return [Types::SetSourceRequest]
|
1023
1044
|
#
|
1024
1045
|
# @!attribute [rw] source_failover_config
|
@@ -1026,6 +1047,7 @@ module Aws::MediaConnect
|
|
1026
1047
|
# @return [Types::FailoverConfig]
|
1027
1048
|
#
|
1028
1049
|
# @!attribute [rw] sources
|
1050
|
+
# The sources that are assigned to the flow.
|
1029
1051
|
# @return [Array<Types::SetSourceRequest>]
|
1030
1052
|
#
|
1031
1053
|
# @!attribute [rw] vpc_interfaces
|
@@ -1033,13 +1055,24 @@ module Aws::MediaConnect
|
|
1033
1055
|
# @return [Array<Types::VpcInterfaceRequest>]
|
1034
1056
|
#
|
1035
1057
|
# @!attribute [rw] maintenance
|
1036
|
-
#
|
1058
|
+
# The maintenance settings you want to use for the flow.
|
1037
1059
|
# @return [Types::AddMaintenance]
|
1038
1060
|
#
|
1039
1061
|
# @!attribute [rw] source_monitoring_config
|
1040
1062
|
# The settings for source monitoring.
|
1041
1063
|
# @return [Types::MonitoringConfig]
|
1042
1064
|
#
|
1065
|
+
# @!attribute [rw] flow_size
|
1066
|
+
# Determines the processing capacity and feature set of the flow. Set
|
1067
|
+
# this optional parameter to `LARGE` if you want to enable NDI outputs
|
1068
|
+
# on the flow.
|
1069
|
+
# @return [String]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] ndi_config
|
1072
|
+
# Specifies the configuration settings for NDI outputs. Required when
|
1073
|
+
# the flow includes NDI outputs.
|
1074
|
+
# @return [Types::NdiConfig]
|
1075
|
+
#
|
1043
1076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
|
1044
1077
|
#
|
1045
1078
|
class CreateFlowRequest < Struct.new(
|
@@ -1053,16 +1086,15 @@ module Aws::MediaConnect
|
|
1053
1086
|
:sources,
|
1054
1087
|
:vpc_interfaces,
|
1055
1088
|
:maintenance,
|
1056
|
-
:source_monitoring_config
|
1089
|
+
:source_monitoring_config,
|
1090
|
+
:flow_size,
|
1091
|
+
:ndi_config)
|
1057
1092
|
SENSITIVE = []
|
1058
1093
|
include Aws::Structure
|
1059
1094
|
end
|
1060
1095
|
|
1061
|
-
# The result of a successful CreateFlow request.
|
1062
|
-
#
|
1063
1096
|
# @!attribute [rw] flow
|
1064
|
-
# The
|
1065
|
-
# entitlements.
|
1097
|
+
# The flow that you created.
|
1066
1098
|
# @return [Types::Flow]
|
1067
1099
|
#
|
1068
1100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowResponse AWS API Documentation
|
@@ -1073,9 +1105,9 @@ module Aws::MediaConnect
|
|
1073
1105
|
include Aws::Structure
|
1074
1106
|
end
|
1075
1107
|
|
1076
|
-
# Exception raised by
|
1077
|
-
#
|
1078
|
-
# of this exception.
|
1108
|
+
# Exception raised by Elemental MediaConnect when creating the gateway.
|
1109
|
+
# See the error message for the operation for more information on the
|
1110
|
+
# cause of this exception.
|
1079
1111
|
#
|
1080
1112
|
# @!attribute [rw] message
|
1081
1113
|
# @return [String]
|
@@ -1088,8 +1120,6 @@ module Aws::MediaConnect
|
|
1088
1120
|
include Aws::Structure
|
1089
1121
|
end
|
1090
1122
|
|
1091
|
-
# Creates a new gateway. The request must include one network (up to 4).
|
1092
|
-
#
|
1093
1123
|
# @!attribute [rw] egress_cidr_blocks
|
1094
1124
|
# The range of IP addresses that are allowed to contribute content or
|
1095
1125
|
# initiate output requests for flows communicating with this gateway.
|
@@ -1103,7 +1133,7 @@ module Aws::MediaConnect
|
|
1103
1133
|
# @return [String]
|
1104
1134
|
#
|
1105
1135
|
# @!attribute [rw] networks
|
1106
|
-
# The list of networks that you want to add.
|
1136
|
+
# The list of networks that you want to add to the gateway.
|
1107
1137
|
# @return [Array<Types::GatewayNetwork>]
|
1108
1138
|
#
|
1109
1139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayRequest AWS API Documentation
|
@@ -1117,7 +1147,7 @@ module Aws::MediaConnect
|
|
1117
1147
|
end
|
1118
1148
|
|
1119
1149
|
# @!attribute [rw] gateway
|
1120
|
-
# The
|
1150
|
+
# The gateway that you created.
|
1121
1151
|
# @return [Types::Gateway]
|
1122
1152
|
#
|
1123
1153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayResponse AWS API Documentation
|
@@ -1129,6 +1159,8 @@ module Aws::MediaConnect
|
|
1129
1159
|
end
|
1130
1160
|
|
1131
1161
|
# @!attribute [rw] bridge_arn
|
1162
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
1163
|
+
# delete.
|
1132
1164
|
# @return [String]
|
1133
1165
|
#
|
1134
1166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeRequest AWS API Documentation
|
@@ -1139,10 +1171,8 @@ module Aws::MediaConnect
|
|
1139
1171
|
include Aws::Structure
|
1140
1172
|
end
|
1141
1173
|
|
1142
|
-
# The result of a successful DeleteBridge request.
|
1143
|
-
#
|
1144
1174
|
# @!attribute [rw] bridge_arn
|
1145
|
-
# The
|
1175
|
+
# The ARN of the deleted bridge.
|
1146
1176
|
# @return [String]
|
1147
1177
|
#
|
1148
1178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeResponse AWS API Documentation
|
@@ -1154,6 +1184,7 @@ module Aws::MediaConnect
|
|
1154
1184
|
end
|
1155
1185
|
|
1156
1186
|
# @!attribute [rw] flow_arn
|
1187
|
+
# The Amazon Resource Name (ARN) of the flow that you want to delete.
|
1157
1188
|
# @return [String]
|
1158
1189
|
#
|
1159
1190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteFlowRequest AWS API Documentation
|
@@ -1164,14 +1195,12 @@ module Aws::MediaConnect
|
|
1164
1195
|
include Aws::Structure
|
1165
1196
|
end
|
1166
1197
|
|
1167
|
-
# The result of a successful DeleteFlow request.
|
1168
|
-
#
|
1169
1198
|
# @!attribute [rw] flow_arn
|
1170
1199
|
# The ARN of the flow that was deleted.
|
1171
1200
|
# @return [String]
|
1172
1201
|
#
|
1173
1202
|
# @!attribute [rw] status
|
1174
|
-
# The status of the flow when the DeleteFlow process begins.
|
1203
|
+
# The status of the flow when the `DeleteFlow` process begins.
|
1175
1204
|
# @return [String]
|
1176
1205
|
#
|
1177
1206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteFlowResponse AWS API Documentation
|
@@ -1184,6 +1213,8 @@ module Aws::MediaConnect
|
|
1184
1213
|
end
|
1185
1214
|
|
1186
1215
|
# @!attribute [rw] gateway_arn
|
1216
|
+
# The Amazon Resource Name (ARN) of the gateway that you want to
|
1217
|
+
# delete.
|
1187
1218
|
# @return [String]
|
1188
1219
|
#
|
1189
1220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayRequest AWS API Documentation
|
@@ -1194,10 +1225,8 @@ module Aws::MediaConnect
|
|
1194
1225
|
include Aws::Structure
|
1195
1226
|
end
|
1196
1227
|
|
1197
|
-
# The result of a successful DeleteGateway request.
|
1198
|
-
#
|
1199
1228
|
# @!attribute [rw] gateway_arn
|
1200
|
-
# The
|
1229
|
+
# The ARN of the gateway that was deleted.
|
1201
1230
|
# @return [String]
|
1202
1231
|
#
|
1203
1232
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayResponse AWS API Documentation
|
@@ -1209,9 +1238,13 @@ module Aws::MediaConnect
|
|
1209
1238
|
end
|
1210
1239
|
|
1211
1240
|
# @!attribute [rw] force
|
1241
|
+
# Force the deregistration of an instance. Force will deregister an
|
1242
|
+
# instance, even if there are bridges running on it.
|
1212
1243
|
# @return [Boolean]
|
1213
1244
|
#
|
1214
1245
|
# @!attribute [rw] gateway_instance_arn
|
1246
|
+
# The Amazon Resource Name (ARN) of the gateway that contains the
|
1247
|
+
# instance that you want to deregister.
|
1215
1248
|
# @return [String]
|
1216
1249
|
#
|
1217
1250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstanceRequest AWS API Documentation
|
@@ -1223,10 +1256,8 @@ module Aws::MediaConnect
|
|
1223
1256
|
include Aws::Structure
|
1224
1257
|
end
|
1225
1258
|
|
1226
|
-
# The result of a successful DeregisterGatewayInstance request.
|
1227
|
-
#
|
1228
1259
|
# @!attribute [rw] gateway_instance_arn
|
1229
|
-
# The
|
1260
|
+
# The ARN of the instance.
|
1230
1261
|
# @return [String]
|
1231
1262
|
#
|
1232
1263
|
# @!attribute [rw] instance_state
|
@@ -1243,6 +1274,8 @@ module Aws::MediaConnect
|
|
1243
1274
|
end
|
1244
1275
|
|
1245
1276
|
# @!attribute [rw] bridge_arn
|
1277
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
1278
|
+
# describe.
|
1246
1279
|
# @return [String]
|
1247
1280
|
#
|
1248
1281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeRequest AWS API Documentation
|
@@ -1253,12 +1286,8 @@ module Aws::MediaConnect
|
|
1253
1286
|
include Aws::Structure
|
1254
1287
|
end
|
1255
1288
|
|
1256
|
-
# The result of a successful DescribeBridge request.
|
1257
|
-
#
|
1258
1289
|
# @!attribute [rw] bridge
|
1259
|
-
#
|
1260
|
-
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
1261
|
-
# to your data center or from your data center to the AWS cloud.
|
1290
|
+
# The bridge that you requested a description of.
|
1262
1291
|
# @return [Types::Bridge]
|
1263
1292
|
#
|
1264
1293
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
|
@@ -1270,6 +1299,7 @@ module Aws::MediaConnect
|
|
1270
1299
|
end
|
1271
1300
|
|
1272
1301
|
# @!attribute [rw] flow_arn
|
1302
|
+
# The ARN of the flow that you want to describe.
|
1273
1303
|
# @return [String]
|
1274
1304
|
#
|
1275
1305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowRequest AWS API Documentation
|
@@ -1280,15 +1310,13 @@ module Aws::MediaConnect
|
|
1280
1310
|
include Aws::Structure
|
1281
1311
|
end
|
1282
1312
|
|
1283
|
-
# The result of a successful DescribeFlow request.
|
1284
|
-
#
|
1285
1313
|
# @!attribute [rw] flow
|
1286
|
-
# The
|
1287
|
-
# entitlements.
|
1314
|
+
# The flow that you requested a description of.
|
1288
1315
|
# @return [Types::Flow]
|
1289
1316
|
#
|
1290
1317
|
# @!attribute [rw] messages
|
1291
|
-
#
|
1318
|
+
# Any errors that apply currently to the flow. If there are no errors,
|
1319
|
+
# MediaConnect will not include this field in the response.
|
1292
1320
|
# @return [Types::Messages]
|
1293
1321
|
#
|
1294
1322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowResponse AWS API Documentation
|
@@ -1301,6 +1329,7 @@ module Aws::MediaConnect
|
|
1301
1329
|
end
|
1302
1330
|
|
1303
1331
|
# @!attribute [rw] flow_arn
|
1332
|
+
# The Amazon Resource Name (ARN) of the flow.
|
1304
1333
|
# @return [String]
|
1305
1334
|
#
|
1306
1335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceMetadataRequest AWS API Documentation
|
@@ -1311,8 +1340,6 @@ module Aws::MediaConnect
|
|
1311
1340
|
include Aws::Structure
|
1312
1341
|
end
|
1313
1342
|
|
1314
|
-
# The result of a successful DescribeFlowSourceMetadata request.
|
1315
|
-
#
|
1316
1343
|
# @!attribute [rw] flow_arn
|
1317
1344
|
# The ARN of the flow that DescribeFlowSourceMetadata was performed
|
1318
1345
|
# on.
|
@@ -1329,7 +1356,7 @@ module Aws::MediaConnect
|
|
1329
1356
|
# @return [Time]
|
1330
1357
|
#
|
1331
1358
|
# @!attribute [rw] transport_media_info
|
1332
|
-
#
|
1359
|
+
# Information about the flow's transport media.
|
1333
1360
|
# @return [Types::TransportMediaInfo]
|
1334
1361
|
#
|
1335
1362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceMetadataResponse AWS API Documentation
|
@@ -1344,6 +1371,7 @@ module Aws::MediaConnect
|
|
1344
1371
|
end
|
1345
1372
|
|
1346
1373
|
# @!attribute [rw] flow_arn
|
1374
|
+
# The Amazon Resource Name (ARN) of the flow.
|
1347
1375
|
# @return [String]
|
1348
1376
|
#
|
1349
1377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceThumbnailRequest AWS API Documentation
|
@@ -1354,8 +1382,6 @@ module Aws::MediaConnect
|
|
1354
1382
|
include Aws::Structure
|
1355
1383
|
end
|
1356
1384
|
|
1357
|
-
# The result of a successful DescribeFlowSourceThumbnail request.
|
1358
|
-
#
|
1359
1385
|
# @!attribute [rw] thumbnail_details
|
1360
1386
|
# The details of the thumbnail, including thumbnail base64 string,
|
1361
1387
|
# timecode and the time when thumbnail was generated.
|
@@ -1370,6 +1396,8 @@ module Aws::MediaConnect
|
|
1370
1396
|
end
|
1371
1397
|
|
1372
1398
|
# @!attribute [rw] gateway_instance_arn
|
1399
|
+
# The Amazon Resource Name (ARN) of the gateway instance that you want
|
1400
|
+
# to describe.
|
1373
1401
|
# @return [String]
|
1374
1402
|
#
|
1375
1403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceRequest AWS API Documentation
|
@@ -1380,10 +1408,8 @@ module Aws::MediaConnect
|
|
1380
1408
|
include Aws::Structure
|
1381
1409
|
end
|
1382
1410
|
|
1383
|
-
# The result of a successful DescribeGatewayInstance request.
|
1384
|
-
#
|
1385
1411
|
# @!attribute [rw] gateway_instance
|
1386
|
-
# The
|
1412
|
+
# The gateway instance that you requested a description of.
|
1387
1413
|
# @return [Types::GatewayInstance]
|
1388
1414
|
#
|
1389
1415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceResponse AWS API Documentation
|
@@ -1395,6 +1421,7 @@ module Aws::MediaConnect
|
|
1395
1421
|
end
|
1396
1422
|
|
1397
1423
|
# @!attribute [rw] gateway_arn
|
1424
|
+
# The ARN of the gateway that you want to describe.
|
1398
1425
|
# @return [String]
|
1399
1426
|
#
|
1400
1427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayRequest AWS API Documentation
|
@@ -1405,10 +1432,8 @@ module Aws::MediaConnect
|
|
1405
1432
|
include Aws::Structure
|
1406
1433
|
end
|
1407
1434
|
|
1408
|
-
# The result of a successful DescribeGateway request.
|
1409
|
-
#
|
1410
1435
|
# @!attribute [rw] gateway
|
1411
|
-
# The
|
1436
|
+
# The gateway that you wanted to describe.
|
1412
1437
|
# @return [Types::Gateway]
|
1413
1438
|
#
|
1414
1439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayResponse AWS API Documentation
|
@@ -1420,6 +1445,7 @@ module Aws::MediaConnect
|
|
1420
1445
|
end
|
1421
1446
|
|
1422
1447
|
# @!attribute [rw] offering_arn
|
1448
|
+
# The ARN of the offering.
|
1423
1449
|
# @return [String]
|
1424
1450
|
#
|
1425
1451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeOfferingRequest AWS API Documentation
|
@@ -1430,11 +1456,8 @@ module Aws::MediaConnect
|
|
1430
1456
|
include Aws::Structure
|
1431
1457
|
end
|
1432
1458
|
|
1433
|
-
# The result of a successful DescribeOffering request.
|
1434
|
-
#
|
1435
1459
|
# @!attribute [rw] offering
|
1436
|
-
#
|
1437
|
-
# usage at a discounted rate each month over a period of time.
|
1460
|
+
# The offering that you requested a description of.
|
1438
1461
|
# @return [Types::Offering]
|
1439
1462
|
#
|
1440
1463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeOfferingResponse AWS API Documentation
|
@@ -1446,6 +1469,7 @@ module Aws::MediaConnect
|
|
1446
1469
|
end
|
1447
1470
|
|
1448
1471
|
# @!attribute [rw] reservation_arn
|
1472
|
+
# The Amazon Resource Name (ARN) of the offering.
|
1449
1473
|
# @return [String]
|
1450
1474
|
#
|
1451
1475
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeReservationRequest AWS API Documentation
|
@@ -1456,8 +1480,6 @@ module Aws::MediaConnect
|
|
1456
1480
|
include Aws::Structure
|
1457
1481
|
end
|
1458
1482
|
|
1459
|
-
# The result of a successful DescribeReservation request.
|
1460
|
-
#
|
1461
1483
|
# @!attribute [rw] reservation
|
1462
1484
|
# A pricing agreement for a discounted rate for a specific outbound
|
1463
1485
|
# bandwidth that your MediaConnect account will use each month over a
|
@@ -1476,28 +1498,29 @@ module Aws::MediaConnect
|
|
1476
1498
|
include Aws::Structure
|
1477
1499
|
end
|
1478
1500
|
|
1479
|
-
# The transport parameters that
|
1480
|
-
# stream.
|
1501
|
+
# The transport parameters that you want to associate with an outbound
|
1502
|
+
# media stream.
|
1481
1503
|
#
|
1482
1504
|
# @!attribute [rw] destination_ip
|
1483
|
-
# The IP address where
|
1505
|
+
# The IP address where you want MediaConnect to send contents of the
|
1506
|
+
# media stream.
|
1484
1507
|
# @return [String]
|
1485
1508
|
#
|
1486
1509
|
# @!attribute [rw] destination_port
|
1487
|
-
# The port to use when
|
1488
|
-
# to the output.
|
1510
|
+
# The port that you want MediaConnect to use when it distributes the
|
1511
|
+
# media stream to the output.
|
1489
1512
|
# @return [Integer]
|
1490
1513
|
#
|
1491
1514
|
# @!attribute [rw] interface
|
1492
|
-
# The VPC interface that
|
1493
|
-
# the output.
|
1515
|
+
# The VPC interface that you want to use for the media stream
|
1516
|
+
# associated with the output.
|
1494
1517
|
# @return [Types::Interface]
|
1495
1518
|
#
|
1496
1519
|
# @!attribute [rw] outbound_ip
|
1497
1520
|
# The IP address that the receiver requires in order to establish a
|
1498
1521
|
# connection with the flow. This value is represented by the elastic
|
1499
1522
|
# network interface IP address of the VPC. This field applies only to
|
1500
|
-
# outputs that use the CDI or ST 2110 JPEG XS protocol.
|
1523
|
+
# outputs that use the CDI or ST 2110 JPEG XS or protocol.
|
1501
1524
|
# @return [String]
|
1502
1525
|
#
|
1503
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DestinationConfiguration AWS API Documentation
|
@@ -1511,8 +1534,8 @@ module Aws::MediaConnect
|
|
1511
1534
|
include Aws::Structure
|
1512
1535
|
end
|
1513
1536
|
|
1514
|
-
# The
|
1515
|
-
#
|
1537
|
+
# The definition of a media stream that you want to associate with the
|
1538
|
+
# output.
|
1516
1539
|
#
|
1517
1540
|
# @!attribute [rw] destination_ip
|
1518
1541
|
# The IP address where you want MediaConnect to send contents of the
|
@@ -1539,6 +1562,10 @@ module Aws::MediaConnect
|
|
1539
1562
|
include Aws::Structure
|
1540
1563
|
end
|
1541
1564
|
|
1565
|
+
# Create a bridge with the egress bridge type. An egress bridge is a
|
1566
|
+
# cloud-to-ground bridge. The content comes from an existing
|
1567
|
+
# MediaConnect flow and is delivered to your premises.
|
1568
|
+
#
|
1542
1569
|
# @!attribute [rw] instance_id
|
1543
1570
|
# The ID of the instance running this bridge.
|
1544
1571
|
# @return [String]
|
@@ -1640,9 +1667,9 @@ module Aws::MediaConnect
|
|
1640
1667
|
# @return [String]
|
1641
1668
|
#
|
1642
1669
|
# @!attribute [rw] region
|
1643
|
-
# The
|
1644
|
-
# This parameter is required for SPEKE encryption and
|
1645
|
-
# static key encryption.
|
1670
|
+
# The Amazon Web Services Region that the API Gateway proxy endpoint
|
1671
|
+
# was created in. This parameter is required for SPEKE encryption and
|
1672
|
+
# is not valid for static key encryption.
|
1646
1673
|
# @return [String]
|
1647
1674
|
#
|
1648
1675
|
# @!attribute [rw] resource_id
|
@@ -1654,12 +1681,12 @@ module Aws::MediaConnect
|
|
1654
1681
|
#
|
1655
1682
|
# @!attribute [rw] role_arn
|
1656
1683
|
# The ARN of the role that you created during setup (when you set up
|
1657
|
-
#
|
1684
|
+
# MediaConnect as a trusted entity).
|
1658
1685
|
# @return [String]
|
1659
1686
|
#
|
1660
1687
|
# @!attribute [rw] secret_arn
|
1661
|
-
# The ARN of the secret that you created in
|
1662
|
-
#
|
1688
|
+
# The ARN of the secret that you created in Secrets Manager to store
|
1689
|
+
# the encryption key. This parameter is required for static key
|
1663
1690
|
# encryption and is not valid for SPEKE encryption.
|
1664
1691
|
# @return [String]
|
1665
1692
|
#
|
@@ -1714,9 +1741,9 @@ module Aws::MediaConnect
|
|
1714
1741
|
# @return [String]
|
1715
1742
|
#
|
1716
1743
|
# @!attribute [rw] subscribers
|
1717
|
-
# The
|
1718
|
-
# receiving accounts (subscribers) will be allowed
|
1719
|
-
# flow using your content as the source.
|
1744
|
+
# The Amazon Web Services account IDs that you want to share your
|
1745
|
+
# content with. The receiving accounts (subscribers) will be allowed
|
1746
|
+
# to create their own flow using your content as the source.
|
1720
1747
|
# @return [Array<String>]
|
1721
1748
|
#
|
1722
1749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Entitlement AWS API Documentation
|
@@ -1743,7 +1770,7 @@ module Aws::MediaConnect
|
|
1743
1770
|
# @return [String]
|
1744
1771
|
#
|
1745
1772
|
# @!attribute [rw] recovery_window
|
1746
|
-
# Search window time to look for dash-7 packets
|
1773
|
+
# Search window time to look for dash-7 packets.
|
1747
1774
|
# @return [Integer]
|
1748
1775
|
#
|
1749
1776
|
# @!attribute [rw] source_priority
|
@@ -1752,6 +1779,9 @@ module Aws::MediaConnect
|
|
1752
1779
|
# @return [Types::SourcePriority]
|
1753
1780
|
#
|
1754
1781
|
# @!attribute [rw] state
|
1782
|
+
# The state of source failover on the flow. If the state is inactive,
|
1783
|
+
# the flow can have only one source. If the state is active, the flow
|
1784
|
+
# can have one or two sources.
|
1755
1785
|
# @return [String]
|
1756
1786
|
#
|
1757
1787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/FailoverConfig AWS API Documentation
|
@@ -1771,12 +1801,12 @@ module Aws::MediaConnect
|
|
1771
1801
|
# @!attribute [rw] availability_zone
|
1772
1802
|
# The Availability Zone that you want to create the flow in. These
|
1773
1803
|
# options are limited to the Availability Zones within the current
|
1774
|
-
#
|
1804
|
+
# Amazon Web Services Region.
|
1775
1805
|
# @return [String]
|
1776
1806
|
#
|
1777
1807
|
# @!attribute [rw] description
|
1778
1808
|
# A description of the flow. This value is not used or seen outside of
|
1779
|
-
# the current
|
1809
|
+
# the current MediaConnect account.
|
1780
1810
|
# @return [String]
|
1781
1811
|
#
|
1782
1812
|
# @!attribute [rw] egress_ip
|
@@ -1806,14 +1836,15 @@ module Aws::MediaConnect
|
|
1806
1836
|
# @return [Array<Types::Output>]
|
1807
1837
|
#
|
1808
1838
|
# @!attribute [rw] source
|
1809
|
-
# The
|
1839
|
+
# The source for the flow.
|
1810
1840
|
# @return [Types::Source]
|
1811
1841
|
#
|
1812
1842
|
# @!attribute [rw] source_failover_config
|
1813
|
-
# The settings for source failover.
|
1843
|
+
# The settings for the source failover.
|
1814
1844
|
# @return [Types::FailoverConfig]
|
1815
1845
|
#
|
1816
1846
|
# @!attribute [rw] sources
|
1847
|
+
# The settings for the sources that are assigned to the flow.
|
1817
1848
|
# @return [Array<Types::Source>]
|
1818
1849
|
#
|
1819
1850
|
# @!attribute [rw] status
|
@@ -1825,13 +1856,24 @@ module Aws::MediaConnect
|
|
1825
1856
|
# @return [Array<Types::VpcInterface>]
|
1826
1857
|
#
|
1827
1858
|
# @!attribute [rw] maintenance
|
1828
|
-
# The maintenance
|
1859
|
+
# The maintenance settings for the flow.
|
1829
1860
|
# @return [Types::Maintenance]
|
1830
1861
|
#
|
1831
1862
|
# @!attribute [rw] source_monitoring_config
|
1832
1863
|
# The settings for source monitoring.
|
1833
1864
|
# @return [Types::MonitoringConfig]
|
1834
1865
|
#
|
1866
|
+
# @!attribute [rw] flow_size
|
1867
|
+
# Determines the processing capacity and feature set of the flow. Set
|
1868
|
+
# this optional parameter to LARGE if you want to enable NDI outputs
|
1869
|
+
# on the flow.
|
1870
|
+
# @return [String]
|
1871
|
+
#
|
1872
|
+
# @!attribute [rw] ndi_config
|
1873
|
+
# Specifies the configuration settings for NDI outputs. Required when
|
1874
|
+
# the flow includes NDI outputs.
|
1875
|
+
# @return [Types::NdiConfig]
|
1876
|
+
#
|
1835
1877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
|
1836
1878
|
#
|
1837
1879
|
class Flow < Struct.new(
|
@@ -1849,26 +1891,26 @@ module Aws::MediaConnect
|
|
1849
1891
|
:status,
|
1850
1892
|
:vpc_interfaces,
|
1851
1893
|
:maintenance,
|
1852
|
-
:source_monitoring_config
|
1894
|
+
:source_monitoring_config,
|
1895
|
+
:flow_size,
|
1896
|
+
:ndi_config)
|
1853
1897
|
SENSITIVE = []
|
1854
1898
|
include Aws::Structure
|
1855
1899
|
end
|
1856
1900
|
|
1857
|
-
#
|
1901
|
+
# A set of parameters that define the media stream.
|
1858
1902
|
#
|
1859
1903
|
# @!attribute [rw] channel_order
|
1860
1904
|
# The format of the audio channel.
|
1861
1905
|
# @return [String]
|
1862
1906
|
#
|
1863
1907
|
# @!attribute [rw] colorimetry
|
1864
|
-
# The format
|
1908
|
+
# The format used for the representation of color.
|
1865
1909
|
# @return [String]
|
1866
1910
|
#
|
1867
1911
|
# @!attribute [rw] exact_framerate
|
1868
1912
|
# The frame rate for the video stream, in frames/second. For example:
|
1869
|
-
# 60000/1001.
|
1870
|
-
# of N/1. For example, if you specify 60, MediaConnect uses 60/1 as
|
1871
|
-
# the exactFramerate.
|
1913
|
+
# 60000/1001.
|
1872
1914
|
# @return [String]
|
1873
1915
|
#
|
1874
1916
|
# @!attribute [rw] par
|
@@ -1881,7 +1923,7 @@ module Aws::MediaConnect
|
|
1881
1923
|
#
|
1882
1924
|
# @!attribute [rw] scan_mode
|
1883
1925
|
# The type of compression that was used to smooth the video’s
|
1884
|
-
# appearance
|
1926
|
+
# appearance.
|
1885
1927
|
# @return [String]
|
1886
1928
|
#
|
1887
1929
|
# @!attribute [rw] tcs
|
@@ -1916,7 +1958,7 @@ module Aws::MediaConnect
|
|
1916
1958
|
# The frame rate for the video stream, in frames/second. For example:
|
1917
1959
|
# 60000/1001. If you specify a whole number, MediaConnect uses a ratio
|
1918
1960
|
# of N/1. For example, if you specify 60, MediaConnect uses 60/1 as
|
1919
|
-
# the exactFramerate
|
1961
|
+
# the `exactFramerate`.
|
1920
1962
|
# @return [String]
|
1921
1963
|
#
|
1922
1964
|
# @!attribute [rw] par
|
@@ -1950,9 +1992,7 @@ module Aws::MediaConnect
|
|
1950
1992
|
include Aws::Structure
|
1951
1993
|
end
|
1952
1994
|
|
1953
|
-
#
|
1954
|
-
# and documentation for the operation for more information on the cause
|
1955
|
-
# of this exception.
|
1995
|
+
# You do not have sufficient access to perform this action.
|
1956
1996
|
#
|
1957
1997
|
# @!attribute [rw] message
|
1958
1998
|
# @return [String]
|
@@ -1984,10 +2024,10 @@ module Aws::MediaConnect
|
|
1984
2024
|
include Aws::Structure
|
1985
2025
|
end
|
1986
2026
|
|
1987
|
-
# Configures settings for the FrozenFrames metric.
|
2027
|
+
# Configures settings for the `FrozenFrames` metric.
|
1988
2028
|
#
|
1989
2029
|
# @!attribute [rw] state
|
1990
|
-
# Indicates whether the FrozenFrames metric is enabled or disabled.
|
2030
|
+
# Indicates whether the `FrozenFrames` metric is enabled or disabled.
|
1991
2031
|
# @return [String]
|
1992
2032
|
#
|
1993
2033
|
# @!attribute [rw] threshold_seconds
|
@@ -2018,6 +2058,7 @@ module Aws::MediaConnect
|
|
2018
2058
|
# @return [String]
|
2019
2059
|
#
|
2020
2060
|
# @!attribute [rw] gateway_messages
|
2061
|
+
# Messages with information about the gateway.
|
2021
2062
|
# @return [Array<Types::MessageDetail>]
|
2022
2063
|
#
|
2023
2064
|
# @!attribute [rw] gateway_state
|
@@ -2073,7 +2114,7 @@ module Aws::MediaConnect
|
|
2073
2114
|
# The availability of the instance to host new bridges. The
|
2074
2115
|
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
2075
2116
|
# LOCKED, no new bridges can be deployed to this instance. If it is
|
2076
|
-
# AVAILABLE, new bridges can be
|
2117
|
+
# AVAILABLE, new bridges can be deployed to this instance.
|
2077
2118
|
# @return [String]
|
2078
2119
|
#
|
2079
2120
|
# @!attribute [rw] connection_status
|
@@ -2085,15 +2126,16 @@ module Aws::MediaConnect
|
|
2085
2126
|
# @return [String]
|
2086
2127
|
#
|
2087
2128
|
# @!attribute [rw] gateway_instance_arn
|
2088
|
-
# The
|
2129
|
+
# The ARN of the gateway.
|
2089
2130
|
# @return [String]
|
2090
2131
|
#
|
2091
2132
|
# @!attribute [rw] instance_id
|
2092
|
-
# The
|
2093
|
-
#
|
2133
|
+
# The instance ID generated by the SSM install. This will begin with
|
2134
|
+
# "mi-".
|
2094
2135
|
# @return [String]
|
2095
2136
|
#
|
2096
2137
|
# @!attribute [rw] instance_messages
|
2138
|
+
# Messages with information about the gateway.
|
2097
2139
|
# @return [Array<Types::MessageDetail>]
|
2098
2140
|
#
|
2099
2141
|
# @!attribute [rw] instance_state
|
@@ -2150,8 +2192,8 @@ module Aws::MediaConnect
|
|
2150
2192
|
#
|
2151
2193
|
# @!attribute [rw] description
|
2152
2194
|
# A description of the entitlement. This description appears only on
|
2153
|
-
# the
|
2154
|
-
#
|
2195
|
+
# the MediaConnect console and will not be seen by the subscriber or
|
2196
|
+
# end user.
|
2155
2197
|
# @return [String]
|
2156
2198
|
#
|
2157
2199
|
# @!attribute [rw] encryption
|
@@ -2173,9 +2215,9 @@ module Aws::MediaConnect
|
|
2173
2215
|
# @return [String]
|
2174
2216
|
#
|
2175
2217
|
# @!attribute [rw] subscribers
|
2176
|
-
# The
|
2177
|
-
# receiving accounts (subscribers) will be allowed
|
2178
|
-
# flows using your content as the source.
|
2218
|
+
# The Amazon Web Services account IDs that you want to share your
|
2219
|
+
# content with. The receiving accounts (subscribers) will be allowed
|
2220
|
+
# to create their own flows using your content as the source.
|
2179
2221
|
# @return [Array<String>]
|
2180
2222
|
#
|
2181
2223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GrantEntitlementRequest AWS API Documentation
|
@@ -2191,9 +2233,9 @@ module Aws::MediaConnect
|
|
2191
2233
|
include Aws::Structure
|
2192
2234
|
end
|
2193
2235
|
|
2194
|
-
# Exception raised by
|
2195
|
-
#
|
2196
|
-
# of this exception.
|
2236
|
+
# Exception raised by Elemental MediaConnect when granting the
|
2237
|
+
# entitlement. See the error message for the operation for more
|
2238
|
+
# information on the cause of this exception.
|
2197
2239
|
#
|
2198
2240
|
# @!attribute [rw] message
|
2199
2241
|
# @return [String]
|
@@ -2206,13 +2248,13 @@ module Aws::MediaConnect
|
|
2206
2248
|
include Aws::Structure
|
2207
2249
|
end
|
2208
2250
|
|
2209
|
-
# Grants an entitlement on a flow.
|
2210
|
-
#
|
2211
2251
|
# @!attribute [rw] entitlements
|
2212
2252
|
# The list of entitlements that you want to grant.
|
2213
2253
|
# @return [Array<Types::GrantEntitlementRequest>]
|
2214
2254
|
#
|
2215
2255
|
# @!attribute [rw] flow_arn
|
2256
|
+
# The Amazon Resource Name (ARN) of the flow that you want to grant
|
2257
|
+
# entitlements on.
|
2216
2258
|
# @return [String]
|
2217
2259
|
#
|
2218
2260
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GrantFlowEntitlementsRequest AWS API Documentation
|
@@ -2224,8 +2266,6 @@ module Aws::MediaConnect
|
|
2224
2266
|
include Aws::Structure
|
2225
2267
|
end
|
2226
2268
|
|
2227
|
-
# The result of a successful GrantFlowEntitlements request.
|
2228
|
-
#
|
2229
2269
|
# @!attribute [rw] entitlements
|
2230
2270
|
# The entitlements that were just granted.
|
2231
2271
|
# @return [Array<Types::Entitlement>]
|
@@ -2243,6 +2283,10 @@ module Aws::MediaConnect
|
|
2243
2283
|
include Aws::Structure
|
2244
2284
|
end
|
2245
2285
|
|
2286
|
+
# Create a bridge with the ingress bridge type. An ingress bridge is a
|
2287
|
+
# ground-to-cloud bridge. The content originates at your premises and is
|
2288
|
+
# delivered to the cloud.
|
2289
|
+
#
|
2246
2290
|
# @!attribute [rw] instance_id
|
2247
2291
|
# The ID of the instance running this bridge.
|
2248
2292
|
# @return [String]
|
@@ -2343,9 +2387,8 @@ module Aws::MediaConnect
|
|
2343
2387
|
include Aws::Structure
|
2344
2388
|
end
|
2345
2389
|
|
2346
|
-
#
|
2347
|
-
#
|
2348
|
-
# of this exception.
|
2390
|
+
# The server encountered an internal error and is unable to complete the
|
2391
|
+
# request.
|
2349
2392
|
#
|
2350
2393
|
# @!attribute [rw] message
|
2351
2394
|
# @return [String]
|
@@ -2359,12 +2402,32 @@ module Aws::MediaConnect
|
|
2359
2402
|
end
|
2360
2403
|
|
2361
2404
|
# @!attribute [rw] filter_arn
|
2405
|
+
# Filter the list results to display only the bridges associated with
|
2406
|
+
# the selected ARN.
|
2362
2407
|
# @return [String]
|
2363
2408
|
#
|
2364
2409
|
# @!attribute [rw] max_results
|
2410
|
+
# The maximum number of results to return per API request.
|
2411
|
+
#
|
2412
|
+
# For example, you submit a `ListBridges` request with `MaxResults`
|
2413
|
+
# set at 5. Although 20 items match your request, the service returns
|
2414
|
+
# no more than the first 5 items. (The service also returns a
|
2415
|
+
# `NextToken` value that you can use to fetch the next batch of
|
2416
|
+
# results.)
|
2417
|
+
#
|
2418
|
+
# The service might return fewer results than the `MaxResults` value.
|
2419
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2420
|
+
# to pagination with a maximum of 10 results per page.
|
2365
2421
|
# @return [Integer]
|
2366
2422
|
#
|
2367
2423
|
# @!attribute [rw] next_token
|
2424
|
+
# The token that identifies the batch of results that you want to see.
|
2425
|
+
#
|
2426
|
+
# For example, you submit a `ListBridges` request with `MaxResults`
|
2427
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2428
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2429
|
+
# submit the `ListBridges` request a second time and specify the
|
2430
|
+
# `NextToken` value.
|
2368
2431
|
# @return [String]
|
2369
2432
|
#
|
2370
2433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesRequest AWS API Documentation
|
@@ -2377,21 +2440,18 @@ module Aws::MediaConnect
|
|
2377
2440
|
include Aws::Structure
|
2378
2441
|
end
|
2379
2442
|
|
2380
|
-
# The result of a successful ListBridges request. The response includes
|
2381
|
-
# bridge summaries and the NextToken to use in a subsequent ListBridges
|
2382
|
-
# request.
|
2383
|
-
#
|
2384
2443
|
# @!attribute [rw] bridges
|
2385
2444
|
# A list of bridge summaries.
|
2386
2445
|
# @return [Array<Types::ListedBridge>]
|
2387
2446
|
#
|
2388
2447
|
# @!attribute [rw] next_token
|
2389
|
-
# The token that identifies
|
2390
|
-
#
|
2448
|
+
# The token that identifies the batch of results that you want to see.
|
2449
|
+
#
|
2450
|
+
# For example, you submit a `ListBridges` request with `MaxResults`
|
2391
2451
|
# set at 5. The service returns the first batch of results (up to 5)
|
2392
|
-
# and a NextToken value. To see the next batch of results, you can
|
2393
|
-
# submit the ListBridges request a second time and specify the
|
2394
|
-
# NextToken value.
|
2452
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2453
|
+
# submit the `ListBridges` request a second time and specify the
|
2454
|
+
# `NextToken` value.
|
2395
2455
|
# @return [String]
|
2396
2456
|
#
|
2397
2457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesResponse AWS API Documentation
|
@@ -2404,9 +2464,26 @@ module Aws::MediaConnect
|
|
2404
2464
|
end
|
2405
2465
|
|
2406
2466
|
# @!attribute [rw] max_results
|
2467
|
+
# The maximum number of results to return per API request.
|
2468
|
+
#
|
2469
|
+
# For example, you submit a `ListEntitlements` request with set at 5.
|
2470
|
+
# Although 20 items match your request, the service returns no more
|
2471
|
+
# than the first 5 items. (The service also returns a NextToken value
|
2472
|
+
# that you can use to fetch the next batch of results.)
|
2473
|
+
#
|
2474
|
+
# The service might return fewer results than the `MaxResults` value.
|
2475
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2476
|
+
# to pagination with a maximum of 20 results per page.
|
2407
2477
|
# @return [Integer]
|
2408
2478
|
#
|
2409
2479
|
# @!attribute [rw] next_token
|
2480
|
+
# The token that identifies the batch of results that you want to see.
|
2481
|
+
#
|
2482
|
+
# For example, you submit a `ListEntitlements` request with
|
2483
|
+
# `MaxResults` set at 5. The service returns the first batch of
|
2484
|
+
# results (up to 5) and a `NextToken` value. To see the next batch of
|
2485
|
+
# results, you can submit the `ListEntitlements` request a second time
|
2486
|
+
# and specify the `NextToken` value.
|
2410
2487
|
# @return [String]
|
2411
2488
|
#
|
2412
2489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListEntitlementsRequest AWS API Documentation
|
@@ -2418,22 +2495,19 @@ module Aws::MediaConnect
|
|
2418
2495
|
include Aws::Structure
|
2419
2496
|
end
|
2420
2497
|
|
2421
|
-
# The result of a successful ListEntitlements request. The response
|
2422
|
-
# includes the ARN of each entitlement, the name of the associated flow,
|
2423
|
-
# and the NextToken to use in a subsequent ListEntitlements request.
|
2424
|
-
#
|
2425
2498
|
# @!attribute [rw] entitlements
|
2426
|
-
# A list of entitlements that have been granted to you from other
|
2427
|
-
# accounts.
|
2499
|
+
# A list of entitlements that have been granted to you from other
|
2500
|
+
# Amazon Web Services accounts.
|
2428
2501
|
# @return [Array<Types::ListedEntitlement>]
|
2429
2502
|
#
|
2430
2503
|
# @!attribute [rw] next_token
|
2431
|
-
# The token that identifies
|
2432
|
-
#
|
2433
|
-
#
|
2434
|
-
#
|
2435
|
-
#
|
2436
|
-
#
|
2504
|
+
# The token that identifies the batch of results that you want to see.
|
2505
|
+
#
|
2506
|
+
# For example, you submit a ListEntitlements request with `MaxResults`
|
2507
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2508
|
+
# and a NextToken value. To see the next batch of results, you can
|
2509
|
+
# submit the `ListEntitlements` request a second time and specify the
|
2510
|
+
# `NextToken` value.
|
2437
2511
|
# @return [String]
|
2438
2512
|
#
|
2439
2513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListEntitlementsResponse AWS API Documentation
|
@@ -2446,9 +2520,26 @@ module Aws::MediaConnect
|
|
2446
2520
|
end
|
2447
2521
|
|
2448
2522
|
# @!attribute [rw] max_results
|
2523
|
+
# The maximum number of results to return per API request.
|
2524
|
+
#
|
2525
|
+
# For example, you submit a `ListFlows` request with MaxResults set at
|
2526
|
+
# 5. Although 20 items match your request, the service returns no more
|
2527
|
+
# than the first 5 items. (The service also returns a `NextToken`
|
2528
|
+
# value that you can use to fetch the next batch of results.)
|
2529
|
+
#
|
2530
|
+
# The service might return fewer results than the `MaxResults` value.
|
2531
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2532
|
+
# to pagination with a maximum of 10 results per page.
|
2449
2533
|
# @return [Integer]
|
2450
2534
|
#
|
2451
2535
|
# @!attribute [rw] next_token
|
2536
|
+
# The token that identifies the batch of results that you want to see.
|
2537
|
+
#
|
2538
|
+
# For example, you submit a `ListFlows` request with MaxResults set at
|
2539
|
+
# 5. The service returns the first batch of results (up to 5) and a
|
2540
|
+
# `NextToken` value. To see the next batch of results, you can submit
|
2541
|
+
# the `ListFlows` request a second time and specify the `NextToken`
|
2542
|
+
# value.
|
2452
2543
|
# @return [String]
|
2453
2544
|
#
|
2454
2545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlowsRequest AWS API Documentation
|
@@ -2460,20 +2551,18 @@ module Aws::MediaConnect
|
|
2460
2551
|
include Aws::Structure
|
2461
2552
|
end
|
2462
2553
|
|
2463
|
-
# The result of a successful ListFlows request. The response includes
|
2464
|
-
# flow summaries and the NextToken to use in a subsequent ListFlows
|
2465
|
-
# request.
|
2466
|
-
#
|
2467
2554
|
# @!attribute [rw] flows
|
2468
2555
|
# A list of flow summaries.
|
2469
2556
|
# @return [Array<Types::ListedFlow>]
|
2470
2557
|
#
|
2471
2558
|
# @!attribute [rw] next_token
|
2472
|
-
# The token that identifies
|
2473
|
-
#
|
2474
|
-
#
|
2475
|
-
#
|
2476
|
-
#
|
2559
|
+
# The token that identifies the batch of results that you want to see.
|
2560
|
+
#
|
2561
|
+
# For example, you submit a `ListFlows` request with MaxResults set at
|
2562
|
+
# 5. The service returns the first batch of results (up to 5) and a
|
2563
|
+
# `NextToken` value. To see the next batch of results, you can submit
|
2564
|
+
# the `ListFlows` request a second time and specify the `NextToken`
|
2565
|
+
# value.
|
2477
2566
|
# @return [String]
|
2478
2567
|
#
|
2479
2568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlowsResponse AWS API Documentation
|
@@ -2486,12 +2575,32 @@ module Aws::MediaConnect
|
|
2486
2575
|
end
|
2487
2576
|
|
2488
2577
|
# @!attribute [rw] filter_arn
|
2578
|
+
# Filter the list results to display only the instances associated
|
2579
|
+
# with the selected Gateway ARN.
|
2489
2580
|
# @return [String]
|
2490
2581
|
#
|
2491
2582
|
# @!attribute [rw] max_results
|
2583
|
+
# The maximum number of results to return per API request.
|
2584
|
+
#
|
2585
|
+
# For example, you submit a ListInstances request with `MaxResults`
|
2586
|
+
# set at 5. Although 20 items match your request, the service returns
|
2587
|
+
# no more than the first 5 items. (The service also returns a
|
2588
|
+
# `NextToken` value that you can use to fetch the next batch of
|
2589
|
+
# results.)
|
2590
|
+
#
|
2591
|
+
# The service might return fewer results than the `MaxResults` value.
|
2592
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2593
|
+
# to pagination with a maximum of 10 results per page.
|
2492
2594
|
# @return [Integer]
|
2493
2595
|
#
|
2494
2596
|
# @!attribute [rw] next_token
|
2597
|
+
# The token that identifies the batch of results that you want to see.
|
2598
|
+
#
|
2599
|
+
# For example, you submit a `ListInstances` request with `MaxResults`
|
2600
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2601
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2602
|
+
# submit the `ListInstances` request a second time and specify the
|
2603
|
+
# `NextToken` value.
|
2495
2604
|
# @return [String]
|
2496
2605
|
#
|
2497
2606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesRequest AWS API Documentation
|
@@ -2504,21 +2613,18 @@ module Aws::MediaConnect
|
|
2504
2613
|
include Aws::Structure
|
2505
2614
|
end
|
2506
2615
|
|
2507
|
-
# The result of a successful ListGatewayInstances request. The response
|
2508
|
-
# includes instance summaries and the NextToken to use in a subsequent
|
2509
|
-
# ListInstances request.
|
2510
|
-
#
|
2511
2616
|
# @!attribute [rw] instances
|
2512
2617
|
# A list of instance summaries.
|
2513
2618
|
# @return [Array<Types::ListedGatewayInstance>]
|
2514
2619
|
#
|
2515
2620
|
# @!attribute [rw] next_token
|
2516
|
-
# The token that identifies
|
2517
|
-
#
|
2621
|
+
# The token that identifies the batch of results that you want to see.
|
2622
|
+
#
|
2623
|
+
# For example, you submit a `ListInstances` request with MaxResults
|
2518
2624
|
# set at 5. The service returns the first batch of results (up to 5)
|
2519
|
-
# and a NextToken value. To see the next batch of results, you can
|
2520
|
-
# submit the ListInstances request a second time and specify the
|
2521
|
-
# NextToken value.
|
2625
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2626
|
+
# submit the `ListInstances` request a second time and specify the
|
2627
|
+
# `NextToken` value.
|
2522
2628
|
# @return [String]
|
2523
2629
|
#
|
2524
2630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesResponse AWS API Documentation
|
@@ -2531,9 +2637,27 @@ module Aws::MediaConnect
|
|
2531
2637
|
end
|
2532
2638
|
|
2533
2639
|
# @!attribute [rw] max_results
|
2640
|
+
# The maximum number of results to return per API request.
|
2641
|
+
#
|
2642
|
+
# For example, you submit a `ListGateways` request with `MaxResults`
|
2643
|
+
# set at 5. Although 20 items match your request, the service returns
|
2644
|
+
# no more than the first 5 items. (The service also returns a
|
2645
|
+
# `NextToken` value that you can use to fetch the next batch of
|
2646
|
+
# results.)
|
2647
|
+
#
|
2648
|
+
# The service might return fewer results than the `MaxResults` value.
|
2649
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2650
|
+
# to pagination with a maximum of 10 results per page.
|
2534
2651
|
# @return [Integer]
|
2535
2652
|
#
|
2536
2653
|
# @!attribute [rw] next_token
|
2654
|
+
# The token that identifies the batch of results that you want to see.
|
2655
|
+
#
|
2656
|
+
# For example, you submit a `ListGateways` request with `MaxResults`
|
2657
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2658
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2659
|
+
# submit the `ListGateways` request a second time and specify the
|
2660
|
+
# `NextToken` value.
|
2537
2661
|
# @return [String]
|
2538
2662
|
#
|
2539
2663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysRequest AWS API Documentation
|
@@ -2545,21 +2669,18 @@ module Aws::MediaConnect
|
|
2545
2669
|
include Aws::Structure
|
2546
2670
|
end
|
2547
2671
|
|
2548
|
-
# The result of a successful ListGateways request. The response includes
|
2549
|
-
# gateway summaries and the NextToken to use in a subsequent
|
2550
|
-
# ListGateways request.
|
2551
|
-
#
|
2552
2672
|
# @!attribute [rw] gateways
|
2553
2673
|
# A list of gateway summaries.
|
2554
2674
|
# @return [Array<Types::ListedGateway>]
|
2555
2675
|
#
|
2556
2676
|
# @!attribute [rw] next_token
|
2557
|
-
# The token that identifies
|
2558
|
-
#
|
2677
|
+
# The token that identifies the batch of results that you want to see.
|
2678
|
+
#
|
2679
|
+
# For example, you submit a `ListGateways` request with `MaxResults`
|
2559
2680
|
# set at 5. The service returns the first batch of results (up to 5)
|
2560
|
-
# and a NextToken value. To see the next batch of results, you can
|
2561
|
-
# submit the ListGateways request a second time and specify the
|
2562
|
-
# NextToken value.
|
2681
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2682
|
+
# submit the `ListGateways` request a second time and specify the
|
2683
|
+
# `NextToken` value.
|
2563
2684
|
# @return [String]
|
2564
2685
|
#
|
2565
2686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysResponse AWS API Documentation
|
@@ -2572,9 +2693,27 @@ module Aws::MediaConnect
|
|
2572
2693
|
end
|
2573
2694
|
|
2574
2695
|
# @!attribute [rw] max_results
|
2696
|
+
# The maximum number of results to return per API request.
|
2697
|
+
#
|
2698
|
+
# For example, you submit a `ListOfferings` request with `MaxResults`
|
2699
|
+
# set at 5. Although 20 items match your request, the service returns
|
2700
|
+
# no more than the first 5 items. (The service also returns a
|
2701
|
+
# `NextToken` value that you can use to fetch the next batch of
|
2702
|
+
# results.)
|
2703
|
+
#
|
2704
|
+
# The service might return fewer results than the `MaxResults` value.
|
2705
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2706
|
+
# to pagination with a maximum of 10 results per page.
|
2575
2707
|
# @return [Integer]
|
2576
2708
|
#
|
2577
2709
|
# @!attribute [rw] next_token
|
2710
|
+
# The token that identifies the batch of results that you want to see.
|
2711
|
+
#
|
2712
|
+
# For example, you submit a `ListOfferings` request with `MaxResults`
|
2713
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2714
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2715
|
+
# submit the `ListOfferings` request a second time and specify the
|
2716
|
+
# `NextToken` value.
|
2578
2717
|
# @return [String]
|
2579
2718
|
#
|
2580
2719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListOfferingsRequest AWS API Documentation
|
@@ -2586,25 +2725,19 @@ module Aws::MediaConnect
|
|
2586
2725
|
include Aws::Structure
|
2587
2726
|
end
|
2588
2727
|
|
2589
|
-
# The result of a successful ListOfferings request. The response
|
2590
|
-
# includes the details of each offering that your account is eligible
|
2591
|
-
# for. The response includes the following information for each
|
2592
|
-
# offering: description, duration, outbound bandwidth, price, Amazon
|
2593
|
-
# Resource Name (ARN), and the NextToken to use in a subsequent
|
2594
|
-
# ListOfferings request.
|
2595
|
-
#
|
2596
2728
|
# @!attribute [rw] next_token
|
2597
|
-
# The token that identifies
|
2598
|
-
#
|
2729
|
+
# The token that identifies the batch of results that you want to see.
|
2730
|
+
#
|
2731
|
+
# For example, you submit a `ListOfferings` request with `MaxResults`
|
2599
2732
|
# set at 5. The service returns the first batch of results (up to 5)
|
2600
|
-
# and a NextToken value. To see the next batch of results, you can
|
2601
|
-
# submit the ListOfferings request a second time and specify the
|
2602
|
-
# NextToken value.
|
2733
|
+
# and a `NextToken` value. To see the next batch of results, you can
|
2734
|
+
# submit the `ListOfferings` request a second time and specify the
|
2735
|
+
# `NextToken` value.
|
2603
2736
|
# @return [String]
|
2604
2737
|
#
|
2605
2738
|
# @!attribute [rw] offerings
|
2606
2739
|
# A list of offerings that are available to this account in the
|
2607
|
-
# current
|
2740
|
+
# current Amazon Web Services Region.
|
2608
2741
|
# @return [Array<Types::Offering>]
|
2609
2742
|
#
|
2610
2743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListOfferingsResponse AWS API Documentation
|
@@ -2617,9 +2750,27 @@ module Aws::MediaConnect
|
|
2617
2750
|
end
|
2618
2751
|
|
2619
2752
|
# @!attribute [rw] max_results
|
2753
|
+
# The maximum number of results to return per API request.
|
2754
|
+
#
|
2755
|
+
# For example, you submit a `ListReservations` request with
|
2756
|
+
# `MaxResults` set at 5. Although 20 items match your request, the
|
2757
|
+
# service returns no more than the first 5 items. (The service also
|
2758
|
+
# returns a NextToken value that you can use to fetch the next batch
|
2759
|
+
# of results.)
|
2760
|
+
#
|
2761
|
+
# The service might return fewer results than the `MaxResults` value.
|
2762
|
+
# If `MaxResults` is not included in the request, the service defaults
|
2763
|
+
# to pagination with a maximum of 10 results per page.
|
2620
2764
|
# @return [Integer]
|
2621
2765
|
#
|
2622
2766
|
# @!attribute [rw] next_token
|
2767
|
+
# The token that identifies the batch of results that you want to see.
|
2768
|
+
#
|
2769
|
+
# For example, you submit a `ListReservations` request with
|
2770
|
+
# `MaxResults` set at 5. The service returns the first batch of
|
2771
|
+
# results (up to 5) and a `NextToken` value. To see the next batch of
|
2772
|
+
# results, you can submit the `ListOfferings` request a second time
|
2773
|
+
# and specify the `NextToken` value.
|
2623
2774
|
# @return [String]
|
2624
2775
|
#
|
2625
2776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListReservationsRequest AWS API Documentation
|
@@ -2631,25 +2782,19 @@ module Aws::MediaConnect
|
|
2631
2782
|
include Aws::Structure
|
2632
2783
|
end
|
2633
2784
|
|
2634
|
-
# The result of a successful ListReservations request. The response
|
2635
|
-
# includes the details of each offering that your account is eligible
|
2636
|
-
# for. The response includes the following information for each
|
2637
|
-
# offering: description, duration, outbound bandwidth, price, Amazon
|
2638
|
-
# Resource Name (ARN), and the NextToken to use in a subsequent
|
2639
|
-
# ListOfferings request.
|
2640
|
-
#
|
2641
2785
|
# @!attribute [rw] next_token
|
2642
|
-
# The token that identifies
|
2643
|
-
#
|
2644
|
-
#
|
2645
|
-
#
|
2646
|
-
#
|
2647
|
-
#
|
2786
|
+
# The token that identifies the batch of results that you want to see.
|
2787
|
+
#
|
2788
|
+
# For example, you submit a `ListReservations` request with
|
2789
|
+
# `MaxResults` set at 5. The service returns the first batch of
|
2790
|
+
# results (up to 5) and a `NextToken` value. To see the next batch of
|
2791
|
+
# results, you can submit the `ListReservations` request a second time
|
2792
|
+
# and specify the `NextToken` value.
|
2648
2793
|
# @return [String]
|
2649
2794
|
#
|
2650
2795
|
# @!attribute [rw] reservations
|
2651
2796
|
# A list of all reservations that have been purchased by this account
|
2652
|
-
# in the current
|
2797
|
+
# in the current Amazon Web Services Region.
|
2653
2798
|
# @return [Array<Types::Reservation>]
|
2654
2799
|
#
|
2655
2800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListReservationsResponse AWS API Documentation
|
@@ -2662,6 +2807,8 @@ module Aws::MediaConnect
|
|
2662
2807
|
end
|
2663
2808
|
|
2664
2809
|
# @!attribute [rw] resource_arn
|
2810
|
+
# The Amazon Resource Name (ARN) that identifies the MediaConnect
|
2811
|
+
# resource for which to list the tags.
|
2665
2812
|
# @return [String]
|
2666
2813
|
#
|
2667
2814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListTagsForResourceRequest AWS API Documentation
|
@@ -2672,8 +2819,6 @@ module Aws::MediaConnect
|
|
2672
2819
|
include Aws::Structure
|
2673
2820
|
end
|
2674
2821
|
|
2675
|
-
# The tags for the resource.
|
2676
|
-
#
|
2677
2822
|
# @!attribute [rw] tags
|
2678
2823
|
# A map from tag keys to values. Tag keys can have a maximum character
|
2679
2824
|
# length of 128 characters, and tag values can have a maximum length
|
@@ -2695,6 +2840,7 @@ module Aws::MediaConnect
|
|
2695
2840
|
# @return [String]
|
2696
2841
|
#
|
2697
2842
|
# @!attribute [rw] bridge_state
|
2843
|
+
# The state of the bridge.
|
2698
2844
|
# @return [String]
|
2699
2845
|
#
|
2700
2846
|
# @!attribute [rw] bridge_type
|
@@ -2721,7 +2867,8 @@ module Aws::MediaConnect
|
|
2721
2867
|
include Aws::Structure
|
2722
2868
|
end
|
2723
2869
|
|
2724
|
-
# An entitlement that has been granted to you from other
|
2870
|
+
# An entitlement that has been granted to you from other Amazon Web
|
2871
|
+
# Services accounts.
|
2725
2872
|
#
|
2726
2873
|
# @!attribute [rw] data_transfer_subscriber_fee_percent
|
2727
2874
|
# Percentage from 0-100 of the data transfer cost to be billed to the
|
@@ -2746,8 +2893,8 @@ module Aws::MediaConnect
|
|
2746
2893
|
include Aws::Structure
|
2747
2894
|
end
|
2748
2895
|
|
2749
|
-
#
|
2750
|
-
#
|
2896
|
+
# A summary of a flow, including its ARN, Availability Zone, and source
|
2897
|
+
# type.
|
2751
2898
|
#
|
2752
2899
|
# @!attribute [rw] availability_zone
|
2753
2900
|
# The Availability Zone that the flow was created in.
|
@@ -2767,9 +2914,9 @@ module Aws::MediaConnect
|
|
2767
2914
|
#
|
2768
2915
|
# @!attribute [rw] source_type
|
2769
2916
|
# The type of source. This value is either owned (originated somewhere
|
2770
|
-
# other than an
|
2771
|
-
# account) or entitled (originated at
|
2772
|
-
#
|
2917
|
+
# other than an MediaConnect flow owned by another Amazon Web Services
|
2918
|
+
# account) or entitled (originated at a MediaConnect flow owned by
|
2919
|
+
# another Amazon Web Services account).
|
2773
2920
|
# @return [String]
|
2774
2921
|
#
|
2775
2922
|
# @!attribute [rw] status
|
@@ -2777,7 +2924,7 @@ module Aws::MediaConnect
|
|
2777
2924
|
# @return [String]
|
2778
2925
|
#
|
2779
2926
|
# @!attribute [rw] maintenance
|
2780
|
-
# The maintenance
|
2927
|
+
# The maintenance settings for the flow.
|
2781
2928
|
# @return [Types::Maintenance]
|
2782
2929
|
#
|
2783
2930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedFlow AWS API Documentation
|
@@ -2794,13 +2941,14 @@ module Aws::MediaConnect
|
|
2794
2941
|
include Aws::Structure
|
2795
2942
|
end
|
2796
2943
|
|
2797
|
-
#
|
2944
|
+
# A summary of a gateway, including its name, ARN, and status.
|
2798
2945
|
#
|
2799
2946
|
# @!attribute [rw] gateway_arn
|
2800
2947
|
# The Amazon Resource Name (ARN) of the gateway.
|
2801
2948
|
# @return [String]
|
2802
2949
|
#
|
2803
2950
|
# @!attribute [rw] gateway_state
|
2951
|
+
# The status of the gateway.
|
2804
2952
|
# @return [String]
|
2805
2953
|
#
|
2806
2954
|
# @!attribute [rw] name
|
@@ -2817,7 +2965,7 @@ module Aws::MediaConnect
|
|
2817
2965
|
include Aws::Structure
|
2818
2966
|
end
|
2819
2967
|
|
2820
|
-
#
|
2968
|
+
# A summary of an instance.
|
2821
2969
|
#
|
2822
2970
|
# @!attribute [rw] gateway_arn
|
2823
2971
|
# The Amazon Resource Name (ARN) of the gateway.
|
@@ -2847,7 +2995,7 @@ module Aws::MediaConnect
|
|
2847
2995
|
include Aws::Structure
|
2848
2996
|
end
|
2849
2997
|
|
2850
|
-
# The maintenance setting of a flow
|
2998
|
+
# The maintenance setting of a flow.
|
2851
2999
|
#
|
2852
3000
|
# @!attribute [rw] maintenance_day
|
2853
3001
|
# A day of a week when the maintenance will happen. Use
|
@@ -2880,11 +3028,10 @@ module Aws::MediaConnect
|
|
2880
3028
|
include Aws::Structure
|
2881
3029
|
end
|
2882
3030
|
|
2883
|
-
# A
|
2884
|
-
# ancillary data. After you add a media stream to
|
2885
|
-
# associate it with sources and outputs
|
2886
|
-
#
|
2887
|
-
# output can consist of one or many media streams.
|
3031
|
+
# A media stream represents one component of your content, such as
|
3032
|
+
# video, audio, or ancillary data. After you add a media stream to your
|
3033
|
+
# flow, you can associate it with sources and outputs that use the ST
|
3034
|
+
# 2110 JPEG XS or CDI protocol.
|
2888
3035
|
#
|
2889
3036
|
# @!attribute [rw] attributes
|
2890
3037
|
# Attributes that are related to the media stream.
|
@@ -2940,7 +3087,7 @@ module Aws::MediaConnect
|
|
2940
3087
|
# Attributes that are related to the media stream.
|
2941
3088
|
#
|
2942
3089
|
# @!attribute [rw] fmtp
|
2943
|
-
#
|
3090
|
+
# The settings that you want to use to define the media stream.
|
2944
3091
|
# @return [Types::Fmtp]
|
2945
3092
|
#
|
2946
3093
|
# @!attribute [rw] lang
|
@@ -2992,7 +3139,9 @@ module Aws::MediaConnect
|
|
2992
3139
|
# @return [String]
|
2993
3140
|
#
|
2994
3141
|
# @!attribute [rw] encoding_parameters
|
2995
|
-
#
|
3142
|
+
# A collection of parameters that determine how MediaConnect will
|
3143
|
+
# convert the content. These fields only apply to outputs on flows
|
3144
|
+
# that have a CDI source.
|
2996
3145
|
# @return [Types::EncodingParameters]
|
2997
3146
|
#
|
2998
3147
|
# @!attribute [rw] media_stream_name
|
@@ -3014,8 +3163,7 @@ module Aws::MediaConnect
|
|
3014
3163
|
# parameters for that association.
|
3015
3164
|
#
|
3016
3165
|
# @!attribute [rw] destination_configurations
|
3017
|
-
# The
|
3018
|
-
# stream.
|
3166
|
+
# The media streams that you want to associate with the output.
|
3019
3167
|
# @return [Array<Types::DestinationConfigurationRequest>]
|
3020
3168
|
#
|
3021
3169
|
# @!attribute [rw] encoding_name
|
@@ -3059,12 +3207,11 @@ module Aws::MediaConnect
|
|
3059
3207
|
# @return [String]
|
3060
3208
|
#
|
3061
3209
|
# @!attribute [rw] input_configurations
|
3062
|
-
# The
|
3063
|
-
# stream.
|
3210
|
+
# The media streams that you want to associate with the source.
|
3064
3211
|
# @return [Array<Types::InputConfiguration>]
|
3065
3212
|
#
|
3066
3213
|
# @!attribute [rw] media_stream_name
|
3067
|
-
#
|
3214
|
+
# A name that helps you distinguish one media stream from another.
|
3068
3215
|
# @return [String]
|
3069
3216
|
#
|
3070
3217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MediaStreamSourceConfiguration AWS API Documentation
|
@@ -3077,11 +3224,11 @@ module Aws::MediaConnect
|
|
3077
3224
|
include Aws::Structure
|
3078
3225
|
end
|
3079
3226
|
|
3080
|
-
# The
|
3081
|
-
#
|
3227
|
+
# The media stream that you want to associate with the source, and the
|
3228
|
+
# parameters for that association.
|
3082
3229
|
#
|
3083
3230
|
# @!attribute [rw] encoding_name
|
3084
|
-
# The format
|
3231
|
+
# The format that was used to encode the data. For ancillary data
|
3085
3232
|
# streams, set the encoding name to smpte291. For audio streams, set
|
3086
3233
|
# the encoding name to pcm. For video, 2110 streams, set the encoding
|
3087
3234
|
# name to raw. For video, JPEG XS streams, set the encoding name to
|
@@ -3089,8 +3236,7 @@ module Aws::MediaConnect
|
|
3089
3236
|
# @return [String]
|
3090
3237
|
#
|
3091
3238
|
# @!attribute [rw] input_configurations
|
3092
|
-
# The
|
3093
|
-
# stream.
|
3239
|
+
# The media streams that you want to associate with the source.
|
3094
3240
|
# @return [Array<Types::InputConfigurationRequest>]
|
3095
3241
|
#
|
3096
3242
|
# @!attribute [rw] media_stream_name
|
@@ -3107,6 +3253,8 @@ module Aws::MediaConnect
|
|
3107
3253
|
include Aws::Structure
|
3108
3254
|
end
|
3109
3255
|
|
3256
|
+
# The details of an error message.
|
3257
|
+
#
|
3110
3258
|
# @!attribute [rw] code
|
3111
3259
|
# The error code.
|
3112
3260
|
# @return [String]
|
@@ -3148,7 +3296,7 @@ module Aws::MediaConnect
|
|
3148
3296
|
# The settings for source monitoring.
|
3149
3297
|
#
|
3150
3298
|
# @!attribute [rw] thumbnail_state
|
3151
|
-
#
|
3299
|
+
# Indicates whether thumbnails are enabled or disabled.
|
3152
3300
|
# @return [String]
|
3153
3301
|
#
|
3154
3302
|
# @!attribute [rw] audio_monitoring_settings
|
@@ -3177,6 +3325,7 @@ module Aws::MediaConnect
|
|
3177
3325
|
# The settings related to the multicast source.
|
3178
3326
|
#
|
3179
3327
|
# @!attribute [rw] multicast_source_ip
|
3328
|
+
# The IP address of the source for source-specific multicast (SSM).
|
3180
3329
|
# @return [String]
|
3181
3330
|
#
|
3182
3331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MulticastSourceSettings AWS API Documentation
|
@@ -3187,9 +3336,65 @@ module Aws::MediaConnect
|
|
3187
3336
|
include Aws::Structure
|
3188
3337
|
end
|
3189
3338
|
|
3190
|
-
#
|
3191
|
-
#
|
3192
|
-
#
|
3339
|
+
# Specifies the configuration settings for NDI outputs. Required when
|
3340
|
+
# the flow includes NDI outputs.
|
3341
|
+
#
|
3342
|
+
# @!attribute [rw] ndi_state
|
3343
|
+
# A setting that controls whether NDI outputs can be used in the flow.
|
3344
|
+
# Must be ENABLED to add NDI outputs. Default is DISABLED.
|
3345
|
+
# @return [String]
|
3346
|
+
#
|
3347
|
+
# @!attribute [rw] machine_name
|
3348
|
+
# A prefix for the names of the NDI sources that the flow creates. If
|
3349
|
+
# a custom name isn't specified, MediaConnect generates a unique
|
3350
|
+
# 12-character ID as the prefix.
|
3351
|
+
# @return [String]
|
3352
|
+
#
|
3353
|
+
# @!attribute [rw] ndi_discovery_servers
|
3354
|
+
# A list of up to three NDI discovery server configurations. While not
|
3355
|
+
# required by the API, this configuration is necessary for NDI
|
3356
|
+
# functionality to work properly.
|
3357
|
+
# @return [Array<Types::NdiDiscoveryServerConfig>]
|
3358
|
+
#
|
3359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiConfig AWS API Documentation
|
3360
|
+
#
|
3361
|
+
class NdiConfig < Struct.new(
|
3362
|
+
:ndi_state,
|
3363
|
+
:machine_name,
|
3364
|
+
:ndi_discovery_servers)
|
3365
|
+
SENSITIVE = []
|
3366
|
+
include Aws::Structure
|
3367
|
+
end
|
3368
|
+
|
3369
|
+
# Specifies the configuration settings for individual NDI discovery
|
3370
|
+
# servers. A maximum of 3 servers is allowed.
|
3371
|
+
#
|
3372
|
+
# @!attribute [rw] discovery_server_address
|
3373
|
+
# The unique network address of the NDI discovery server.
|
3374
|
+
# @return [String]
|
3375
|
+
#
|
3376
|
+
# @!attribute [rw] discovery_server_port
|
3377
|
+
# The port for the NDI discovery server. Defaults to 5959 if a custom
|
3378
|
+
# port isn't specified.
|
3379
|
+
# @return [Integer]
|
3380
|
+
#
|
3381
|
+
# @!attribute [rw] vpc_interface_adapter
|
3382
|
+
# The identifier for the Virtual Private Cloud (VPC) network interface
|
3383
|
+
# used by the flow.
|
3384
|
+
# @return [String]
|
3385
|
+
#
|
3386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiDiscoveryServerConfig AWS API Documentation
|
3387
|
+
#
|
3388
|
+
class NdiDiscoveryServerConfig < Struct.new(
|
3389
|
+
:discovery_server_address,
|
3390
|
+
:discovery_server_port,
|
3391
|
+
:vpc_interface_adapter)
|
3392
|
+
SENSITIVE = []
|
3393
|
+
include Aws::Structure
|
3394
|
+
end
|
3395
|
+
|
3396
|
+
# One or more of the resources in the request does not exist in the
|
3397
|
+
# system.
|
3193
3398
|
#
|
3194
3399
|
# @!attribute [rw] message
|
3195
3400
|
# @return [String]
|
@@ -3292,9 +3497,8 @@ module Aws::MediaConnect
|
|
3292
3497
|
# @return [String]
|
3293
3498
|
#
|
3294
3499
|
# @!attribute [rw] media_live_input_arn
|
3295
|
-
# The input ARN of the
|
3296
|
-
#
|
3297
|
-
# input.
|
3500
|
+
# The input ARN of the MediaLive channel. This parameter is relevant
|
3501
|
+
# only for outputs that were added by creating a MediaLive input.
|
3298
3502
|
# @return [String]
|
3299
3503
|
#
|
3300
3504
|
# @!attribute [rw] media_stream_output_configurations
|
@@ -3325,7 +3529,7 @@ module Aws::MediaConnect
|
|
3325
3529
|
# @return [Types::VpcInterfaceAttachment]
|
3326
3530
|
#
|
3327
3531
|
# @!attribute [rw] bridge_arn
|
3328
|
-
# The ARN of the bridge
|
3532
|
+
# The ARN of the bridge added to this output.
|
3329
3533
|
# @return [String]
|
3330
3534
|
#
|
3331
3535
|
# @!attribute [rw] bridge_ports
|
@@ -3359,11 +3563,8 @@ module Aws::MediaConnect
|
|
3359
3563
|
include Aws::Structure
|
3360
3564
|
end
|
3361
3565
|
|
3362
|
-
# Submits a request to purchase an offering, which creates a reservation
|
3363
|
-
# in your AWS account. If you already have an active reservation, you
|
3364
|
-
# can't purchase another offering.
|
3365
|
-
#
|
3366
3566
|
# @!attribute [rw] offering_arn
|
3567
|
+
# The Amazon Resource Name (ARN) of the offering.
|
3367
3568
|
# @return [String]
|
3368
3569
|
#
|
3369
3570
|
# @!attribute [rw] reservation_name
|
@@ -3372,12 +3573,14 @@ module Aws::MediaConnect
|
|
3372
3573
|
#
|
3373
3574
|
# @!attribute [rw] start
|
3374
3575
|
# The date and time that you want the reservation to begin, in
|
3375
|
-
# Coordinated Universal Time (UTC).
|
3376
|
-
#
|
3377
|
-
#
|
3378
|
-
#
|
3379
|
-
#
|
3380
|
-
#
|
3576
|
+
# Coordinated Universal Time (UTC).
|
3577
|
+
#
|
3578
|
+
# You can specify any date and time between 12:00am on the first day
|
3579
|
+
# of the current month to the current time on today's date,
|
3580
|
+
# inclusive. Specify the start in a 24-hour notation. Use the
|
3581
|
+
# following format: `YYYY-MM-DDTHH:mm:SSZ`, where `T` and `Z` are
|
3582
|
+
# literal characters. For example, to specify 11:30pm on March 5,
|
3583
|
+
# 2020, enter `2020-03-05T23:30:00Z`.
|
3381
3584
|
# @return [String]
|
3382
3585
|
#
|
3383
3586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/PurchaseOfferingRequest AWS API Documentation
|
@@ -3390,16 +3593,9 @@ module Aws::MediaConnect
|
|
3390
3593
|
include Aws::Structure
|
3391
3594
|
end
|
3392
3595
|
|
3393
|
-
# The result of a successful PurchaseOffering request.
|
3394
|
-
#
|
3395
3596
|
# @!attribute [rw] reservation
|
3396
|
-
#
|
3397
|
-
#
|
3398
|
-
# specific time period. The discounted rate in the reservation applies
|
3399
|
-
# to outbound bandwidth for all flows from your account until your
|
3400
|
-
# account reaches the amount of bandwidth in your reservation. If you
|
3401
|
-
# use more outbound bandwidth than the agreed upon amount in a single
|
3402
|
-
# month, the overage is charged at the on-demand rate.
|
3597
|
+
# The details of the reservation that you just created when you
|
3598
|
+
# purchased the offering.
|
3403
3599
|
# @return [Types::Reservation]
|
3404
3600
|
#
|
3405
3601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/PurchaseOfferingResponse AWS API Documentation
|
@@ -3411,9 +3607,12 @@ module Aws::MediaConnect
|
|
3411
3607
|
end
|
3412
3608
|
|
3413
3609
|
# @!attribute [rw] bridge_arn
|
3610
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
3611
|
+
# update.
|
3414
3612
|
# @return [String]
|
3415
3613
|
#
|
3416
3614
|
# @!attribute [rw] output_name
|
3615
|
+
# The name of the bridge output that you want to remove.
|
3417
3616
|
# @return [String]
|
3418
3617
|
#
|
3419
3618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputRequest AWS API Documentation
|
@@ -3425,12 +3624,12 @@ module Aws::MediaConnect
|
|
3425
3624
|
include Aws::Structure
|
3426
3625
|
end
|
3427
3626
|
|
3428
|
-
# The result of a successful RemoveBridgeOutput request.
|
3429
|
-
#
|
3430
3627
|
# @!attribute [rw] bridge_arn
|
3628
|
+
# The ARN of the bridge from which the output was removed.
|
3431
3629
|
# @return [String]
|
3432
3630
|
#
|
3433
3631
|
# @!attribute [rw] output_name
|
3632
|
+
# The name of the bridge output that was removed.
|
3434
3633
|
# @return [String]
|
3435
3634
|
#
|
3436
3635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputResponse AWS API Documentation
|
@@ -3443,9 +3642,12 @@ module Aws::MediaConnect
|
|
3443
3642
|
end
|
3444
3643
|
|
3445
3644
|
# @!attribute [rw] bridge_arn
|
3645
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
3646
|
+
# update.
|
3446
3647
|
# @return [String]
|
3447
3648
|
#
|
3448
3649
|
# @!attribute [rw] source_name
|
3650
|
+
# The name of the bridge source that you want to remove.
|
3449
3651
|
# @return [String]
|
3450
3652
|
#
|
3451
3653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceRequest AWS API Documentation
|
@@ -3457,12 +3659,12 @@ module Aws::MediaConnect
|
|
3457
3659
|
include Aws::Structure
|
3458
3660
|
end
|
3459
3661
|
|
3460
|
-
# The result of a successful RemoveBridgeSource request.
|
3461
|
-
#
|
3462
3662
|
# @!attribute [rw] bridge_arn
|
3663
|
+
# The ARN of the bridge from which the source was removed.
|
3463
3664
|
# @return [String]
|
3464
3665
|
#
|
3465
3666
|
# @!attribute [rw] source_name
|
3667
|
+
# The name of the bridge source that was removed.
|
3466
3668
|
# @return [String]
|
3467
3669
|
#
|
3468
3670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceResponse AWS API Documentation
|
@@ -3475,9 +3677,11 @@ module Aws::MediaConnect
|
|
3475
3677
|
end
|
3476
3678
|
|
3477
3679
|
# @!attribute [rw] flow_arn
|
3680
|
+
# The Amazon Resource Name (ARN) of the flow that you want to update.
|
3478
3681
|
# @return [String]
|
3479
3682
|
#
|
3480
3683
|
# @!attribute [rw] media_stream_name
|
3684
|
+
# The name of the media stream that you want to remove.
|
3481
3685
|
# @return [String]
|
3482
3686
|
#
|
3483
3687
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowMediaStreamRequest AWS API Documentation
|
@@ -3489,10 +3693,8 @@ module Aws::MediaConnect
|
|
3489
3693
|
include Aws::Structure
|
3490
3694
|
end
|
3491
3695
|
|
3492
|
-
# The result of a successful RemoveFlowMediaStream request.
|
3493
|
-
#
|
3494
3696
|
# @!attribute [rw] flow_arn
|
3495
|
-
# The
|
3697
|
+
# The ARN of the flow that was updated.
|
3496
3698
|
# @return [String]
|
3497
3699
|
#
|
3498
3700
|
# @!attribute [rw] media_stream_name
|
@@ -3509,9 +3711,12 @@ module Aws::MediaConnect
|
|
3509
3711
|
end
|
3510
3712
|
|
3511
3713
|
# @!attribute [rw] flow_arn
|
3714
|
+
# The Amazon Resource Name (ARN) of the flow that you want to remove
|
3715
|
+
# an output from.
|
3512
3716
|
# @return [String]
|
3513
3717
|
#
|
3514
3718
|
# @!attribute [rw] output_arn
|
3719
|
+
# The ARN of the output that you want to remove.
|
3515
3720
|
# @return [String]
|
3516
3721
|
#
|
3517
3722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowOutputRequest AWS API Documentation
|
@@ -3523,11 +3728,8 @@ module Aws::MediaConnect
|
|
3523
3728
|
include Aws::Structure
|
3524
3729
|
end
|
3525
3730
|
|
3526
|
-
# The result of a successful RemoveFlowOutput request including the flow
|
3527
|
-
# ARN and the output ARN that was removed.
|
3528
|
-
#
|
3529
3731
|
# @!attribute [rw] flow_arn
|
3530
|
-
# The ARN of the flow that
|
3732
|
+
# The ARN of the flow that the output was removed from.
|
3531
3733
|
# @return [String]
|
3532
3734
|
#
|
3533
3735
|
# @!attribute [rw] output_arn
|
@@ -3544,9 +3746,12 @@ module Aws::MediaConnect
|
|
3544
3746
|
end
|
3545
3747
|
|
3546
3748
|
# @!attribute [rw] flow_arn
|
3749
|
+
# The Amazon Resource Name (ARN) of the flow that you want to remove a
|
3750
|
+
# source from.
|
3547
3751
|
# @return [String]
|
3548
3752
|
#
|
3549
3753
|
# @!attribute [rw] source_arn
|
3754
|
+
# The ARN of the source that you want to remove.
|
3550
3755
|
# @return [String]
|
3551
3756
|
#
|
3552
3757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowSourceRequest AWS API Documentation
|
@@ -3558,11 +3763,8 @@ module Aws::MediaConnect
|
|
3558
3763
|
include Aws::Structure
|
3559
3764
|
end
|
3560
3765
|
|
3561
|
-
# The result of a successful RemoveFlowSource request including the flow
|
3562
|
-
# ARN and the source ARN that was removed.
|
3563
|
-
#
|
3564
3766
|
# @!attribute [rw] flow_arn
|
3565
|
-
# The ARN of the flow that
|
3767
|
+
# The ARN of the flow that the source was removed from.
|
3566
3768
|
# @return [String]
|
3567
3769
|
#
|
3568
3770
|
# @!attribute [rw] source_arn
|
@@ -3579,9 +3781,12 @@ module Aws::MediaConnect
|
|
3579
3781
|
end
|
3580
3782
|
|
3581
3783
|
# @!attribute [rw] flow_arn
|
3784
|
+
# The Amazon Resource Name (ARN) of the flow that you want to remove a
|
3785
|
+
# VPC interface from.
|
3582
3786
|
# @return [String]
|
3583
3787
|
#
|
3584
3788
|
# @!attribute [rw] vpc_interface_name
|
3789
|
+
# The name of the VPC interface that you want to remove.
|
3585
3790
|
# @return [String]
|
3586
3791
|
#
|
3587
3792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowVpcInterfaceRequest AWS API Documentation
|
@@ -3593,9 +3798,6 @@ module Aws::MediaConnect
|
|
3593
3798
|
include Aws::Structure
|
3594
3799
|
end
|
3595
3800
|
|
3596
|
-
# The result of a successful RemoveFlowVpcInterface request including
|
3597
|
-
# the flow ARN and the VPC interface name that was removed.
|
3598
|
-
#
|
3599
3801
|
# @!attribute [rw] flow_arn
|
3600
3802
|
# The ARN of the flow that is associated with the VPC interface you
|
3601
3803
|
# removed.
|
@@ -3603,7 +3805,7 @@ module Aws::MediaConnect
|
|
3603
3805
|
#
|
3604
3806
|
# @!attribute [rw] non_deleted_network_interface_ids
|
3605
3807
|
# IDs of network interfaces associated with the removed VPC interface
|
3606
|
-
# that
|
3808
|
+
# that MediaConnect was unable to remove.
|
3607
3809
|
# @return [Array<String>]
|
3608
3810
|
#
|
3609
3811
|
# @!attribute [rw] vpc_interface_name
|
@@ -3736,26 +3938,13 @@ module Aws::MediaConnect
|
|
3736
3938
|
include Aws::Structure
|
3737
3939
|
end
|
3738
3940
|
|
3739
|
-
# Exception raised by AWS Elemental MediaConnect. See the error message
|
3740
|
-
# and documentation for the operation for more information on the cause
|
3741
|
-
# of this exception.
|
3742
|
-
#
|
3743
|
-
# @!attribute [rw] message
|
3744
|
-
# The error message returned by AWS Elemental MediaConnect.
|
3745
|
-
# @return [String]
|
3746
|
-
#
|
3747
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ResponseError AWS API Documentation
|
3748
|
-
#
|
3749
|
-
class ResponseError < Struct.new(
|
3750
|
-
:message)
|
3751
|
-
SENSITIVE = []
|
3752
|
-
include Aws::Structure
|
3753
|
-
end
|
3754
|
-
|
3755
3941
|
# @!attribute [rw] entitlement_arn
|
3942
|
+
# The Amazon Resource Name (ARN) of the entitlement that you want to
|
3943
|
+
# revoke.
|
3756
3944
|
# @return [String]
|
3757
3945
|
#
|
3758
3946
|
# @!attribute [rw] flow_arn
|
3947
|
+
# The flow that you want to revoke an entitlement from.
|
3759
3948
|
# @return [String]
|
3760
3949
|
#
|
3761
3950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RevokeFlowEntitlementRequest AWS API Documentation
|
@@ -3767,10 +3956,6 @@ module Aws::MediaConnect
|
|
3767
3956
|
include Aws::Structure
|
3768
3957
|
end
|
3769
3958
|
|
3770
|
-
# The result of a successful RevokeFlowEntitlement request. The response
|
3771
|
-
# includes the ARN of the flow that was updated and the ARN of the
|
3772
|
-
# entitlement that was revoked.
|
3773
|
-
#
|
3774
3959
|
# @!attribute [rw] entitlement_arn
|
3775
3960
|
# The ARN of the entitlement that was revoked.
|
3776
3961
|
# @return [String]
|
@@ -3788,9 +3973,7 @@ module Aws::MediaConnect
|
|
3788
3973
|
include Aws::Structure
|
3789
3974
|
end
|
3790
3975
|
|
3791
|
-
#
|
3792
|
-
# and documentation for the operation for more information on the cause
|
3793
|
-
# of this exception.
|
3976
|
+
# The service is currently unavailable or busy.
|
3794
3977
|
#
|
3795
3978
|
# @!attribute [rw] message
|
3796
3979
|
# @return [String]
|
@@ -3833,7 +4016,7 @@ module Aws::MediaConnect
|
|
3833
4016
|
#
|
3834
4017
|
# @!attribute [rw] description
|
3835
4018
|
# A description for the source. This value is not used or seen outside
|
3836
|
-
# of the current
|
4019
|
+
# of the current MediaConnect account.
|
3837
4020
|
# @return [String]
|
3838
4021
|
#
|
3839
4022
|
# @!attribute [rw] entitlement_arn
|
@@ -3853,7 +4036,7 @@ module Aws::MediaConnect
|
|
3853
4036
|
#
|
3854
4037
|
# @!attribute [rw] max_latency
|
3855
4038
|
# The maximum latency in milliseconds. This parameter applies only to
|
3856
|
-
# RIST-based
|
4039
|
+
# RIST-based and Zixi-based streams.
|
3857
4040
|
# @return [Integer]
|
3858
4041
|
#
|
3859
4042
|
# @!attribute [rw] max_sync_buffer
|
@@ -3881,6 +4064,11 @@ module Aws::MediaConnect
|
|
3881
4064
|
#
|
3882
4065
|
# @!attribute [rw] protocol
|
3883
4066
|
# The protocol that is used by the source.
|
4067
|
+
#
|
4068
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
4069
|
+
# This reference is maintained for legacy purposes only.
|
4070
|
+
#
|
4071
|
+
# </note>
|
3884
4072
|
# @return [String]
|
3885
4073
|
#
|
3886
4074
|
# @!attribute [rw] sender_control_port
|
@@ -3948,10 +4136,10 @@ module Aws::MediaConnect
|
|
3948
4136
|
include Aws::Structure
|
3949
4137
|
end
|
3950
4138
|
|
3951
|
-
# Configures settings for the SilentAudio metric.
|
4139
|
+
# Configures settings for the `SilentAudio` metric.
|
3952
4140
|
#
|
3953
4141
|
# @!attribute [rw] state
|
3954
|
-
# Indicates whether the SilentAudio metric is enabled or disabled.
|
4142
|
+
# Indicates whether the `SilentAudio` metric is enabled or disabled.
|
3955
4143
|
# @return [String]
|
3956
4144
|
#
|
3957
4145
|
# @!attribute [rw] threshold_seconds
|
@@ -3982,14 +4170,14 @@ module Aws::MediaConnect
|
|
3982
4170
|
#
|
3983
4171
|
# @!attribute [rw] description
|
3984
4172
|
# A description for the source. This value is not used or seen outside
|
3985
|
-
# of the current
|
4173
|
+
# of the current MediaConnect account.
|
3986
4174
|
# @return [String]
|
3987
4175
|
#
|
3988
4176
|
# @!attribute [rw] entitlement_arn
|
3989
4177
|
# The ARN of the entitlement that allows you to subscribe to content
|
3990
|
-
# that comes from another
|
3991
|
-
# content originator and the ARN is generated as part of
|
3992
|
-
# originator's flow.
|
4178
|
+
# that comes from another Amazon Web Services account. The entitlement
|
4179
|
+
# is set by the content originator and the ARN is generated as part of
|
4180
|
+
# the originator's flow.
|
3993
4181
|
# @return [String]
|
3994
4182
|
#
|
3995
4183
|
# @!attribute [rw] ingest_ip
|
@@ -4011,12 +4199,12 @@ module Aws::MediaConnect
|
|
4011
4199
|
# @return [String]
|
4012
4200
|
#
|
4013
4201
|
# @!attribute [rw] sender_control_port
|
4014
|
-
# The
|
4202
|
+
# The IP address that the flow communicates with to initiate
|
4015
4203
|
# connection with the sender.
|
4016
4204
|
# @return [Integer]
|
4017
4205
|
#
|
4018
4206
|
# @!attribute [rw] sender_ip_address
|
4019
|
-
# The
|
4207
|
+
# The port that the flow uses to send outbound requests to initiate
|
4020
4208
|
# connection with the sender.
|
4021
4209
|
# @return [String]
|
4022
4210
|
#
|
@@ -4084,6 +4272,7 @@ module Aws::MediaConnect
|
|
4084
4272
|
end
|
4085
4273
|
|
4086
4274
|
# @!attribute [rw] flow_arn
|
4275
|
+
# The Amazon Resource Name (ARN) of the flow that you want to start.
|
4087
4276
|
# @return [String]
|
4088
4277
|
#
|
4089
4278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StartFlowRequest AWS API Documentation
|
@@ -4094,14 +4283,12 @@ module Aws::MediaConnect
|
|
4094
4283
|
include Aws::Structure
|
4095
4284
|
end
|
4096
4285
|
|
4097
|
-
# The result of a successful StartFlow request.
|
4098
|
-
#
|
4099
4286
|
# @!attribute [rw] flow_arn
|
4100
4287
|
# The ARN of the flow that you started.
|
4101
4288
|
# @return [String]
|
4102
4289
|
#
|
4103
4290
|
# @!attribute [rw] status
|
4104
|
-
# The status of the flow when the StartFlow process begins.
|
4291
|
+
# The status of the flow when the `StartFlow` process begins.
|
4105
4292
|
# @return [String]
|
4106
4293
|
#
|
4107
4294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StartFlowResponse AWS API Documentation
|
@@ -4114,6 +4301,7 @@ module Aws::MediaConnect
|
|
4114
4301
|
end
|
4115
4302
|
|
4116
4303
|
# @!attribute [rw] flow_arn
|
4304
|
+
# The Amazon Resource Name (ARN) of the flow that you want to stop.
|
4117
4305
|
# @return [String]
|
4118
4306
|
#
|
4119
4307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StopFlowRequest AWS API Documentation
|
@@ -4124,14 +4312,12 @@ module Aws::MediaConnect
|
|
4124
4312
|
include Aws::Structure
|
4125
4313
|
end
|
4126
4314
|
|
4127
|
-
# The result of a successful StopFlow request.
|
4128
|
-
#
|
4129
4315
|
# @!attribute [rw] flow_arn
|
4130
4316
|
# The ARN of the flow that you stopped.
|
4131
4317
|
# @return [String]
|
4132
4318
|
#
|
4133
4319
|
# @!attribute [rw] status
|
4134
|
-
# The status of the flow when the StopFlow process begins.
|
4320
|
+
# The status of the flow when the `StopFlow` process begins.
|
4135
4321
|
# @return [String]
|
4136
4322
|
#
|
4137
4323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StopFlowResponse AWS API Documentation
|
@@ -4143,11 +4329,9 @@ module Aws::MediaConnect
|
|
4143
4329
|
include Aws::Structure
|
4144
4330
|
end
|
4145
4331
|
|
4146
|
-
# The tags to add to the resource. Tag keys can have a maximum character
|
4147
|
-
# length of 128 characters, and tag values can have a maximum length of
|
4148
|
-
# 256 characters.
|
4149
|
-
#
|
4150
4332
|
# @!attribute [rw] resource_arn
|
4333
|
+
# The Amazon Resource Name (ARN) that identifies the MediaConnect
|
4334
|
+
# resource to which to add tags.
|
4151
4335
|
# @return [String]
|
4152
4336
|
#
|
4153
4337
|
# @!attribute [rw] tags
|
@@ -4201,9 +4385,7 @@ module Aws::MediaConnect
|
|
4201
4385
|
include Aws::Structure
|
4202
4386
|
end
|
4203
4387
|
|
4204
|
-
#
|
4205
|
-
# and documentation for the operation for more information on the cause
|
4206
|
-
# of this exception.
|
4388
|
+
# The request was denied due to request throttling.
|
4207
4389
|
#
|
4208
4390
|
# @!attribute [rw] message
|
4209
4391
|
# @return [String]
|
@@ -4223,7 +4405,7 @@ module Aws::MediaConnect
|
|
4223
4405
|
# The range of IP addresses that should be allowed to initiate output
|
4224
4406
|
# requests to this flow. These IP addresses should be in the form of a
|
4225
4407
|
# Classless Inter-Domain Routing (CIDR) block; for example,
|
4226
|
-
# 10.0.0.0/16
|
4408
|
+
# 10.0.0.0/16
|
4227
4409
|
# @return [Array<String>]
|
4228
4410
|
#
|
4229
4411
|
# @!attribute [rw] max_bitrate
|
@@ -4233,7 +4415,7 @@ module Aws::MediaConnect
|
|
4233
4415
|
#
|
4234
4416
|
# @!attribute [rw] max_latency
|
4235
4417
|
# The maximum latency in milliseconds. This parameter applies only to
|
4236
|
-
# RIST-based
|
4418
|
+
# RIST-based and Zixi-based streams.
|
4237
4419
|
# @return [Integer]
|
4238
4420
|
#
|
4239
4421
|
# @!attribute [rw] max_sync_buffer
|
@@ -4252,6 +4434,11 @@ module Aws::MediaConnect
|
|
4252
4434
|
#
|
4253
4435
|
# @!attribute [rw] protocol
|
4254
4436
|
# The protocol that is used by the source or output.
|
4437
|
+
#
|
4438
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
4439
|
+
# This reference is maintained for legacy purposes only.
|
4440
|
+
#
|
4441
|
+
# </note>
|
4255
4442
|
# @return [String]
|
4256
4443
|
#
|
4257
4444
|
# @!attribute [rw] remote_id
|
@@ -4286,6 +4473,15 @@ module Aws::MediaConnect
|
|
4286
4473
|
# parameter applies only to Zixi and SRT caller-based streams.
|
4287
4474
|
# @return [String]
|
4288
4475
|
#
|
4476
|
+
# @!attribute [rw] ndi_speed_hq_quality
|
4477
|
+
# A quality setting for the NDI Speed HQ encoder.
|
4478
|
+
# @return [Integer]
|
4479
|
+
#
|
4480
|
+
# @!attribute [rw] ndi_program_name
|
4481
|
+
# A suffix for the names of the NDI sources that the flow creates. If
|
4482
|
+
# a custom name isn't specified, MediaConnect uses the output name.
|
4483
|
+
# @return [String]
|
4484
|
+
#
|
4289
4485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Transport AWS API Documentation
|
4290
4486
|
#
|
4291
4487
|
class Transport < Struct.new(
|
@@ -4301,7 +4497,9 @@ module Aws::MediaConnect
|
|
4301
4497
|
:smoothing_latency,
|
4302
4498
|
:source_listener_address,
|
4303
4499
|
:source_listener_port,
|
4304
|
-
:stream_id
|
4500
|
+
:stream_id,
|
4501
|
+
:ndi_speed_hq_quality,
|
4502
|
+
:ndi_program_name)
|
4305
4503
|
SENSITIVE = []
|
4306
4504
|
include Aws::Structure
|
4307
4505
|
end
|
@@ -4408,9 +4606,12 @@ module Aws::MediaConnect
|
|
4408
4606
|
end
|
4409
4607
|
|
4410
4608
|
# @!attribute [rw] resource_arn
|
4609
|
+
# The Amazon Resource Name (ARN) of the resource that you want to
|
4610
|
+
# untag.
|
4411
4611
|
# @return [String]
|
4412
4612
|
#
|
4413
4613
|
# @!attribute [rw] tag_keys
|
4614
|
+
# The keys of the tags to be removed.
|
4414
4615
|
# @return [Array<String>]
|
4415
4616
|
#
|
4416
4617
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UntagResourceRequest AWS API Documentation
|
@@ -4425,7 +4626,8 @@ module Aws::MediaConnect
|
|
4425
4626
|
# Update the flow source of the bridge.
|
4426
4627
|
#
|
4427
4628
|
# @!attribute [rw] flow_arn
|
4428
|
-
# The
|
4629
|
+
# The Amazon Resource Name (ARN) that identifies the MediaConnect
|
4630
|
+
# resource from which to delete tags.
|
4429
4631
|
# @return [String]
|
4430
4632
|
#
|
4431
4633
|
# @!attribute [rw] flow_vpc_interface_attachment
|
@@ -4457,6 +4659,11 @@ module Aws::MediaConnect
|
|
4457
4659
|
#
|
4458
4660
|
# @!attribute [rw] protocol
|
4459
4661
|
# The network output protocol.
|
4662
|
+
#
|
4663
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
4664
|
+
# This reference is maintained for legacy purposes only.
|
4665
|
+
#
|
4666
|
+
# </note>
|
4460
4667
|
# @return [String]
|
4461
4668
|
#
|
4462
4669
|
# @!attribute [rw] ttl
|
@@ -4482,7 +4689,7 @@ module Aws::MediaConnect
|
|
4482
4689
|
# @return [String]
|
4483
4690
|
#
|
4484
4691
|
# @!attribute [rw] multicast_source_settings
|
4485
|
-
# The
|
4692
|
+
# The settings related to the multicast source.
|
4486
4693
|
# @return [Types::MulticastSourceSettings]
|
4487
4694
|
#
|
4488
4695
|
# @!attribute [rw] network_name
|
@@ -4495,6 +4702,11 @@ module Aws::MediaConnect
|
|
4495
4702
|
#
|
4496
4703
|
# @!attribute [rw] protocol
|
4497
4704
|
# The network source protocol.
|
4705
|
+
#
|
4706
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
4707
|
+
# This reference is maintained for legacy purposes only.
|
4708
|
+
#
|
4709
|
+
# </note>
|
4498
4710
|
# @return [String]
|
4499
4711
|
#
|
4500
4712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeNetworkSourceRequest AWS API Documentation
|
@@ -4509,16 +4721,17 @@ module Aws::MediaConnect
|
|
4509
4721
|
include Aws::Structure
|
4510
4722
|
end
|
4511
4723
|
|
4512
|
-
# Update an existing bridge output.
|
4513
|
-
#
|
4514
4724
|
# @!attribute [rw] bridge_arn
|
4725
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
4726
|
+
# update.
|
4515
4727
|
# @return [String]
|
4516
4728
|
#
|
4517
4729
|
# @!attribute [rw] network_output
|
4518
|
-
#
|
4730
|
+
# The network of the bridge output.
|
4519
4731
|
# @return [Types::UpdateBridgeNetworkOutputRequest]
|
4520
4732
|
#
|
4521
4733
|
# @!attribute [rw] output_name
|
4734
|
+
# Tname of the output that you want to update.
|
4522
4735
|
# @return [String]
|
4523
4736
|
#
|
4524
4737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputRequest AWS API Documentation
|
@@ -4531,14 +4744,12 @@ module Aws::MediaConnect
|
|
4531
4744
|
include Aws::Structure
|
4532
4745
|
end
|
4533
4746
|
|
4534
|
-
# The result of a successful UpdateBridgeOutput request.
|
4535
|
-
#
|
4536
4747
|
# @!attribute [rw] bridge_arn
|
4537
|
-
# The
|
4748
|
+
# The ARN of the bridge that was updated.
|
4538
4749
|
# @return [String]
|
4539
4750
|
#
|
4540
4751
|
# @!attribute [rw] output
|
4541
|
-
# The output that
|
4752
|
+
# The bridge output that was updated.
|
4542
4753
|
# @return [Types::BridgeOutput]
|
4543
4754
|
#
|
4544
4755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputResponse AWS API Documentation
|
@@ -4550,15 +4761,18 @@ module Aws::MediaConnect
|
|
4550
4761
|
include Aws::Structure
|
4551
4762
|
end
|
4552
4763
|
|
4553
|
-
# Update an existing bridge.
|
4554
|
-
#
|
4555
4764
|
# @!attribute [rw] bridge_arn
|
4765
|
+
# TheAmazon Resource Name (ARN) of the bridge that you want to update.
|
4556
4766
|
# @return [String]
|
4557
4767
|
#
|
4558
4768
|
# @!attribute [rw] egress_gateway_bridge
|
4769
|
+
# A cloud-to-ground bridge. The content comes from an existing
|
4770
|
+
# MediaConnect flow and is delivered to your premises.
|
4559
4771
|
# @return [Types::UpdateEgressGatewayBridgeRequest]
|
4560
4772
|
#
|
4561
4773
|
# @!attribute [rw] ingress_gateway_bridge
|
4774
|
+
# A ground-to-cloud bridge. The content originates at your premises
|
4775
|
+
# and is delivered to the cloud.
|
4562
4776
|
# @return [Types::UpdateIngressGatewayBridgeRequest]
|
4563
4777
|
#
|
4564
4778
|
# @!attribute [rw] source_failover_config
|
@@ -4576,12 +4790,8 @@ module Aws::MediaConnect
|
|
4576
4790
|
include Aws::Structure
|
4577
4791
|
end
|
4578
4792
|
|
4579
|
-
# The bridge has been successfully updated.
|
4580
|
-
#
|
4581
4793
|
# @!attribute [rw] bridge
|
4582
|
-
#
|
4583
|
-
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
4584
|
-
# to your data center or from your data center to the AWS cloud.
|
4794
|
+
# The bridge that was updated.
|
4585
4795
|
# @return [Types::Bridge]
|
4586
4796
|
#
|
4587
4797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
|
@@ -4592,20 +4802,21 @@ module Aws::MediaConnect
|
|
4592
4802
|
include Aws::Structure
|
4593
4803
|
end
|
4594
4804
|
|
4595
|
-
# Update the bridge source.
|
4596
|
-
#
|
4597
4805
|
# @!attribute [rw] bridge_arn
|
4806
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
4807
|
+
# update.
|
4598
4808
|
# @return [String]
|
4599
4809
|
#
|
4600
4810
|
# @!attribute [rw] flow_source
|
4601
|
-
#
|
4811
|
+
# The name of the flow that you want to update.
|
4602
4812
|
# @return [Types::UpdateBridgeFlowSourceRequest]
|
4603
4813
|
#
|
4604
4814
|
# @!attribute [rw] network_source
|
4605
|
-
#
|
4815
|
+
# The network for the bridge source.
|
4606
4816
|
# @return [Types::UpdateBridgeNetworkSourceRequest]
|
4607
4817
|
#
|
4608
4818
|
# @!attribute [rw] source_name
|
4819
|
+
# The name of the source that you want to update.
|
4609
4820
|
# @return [String]
|
4610
4821
|
#
|
4611
4822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceRequest AWS API Documentation
|
@@ -4619,14 +4830,12 @@ module Aws::MediaConnect
|
|
4619
4830
|
include Aws::Structure
|
4620
4831
|
end
|
4621
4832
|
|
4622
|
-
# The result of a successful UpdateBridgeSource request.
|
4623
|
-
#
|
4624
4833
|
# @!attribute [rw] bridge_arn
|
4625
|
-
# The
|
4834
|
+
# The ARN of the updated bridge source.
|
4626
4835
|
# @return [String]
|
4627
4836
|
#
|
4628
4837
|
# @!attribute [rw] source
|
4629
|
-
# The bridge
|
4838
|
+
# The updated bridge source.
|
4630
4839
|
# @return [Types::BridgeSource]
|
4631
4840
|
#
|
4632
4841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceResponse AWS API Documentation
|
@@ -4638,12 +4847,13 @@ module Aws::MediaConnect
|
|
4638
4847
|
include Aws::Structure
|
4639
4848
|
end
|
4640
4849
|
|
4641
|
-
# Update the state of a bridge. ACTIVE or STANDBY.
|
4642
|
-
#
|
4643
4850
|
# @!attribute [rw] bridge_arn
|
4851
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to update
|
4852
|
+
# the state of.
|
4644
4853
|
# @return [String]
|
4645
4854
|
#
|
4646
4855
|
# @!attribute [rw] desired_state
|
4856
|
+
# The desired state for the bridge.
|
4647
4857
|
# @return [String]
|
4648
4858
|
#
|
4649
4859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateRequest AWS API Documentation
|
@@ -4655,14 +4865,12 @@ module Aws::MediaConnect
|
|
4655
4865
|
include Aws::Structure
|
4656
4866
|
end
|
4657
4867
|
|
4658
|
-
# The bridge state has been updated.
|
4659
|
-
#
|
4660
4868
|
# @!attribute [rw] bridge_arn
|
4661
|
-
# The
|
4869
|
+
# The ARN of the updated bridge.
|
4662
4870
|
# @return [String]
|
4663
4871
|
#
|
4664
4872
|
# @!attribute [rw] desired_state
|
4665
|
-
# The state of the bridge.
|
4873
|
+
# The new state of the bridge.
|
4666
4874
|
# @return [String]
|
4667
4875
|
#
|
4668
4876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateResponse AWS API Documentation
|
@@ -4674,8 +4882,10 @@ module Aws::MediaConnect
|
|
4674
4882
|
include Aws::Structure
|
4675
4883
|
end
|
4676
4884
|
|
4885
|
+
# Update an existing egress-type bridge.
|
4886
|
+
#
|
4677
4887
|
# @!attribute [rw] max_bitrate
|
4678
|
-
#
|
4888
|
+
# The maximum expected bitrate (in bps).
|
4679
4889
|
# @return [Integer]
|
4680
4890
|
#
|
4681
4891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateEgressGatewayBridgeRequest AWS API Documentation
|
@@ -4712,9 +4922,9 @@ module Aws::MediaConnect
|
|
4712
4922
|
# @return [String]
|
4713
4923
|
#
|
4714
4924
|
# @!attribute [rw] region
|
4715
|
-
# The
|
4716
|
-
# This parameter is required for SPEKE encryption and
|
4717
|
-
# static key encryption.
|
4925
|
+
# The Amazon Web Services Region that the API Gateway proxy endpoint
|
4926
|
+
# was created in. This parameter is required for SPEKE encryption and
|
4927
|
+
# is not valid for static key encryption.
|
4718
4928
|
# @return [String]
|
4719
4929
|
#
|
4720
4930
|
# @!attribute [rw] resource_id
|
@@ -4726,12 +4936,12 @@ module Aws::MediaConnect
|
|
4726
4936
|
#
|
4727
4937
|
# @!attribute [rw] role_arn
|
4728
4938
|
# The ARN of the role that you created during setup (when you set up
|
4729
|
-
#
|
4939
|
+
# MediaConnect as a trusted entity).
|
4730
4940
|
# @return [String]
|
4731
4941
|
#
|
4732
4942
|
# @!attribute [rw] secret_arn
|
4733
|
-
# The ARN of the secret that you created in
|
4734
|
-
#
|
4943
|
+
# The ARN of the secret that you created in Secrets Manager to store
|
4944
|
+
# the encryption key. This parameter is required for static key
|
4735
4945
|
# encryption and is not valid for SPEKE encryption.
|
4736
4946
|
# @return [String]
|
4737
4947
|
#
|
@@ -4767,7 +4977,7 @@ module Aws::MediaConnect
|
|
4767
4977
|
# @return [String]
|
4768
4978
|
#
|
4769
4979
|
# @!attribute [rw] recovery_window
|
4770
|
-
# Recovery window time to look for dash-7 packets
|
4980
|
+
# Recovery window time to look for dash-7 packets.
|
4771
4981
|
# @return [Integer]
|
4772
4982
|
#
|
4773
4983
|
# @!attribute [rw] source_priority
|
@@ -4776,6 +4986,9 @@ module Aws::MediaConnect
|
|
4776
4986
|
# @return [Types::SourcePriority]
|
4777
4987
|
#
|
4778
4988
|
# @!attribute [rw] state
|
4989
|
+
# The state of source failover on the flow. If the state is inactive,
|
4990
|
+
# the flow can have only one source. If the state is active, the flow
|
4991
|
+
# can have one or two sources.
|
4779
4992
|
# @return [String]
|
4780
4993
|
#
|
4781
4994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFailoverConfig AWS API Documentation
|
@@ -4789,12 +5002,10 @@ module Aws::MediaConnect
|
|
4789
5002
|
include Aws::Structure
|
4790
5003
|
end
|
4791
5004
|
|
4792
|
-
# The updates that you want to make to a specific entitlement.
|
4793
|
-
#
|
4794
5005
|
# @!attribute [rw] description
|
4795
5006
|
# A description of the entitlement. This description appears only on
|
4796
|
-
# the
|
4797
|
-
#
|
5007
|
+
# the MediaConnect console and will not be seen by the subscriber or
|
5008
|
+
# end user.
|
4798
5009
|
# @return [String]
|
4799
5010
|
#
|
4800
5011
|
# @!attribute [rw] encryption
|
@@ -4804,22 +5015,26 @@ module Aws::MediaConnect
|
|
4804
5015
|
# @return [Types::UpdateEncryption]
|
4805
5016
|
#
|
4806
5017
|
# @!attribute [rw] entitlement_arn
|
5018
|
+
# The Amazon Resource Name (ARN) of the entitlement that you want to
|
5019
|
+
# update.
|
4807
5020
|
# @return [String]
|
4808
5021
|
#
|
4809
5022
|
# @!attribute [rw] entitlement_status
|
4810
5023
|
# An indication of whether you want to enable the entitlement to allow
|
4811
5024
|
# access, or disable it to stop streaming content to the subscriber’s
|
4812
|
-
# flow temporarily. If you don’t specify the entitlementStatus field
|
5025
|
+
# flow temporarily. If you don’t specify the `entitlementStatus` field
|
4813
5026
|
# in your request, MediaConnect leaves the value unchanged.
|
4814
5027
|
# @return [String]
|
4815
5028
|
#
|
4816
5029
|
# @!attribute [rw] flow_arn
|
5030
|
+
# The ARN of the flow that is associated with the entitlement that you
|
5031
|
+
# want to update.
|
4817
5032
|
# @return [String]
|
4818
5033
|
#
|
4819
5034
|
# @!attribute [rw] subscribers
|
4820
|
-
# The
|
4821
|
-
# receiving accounts (subscribers) will be allowed
|
4822
|
-
# flow using your content as the source.
|
5035
|
+
# The Amazon Web Services account IDs that you want to share your
|
5036
|
+
# content with. The receiving accounts (subscribers) will be allowed
|
5037
|
+
# to create their own flow using your content as the source.
|
4823
5038
|
# @return [Array<String>]
|
4824
5039
|
#
|
4825
5040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowEntitlementRequest AWS API Documentation
|
@@ -4835,10 +5050,6 @@ module Aws::MediaConnect
|
|
4835
5050
|
include Aws::Structure
|
4836
5051
|
end
|
4837
5052
|
|
4838
|
-
# The result of a successful UpdateFlowEntitlement request. The response
|
4839
|
-
# includes the ARN of the flow that was updated and the updated
|
4840
|
-
# entitlement configuration.
|
4841
|
-
#
|
4842
5053
|
# @!attribute [rw] entitlement
|
4843
5054
|
# The new configuration of the entitlement that you updated.
|
4844
5055
|
# @return [Types::Entitlement]
|
@@ -4856,26 +5067,26 @@ module Aws::MediaConnect
|
|
4856
5067
|
include Aws::Structure
|
4857
5068
|
end
|
4858
5069
|
|
4859
|
-
# Update a media stream on a flow.
|
4860
|
-
#
|
4861
5070
|
# @!attribute [rw] attributes
|
4862
5071
|
# The attributes that you want to assign to the media stream.
|
4863
5072
|
# @return [Types::MediaStreamAttributesRequest]
|
4864
5073
|
#
|
4865
5074
|
# @!attribute [rw] clock_rate
|
4866
|
-
# The sample rate
|
4867
|
-
# video or ancillary data, set this value to 90000. If the media
|
4868
|
-
# stream type is audio, set this value to either 48000 or 96000.
|
5075
|
+
# The sample rate for the stream. This value in measured in kHz.
|
4869
5076
|
# @return [Integer]
|
4870
5077
|
#
|
4871
5078
|
# @!attribute [rw] description
|
4872
|
-
#
|
5079
|
+
# A description that can help you quickly identify what your media
|
5080
|
+
# stream is used for.
|
4873
5081
|
# @return [String]
|
4874
5082
|
#
|
4875
5083
|
# @!attribute [rw] flow_arn
|
5084
|
+
# The Amazon Resource Name (ARN) of the flow that is associated with
|
5085
|
+
# the media stream that you updated.
|
4876
5086
|
# @return [String]
|
4877
5087
|
#
|
4878
5088
|
# @!attribute [rw] media_stream_name
|
5089
|
+
# The media stream that you updated.
|
4879
5090
|
# @return [String]
|
4880
5091
|
#
|
4881
5092
|
# @!attribute [rw] media_stream_type
|
@@ -4900,8 +5111,6 @@ module Aws::MediaConnect
|
|
4900
5111
|
include Aws::Structure
|
4901
5112
|
end
|
4902
5113
|
|
4903
|
-
# The result of a successful UpdateFlowMediaStream request.
|
4904
|
-
#
|
4905
5114
|
# @!attribute [rw] flow_arn
|
4906
5115
|
# The ARN of the flow that is associated with the media stream that
|
4907
5116
|
# you updated.
|
@@ -4920,9 +5129,6 @@ module Aws::MediaConnect
|
|
4920
5129
|
include Aws::Structure
|
4921
5130
|
end
|
4922
5131
|
|
4923
|
-
# The updates that you want to make to an existing output of an existing
|
4924
|
-
# flow.
|
4925
|
-
#
|
4926
5132
|
# @!attribute [rw] cidr_allow_list
|
4927
5133
|
# The range of IP addresses that should be allowed to initiate output
|
4928
5134
|
# requests to this flow. These IP addresses should be in the form of a
|
@@ -4932,8 +5138,7 @@ module Aws::MediaConnect
|
|
4932
5138
|
#
|
4933
5139
|
# @!attribute [rw] description
|
4934
5140
|
# A description of the output. This description appears only on the
|
4935
|
-
#
|
4936
|
-
# user.
|
5141
|
+
# MediaConnect console and will not be seen by the end user.
|
4937
5142
|
# @return [String]
|
4938
5143
|
#
|
4939
5144
|
# @!attribute [rw] destination
|
@@ -4941,17 +5146,19 @@ module Aws::MediaConnect
|
|
4941
5146
|
# @return [String]
|
4942
5147
|
#
|
4943
5148
|
# @!attribute [rw] encryption
|
4944
|
-
# The type of key used for the encryption. If no keyType is
|
4945
|
-
# the service will use the default setting (static-key).
|
4946
|
-
# encryption types: static-key.
|
5149
|
+
# The type of key used for the encryption. If no `keyType` is
|
5150
|
+
# provided, the service will use the default setting (static-key).
|
5151
|
+
# Allowable encryption types: static-key.
|
4947
5152
|
# @return [Types::UpdateEncryption]
|
4948
5153
|
#
|
4949
5154
|
# @!attribute [rw] flow_arn
|
5155
|
+
# The Amazon Resource Name (ARN) of the flow that is associated with
|
5156
|
+
# the output that you want to update.
|
4950
5157
|
# @return [String]
|
4951
5158
|
#
|
4952
5159
|
# @!attribute [rw] max_latency
|
4953
5160
|
# The maximum latency in milliseconds. This parameter applies only to
|
4954
|
-
# RIST-based
|
5161
|
+
# RIST-based and Zixi-based streams.
|
4955
5162
|
# @return [Integer]
|
4956
5163
|
#
|
4957
5164
|
# @!attribute [rw] media_stream_output_configurations
|
@@ -4969,6 +5176,7 @@ module Aws::MediaConnect
|
|
4969
5176
|
# @return [Integer]
|
4970
5177
|
#
|
4971
5178
|
# @!attribute [rw] output_arn
|
5179
|
+
# The ARN of the output that you want to update.
|
4972
5180
|
# @return [String]
|
4973
5181
|
#
|
4974
5182
|
# @!attribute [rw] port
|
@@ -4977,6 +5185,11 @@ module Aws::MediaConnect
|
|
4977
5185
|
#
|
4978
5186
|
# @!attribute [rw] protocol
|
4979
5187
|
# The protocol to use for the output.
|
5188
|
+
#
|
5189
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
5190
|
+
# This reference is maintained for legacy purposes only.
|
5191
|
+
#
|
5192
|
+
# </note>
|
4980
5193
|
# @return [String]
|
4981
5194
|
#
|
4982
5195
|
# @!attribute [rw] remote_id
|
@@ -5009,10 +5222,19 @@ module Aws::MediaConnect
|
|
5009
5222
|
#
|
5010
5223
|
# @!attribute [rw] output_status
|
5011
5224
|
# An indication of whether the output should transmit data or not. If
|
5012
|
-
# you don't specify the outputStatus field in your request,
|
5225
|
+
# you don't specify the `outputStatus` field in your request,
|
5013
5226
|
# MediaConnect leaves the value unchanged.
|
5014
5227
|
# @return [String]
|
5015
5228
|
#
|
5229
|
+
# @!attribute [rw] ndi_program_name
|
5230
|
+
# A suffix for the names of the NDI sources that the flow creates. If
|
5231
|
+
# a custom name isn't specified, MediaConnect uses the output name.
|
5232
|
+
# @return [String]
|
5233
|
+
#
|
5234
|
+
# @!attribute [rw] ndi_speed_hq_quality
|
5235
|
+
# A quality setting for the NDI Speed HQ encoder.
|
5236
|
+
# @return [Integer]
|
5237
|
+
#
|
5016
5238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutputRequest AWS API Documentation
|
5017
5239
|
#
|
5018
5240
|
class UpdateFlowOutputRequest < Struct.new(
|
@@ -5033,14 +5255,13 @@ module Aws::MediaConnect
|
|
5033
5255
|
:smoothing_latency,
|
5034
5256
|
:stream_id,
|
5035
5257
|
:vpc_interface_attachment,
|
5036
|
-
:output_status
|
5258
|
+
:output_status,
|
5259
|
+
:ndi_program_name,
|
5260
|
+
:ndi_speed_hq_quality)
|
5037
5261
|
SENSITIVE = []
|
5038
5262
|
include Aws::Structure
|
5039
5263
|
end
|
5040
5264
|
|
5041
|
-
# The result of a successful UpdateFlowOutput request including the flow
|
5042
|
-
# ARN and the updated output.
|
5043
|
-
#
|
5044
5265
|
# @!attribute [rw] flow_arn
|
5045
5266
|
# The ARN of the flow that is associated with the updated output.
|
5046
5267
|
# @return [String]
|
@@ -5058,9 +5279,8 @@ module Aws::MediaConnect
|
|
5058
5279
|
include Aws::Structure
|
5059
5280
|
end
|
5060
5281
|
|
5061
|
-
# Updates an existing flow.
|
5062
|
-
#
|
5063
5282
|
# @!attribute [rw] flow_arn
|
5283
|
+
# The Amazon Resource Name (ARN) of the flow that you want to update.
|
5064
5284
|
# @return [String]
|
5065
5285
|
#
|
5066
5286
|
# @!attribute [rw] source_failover_config
|
@@ -5068,30 +5288,32 @@ module Aws::MediaConnect
|
|
5068
5288
|
# @return [Types::UpdateFailoverConfig]
|
5069
5289
|
#
|
5070
5290
|
# @!attribute [rw] maintenance
|
5071
|
-
#
|
5291
|
+
# The maintenance setting of the flow.
|
5072
5292
|
# @return [Types::UpdateMaintenance]
|
5073
5293
|
#
|
5074
5294
|
# @!attribute [rw] source_monitoring_config
|
5075
5295
|
# The settings for source monitoring.
|
5076
5296
|
# @return [Types::MonitoringConfig]
|
5077
5297
|
#
|
5298
|
+
# @!attribute [rw] ndi_config
|
5299
|
+
# Specifies the configuration settings for NDI outputs. Required when
|
5300
|
+
# the flow includes NDI outputs.
|
5301
|
+
# @return [Types::NdiConfig]
|
5302
|
+
#
|
5078
5303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
5079
5304
|
#
|
5080
5305
|
class UpdateFlowRequest < Struct.new(
|
5081
5306
|
:flow_arn,
|
5082
5307
|
:source_failover_config,
|
5083
5308
|
:maintenance,
|
5084
|
-
:source_monitoring_config
|
5309
|
+
:source_monitoring_config,
|
5310
|
+
:ndi_config)
|
5085
5311
|
SENSITIVE = []
|
5086
5312
|
include Aws::Structure
|
5087
5313
|
end
|
5088
5314
|
|
5089
|
-
# The result of a successful UpdateFlow request. Updates an existing
|
5090
|
-
# flow.
|
5091
|
-
#
|
5092
5315
|
# @!attribute [rw] flow
|
5093
|
-
# The
|
5094
|
-
# entitlements.
|
5316
|
+
# The updated flow.
|
5095
5317
|
# @return [Types::Flow]
|
5096
5318
|
#
|
5097
5319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowResponse AWS API Documentation
|
@@ -5102,40 +5324,39 @@ module Aws::MediaConnect
|
|
5102
5324
|
include Aws::Structure
|
5103
5325
|
end
|
5104
5326
|
|
5105
|
-
# The updates that you want to make to an existing source of an existing
|
5106
|
-
# flow.
|
5107
|
-
#
|
5108
5327
|
# @!attribute [rw] decryption
|
5109
|
-
# The type of encryption used on the content ingested from
|
5110
|
-
# source.
|
5328
|
+
# The type of encryption that is used on the content ingested from the
|
5329
|
+
# source.
|
5111
5330
|
# @return [Types::UpdateEncryption]
|
5112
5331
|
#
|
5113
5332
|
# @!attribute [rw] description
|
5114
|
-
# A description
|
5115
|
-
# of the current
|
5333
|
+
# A description of the source. This description is not visible outside
|
5334
|
+
# of the current Amazon Web Services account.
|
5116
5335
|
# @return [String]
|
5117
5336
|
#
|
5118
5337
|
# @!attribute [rw] entitlement_arn
|
5119
|
-
# The ARN of the entitlement that allows you to
|
5120
|
-
# flow. The entitlement is set by the
|
5121
|
-
# generated as part of the originator's
|
5338
|
+
# The Amazon Resource Name (ARN) of the entitlement that allows you to
|
5339
|
+
# subscribe to the flow. The entitlement is set by the content
|
5340
|
+
# originator, and the ARN is generated as part of the originator's
|
5341
|
+
# flow.
|
5122
5342
|
# @return [String]
|
5123
5343
|
#
|
5124
5344
|
# @!attribute [rw] flow_arn
|
5345
|
+
# The ARN of the flow that you want to update.
|
5125
5346
|
# @return [String]
|
5126
5347
|
#
|
5127
5348
|
# @!attribute [rw] ingest_port
|
5128
|
-
# The port that the flow
|
5349
|
+
# The port that the flow listens on for incoming content. If the
|
5350
|
+
# protocol of the source is Zixi, the port must be set to 2088.
|
5129
5351
|
# @return [Integer]
|
5130
5352
|
#
|
5131
5353
|
# @!attribute [rw] max_bitrate
|
5132
|
-
# The
|
5133
|
-
# streams.
|
5354
|
+
# The maximum bitrate for RIST, RTP, and RTP-FEC streams.
|
5134
5355
|
# @return [Integer]
|
5135
5356
|
#
|
5136
5357
|
# @!attribute [rw] max_latency
|
5137
5358
|
# The maximum latency in milliseconds. This parameter applies only to
|
5138
|
-
# RIST-based
|
5359
|
+
# RIST-based and Zixi-based streams.
|
5139
5360
|
# @return [Integer]
|
5140
5361
|
#
|
5141
5362
|
# @!attribute [rw] max_sync_buffer
|
@@ -5144,8 +5365,8 @@ module Aws::MediaConnect
|
|
5144
5365
|
# @return [Integer]
|
5145
5366
|
#
|
5146
5367
|
# @!attribute [rw] media_stream_source_configurations
|
5147
|
-
# The media
|
5148
|
-
# parameters for
|
5368
|
+
# The media stream that is associated with the source, and the
|
5369
|
+
# parameters for that association.
|
5149
5370
|
# @return [Array<Types::MediaStreamSourceConfigurationRequest>]
|
5150
5371
|
#
|
5151
5372
|
# @!attribute [rw] min_latency
|
@@ -5158,7 +5379,13 @@ module Aws::MediaConnect
|
|
5158
5379
|
# @return [Integer]
|
5159
5380
|
#
|
5160
5381
|
# @!attribute [rw] protocol
|
5161
|
-
# The protocol that
|
5382
|
+
# The protocol that the source uses to deliver the content to
|
5383
|
+
# MediaConnect.
|
5384
|
+
#
|
5385
|
+
# <note markdown="1"> Elemental MediaConnect no longer supports the Fujitsu QoS protocol.
|
5386
|
+
# This reference is maintained for legacy purposes only.
|
5387
|
+
#
|
5388
|
+
# </note>
|
5162
5389
|
# @return [String]
|
5163
5390
|
#
|
5164
5391
|
# @!attribute [rw] sender_control_port
|
@@ -5172,10 +5399,11 @@ module Aws::MediaConnect
|
|
5172
5399
|
# @return [String]
|
5173
5400
|
#
|
5174
5401
|
# @!attribute [rw] source_arn
|
5402
|
+
# The ARN of the source that you want to update.
|
5175
5403
|
# @return [String]
|
5176
5404
|
#
|
5177
5405
|
# @!attribute [rw] source_listener_address
|
5178
|
-
#
|
5406
|
+
# The source IP or domain name for SRT-caller protocol.
|
5179
5407
|
# @return [String]
|
5180
5408
|
#
|
5181
5409
|
# @!attribute [rw] source_listener_port
|
@@ -5188,14 +5416,13 @@ module Aws::MediaConnect
|
|
5188
5416
|
# @return [String]
|
5189
5417
|
#
|
5190
5418
|
# @!attribute [rw] vpc_interface_name
|
5191
|
-
# The name of the VPC interface to
|
5419
|
+
# The name of the VPC interface that you want to send your output to.
|
5192
5420
|
# @return [String]
|
5193
5421
|
#
|
5194
5422
|
# @!attribute [rw] whitelist_cidr
|
5195
|
-
# The range of IP addresses that
|
5196
|
-
#
|
5197
|
-
#
|
5198
|
-
# 10.0.0.0/16.
|
5423
|
+
# The range of IP addresses that are allowed to contribute content to
|
5424
|
+
# your source. Format the IP addresses as a Classless Inter-Domain
|
5425
|
+
# Routing (CIDR) block; for example, 10.0.0.0/16.
|
5199
5426
|
# @return [String]
|
5200
5427
|
#
|
5201
5428
|
# @!attribute [rw] gateway_bridge_source
|
@@ -5230,16 +5457,12 @@ module Aws::MediaConnect
|
|
5230
5457
|
include Aws::Structure
|
5231
5458
|
end
|
5232
5459
|
|
5233
|
-
# The result of a successful UpdateFlowSource request. The response
|
5234
|
-
# includes the ARN of the flow that was updated and the updated source
|
5235
|
-
# configuration.
|
5236
|
-
#
|
5237
5460
|
# @!attribute [rw] flow_arn
|
5238
|
-
# The ARN of the flow that you
|
5461
|
+
# The ARN of the flow that you was updated.
|
5239
5462
|
# @return [String]
|
5240
5463
|
#
|
5241
5464
|
# @!attribute [rw] source
|
5242
|
-
# The
|
5465
|
+
# The details of the sources that are assigned to the flow.
|
5243
5466
|
# @return [Types::Source]
|
5244
5467
|
#
|
5245
5468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSourceResponse AWS API Documentation
|
@@ -5272,17 +5495,13 @@ module Aws::MediaConnect
|
|
5272
5495
|
include Aws::Structure
|
5273
5496
|
end
|
5274
5497
|
|
5275
|
-
# The state update that you want to make to an existing gateway
|
5276
|
-
# instance.
|
5277
|
-
#
|
5278
5498
|
# @!attribute [rw] bridge_placement
|
5279
|
-
# The
|
5280
|
-
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
5281
|
-
# LOCKED, no new bridges can be deployed to this instance. If it is
|
5282
|
-
# AVAILABLE, new bridges can be added to this instance.
|
5499
|
+
# The state of the instance. `ACTIVE` or `INACTIVE`.
|
5283
5500
|
# @return [String]
|
5284
5501
|
#
|
5285
5502
|
# @!attribute [rw] gateway_instance_arn
|
5503
|
+
# The Amazon Resource Name (ARN) of the gateway instance that you want
|
5504
|
+
# to update.
|
5286
5505
|
# @return [String]
|
5287
5506
|
#
|
5288
5507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceRequest AWS API Documentation
|
@@ -5294,17 +5513,12 @@ module Aws::MediaConnect
|
|
5294
5513
|
include Aws::Structure
|
5295
5514
|
end
|
5296
5515
|
|
5297
|
-
# The result of a successful UpdateGatewayInstance request.
|
5298
|
-
#
|
5299
5516
|
# @!attribute [rw] bridge_placement
|
5300
|
-
# The
|
5301
|
-
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
5302
|
-
# LOCKED, no new bridges can be deployed to this instance. If it is
|
5303
|
-
# AVAILABLE, new bridges can be added to this instance.
|
5517
|
+
# The state of the instance. `ACTIVE` or `INACTIVE`.
|
5304
5518
|
# @return [String]
|
5305
5519
|
#
|
5306
5520
|
# @!attribute [rw] gateway_instance_arn
|
5307
|
-
# The
|
5521
|
+
# The ARN of the instance that was updated.
|
5308
5522
|
# @return [String]
|
5309
5523
|
#
|
5310
5524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceResponse AWS API Documentation
|
@@ -5316,6 +5530,8 @@ module Aws::MediaConnect
|
|
5316
5530
|
include Aws::Structure
|
5317
5531
|
end
|
5318
5532
|
|
5533
|
+
# Update an existing ingress-type bridge.
|
5534
|
+
#
|
5319
5535
|
# @!attribute [rw] max_bitrate
|
5320
5536
|
# The maximum expected bitrate (in bps).
|
5321
5537
|
# @return [Integer]
|
@@ -5333,11 +5549,10 @@ module Aws::MediaConnect
|
|
5333
5549
|
include Aws::Structure
|
5334
5550
|
end
|
5335
5551
|
|
5336
|
-
# Update maintenance setting for a flow
|
5552
|
+
# Update maintenance setting for a flow.
|
5337
5553
|
#
|
5338
5554
|
# @!attribute [rw] maintenance_day
|
5339
|
-
# A day of a week when the maintenance will happen.
|
5340
|
-
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
5555
|
+
# A day of a week when the maintenance will happen.
|
5341
5556
|
# @return [String]
|
5342
5557
|
#
|
5343
5558
|
# @!attribute [rw] maintenance_scheduled_date
|
@@ -5379,7 +5594,7 @@ module Aws::MediaConnect
|
|
5379
5594
|
include Aws::Structure
|
5380
5595
|
end
|
5381
5596
|
|
5382
|
-
# The settings for a VPC
|
5597
|
+
# The settings for a VPC source.
|
5383
5598
|
#
|
5384
5599
|
# @!attribute [rw] name
|
5385
5600
|
# Immutable and has to be a unique against other VpcInterfaces in this
|
@@ -5396,8 +5611,7 @@ module Aws::MediaConnect
|
|
5396
5611
|
# @return [String]
|
5397
5612
|
#
|
5398
5613
|
# @!attribute [rw] role_arn
|
5399
|
-
#
|
5400
|
-
# account
|
5614
|
+
# A role Arn MediaConnect can assume to create ENIs in your account.
|
5401
5615
|
# @return [String]
|
5402
5616
|
#
|
5403
5617
|
# @!attribute [rw] security_group_ids
|
@@ -5405,7 +5619,7 @@ module Aws::MediaConnect
|
|
5405
5619
|
# @return [Array<String>]
|
5406
5620
|
#
|
5407
5621
|
# @!attribute [rw] subnet_id
|
5408
|
-
# Subnet must be in the AZ of the Flow
|
5622
|
+
# Subnet must be in the AZ of the Flow.
|
5409
5623
|
# @return [String]
|
5410
5624
|
#
|
5411
5625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VpcInterface AWS API Documentation
|
@@ -5435,29 +5649,36 @@ module Aws::MediaConnect
|
|
5435
5649
|
include Aws::Structure
|
5436
5650
|
end
|
5437
5651
|
|
5438
|
-
#
|
5652
|
+
# The details of the VPC interfaces that you want to add to the flow.
|
5439
5653
|
#
|
5440
5654
|
# @!attribute [rw] name
|
5441
|
-
# The name
|
5442
|
-
#
|
5655
|
+
# The name for the VPC interface. This name must be unique within the
|
5656
|
+
# flow.
|
5443
5657
|
# @return [String]
|
5444
5658
|
#
|
5445
5659
|
# @!attribute [rw] network_interface_type
|
5446
|
-
# The type of network interface.
|
5447
|
-
# request, MediaConnect uses ENA as the networkInterfaceType.
|
5660
|
+
# The type of network interface.
|
5448
5661
|
# @return [String]
|
5449
5662
|
#
|
5450
5663
|
# @!attribute [rw] role_arn
|
5451
|
-
#
|
5452
|
-
#
|
5664
|
+
# The Amazon Resource Name (ARN) of the role that you created when you
|
5665
|
+
# set up MediaConnect as a trusted service.
|
5453
5666
|
# @return [String]
|
5454
5667
|
#
|
5455
5668
|
# @!attribute [rw] security_group_ids
|
5456
|
-
#
|
5669
|
+
# A virtual firewall to control inbound and outbound traffic.
|
5457
5670
|
# @return [Array<String>]
|
5458
5671
|
#
|
5459
5672
|
# @!attribute [rw] subnet_id
|
5460
|
-
#
|
5673
|
+
# The subnet IDs that you want to use for your VPC interface. A range
|
5674
|
+
# of IP addresses in your VPC. When you create your VPC, you specify a
|
5675
|
+
# range of IPv4 addresses for the VPC in the form of a Classless
|
5676
|
+
# Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. This is
|
5677
|
+
# the primary CIDR block for your VPC. When you create a subnet for
|
5678
|
+
# your VPC, you specify the CIDR block for the subnet, which is a
|
5679
|
+
# subset of the VPC CIDR block. The subnets that you use across all
|
5680
|
+
# VPC interfaces on the flow must be in the same Availability Zone as
|
5681
|
+
# the flow.
|
5461
5682
|
# @return [String]
|
5462
5683
|
#
|
5463
5684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VpcInterfaceRequest AWS API Documentation
|