aws-sdk-mediaconnect 1.47.0 → 1.49.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +1070 -24
- data/lib/aws-sdk-mediaconnect/client_api.rb +787 -24
- data/lib/aws-sdk-mediaconnect/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-mediaconnect/endpoints.rb +280 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/plugins/endpoints.rb +40 -0
- data/lib/aws-sdk-mediaconnect/types.rb +1694 -43
- data/lib/aws-sdk-mediaconnect.rb +2 -2
- metadata +4 -4
@@ -10,6 +10,228 @@
|
|
10
10
|
module Aws::MediaConnect
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Add a flow source to an existing bridge.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] flow_arn
|
16
|
+
# The Amazon Resource Number (ARN) of the cloud flow to use as a
|
17
|
+
# source of this bridge.
|
18
|
+
# @return [String]
|
19
|
+
#
|
20
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
21
|
+
# The name of the VPC interface attachment to use for this source.
|
22
|
+
# @return [Types::VpcInterfaceAttachment]
|
23
|
+
#
|
24
|
+
# @!attribute [rw] name
|
25
|
+
# The name of the flow source. This name is used to reference the
|
26
|
+
# source and must be unique among sources in this bridge.
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeFlowSourceRequest AWS API Documentation
|
30
|
+
#
|
31
|
+
class AddBridgeFlowSourceRequest < Struct.new(
|
32
|
+
:flow_arn,
|
33
|
+
:flow_vpc_interface_attachment,
|
34
|
+
:name)
|
35
|
+
SENSITIVE = []
|
36
|
+
include Aws::Structure
|
37
|
+
end
|
38
|
+
|
39
|
+
# Add a network output to an existing bridge.
|
40
|
+
#
|
41
|
+
# @!attribute [rw] ip_address
|
42
|
+
# The network output IP Address.
|
43
|
+
# @return [String]
|
44
|
+
#
|
45
|
+
# @!attribute [rw] name
|
46
|
+
# The network output name. This name is used to reference the output
|
47
|
+
# and must be unique among outputs in this bridge.
|
48
|
+
# @return [String]
|
49
|
+
#
|
50
|
+
# @!attribute [rw] network_name
|
51
|
+
# The network output's gateway network name.
|
52
|
+
# @return [String]
|
53
|
+
#
|
54
|
+
# @!attribute [rw] port
|
55
|
+
# The network output port.
|
56
|
+
# @return [Integer]
|
57
|
+
#
|
58
|
+
# @!attribute [rw] protocol
|
59
|
+
# The network output protocol.
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] ttl
|
63
|
+
# The network output TTL.
|
64
|
+
# @return [Integer]
|
65
|
+
#
|
66
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeNetworkOutputRequest AWS API Documentation
|
67
|
+
#
|
68
|
+
class AddBridgeNetworkOutputRequest < Struct.new(
|
69
|
+
:ip_address,
|
70
|
+
:name,
|
71
|
+
:network_name,
|
72
|
+
:port,
|
73
|
+
:protocol,
|
74
|
+
:ttl)
|
75
|
+
SENSITIVE = []
|
76
|
+
include Aws::Structure
|
77
|
+
end
|
78
|
+
|
79
|
+
# Add a network source to an existing bridge.
|
80
|
+
#
|
81
|
+
# @!attribute [rw] multicast_ip
|
82
|
+
# The network source multicast IP.
|
83
|
+
# @return [String]
|
84
|
+
#
|
85
|
+
# @!attribute [rw] name
|
86
|
+
# The name of the network source. This name is used to reference the
|
87
|
+
# source and must be unique among sources in this bridge.
|
88
|
+
# @return [String]
|
89
|
+
#
|
90
|
+
# @!attribute [rw] network_name
|
91
|
+
# The network source's gateway network name.
|
92
|
+
# @return [String]
|
93
|
+
#
|
94
|
+
# @!attribute [rw] port
|
95
|
+
# The network source port.
|
96
|
+
# @return [Integer]
|
97
|
+
#
|
98
|
+
# @!attribute [rw] protocol
|
99
|
+
# The network source protocol.
|
100
|
+
# @return [String]
|
101
|
+
#
|
102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeNetworkSourceRequest AWS API Documentation
|
103
|
+
#
|
104
|
+
class AddBridgeNetworkSourceRequest < Struct.new(
|
105
|
+
:multicast_ip,
|
106
|
+
:name,
|
107
|
+
:network_name,
|
108
|
+
:port,
|
109
|
+
:protocol)
|
110
|
+
SENSITIVE = []
|
111
|
+
include Aws::Structure
|
112
|
+
end
|
113
|
+
|
114
|
+
# Add an output to a bridge.
|
115
|
+
#
|
116
|
+
# @!attribute [rw] network_output
|
117
|
+
# Add a network output to an existing bridge.
|
118
|
+
# @return [Types::AddBridgeNetworkOutputRequest]
|
119
|
+
#
|
120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputRequest AWS API Documentation
|
121
|
+
#
|
122
|
+
class AddBridgeOutputRequest < Struct.new(
|
123
|
+
:network_output)
|
124
|
+
SENSITIVE = []
|
125
|
+
include Aws::Structure
|
126
|
+
end
|
127
|
+
|
128
|
+
# Adds outputs to an existing bridge. You can create up to 2 outputs per
|
129
|
+
# bridge.
|
130
|
+
#
|
131
|
+
# @!attribute [rw] bridge_arn
|
132
|
+
# @return [String]
|
133
|
+
#
|
134
|
+
# @!attribute [rw] outputs
|
135
|
+
# The outputs that you want to add to this bridge.
|
136
|
+
# @return [Array<Types::AddBridgeOutputRequest>]
|
137
|
+
#
|
138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputsRequest AWS API Documentation
|
139
|
+
#
|
140
|
+
class AddBridgeOutputsRequest < Struct.new(
|
141
|
+
:bridge_arn,
|
142
|
+
:outputs)
|
143
|
+
SENSITIVE = []
|
144
|
+
include Aws::Structure
|
145
|
+
end
|
146
|
+
|
147
|
+
# The result of a successful AddBridgeOutputs request.
|
148
|
+
#
|
149
|
+
# @!attribute [rw] bridge_arn
|
150
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
151
|
+
# @return [String]
|
152
|
+
#
|
153
|
+
# @!attribute [rw] outputs
|
154
|
+
# The outputs that you added to this bridge.
|
155
|
+
# @return [Array<Types::BridgeOutput>]
|
156
|
+
#
|
157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputsResponse AWS API Documentation
|
158
|
+
#
|
159
|
+
class AddBridgeOutputsResponse < Struct.new(
|
160
|
+
:bridge_arn,
|
161
|
+
:outputs)
|
162
|
+
SENSITIVE = []
|
163
|
+
include Aws::Structure
|
164
|
+
end
|
165
|
+
|
166
|
+
# Add a source to an existing bridge.
|
167
|
+
#
|
168
|
+
# @!attribute [rw] flow_source
|
169
|
+
# Add a flow source to an existing bridge.
|
170
|
+
# @return [Types::AddBridgeFlowSourceRequest]
|
171
|
+
#
|
172
|
+
# @!attribute [rw] network_source
|
173
|
+
# Add a network source to an existing bridge.
|
174
|
+
# @return [Types::AddBridgeNetworkSourceRequest]
|
175
|
+
#
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourceRequest AWS API Documentation
|
177
|
+
#
|
178
|
+
class AddBridgeSourceRequest < Struct.new(
|
179
|
+
:flow_source,
|
180
|
+
:network_source)
|
181
|
+
SENSITIVE = []
|
182
|
+
include Aws::Structure
|
183
|
+
end
|
184
|
+
|
185
|
+
# Add sources to an existing bridge. You can create up to 2 sources per
|
186
|
+
# bridge.
|
187
|
+
#
|
188
|
+
# @!attribute [rw] bridge_arn
|
189
|
+
# @return [String]
|
190
|
+
#
|
191
|
+
# @!attribute [rw] sources
|
192
|
+
# The sources that you want to add to this bridge.
|
193
|
+
# @return [Array<Types::AddBridgeSourceRequest>]
|
194
|
+
#
|
195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourcesRequest AWS API Documentation
|
196
|
+
#
|
197
|
+
class AddBridgeSourcesRequest < Struct.new(
|
198
|
+
:bridge_arn,
|
199
|
+
:sources)
|
200
|
+
SENSITIVE = []
|
201
|
+
include Aws::Structure
|
202
|
+
end
|
203
|
+
|
204
|
+
# The result of a successful AddBridgeSources request.
|
205
|
+
#
|
206
|
+
# @!attribute [rw] bridge_arn
|
207
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
208
|
+
# @return [String]
|
209
|
+
#
|
210
|
+
# @!attribute [rw] sources
|
211
|
+
# The sources that you added to this bridge.
|
212
|
+
# @return [Array<Types::BridgeSource>]
|
213
|
+
#
|
214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSourcesResponse AWS API Documentation
|
215
|
+
#
|
216
|
+
class AddBridgeSourcesResponse < Struct.new(
|
217
|
+
:bridge_arn,
|
218
|
+
:sources)
|
219
|
+
SENSITIVE = []
|
220
|
+
include Aws::Structure
|
221
|
+
end
|
222
|
+
|
223
|
+
# @!attribute [rw] max_bitrate
|
224
|
+
# The maximum expected bitrate (in bps).
|
225
|
+
# @return [Integer]
|
226
|
+
#
|
227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddEgressGatewayBridgeRequest AWS API Documentation
|
228
|
+
#
|
229
|
+
class AddEgressGatewayBridgeRequest < Struct.new(
|
230
|
+
:max_bitrate)
|
231
|
+
SENSITIVE = []
|
232
|
+
include Aws::Structure
|
233
|
+
end
|
234
|
+
|
13
235
|
# Adds media streams to an existing flow.
|
14
236
|
#
|
15
237
|
# @!attribute [rw] flow_arn
|
@@ -28,8 +250,8 @@ module Aws::MediaConnect
|
|
28
250
|
include Aws::Structure
|
29
251
|
end
|
30
252
|
|
31
|
-
# The result of a successful
|
32
|
-
#
|
253
|
+
# The result of a successful AddFlowMediaStreams request. The response
|
254
|
+
# includes the details of the newly added media streams.
|
33
255
|
#
|
34
256
|
# @!attribute [rw] flow_arn
|
35
257
|
# The ARN of the flow that you added media streams to.
|
@@ -178,6 +400,23 @@ module Aws::MediaConnect
|
|
178
400
|
include Aws::Structure
|
179
401
|
end
|
180
402
|
|
403
|
+
# @!attribute [rw] max_bitrate
|
404
|
+
# The maximum expected bitrate (in bps).
|
405
|
+
# @return [Integer]
|
406
|
+
#
|
407
|
+
# @!attribute [rw] max_outputs
|
408
|
+
# The maximum number of expected outputs.
|
409
|
+
# @return [Integer]
|
410
|
+
#
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddIngressGatewayBridgeRequest AWS API Documentation
|
412
|
+
#
|
413
|
+
class AddIngressGatewayBridgeRequest < Struct.new(
|
414
|
+
:max_bitrate,
|
415
|
+
:max_outputs)
|
416
|
+
SENSITIVE = []
|
417
|
+
include Aws::Structure
|
418
|
+
end
|
419
|
+
|
181
420
|
# Create maintenance setting for a flow
|
182
421
|
#
|
183
422
|
# @!attribute [rw] maintenance_day
|
@@ -319,7 +558,7 @@ module Aws::MediaConnect
|
|
319
558
|
#
|
320
559
|
# @!attribute [rw] stream_id
|
321
560
|
# The stream ID that you want to use for this transport. This
|
322
|
-
# parameter applies only to Zixi-based streams.
|
561
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
323
562
|
# @return [String]
|
324
563
|
#
|
325
564
|
# @!attribute [rw] vpc_interface_attachment
|
@@ -363,6 +602,329 @@ module Aws::MediaConnect
|
|
363
602
|
include Aws::Structure
|
364
603
|
end
|
365
604
|
|
605
|
+
# A Bridge is the connection between your datacenter's Instances and
|
606
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
607
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
608
|
+
#
|
609
|
+
# @!attribute [rw] bridge_arn
|
610
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
611
|
+
# @return [String]
|
612
|
+
#
|
613
|
+
# @!attribute [rw] bridge_messages
|
614
|
+
# @return [Array<Types::MessageDetail>]
|
615
|
+
#
|
616
|
+
# @!attribute [rw] bridge_state
|
617
|
+
# @return [String]
|
618
|
+
#
|
619
|
+
# @!attribute [rw] egress_gateway_bridge
|
620
|
+
# @return [Types::EgressGatewayBridge]
|
621
|
+
#
|
622
|
+
# @!attribute [rw] ingress_gateway_bridge
|
623
|
+
# @return [Types::IngressGatewayBridge]
|
624
|
+
#
|
625
|
+
# @!attribute [rw] name
|
626
|
+
# The name of the bridge.
|
627
|
+
# @return [String]
|
628
|
+
#
|
629
|
+
# @!attribute [rw] outputs
|
630
|
+
# The outputs on this bridge.
|
631
|
+
# @return [Array<Types::BridgeOutput>]
|
632
|
+
#
|
633
|
+
# @!attribute [rw] placement_arn
|
634
|
+
# The placement Amazon Resource Number (ARN) of the bridge.
|
635
|
+
# @return [String]
|
636
|
+
#
|
637
|
+
# @!attribute [rw] source_failover_config
|
638
|
+
# The settings for source failover.
|
639
|
+
# @return [Types::FailoverConfig]
|
640
|
+
#
|
641
|
+
# @!attribute [rw] sources
|
642
|
+
# The sources on this bridge.
|
643
|
+
# @return [Array<Types::BridgeSource>]
|
644
|
+
#
|
645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Bridge AWS API Documentation
|
646
|
+
#
|
647
|
+
class Bridge < Struct.new(
|
648
|
+
:bridge_arn,
|
649
|
+
:bridge_messages,
|
650
|
+
:bridge_state,
|
651
|
+
:egress_gateway_bridge,
|
652
|
+
:ingress_gateway_bridge,
|
653
|
+
:name,
|
654
|
+
:outputs,
|
655
|
+
:placement_arn,
|
656
|
+
:source_failover_config,
|
657
|
+
:sources)
|
658
|
+
SENSITIVE = []
|
659
|
+
include Aws::Structure
|
660
|
+
end
|
661
|
+
|
662
|
+
# The output of the bridge. A flow output is delivered to the AWS cloud.
|
663
|
+
#
|
664
|
+
# @!attribute [rw] flow_arn
|
665
|
+
# The Amazon Resource Number (ARN) of the cloud flow.
|
666
|
+
# @return [String]
|
667
|
+
#
|
668
|
+
# @!attribute [rw] flow_source_arn
|
669
|
+
# The Amazon Resource Number (ARN) of the flow source.
|
670
|
+
# @return [String]
|
671
|
+
#
|
672
|
+
# @!attribute [rw] name
|
673
|
+
# The name of the bridge's output.
|
674
|
+
# @return [String]
|
675
|
+
#
|
676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeFlowOutput AWS API Documentation
|
677
|
+
#
|
678
|
+
class BridgeFlowOutput < Struct.new(
|
679
|
+
:flow_arn,
|
680
|
+
:flow_source_arn,
|
681
|
+
:name)
|
682
|
+
SENSITIVE = []
|
683
|
+
include Aws::Structure
|
684
|
+
end
|
685
|
+
|
686
|
+
# The source of the bridge. A flow source originates in MediaConnect as
|
687
|
+
# an existing cloud flow.
|
688
|
+
#
|
689
|
+
# @!attribute [rw] flow_arn
|
690
|
+
# The ARN of the cloud flow used as a source of this bridge.
|
691
|
+
# @return [String]
|
692
|
+
#
|
693
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
694
|
+
# The name of the VPC interface attachment to use for this source.
|
695
|
+
# @return [Types::VpcInterfaceAttachment]
|
696
|
+
#
|
697
|
+
# @!attribute [rw] name
|
698
|
+
# The name of the flow source.
|
699
|
+
# @return [String]
|
700
|
+
#
|
701
|
+
# @!attribute [rw] output_arn
|
702
|
+
# The Amazon Resource Number (ARN) of the output.
|
703
|
+
# @return [String]
|
704
|
+
#
|
705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeFlowSource AWS API Documentation
|
706
|
+
#
|
707
|
+
class BridgeFlowSource < Struct.new(
|
708
|
+
:flow_arn,
|
709
|
+
:flow_vpc_interface_attachment,
|
710
|
+
:name,
|
711
|
+
:output_arn)
|
712
|
+
SENSITIVE = []
|
713
|
+
include Aws::Structure
|
714
|
+
end
|
715
|
+
|
716
|
+
# The output of the bridge. A network output is delivered to your
|
717
|
+
# premises.
|
718
|
+
#
|
719
|
+
# @!attribute [rw] ip_address
|
720
|
+
# The network output IP Address.
|
721
|
+
# @return [String]
|
722
|
+
#
|
723
|
+
# @!attribute [rw] name
|
724
|
+
# The network output name.
|
725
|
+
# @return [String]
|
726
|
+
#
|
727
|
+
# @!attribute [rw] network_name
|
728
|
+
# The network output's gateway network name.
|
729
|
+
# @return [String]
|
730
|
+
#
|
731
|
+
# @!attribute [rw] port
|
732
|
+
# The network output port.
|
733
|
+
# @return [Integer]
|
734
|
+
#
|
735
|
+
# @!attribute [rw] protocol
|
736
|
+
# The network output protocol.
|
737
|
+
# @return [String]
|
738
|
+
#
|
739
|
+
# @!attribute [rw] ttl
|
740
|
+
# The network output TTL.
|
741
|
+
# @return [Integer]
|
742
|
+
#
|
743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeNetworkOutput AWS API Documentation
|
744
|
+
#
|
745
|
+
class BridgeNetworkOutput < Struct.new(
|
746
|
+
:ip_address,
|
747
|
+
:name,
|
748
|
+
:network_name,
|
749
|
+
:port,
|
750
|
+
:protocol,
|
751
|
+
:ttl)
|
752
|
+
SENSITIVE = []
|
753
|
+
include Aws::Structure
|
754
|
+
end
|
755
|
+
|
756
|
+
# The source of the bridge. A network source originates at your
|
757
|
+
# premises.
|
758
|
+
#
|
759
|
+
# @!attribute [rw] multicast_ip
|
760
|
+
# The network source multicast IP.
|
761
|
+
# @return [String]
|
762
|
+
#
|
763
|
+
# @!attribute [rw] name
|
764
|
+
# The name of the network source.
|
765
|
+
# @return [String]
|
766
|
+
#
|
767
|
+
# @!attribute [rw] network_name
|
768
|
+
# The network source's gateway network name.
|
769
|
+
# @return [String]
|
770
|
+
#
|
771
|
+
# @!attribute [rw] port
|
772
|
+
# The network source port.
|
773
|
+
# @return [Integer]
|
774
|
+
#
|
775
|
+
# @!attribute [rw] protocol
|
776
|
+
# The network source protocol.
|
777
|
+
# @return [String]
|
778
|
+
#
|
779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeNetworkSource AWS API Documentation
|
780
|
+
#
|
781
|
+
class BridgeNetworkSource < Struct.new(
|
782
|
+
:multicast_ip,
|
783
|
+
:name,
|
784
|
+
:network_name,
|
785
|
+
:port,
|
786
|
+
:protocol)
|
787
|
+
SENSITIVE = []
|
788
|
+
include Aws::Structure
|
789
|
+
end
|
790
|
+
|
791
|
+
# The output of the bridge.
|
792
|
+
#
|
793
|
+
# @!attribute [rw] flow_output
|
794
|
+
# The output of the bridge. A flow output is delivered to the AWS
|
795
|
+
# cloud.
|
796
|
+
# @return [Types::BridgeFlowOutput]
|
797
|
+
#
|
798
|
+
# @!attribute [rw] network_output
|
799
|
+
# The output of the bridge. A network output is delivered to your
|
800
|
+
# premises.
|
801
|
+
# @return [Types::BridgeNetworkOutput]
|
802
|
+
#
|
803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeOutput AWS API Documentation
|
804
|
+
#
|
805
|
+
class BridgeOutput < Struct.new(
|
806
|
+
:flow_output,
|
807
|
+
:network_output)
|
808
|
+
SENSITIVE = []
|
809
|
+
include Aws::Structure
|
810
|
+
end
|
811
|
+
|
812
|
+
# The bridge's source.
|
813
|
+
#
|
814
|
+
# @!attribute [rw] flow_source
|
815
|
+
# The source of the bridge. A flow source originates in MediaConnect
|
816
|
+
# as an existing cloud flow.
|
817
|
+
# @return [Types::BridgeFlowSource]
|
818
|
+
#
|
819
|
+
# @!attribute [rw] network_source
|
820
|
+
# The source of the bridge. A network source originates at your
|
821
|
+
# premises.
|
822
|
+
# @return [Types::BridgeNetworkSource]
|
823
|
+
#
|
824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BridgeSource AWS API Documentation
|
825
|
+
#
|
826
|
+
class BridgeSource < Struct.new(
|
827
|
+
:flow_source,
|
828
|
+
:network_source)
|
829
|
+
SENSITIVE = []
|
830
|
+
include Aws::Structure
|
831
|
+
end
|
832
|
+
|
833
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
834
|
+
# and documentation for the operation for more information on the cause
|
835
|
+
# of this exception.
|
836
|
+
#
|
837
|
+
# @!attribute [rw] message
|
838
|
+
# @return [String]
|
839
|
+
#
|
840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ConflictException AWS API Documentation
|
841
|
+
#
|
842
|
+
class ConflictException < Struct.new(
|
843
|
+
:message)
|
844
|
+
SENSITIVE = []
|
845
|
+
include Aws::Structure
|
846
|
+
end
|
847
|
+
|
848
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
849
|
+
# and documentation for the operation for more information on the cause
|
850
|
+
# of this exception.
|
851
|
+
#
|
852
|
+
# @!attribute [rw] message
|
853
|
+
# @return [String]
|
854
|
+
#
|
855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridge420Exception AWS API Documentation
|
856
|
+
#
|
857
|
+
class CreateBridge420Exception < Struct.new(
|
858
|
+
:message)
|
859
|
+
SENSITIVE = []
|
860
|
+
include Aws::Structure
|
861
|
+
end
|
862
|
+
|
863
|
+
# Creates a new bridge. The request must include one source.
|
864
|
+
#
|
865
|
+
# @!attribute [rw] egress_gateway_bridge
|
866
|
+
# Create a bridge with the egress bridge type. An egress bridge is a
|
867
|
+
# cloud-to-ground bridge. The content comes from an existing
|
868
|
+
# MediaConnect flow and is delivered to your premises.
|
869
|
+
# @return [Types::AddEgressGatewayBridgeRequest]
|
870
|
+
#
|
871
|
+
# @!attribute [rw] ingress_gateway_bridge
|
872
|
+
# Create a bridge with the ingress bridge type. An ingress bridge is a
|
873
|
+
# ground-to-cloud bridge. The content originates at your premises and
|
874
|
+
# is delivered to the cloud.
|
875
|
+
# @return [Types::AddIngressGatewayBridgeRequest]
|
876
|
+
#
|
877
|
+
# @!attribute [rw] name
|
878
|
+
# The name of the bridge. This name can not be modified after the
|
879
|
+
# bridge is created.
|
880
|
+
# @return [String]
|
881
|
+
#
|
882
|
+
# @!attribute [rw] outputs
|
883
|
+
# The outputs that you want to add to this bridge.
|
884
|
+
# @return [Array<Types::AddBridgeOutputRequest>]
|
885
|
+
#
|
886
|
+
# @!attribute [rw] placement_arn
|
887
|
+
# The bridge placement Amazon Resource Number (ARN).
|
888
|
+
# @return [String]
|
889
|
+
#
|
890
|
+
# @!attribute [rw] source_failover_config
|
891
|
+
# The settings for source failover.
|
892
|
+
# @return [Types::FailoverConfig]
|
893
|
+
#
|
894
|
+
# @!attribute [rw] sources
|
895
|
+
# The sources that you want to add to this bridge.
|
896
|
+
# @return [Array<Types::AddBridgeSourceRequest>]
|
897
|
+
#
|
898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeRequest AWS API Documentation
|
899
|
+
#
|
900
|
+
class CreateBridgeRequest < Struct.new(
|
901
|
+
:egress_gateway_bridge,
|
902
|
+
:ingress_gateway_bridge,
|
903
|
+
:name,
|
904
|
+
:outputs,
|
905
|
+
:placement_arn,
|
906
|
+
:source_failover_config,
|
907
|
+
:sources)
|
908
|
+
SENSITIVE = []
|
909
|
+
include Aws::Structure
|
910
|
+
end
|
911
|
+
|
912
|
+
# The result of a successful CreateBridge request.
|
913
|
+
#
|
914
|
+
# @!attribute [rw] bridge
|
915
|
+
# A Bridge is the connection between your datacenter's Instances and
|
916
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
917
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
918
|
+
# @return [Types::Bridge]
|
919
|
+
#
|
920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridgeResponse AWS API Documentation
|
921
|
+
#
|
922
|
+
class CreateBridgeResponse < Struct.new(
|
923
|
+
:bridge)
|
924
|
+
SENSITIVE = []
|
925
|
+
include Aws::Structure
|
926
|
+
end
|
927
|
+
|
366
928
|
# Exception raised by AWS Elemental MediaConnect. See the error message
|
367
929
|
# and documentation for the operation for more information on the cause
|
368
930
|
# of this exception.
|
@@ -455,6 +1017,86 @@ module Aws::MediaConnect
|
|
455
1017
|
include Aws::Structure
|
456
1018
|
end
|
457
1019
|
|
1020
|
+
# Exception raised by AWS Elemental MediaConnect. See the error message
|
1021
|
+
# and documentation for the operation for more information on the cause
|
1022
|
+
# of this exception.
|
1023
|
+
#
|
1024
|
+
# @!attribute [rw] message
|
1025
|
+
# @return [String]
|
1026
|
+
#
|
1027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGateway420Exception AWS API Documentation
|
1028
|
+
#
|
1029
|
+
class CreateGateway420Exception < Struct.new(
|
1030
|
+
:message)
|
1031
|
+
SENSITIVE = []
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
# Creates a new gateway. The request must include one network (up to 4).
|
1036
|
+
#
|
1037
|
+
# @!attribute [rw] egress_cidr_blocks
|
1038
|
+
# The range of IP addresses that are allowed to contribute content or
|
1039
|
+
# initiate output requests for flows communicating with this gateway.
|
1040
|
+
# These IP addresses should be in the form of a Classless Inter-Domain
|
1041
|
+
# Routing (CIDR) block; for example, 10.0.0.0/16.
|
1042
|
+
# @return [Array<String>]
|
1043
|
+
#
|
1044
|
+
# @!attribute [rw] name
|
1045
|
+
# The name of the gateway. This name can not be modified after the
|
1046
|
+
# gateway is created.
|
1047
|
+
# @return [String]
|
1048
|
+
#
|
1049
|
+
# @!attribute [rw] networks
|
1050
|
+
# The list of networks that you want to add.
|
1051
|
+
# @return [Array<Types::GatewayNetwork>]
|
1052
|
+
#
|
1053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayRequest AWS API Documentation
|
1054
|
+
#
|
1055
|
+
class CreateGatewayRequest < Struct.new(
|
1056
|
+
:egress_cidr_blocks,
|
1057
|
+
:name,
|
1058
|
+
:networks)
|
1059
|
+
SENSITIVE = []
|
1060
|
+
include Aws::Structure
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
# @!attribute [rw] gateway
|
1064
|
+
# The settings for a gateway, including its networks.
|
1065
|
+
# @return [Types::Gateway]
|
1066
|
+
#
|
1067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGatewayResponse AWS API Documentation
|
1068
|
+
#
|
1069
|
+
class CreateGatewayResponse < Struct.new(
|
1070
|
+
:gateway)
|
1071
|
+
SENSITIVE = []
|
1072
|
+
include Aws::Structure
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
# @!attribute [rw] bridge_arn
|
1076
|
+
# @return [String]
|
1077
|
+
#
|
1078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeRequest AWS API Documentation
|
1079
|
+
#
|
1080
|
+
class DeleteBridgeRequest < Struct.new(
|
1081
|
+
:bridge_arn)
|
1082
|
+
SENSITIVE = []
|
1083
|
+
include Aws::Structure
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
# The result of a successful DeleteBridge request.
|
1087
|
+
#
|
1088
|
+
# @!attribute [rw] bridge_arn
|
1089
|
+
# The Amazon Resource Number (ARN) of the deleted bridge.
|
1090
|
+
# @return [String]
|
1091
|
+
#
|
1092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridgeResponse AWS API Documentation
|
1093
|
+
#
|
1094
|
+
class DeleteBridgeResponse < Struct.new(
|
1095
|
+
:bridge_arn)
|
1096
|
+
SENSITIVE = []
|
1097
|
+
include Aws::Structure
|
1098
|
+
end
|
1099
|
+
|
458
1100
|
# @!attribute [rw] flow_arn
|
459
1101
|
# @return [String]
|
460
1102
|
#
|
@@ -485,33 +1127,169 @@ module Aws::MediaConnect
|
|
485
1127
|
include Aws::Structure
|
486
1128
|
end
|
487
1129
|
|
488
|
-
# @!attribute [rw]
|
1130
|
+
# @!attribute [rw] gateway_arn
|
1131
|
+
# @return [String]
|
1132
|
+
#
|
1133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayRequest AWS API Documentation
|
1134
|
+
#
|
1135
|
+
class DeleteGatewayRequest < Struct.new(
|
1136
|
+
:gateway_arn)
|
1137
|
+
SENSITIVE = []
|
1138
|
+
include Aws::Structure
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
# The result of a successful DeleteGateway request.
|
1142
|
+
#
|
1143
|
+
# @!attribute [rw] gateway_arn
|
1144
|
+
# The Amazon Resource Name (ARN) of the gateway that was deleted.
|
1145
|
+
# @return [String]
|
1146
|
+
#
|
1147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGatewayResponse AWS API Documentation
|
1148
|
+
#
|
1149
|
+
class DeleteGatewayResponse < Struct.new(
|
1150
|
+
:gateway_arn)
|
1151
|
+
SENSITIVE = []
|
1152
|
+
include Aws::Structure
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
# @!attribute [rw] force
|
1156
|
+
# @return [Boolean]
|
1157
|
+
#
|
1158
|
+
# @!attribute [rw] gateway_instance_arn
|
1159
|
+
# @return [String]
|
1160
|
+
#
|
1161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstanceRequest AWS API Documentation
|
1162
|
+
#
|
1163
|
+
class DeregisterGatewayInstanceRequest < Struct.new(
|
1164
|
+
:force,
|
1165
|
+
:gateway_instance_arn)
|
1166
|
+
SENSITIVE = []
|
1167
|
+
include Aws::Structure
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
# The result of a successful DeregisterGatewayInstance request.
|
1171
|
+
#
|
1172
|
+
# @!attribute [rw] gateway_instance_arn
|
1173
|
+
# The Amazon Resource Name (ARN) of the instance.
|
1174
|
+
# @return [String]
|
1175
|
+
#
|
1176
|
+
# @!attribute [rw] instance_state
|
1177
|
+
# The status of the instance.
|
1178
|
+
# @return [String]
|
1179
|
+
#
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstanceResponse AWS API Documentation
|
1181
|
+
#
|
1182
|
+
class DeregisterGatewayInstanceResponse < Struct.new(
|
1183
|
+
:gateway_instance_arn,
|
1184
|
+
:instance_state)
|
1185
|
+
SENSITIVE = []
|
1186
|
+
include Aws::Structure
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
# @!attribute [rw] bridge_arn
|
1190
|
+
# @return [String]
|
1191
|
+
#
|
1192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeRequest AWS API Documentation
|
1193
|
+
#
|
1194
|
+
class DescribeBridgeRequest < Struct.new(
|
1195
|
+
:bridge_arn)
|
1196
|
+
SENSITIVE = []
|
1197
|
+
include Aws::Structure
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# The result of a successful DescribeBridge request.
|
1201
|
+
#
|
1202
|
+
# @!attribute [rw] bridge
|
1203
|
+
# A Bridge is the connection between your datacenter's Instances and
|
1204
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
1205
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
1206
|
+
# @return [Types::Bridge]
|
1207
|
+
#
|
1208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridgeResponse AWS API Documentation
|
1209
|
+
#
|
1210
|
+
class DescribeBridgeResponse < Struct.new(
|
1211
|
+
:bridge)
|
1212
|
+
SENSITIVE = []
|
1213
|
+
include Aws::Structure
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# @!attribute [rw] flow_arn
|
1217
|
+
# @return [String]
|
1218
|
+
#
|
1219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowRequest AWS API Documentation
|
1220
|
+
#
|
1221
|
+
class DescribeFlowRequest < Struct.new(
|
1222
|
+
:flow_arn)
|
1223
|
+
SENSITIVE = []
|
1224
|
+
include Aws::Structure
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# The result of a successful DescribeFlow request.
|
1228
|
+
#
|
1229
|
+
# @!attribute [rw] flow
|
1230
|
+
# The settings for a flow, including its source, outputs, and
|
1231
|
+
# entitlements.
|
1232
|
+
# @return [Types::Flow]
|
1233
|
+
#
|
1234
|
+
# @!attribute [rw] messages
|
1235
|
+
# Messages that provide the state of the flow.
|
1236
|
+
# @return [Types::Messages]
|
1237
|
+
#
|
1238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowResponse AWS API Documentation
|
1239
|
+
#
|
1240
|
+
class DescribeFlowResponse < Struct.new(
|
1241
|
+
:flow,
|
1242
|
+
:messages)
|
1243
|
+
SENSITIVE = []
|
1244
|
+
include Aws::Structure
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
# @!attribute [rw] gateway_instance_arn
|
1248
|
+
# @return [String]
|
1249
|
+
#
|
1250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceRequest AWS API Documentation
|
1251
|
+
#
|
1252
|
+
class DescribeGatewayInstanceRequest < Struct.new(
|
1253
|
+
:gateway_instance_arn)
|
1254
|
+
SENSITIVE = []
|
1255
|
+
include Aws::Structure
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# The result of a successful DescribeGatewayInstance request.
|
1259
|
+
#
|
1260
|
+
# @!attribute [rw] gateway_instance
|
1261
|
+
# The settings for an instance in a gateway.
|
1262
|
+
# @return [Types::GatewayInstance]
|
1263
|
+
#
|
1264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstanceResponse AWS API Documentation
|
1265
|
+
#
|
1266
|
+
class DescribeGatewayInstanceResponse < Struct.new(
|
1267
|
+
:gateway_instance)
|
1268
|
+
SENSITIVE = []
|
1269
|
+
include Aws::Structure
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
# @!attribute [rw] gateway_arn
|
489
1273
|
# @return [String]
|
490
1274
|
#
|
491
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/
|
1275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayRequest AWS API Documentation
|
492
1276
|
#
|
493
|
-
class
|
494
|
-
:
|
1277
|
+
class DescribeGatewayRequest < Struct.new(
|
1278
|
+
:gateway_arn)
|
495
1279
|
SENSITIVE = []
|
496
1280
|
include Aws::Structure
|
497
1281
|
end
|
498
1282
|
|
499
|
-
# The result of a successful
|
500
|
-
#
|
501
|
-
# @!attribute [rw] flow
|
502
|
-
# The settings for a flow, including its source, outputs, and
|
503
|
-
# entitlements.
|
504
|
-
# @return [Types::Flow]
|
1283
|
+
# The result of a successful DescribeGateway request.
|
505
1284
|
#
|
506
|
-
# @!attribute [rw]
|
507
|
-
#
|
508
|
-
# @return [Types::
|
1285
|
+
# @!attribute [rw] gateway
|
1286
|
+
# The settings for a gateway, including its networks.
|
1287
|
+
# @return [Types::Gateway]
|
509
1288
|
#
|
510
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/
|
1289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayResponse AWS API Documentation
|
511
1290
|
#
|
512
|
-
class
|
513
|
-
:
|
514
|
-
:messages)
|
1291
|
+
class DescribeGatewayResponse < Struct.new(
|
1292
|
+
:gateway)
|
515
1293
|
SENSITIVE = []
|
516
1294
|
include Aws::Structure
|
517
1295
|
end
|
@@ -636,6 +1414,23 @@ module Aws::MediaConnect
|
|
636
1414
|
include Aws::Structure
|
637
1415
|
end
|
638
1416
|
|
1417
|
+
# @!attribute [rw] instance_id
|
1418
|
+
# The ID of the instance running this bridge.
|
1419
|
+
# @return [String]
|
1420
|
+
#
|
1421
|
+
# @!attribute [rw] max_bitrate
|
1422
|
+
# The maximum expected bitrate (in bps) of the egress bridge.
|
1423
|
+
# @return [Integer]
|
1424
|
+
#
|
1425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/EgressGatewayBridge AWS API Documentation
|
1426
|
+
#
|
1427
|
+
class EgressGatewayBridge < Struct.new(
|
1428
|
+
:instance_id,
|
1429
|
+
:max_bitrate)
|
1430
|
+
SENSITIVE = []
|
1431
|
+
include Aws::Structure
|
1432
|
+
end
|
1433
|
+
|
639
1434
|
# A collection of parameters that determine how MediaConnect will
|
640
1435
|
# convert the content. These fields only apply to outputs on flows that
|
641
1436
|
# have a CDI source.
|
@@ -868,8 +1663,7 @@ module Aws::MediaConnect
|
|
868
1663
|
# @return [Array<Types::Entitlement>]
|
869
1664
|
#
|
870
1665
|
# @!attribute [rw] flow_arn
|
871
|
-
# The Amazon Resource Name (ARN)
|
872
|
-
# resource, of the flow.
|
1666
|
+
# The Amazon Resource Name (ARN) of the flow.
|
873
1667
|
# @return [String]
|
874
1668
|
#
|
875
1669
|
# @!attribute [rw] media_streams
|
@@ -1041,6 +1835,143 @@ module Aws::MediaConnect
|
|
1041
1835
|
include Aws::Structure
|
1042
1836
|
end
|
1043
1837
|
|
1838
|
+
# The settings for a gateway, including its networks.
|
1839
|
+
#
|
1840
|
+
# @!attribute [rw] egress_cidr_blocks
|
1841
|
+
# The range of IP addresses that contribute content or initiate output
|
1842
|
+
# requests for flows communicating with this gateway. These IP
|
1843
|
+
# addresses should be in the form of a Classless Inter-Domain Routing
|
1844
|
+
# (CIDR) block; for example, 10.0.0.0/16.
|
1845
|
+
# @return [Array<String>]
|
1846
|
+
#
|
1847
|
+
# @!attribute [rw] gateway_arn
|
1848
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
1849
|
+
# @return [String]
|
1850
|
+
#
|
1851
|
+
# @!attribute [rw] gateway_messages
|
1852
|
+
# @return [Array<Types::MessageDetail>]
|
1853
|
+
#
|
1854
|
+
# @!attribute [rw] gateway_state
|
1855
|
+
# The current status of the gateway.
|
1856
|
+
# @return [String]
|
1857
|
+
#
|
1858
|
+
# @!attribute [rw] name
|
1859
|
+
# The name of the gateway. This name can not be modified after the
|
1860
|
+
# gateway is created.
|
1861
|
+
# @return [String]
|
1862
|
+
#
|
1863
|
+
# @!attribute [rw] networks
|
1864
|
+
# The list of networks in the gateway.
|
1865
|
+
# @return [Array<Types::GatewayNetwork>]
|
1866
|
+
#
|
1867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Gateway AWS API Documentation
|
1868
|
+
#
|
1869
|
+
class Gateway < Struct.new(
|
1870
|
+
:egress_cidr_blocks,
|
1871
|
+
:gateway_arn,
|
1872
|
+
:gateway_messages,
|
1873
|
+
:gateway_state,
|
1874
|
+
:name,
|
1875
|
+
:networks)
|
1876
|
+
SENSITIVE = []
|
1877
|
+
include Aws::Structure
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
# The source configuration for cloud flows receiving a stream from a
|
1881
|
+
# bridge.
|
1882
|
+
#
|
1883
|
+
# @!attribute [rw] bridge_arn
|
1884
|
+
# The ARN of the bridge feeding this flow.
|
1885
|
+
# @return [String]
|
1886
|
+
#
|
1887
|
+
# @!attribute [rw] vpc_interface_attachment
|
1888
|
+
# The name of the VPC interface attachment to use for this bridge
|
1889
|
+
# source.
|
1890
|
+
# @return [Types::VpcInterfaceAttachment]
|
1891
|
+
#
|
1892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayBridgeSource AWS API Documentation
|
1893
|
+
#
|
1894
|
+
class GatewayBridgeSource < Struct.new(
|
1895
|
+
:bridge_arn,
|
1896
|
+
:vpc_interface_attachment)
|
1897
|
+
SENSITIVE = []
|
1898
|
+
include Aws::Structure
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
# The settings for an instance in a gateway.
|
1902
|
+
#
|
1903
|
+
# @!attribute [rw] bridge_placement
|
1904
|
+
# The availability of the instance to host new bridges. The
|
1905
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
1906
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
1907
|
+
# AVAILABLE, new bridges can be added to this instance.
|
1908
|
+
# @return [String]
|
1909
|
+
#
|
1910
|
+
# @!attribute [rw] connection_status
|
1911
|
+
# The connection state of the instance.
|
1912
|
+
# @return [String]
|
1913
|
+
#
|
1914
|
+
# @!attribute [rw] gateway_arn
|
1915
|
+
# The Amazon Resource Name (ARN) of the instance.
|
1916
|
+
# @return [String]
|
1917
|
+
#
|
1918
|
+
# @!attribute [rw] gateway_instance_arn
|
1919
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
1920
|
+
# @return [String]
|
1921
|
+
#
|
1922
|
+
# @!attribute [rw] instance_id
|
1923
|
+
# The managed instance ID generated by the SSM install. This will
|
1924
|
+
# begin with "mi-".
|
1925
|
+
# @return [String]
|
1926
|
+
#
|
1927
|
+
# @!attribute [rw] instance_messages
|
1928
|
+
# @return [Array<Types::MessageDetail>]
|
1929
|
+
#
|
1930
|
+
# @!attribute [rw] instance_state
|
1931
|
+
# The status of the instance.
|
1932
|
+
# @return [String]
|
1933
|
+
#
|
1934
|
+
# @!attribute [rw] running_bridge_count
|
1935
|
+
# The running bridge count.
|
1936
|
+
# @return [Integer]
|
1937
|
+
#
|
1938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayInstance AWS API Documentation
|
1939
|
+
#
|
1940
|
+
class GatewayInstance < Struct.new(
|
1941
|
+
:bridge_placement,
|
1942
|
+
:connection_status,
|
1943
|
+
:gateway_arn,
|
1944
|
+
:gateway_instance_arn,
|
1945
|
+
:instance_id,
|
1946
|
+
:instance_messages,
|
1947
|
+
:instance_state,
|
1948
|
+
:running_bridge_count)
|
1949
|
+
SENSITIVE = []
|
1950
|
+
include Aws::Structure
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
# The network settings for a gateway.
|
1954
|
+
#
|
1955
|
+
# @!attribute [rw] cidr_block
|
1956
|
+
# A unique IP address range to use for this network. These IP
|
1957
|
+
# addresses should be in the form of a Classless Inter-Domain Routing
|
1958
|
+
# (CIDR) block; for example, 10.0.0.0/16.
|
1959
|
+
# @return [String]
|
1960
|
+
#
|
1961
|
+
# @!attribute [rw] name
|
1962
|
+
# The name of the network. This name is used to reference the network
|
1963
|
+
# and must be unique among networks in this gateway.
|
1964
|
+
# @return [String]
|
1965
|
+
#
|
1966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GatewayNetwork AWS API Documentation
|
1967
|
+
#
|
1968
|
+
class GatewayNetwork < Struct.new(
|
1969
|
+
:cidr_block,
|
1970
|
+
:name)
|
1971
|
+
SENSITIVE = []
|
1972
|
+
include Aws::Structure
|
1973
|
+
end
|
1974
|
+
|
1044
1975
|
# The entitlements that you want to grant on a flow.
|
1045
1976
|
#
|
1046
1977
|
# @!attribute [rw] data_transfer_subscriber_fee_percent
|
@@ -1124,7 +2055,7 @@ module Aws::MediaConnect
|
|
1124
2055
|
include Aws::Structure
|
1125
2056
|
end
|
1126
2057
|
|
1127
|
-
# The
|
2058
|
+
# The result of a successful GrantFlowEntitlements request.
|
1128
2059
|
#
|
1129
2060
|
# @!attribute [rw] entitlements
|
1130
2061
|
# The entitlements that were just granted.
|
@@ -1143,6 +2074,28 @@ module Aws::MediaConnect
|
|
1143
2074
|
include Aws::Structure
|
1144
2075
|
end
|
1145
2076
|
|
2077
|
+
# @!attribute [rw] instance_id
|
2078
|
+
# The ID of the instance running this bridge.
|
2079
|
+
# @return [String]
|
2080
|
+
#
|
2081
|
+
# @!attribute [rw] max_bitrate
|
2082
|
+
# The maximum expected bitrate (in bps) of the ingress bridge.
|
2083
|
+
# @return [Integer]
|
2084
|
+
#
|
2085
|
+
# @!attribute [rw] max_outputs
|
2086
|
+
# The maximum number of outputs on the ingress bridge.
|
2087
|
+
# @return [Integer]
|
2088
|
+
#
|
2089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/IngressGatewayBridge AWS API Documentation
|
2090
|
+
#
|
2091
|
+
class IngressGatewayBridge < Struct.new(
|
2092
|
+
:instance_id,
|
2093
|
+
:max_bitrate,
|
2094
|
+
:max_outputs)
|
2095
|
+
SENSITIVE = []
|
2096
|
+
include Aws::Structure
|
2097
|
+
end
|
2098
|
+
|
1146
2099
|
# The transport parameters that are associated with an incoming media
|
1147
2100
|
# stream.
|
1148
2101
|
#
|
@@ -1236,6 +2189,51 @@ module Aws::MediaConnect
|
|
1236
2189
|
include Aws::Structure
|
1237
2190
|
end
|
1238
2191
|
|
2192
|
+
# @!attribute [rw] filter_arn
|
2193
|
+
# @return [String]
|
2194
|
+
#
|
2195
|
+
# @!attribute [rw] max_results
|
2196
|
+
# @return [Integer]
|
2197
|
+
#
|
2198
|
+
# @!attribute [rw] next_token
|
2199
|
+
# @return [String]
|
2200
|
+
#
|
2201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesRequest AWS API Documentation
|
2202
|
+
#
|
2203
|
+
class ListBridgesRequest < Struct.new(
|
2204
|
+
:filter_arn,
|
2205
|
+
:max_results,
|
2206
|
+
:next_token)
|
2207
|
+
SENSITIVE = []
|
2208
|
+
include Aws::Structure
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
# The result of a successful ListBridges request. The response includes
|
2212
|
+
# bridge summaries and the NextToken to use in a subsequent ListBridges
|
2213
|
+
# request.
|
2214
|
+
#
|
2215
|
+
# @!attribute [rw] bridges
|
2216
|
+
# A list of bridge summaries.
|
2217
|
+
# @return [Array<Types::ListedBridge>]
|
2218
|
+
#
|
2219
|
+
# @!attribute [rw] next_token
|
2220
|
+
# The token that identifies which batch of results that you want to
|
2221
|
+
# see. For example, you submit a ListBridges request with MaxResults
|
2222
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2223
|
+
# and a NextToken value. To see the next batch of results, you can
|
2224
|
+
# submit the ListBridges request a second time and specify the
|
2225
|
+
# NextToken value.
|
2226
|
+
# @return [String]
|
2227
|
+
#
|
2228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridgesResponse AWS API Documentation
|
2229
|
+
#
|
2230
|
+
class ListBridgesResponse < Struct.new(
|
2231
|
+
:bridges,
|
2232
|
+
:next_token)
|
2233
|
+
SENSITIVE = []
|
2234
|
+
include Aws::Structure
|
2235
|
+
end
|
2236
|
+
|
1239
2237
|
# @!attribute [rw] max_results
|
1240
2238
|
# @return [Integer]
|
1241
2239
|
#
|
@@ -1318,6 +2316,92 @@ module Aws::MediaConnect
|
|
1318
2316
|
include Aws::Structure
|
1319
2317
|
end
|
1320
2318
|
|
2319
|
+
# @!attribute [rw] filter_arn
|
2320
|
+
# @return [String]
|
2321
|
+
#
|
2322
|
+
# @!attribute [rw] max_results
|
2323
|
+
# @return [Integer]
|
2324
|
+
#
|
2325
|
+
# @!attribute [rw] next_token
|
2326
|
+
# @return [String]
|
2327
|
+
#
|
2328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesRequest AWS API Documentation
|
2329
|
+
#
|
2330
|
+
class ListGatewayInstancesRequest < Struct.new(
|
2331
|
+
:filter_arn,
|
2332
|
+
:max_results,
|
2333
|
+
:next_token)
|
2334
|
+
SENSITIVE = []
|
2335
|
+
include Aws::Structure
|
2336
|
+
end
|
2337
|
+
|
2338
|
+
# The result of a successful ListGatewayInstances request. The response
|
2339
|
+
# includes instance summaries and the NextToken to use in a subsequent
|
2340
|
+
# ListInstances request.
|
2341
|
+
#
|
2342
|
+
# @!attribute [rw] instances
|
2343
|
+
# A list of instance summaries.
|
2344
|
+
# @return [Array<Types::ListedGatewayInstance>]
|
2345
|
+
#
|
2346
|
+
# @!attribute [rw] next_token
|
2347
|
+
# The token that identifies which batch of results that you want to
|
2348
|
+
# see. For example, you submit a ListInstances request with MaxResults
|
2349
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2350
|
+
# and a NextToken value. To see the next batch of results, you can
|
2351
|
+
# submit the ListInstances request a second time and specify the
|
2352
|
+
# NextToken value.
|
2353
|
+
# @return [String]
|
2354
|
+
#
|
2355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstancesResponse AWS API Documentation
|
2356
|
+
#
|
2357
|
+
class ListGatewayInstancesResponse < Struct.new(
|
2358
|
+
:instances,
|
2359
|
+
:next_token)
|
2360
|
+
SENSITIVE = []
|
2361
|
+
include Aws::Structure
|
2362
|
+
end
|
2363
|
+
|
2364
|
+
# @!attribute [rw] max_results
|
2365
|
+
# @return [Integer]
|
2366
|
+
#
|
2367
|
+
# @!attribute [rw] next_token
|
2368
|
+
# @return [String]
|
2369
|
+
#
|
2370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysRequest AWS API Documentation
|
2371
|
+
#
|
2372
|
+
class ListGatewaysRequest < Struct.new(
|
2373
|
+
:max_results,
|
2374
|
+
:next_token)
|
2375
|
+
SENSITIVE = []
|
2376
|
+
include Aws::Structure
|
2377
|
+
end
|
2378
|
+
|
2379
|
+
# The result of a successful ListGateways request. The response includes
|
2380
|
+
# gateway summaries and the NextToken to use in a subsequent
|
2381
|
+
# ListGateways request.
|
2382
|
+
#
|
2383
|
+
# @!attribute [rw] gateways
|
2384
|
+
# A list of gateway summaries.
|
2385
|
+
# @return [Array<Types::ListedGateway>]
|
2386
|
+
#
|
2387
|
+
# @!attribute [rw] next_token
|
2388
|
+
# The token that identifies which batch of results that you want to
|
2389
|
+
# see. For example, you submit a ListGateways request with MaxResults
|
2390
|
+
# set at 5. The service returns the first batch of results (up to 5)
|
2391
|
+
# and a NextToken value. To see the next batch of results, you can
|
2392
|
+
# submit the ListGateways request a second time and specify the
|
2393
|
+
# NextToken value.
|
2394
|
+
# @return [String]
|
2395
|
+
#
|
2396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewaysResponse AWS API Documentation
|
2397
|
+
#
|
2398
|
+
class ListGatewaysResponse < Struct.new(
|
2399
|
+
:gateways,
|
2400
|
+
:next_token)
|
2401
|
+
SENSITIVE = []
|
2402
|
+
include Aws::Structure
|
2403
|
+
end
|
2404
|
+
|
1321
2405
|
# @!attribute [rw] max_results
|
1322
2406
|
# @return [Integer]
|
1323
2407
|
#
|
@@ -1435,6 +2519,39 @@ module Aws::MediaConnect
|
|
1435
2519
|
include Aws::Structure
|
1436
2520
|
end
|
1437
2521
|
|
2522
|
+
# Displays details of the selected bridge.
|
2523
|
+
#
|
2524
|
+
# @!attribute [rw] bridge_arn
|
2525
|
+
# The ARN of the bridge.
|
2526
|
+
# @return [String]
|
2527
|
+
#
|
2528
|
+
# @!attribute [rw] bridge_state
|
2529
|
+
# @return [String]
|
2530
|
+
#
|
2531
|
+
# @!attribute [rw] bridge_type
|
2532
|
+
# The type of the bridge.
|
2533
|
+
# @return [String]
|
2534
|
+
#
|
2535
|
+
# @!attribute [rw] name
|
2536
|
+
# The name of the bridge.
|
2537
|
+
# @return [String]
|
2538
|
+
#
|
2539
|
+
# @!attribute [rw] placement_arn
|
2540
|
+
# The ARN of the gateway associated with the bridge.
|
2541
|
+
# @return [String]
|
2542
|
+
#
|
2543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedBridge AWS API Documentation
|
2544
|
+
#
|
2545
|
+
class ListedBridge < Struct.new(
|
2546
|
+
:bridge_arn,
|
2547
|
+
:bridge_state,
|
2548
|
+
:bridge_type,
|
2549
|
+
:name,
|
2550
|
+
:placement_arn)
|
2551
|
+
SENSITIVE = []
|
2552
|
+
include Aws::Structure
|
2553
|
+
end
|
2554
|
+
|
1438
2555
|
# An entitlement that has been granted to you from other AWS accounts.
|
1439
2556
|
#
|
1440
2557
|
# @!attribute [rw] data_transfer_subscriber_fee_percent
|
@@ -1508,6 +2625,59 @@ module Aws::MediaConnect
|
|
1508
2625
|
include Aws::Structure
|
1509
2626
|
end
|
1510
2627
|
|
2628
|
+
# Provides a summary of a gateway, including its name, ARN, and status.
|
2629
|
+
#
|
2630
|
+
# @!attribute [rw] gateway_arn
|
2631
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2632
|
+
# @return [String]
|
2633
|
+
#
|
2634
|
+
# @!attribute [rw] gateway_state
|
2635
|
+
# @return [String]
|
2636
|
+
#
|
2637
|
+
# @!attribute [rw] name
|
2638
|
+
# The name of the gateway.
|
2639
|
+
# @return [String]
|
2640
|
+
#
|
2641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedGateway AWS API Documentation
|
2642
|
+
#
|
2643
|
+
class ListedGateway < Struct.new(
|
2644
|
+
:gateway_arn,
|
2645
|
+
:gateway_state,
|
2646
|
+
:name)
|
2647
|
+
SENSITIVE = []
|
2648
|
+
include Aws::Structure
|
2649
|
+
end
|
2650
|
+
|
2651
|
+
# Provides a summary of an instance.
|
2652
|
+
#
|
2653
|
+
# @!attribute [rw] gateway_arn
|
2654
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2655
|
+
# @return [String]
|
2656
|
+
#
|
2657
|
+
# @!attribute [rw] gateway_instance_arn
|
2658
|
+
# The Amazon Resource Name (ARN) of the instance.
|
2659
|
+
# @return [String]
|
2660
|
+
#
|
2661
|
+
# @!attribute [rw] instance_id
|
2662
|
+
# The managed instance ID generated by the SSM install. This will
|
2663
|
+
# begin with "mi-".
|
2664
|
+
# @return [String]
|
2665
|
+
#
|
2666
|
+
# @!attribute [rw] instance_state
|
2667
|
+
# The status of the instance.
|
2668
|
+
# @return [String]
|
2669
|
+
#
|
2670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedGatewayInstance AWS API Documentation
|
2671
|
+
#
|
2672
|
+
class ListedGatewayInstance < Struct.new(
|
2673
|
+
:gateway_arn,
|
2674
|
+
:gateway_instance_arn,
|
2675
|
+
:instance_id,
|
2676
|
+
:instance_state)
|
2677
|
+
SENSITIVE = []
|
2678
|
+
include Aws::Structure
|
2679
|
+
end
|
2680
|
+
|
1511
2681
|
# The maintenance setting of a flow
|
1512
2682
|
#
|
1513
2683
|
# @!attribute [rw] maintenance_day
|
@@ -1758,12 +2928,35 @@ module Aws::MediaConnect
|
|
1758
2928
|
# The name of the media stream.
|
1759
2929
|
# @return [String]
|
1760
2930
|
#
|
1761
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MediaStreamSourceConfigurationRequest AWS API Documentation
|
2931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MediaStreamSourceConfigurationRequest AWS API Documentation
|
2932
|
+
#
|
2933
|
+
class MediaStreamSourceConfigurationRequest < Struct.new(
|
2934
|
+
:encoding_name,
|
2935
|
+
:input_configurations,
|
2936
|
+
:media_stream_name)
|
2937
|
+
SENSITIVE = []
|
2938
|
+
include Aws::Structure
|
2939
|
+
end
|
2940
|
+
|
2941
|
+
# @!attribute [rw] code
|
2942
|
+
# The error code.
|
2943
|
+
# @return [String]
|
2944
|
+
#
|
2945
|
+
# @!attribute [rw] message
|
2946
|
+
# The specific error message that MediaConnect returns to help you
|
2947
|
+
# understand the reason that the request did not succeed.
|
2948
|
+
# @return [String]
|
2949
|
+
#
|
2950
|
+
# @!attribute [rw] resource_name
|
2951
|
+
# The name of the resource.
|
2952
|
+
# @return [String]
|
2953
|
+
#
|
2954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MessageDetail AWS API Documentation
|
1762
2955
|
#
|
1763
|
-
class
|
1764
|
-
:
|
1765
|
-
:
|
1766
|
-
:
|
2956
|
+
class MessageDetail < Struct.new(
|
2957
|
+
:code,
|
2958
|
+
:message,
|
2959
|
+
:resource_name)
|
1767
2960
|
SENSITIVE = []
|
1768
2961
|
include Aws::Structure
|
1769
2962
|
end
|
@@ -1920,6 +3113,14 @@ module Aws::MediaConnect
|
|
1920
3113
|
# The name of the VPC interface attachment to use for this output.
|
1921
3114
|
# @return [Types::VpcInterfaceAttachment]
|
1922
3115
|
#
|
3116
|
+
# @!attribute [rw] bridge_arn
|
3117
|
+
# The ARN of the bridge that added this output.
|
3118
|
+
# @return [String]
|
3119
|
+
#
|
3120
|
+
# @!attribute [rw] bridge_ports
|
3121
|
+
# The bridge output ports currently in use.
|
3122
|
+
# @return [Array<Integer>]
|
3123
|
+
#
|
1923
3124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Output AWS API Documentation
|
1924
3125
|
#
|
1925
3126
|
class Output < Struct.new(
|
@@ -1935,7 +3136,9 @@ module Aws::MediaConnect
|
|
1935
3136
|
:output_arn,
|
1936
3137
|
:port,
|
1937
3138
|
:transport,
|
1938
|
-
:vpc_interface_attachment
|
3139
|
+
:vpc_interface_attachment,
|
3140
|
+
:bridge_arn,
|
3141
|
+
:bridge_ports)
|
1939
3142
|
SENSITIVE = []
|
1940
3143
|
include Aws::Structure
|
1941
3144
|
end
|
@@ -1991,6 +3194,70 @@ module Aws::MediaConnect
|
|
1991
3194
|
include Aws::Structure
|
1992
3195
|
end
|
1993
3196
|
|
3197
|
+
# @!attribute [rw] bridge_arn
|
3198
|
+
# @return [String]
|
3199
|
+
#
|
3200
|
+
# @!attribute [rw] output_name
|
3201
|
+
# @return [String]
|
3202
|
+
#
|
3203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputRequest AWS API Documentation
|
3204
|
+
#
|
3205
|
+
class RemoveBridgeOutputRequest < Struct.new(
|
3206
|
+
:bridge_arn,
|
3207
|
+
:output_name)
|
3208
|
+
SENSITIVE = []
|
3209
|
+
include Aws::Structure
|
3210
|
+
end
|
3211
|
+
|
3212
|
+
# The result of a successful RemoveBridgeOutput request.
|
3213
|
+
#
|
3214
|
+
# @!attribute [rw] bridge_arn
|
3215
|
+
# @return [String]
|
3216
|
+
#
|
3217
|
+
# @!attribute [rw] output_name
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutputResponse AWS API Documentation
|
3221
|
+
#
|
3222
|
+
class RemoveBridgeOutputResponse < Struct.new(
|
3223
|
+
:bridge_arn,
|
3224
|
+
:output_name)
|
3225
|
+
SENSITIVE = []
|
3226
|
+
include Aws::Structure
|
3227
|
+
end
|
3228
|
+
|
3229
|
+
# @!attribute [rw] bridge_arn
|
3230
|
+
# @return [String]
|
3231
|
+
#
|
3232
|
+
# @!attribute [rw] source_name
|
3233
|
+
# @return [String]
|
3234
|
+
#
|
3235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceRequest AWS API Documentation
|
3236
|
+
#
|
3237
|
+
class RemoveBridgeSourceRequest < Struct.new(
|
3238
|
+
:bridge_arn,
|
3239
|
+
:source_name)
|
3240
|
+
SENSITIVE = []
|
3241
|
+
include Aws::Structure
|
3242
|
+
end
|
3243
|
+
|
3244
|
+
# The result of a successful RemoveBridgeSource request.
|
3245
|
+
#
|
3246
|
+
# @!attribute [rw] bridge_arn
|
3247
|
+
# @return [String]
|
3248
|
+
#
|
3249
|
+
# @!attribute [rw] source_name
|
3250
|
+
# @return [String]
|
3251
|
+
#
|
3252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSourceResponse AWS API Documentation
|
3253
|
+
#
|
3254
|
+
class RemoveBridgeSourceResponse < Struct.new(
|
3255
|
+
:bridge_arn,
|
3256
|
+
:source_name)
|
3257
|
+
SENSITIVE = []
|
3258
|
+
include Aws::Structure
|
3259
|
+
end
|
3260
|
+
|
1994
3261
|
# @!attribute [rw] flow_arn
|
1995
3262
|
# @return [String]
|
1996
3263
|
#
|
@@ -2320,6 +3587,27 @@ module Aws::MediaConnect
|
|
2320
3587
|
include Aws::Structure
|
2321
3588
|
end
|
2322
3589
|
|
3590
|
+
# The source configuration for cloud flows receiving a stream from a
|
3591
|
+
# bridge.
|
3592
|
+
#
|
3593
|
+
# @!attribute [rw] bridge_arn
|
3594
|
+
# The ARN of the bridge feeding this flow.
|
3595
|
+
# @return [String]
|
3596
|
+
#
|
3597
|
+
# @!attribute [rw] vpc_interface_attachment
|
3598
|
+
# The name of the VPC interface attachment to use for this bridge
|
3599
|
+
# source.
|
3600
|
+
# @return [Types::VpcInterfaceAttachment]
|
3601
|
+
#
|
3602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SetGatewayBridgeSourceRequest AWS API Documentation
|
3603
|
+
#
|
3604
|
+
class SetGatewayBridgeSourceRequest < Struct.new(
|
3605
|
+
:bridge_arn,
|
3606
|
+
:vpc_interface_attachment)
|
3607
|
+
SENSITIVE = []
|
3608
|
+
include Aws::Structure
|
3609
|
+
end
|
3610
|
+
|
2323
3611
|
# The settings for the source of the flow.
|
2324
3612
|
#
|
2325
3613
|
# @!attribute [rw] decryption
|
@@ -2343,7 +3631,8 @@ module Aws::MediaConnect
|
|
2343
3631
|
# @return [Integer]
|
2344
3632
|
#
|
2345
3633
|
# @!attribute [rw] max_bitrate
|
2346
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
3634
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
3635
|
+
# streams.
|
2347
3636
|
# @return [Integer]
|
2348
3637
|
#
|
2349
3638
|
# @!attribute [rw] max_latency
|
@@ -2398,7 +3687,7 @@ module Aws::MediaConnect
|
|
2398
3687
|
#
|
2399
3688
|
# @!attribute [rw] stream_id
|
2400
3689
|
# The stream ID that you want to use for this transport. This
|
2401
|
-
# parameter applies only to Zixi-based streams.
|
3690
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
2402
3691
|
# @return [String]
|
2403
3692
|
#
|
2404
3693
|
# @!attribute [rw] vpc_interface_name
|
@@ -2412,6 +3701,11 @@ module Aws::MediaConnect
|
|
2412
3701
|
# 10.0.0.0/16.
|
2413
3702
|
# @return [String]
|
2414
3703
|
#
|
3704
|
+
# @!attribute [rw] gateway_bridge_source
|
3705
|
+
# The source configuration for cloud flows receiving a stream from a
|
3706
|
+
# bridge.
|
3707
|
+
# @return [Types::SetGatewayBridgeSourceRequest]
|
3708
|
+
#
|
2415
3709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SetSourceRequest AWS API Documentation
|
2416
3710
|
#
|
2417
3711
|
class SetSourceRequest < Struct.new(
|
@@ -2432,7 +3726,8 @@ module Aws::MediaConnect
|
|
2432
3726
|
:source_listener_port,
|
2433
3727
|
:stream_id,
|
2434
3728
|
:vpc_interface_name,
|
2435
|
-
:whitelist_cidr
|
3729
|
+
:whitelist_cidr,
|
3730
|
+
:gateway_bridge_source)
|
2436
3731
|
SENSITIVE = []
|
2437
3732
|
include Aws::Structure
|
2438
3733
|
end
|
@@ -2509,6 +3804,11 @@ module Aws::MediaConnect
|
|
2509
3804
|
# 10.0.0.0/16.
|
2510
3805
|
# @return [String]
|
2511
3806
|
#
|
3807
|
+
# @!attribute [rw] gateway_bridge_source
|
3808
|
+
# The source configuration for cloud flows receiving a stream from a
|
3809
|
+
# bridge.
|
3810
|
+
# @return [Types::GatewayBridgeSource]
|
3811
|
+
#
|
2512
3812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Source AWS API Documentation
|
2513
3813
|
#
|
2514
3814
|
class Source < Struct.new(
|
@@ -2525,7 +3825,8 @@ module Aws::MediaConnect
|
|
2525
3825
|
:source_arn,
|
2526
3826
|
:transport,
|
2527
3827
|
:vpc_interface_name,
|
2528
|
-
:whitelist_cidr
|
3828
|
+
:whitelist_cidr,
|
3829
|
+
:gateway_bridge_source)
|
2529
3830
|
SENSITIVE = []
|
2530
3831
|
include Aws::Structure
|
2531
3832
|
end
|
@@ -2654,7 +3955,8 @@ module Aws::MediaConnect
|
|
2654
3955
|
# @return [Array<String>]
|
2655
3956
|
#
|
2656
3957
|
# @!attribute [rw] max_bitrate
|
2657
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
3958
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
3959
|
+
# streams.
|
2658
3960
|
# @return [Integer]
|
2659
3961
|
#
|
2660
3962
|
# @!attribute [rw] max_latency
|
@@ -2709,7 +4011,7 @@ module Aws::MediaConnect
|
|
2709
4011
|
#
|
2710
4012
|
# @!attribute [rw] stream_id
|
2711
4013
|
# The stream ID that you want to use for this transport. This
|
2712
|
-
# parameter applies only to Zixi-based streams.
|
4014
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
2713
4015
|
# @return [String]
|
2714
4016
|
#
|
2715
4017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Transport AWS API Documentation
|
@@ -2747,6 +4049,265 @@ module Aws::MediaConnect
|
|
2747
4049
|
include Aws::Structure
|
2748
4050
|
end
|
2749
4051
|
|
4052
|
+
# Update the flow source of the bridge.
|
4053
|
+
#
|
4054
|
+
# @!attribute [rw] flow_arn
|
4055
|
+
# The ARN of the cloud flow to use as a source of this bridge.
|
4056
|
+
# @return [String]
|
4057
|
+
#
|
4058
|
+
# @!attribute [rw] flow_vpc_interface_attachment
|
4059
|
+
# The name of the VPC interface attachment to use for this source.
|
4060
|
+
# @return [Types::VpcInterfaceAttachment]
|
4061
|
+
#
|
4062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeFlowSourceRequest AWS API Documentation
|
4063
|
+
#
|
4064
|
+
class UpdateBridgeFlowSourceRequest < Struct.new(
|
4065
|
+
:flow_arn,
|
4066
|
+
:flow_vpc_interface_attachment)
|
4067
|
+
SENSITIVE = []
|
4068
|
+
include Aws::Structure
|
4069
|
+
end
|
4070
|
+
|
4071
|
+
# Update an existing network output.
|
4072
|
+
#
|
4073
|
+
# @!attribute [rw] ip_address
|
4074
|
+
# The network output IP Address.
|
4075
|
+
# @return [String]
|
4076
|
+
#
|
4077
|
+
# @!attribute [rw] network_name
|
4078
|
+
# The network output's gateway network name.
|
4079
|
+
# @return [String]
|
4080
|
+
#
|
4081
|
+
# @!attribute [rw] port
|
4082
|
+
# The network output port.
|
4083
|
+
# @return [Integer]
|
4084
|
+
#
|
4085
|
+
# @!attribute [rw] protocol
|
4086
|
+
# The network output protocol.
|
4087
|
+
# @return [String]
|
4088
|
+
#
|
4089
|
+
# @!attribute [rw] ttl
|
4090
|
+
# The network output TTL.
|
4091
|
+
# @return [Integer]
|
4092
|
+
#
|
4093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeNetworkOutputRequest AWS API Documentation
|
4094
|
+
#
|
4095
|
+
class UpdateBridgeNetworkOutputRequest < Struct.new(
|
4096
|
+
:ip_address,
|
4097
|
+
:network_name,
|
4098
|
+
:port,
|
4099
|
+
:protocol,
|
4100
|
+
:ttl)
|
4101
|
+
SENSITIVE = []
|
4102
|
+
include Aws::Structure
|
4103
|
+
end
|
4104
|
+
|
4105
|
+
# Update the network source of the bridge.
|
4106
|
+
#
|
4107
|
+
# @!attribute [rw] multicast_ip
|
4108
|
+
# The network source multicast IP.
|
4109
|
+
# @return [String]
|
4110
|
+
#
|
4111
|
+
# @!attribute [rw] network_name
|
4112
|
+
# The network source's gateway network name.
|
4113
|
+
# @return [String]
|
4114
|
+
#
|
4115
|
+
# @!attribute [rw] port
|
4116
|
+
# The network source port.
|
4117
|
+
# @return [Integer]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] protocol
|
4120
|
+
# The network source protocol.
|
4121
|
+
# @return [String]
|
4122
|
+
#
|
4123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeNetworkSourceRequest AWS API Documentation
|
4124
|
+
#
|
4125
|
+
class UpdateBridgeNetworkSourceRequest < Struct.new(
|
4126
|
+
:multicast_ip,
|
4127
|
+
:network_name,
|
4128
|
+
:port,
|
4129
|
+
:protocol)
|
4130
|
+
SENSITIVE = []
|
4131
|
+
include Aws::Structure
|
4132
|
+
end
|
4133
|
+
|
4134
|
+
# Update an existing bridge output.
|
4135
|
+
#
|
4136
|
+
# @!attribute [rw] bridge_arn
|
4137
|
+
# @return [String]
|
4138
|
+
#
|
4139
|
+
# @!attribute [rw] network_output
|
4140
|
+
# Update an existing network output.
|
4141
|
+
# @return [Types::UpdateBridgeNetworkOutputRequest]
|
4142
|
+
#
|
4143
|
+
# @!attribute [rw] output_name
|
4144
|
+
# @return [String]
|
4145
|
+
#
|
4146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputRequest AWS API Documentation
|
4147
|
+
#
|
4148
|
+
class UpdateBridgeOutputRequest < Struct.new(
|
4149
|
+
:bridge_arn,
|
4150
|
+
:network_output,
|
4151
|
+
:output_name)
|
4152
|
+
SENSITIVE = []
|
4153
|
+
include Aws::Structure
|
4154
|
+
end
|
4155
|
+
|
4156
|
+
# The result of a successful UpdateBridgeOutput request.
|
4157
|
+
#
|
4158
|
+
# @!attribute [rw] bridge_arn
|
4159
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
4160
|
+
# @return [String]
|
4161
|
+
#
|
4162
|
+
# @!attribute [rw] output
|
4163
|
+
# The output that you updated.
|
4164
|
+
# @return [Types::BridgeOutput]
|
4165
|
+
#
|
4166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutputResponse AWS API Documentation
|
4167
|
+
#
|
4168
|
+
class UpdateBridgeOutputResponse < Struct.new(
|
4169
|
+
:bridge_arn,
|
4170
|
+
:output)
|
4171
|
+
SENSITIVE = []
|
4172
|
+
include Aws::Structure
|
4173
|
+
end
|
4174
|
+
|
4175
|
+
# Update an existing bridge.
|
4176
|
+
#
|
4177
|
+
# @!attribute [rw] bridge_arn
|
4178
|
+
# @return [String]
|
4179
|
+
#
|
4180
|
+
# @!attribute [rw] egress_gateway_bridge
|
4181
|
+
# @return [Types::UpdateEgressGatewayBridgeRequest]
|
4182
|
+
#
|
4183
|
+
# @!attribute [rw] ingress_gateway_bridge
|
4184
|
+
# @return [Types::UpdateIngressGatewayBridgeRequest]
|
4185
|
+
#
|
4186
|
+
# @!attribute [rw] source_failover_config
|
4187
|
+
# The settings for source failover.
|
4188
|
+
# @return [Types::UpdateFailoverConfig]
|
4189
|
+
#
|
4190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeRequest AWS API Documentation
|
4191
|
+
#
|
4192
|
+
class UpdateBridgeRequest < Struct.new(
|
4193
|
+
:bridge_arn,
|
4194
|
+
:egress_gateway_bridge,
|
4195
|
+
:ingress_gateway_bridge,
|
4196
|
+
:source_failover_config)
|
4197
|
+
SENSITIVE = []
|
4198
|
+
include Aws::Structure
|
4199
|
+
end
|
4200
|
+
|
4201
|
+
# The bridge has been successfully updated.
|
4202
|
+
#
|
4203
|
+
# @!attribute [rw] bridge
|
4204
|
+
# A Bridge is the connection between your datacenter's Instances and
|
4205
|
+
# the AWS cloud. A bridge can be used to send video from the AWS cloud
|
4206
|
+
# to your datacenter or from your datacenter to the AWS cloud.
|
4207
|
+
# @return [Types::Bridge]
|
4208
|
+
#
|
4209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeResponse AWS API Documentation
|
4210
|
+
#
|
4211
|
+
class UpdateBridgeResponse < Struct.new(
|
4212
|
+
:bridge)
|
4213
|
+
SENSITIVE = []
|
4214
|
+
include Aws::Structure
|
4215
|
+
end
|
4216
|
+
|
4217
|
+
# Update the bridge source.
|
4218
|
+
#
|
4219
|
+
# @!attribute [rw] bridge_arn
|
4220
|
+
# @return [String]
|
4221
|
+
#
|
4222
|
+
# @!attribute [rw] flow_source
|
4223
|
+
# Update the flow source of the bridge.
|
4224
|
+
# @return [Types::UpdateBridgeFlowSourceRequest]
|
4225
|
+
#
|
4226
|
+
# @!attribute [rw] network_source
|
4227
|
+
# Update the network source of the bridge.
|
4228
|
+
# @return [Types::UpdateBridgeNetworkSourceRequest]
|
4229
|
+
#
|
4230
|
+
# @!attribute [rw] source_name
|
4231
|
+
# @return [String]
|
4232
|
+
#
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceRequest AWS API Documentation
|
4234
|
+
#
|
4235
|
+
class UpdateBridgeSourceRequest < Struct.new(
|
4236
|
+
:bridge_arn,
|
4237
|
+
:flow_source,
|
4238
|
+
:network_source,
|
4239
|
+
:source_name)
|
4240
|
+
SENSITIVE = []
|
4241
|
+
include Aws::Structure
|
4242
|
+
end
|
4243
|
+
|
4244
|
+
# The result of a successful UpdateBridgeSource request.
|
4245
|
+
#
|
4246
|
+
# @!attribute [rw] bridge_arn
|
4247
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
4248
|
+
# @return [String]
|
4249
|
+
#
|
4250
|
+
# @!attribute [rw] source
|
4251
|
+
# The bridge's source.
|
4252
|
+
# @return [Types::BridgeSource]
|
4253
|
+
#
|
4254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSourceResponse AWS API Documentation
|
4255
|
+
#
|
4256
|
+
class UpdateBridgeSourceResponse < Struct.new(
|
4257
|
+
:bridge_arn,
|
4258
|
+
:source)
|
4259
|
+
SENSITIVE = []
|
4260
|
+
include Aws::Structure
|
4261
|
+
end
|
4262
|
+
|
4263
|
+
# Update the state of a bridge. ACTIVE or STANDBY.
|
4264
|
+
#
|
4265
|
+
# @!attribute [rw] bridge_arn
|
4266
|
+
# @return [String]
|
4267
|
+
#
|
4268
|
+
# @!attribute [rw] desired_state
|
4269
|
+
# @return [String]
|
4270
|
+
#
|
4271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateRequest AWS API Documentation
|
4272
|
+
#
|
4273
|
+
class UpdateBridgeStateRequest < Struct.new(
|
4274
|
+
:bridge_arn,
|
4275
|
+
:desired_state)
|
4276
|
+
SENSITIVE = []
|
4277
|
+
include Aws::Structure
|
4278
|
+
end
|
4279
|
+
|
4280
|
+
# The bridge state has been updated.
|
4281
|
+
#
|
4282
|
+
# @!attribute [rw] bridge_arn
|
4283
|
+
# The Amazon Resource Number (ARN) of the bridge.
|
4284
|
+
# @return [String]
|
4285
|
+
#
|
4286
|
+
# @!attribute [rw] desired_state
|
4287
|
+
# The state of the bridge. ACTIVE or STANDBY.
|
4288
|
+
# @return [String]
|
4289
|
+
#
|
4290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeStateResponse AWS API Documentation
|
4291
|
+
#
|
4292
|
+
class UpdateBridgeStateResponse < Struct.new(
|
4293
|
+
:bridge_arn,
|
4294
|
+
:desired_state)
|
4295
|
+
SENSITIVE = []
|
4296
|
+
include Aws::Structure
|
4297
|
+
end
|
4298
|
+
|
4299
|
+
# @!attribute [rw] max_bitrate
|
4300
|
+
# Update an existing egress-type bridge.
|
4301
|
+
# @return [Integer]
|
4302
|
+
#
|
4303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateEgressGatewayBridgeRequest AWS API Documentation
|
4304
|
+
#
|
4305
|
+
class UpdateEgressGatewayBridgeRequest < Struct.new(
|
4306
|
+
:max_bitrate)
|
4307
|
+
SENSITIVE = []
|
4308
|
+
include Aws::Structure
|
4309
|
+
end
|
4310
|
+
|
2750
4311
|
# Information about the encryption of the flow.
|
2751
4312
|
#
|
2752
4313
|
# @!attribute [rw] algorithm
|
@@ -2961,7 +4522,7 @@ module Aws::MediaConnect
|
|
2961
4522
|
include Aws::Structure
|
2962
4523
|
end
|
2963
4524
|
|
2964
|
-
#
|
4525
|
+
# The result of a successful UpdateFlowMediaStream request.
|
2965
4526
|
#
|
2966
4527
|
# @!attribute [rw] flow_arn
|
2967
4528
|
# The ARN of the flow that is associated with the media stream that
|
@@ -3061,7 +4622,7 @@ module Aws::MediaConnect
|
|
3061
4622
|
#
|
3062
4623
|
# @!attribute [rw] stream_id
|
3063
4624
|
# The stream ID that you want to use for this transport. This
|
3064
|
-
# parameter applies only to Zixi-based streams.
|
4625
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
3065
4626
|
# @return [String]
|
3066
4627
|
#
|
3067
4628
|
# @!attribute [rw] vpc_interface_attachment
|
@@ -3135,7 +4696,8 @@ module Aws::MediaConnect
|
|
3135
4696
|
include Aws::Structure
|
3136
4697
|
end
|
3137
4698
|
|
3138
|
-
# Updates an existing
|
4699
|
+
# The result of a successful UpdateFlow request. Updates an existing
|
4700
|
+
# flow.
|
3139
4701
|
#
|
3140
4702
|
# @!attribute [rw] flow
|
3141
4703
|
# The settings for a flow, including its source, outputs, and
|
@@ -3177,7 +4739,8 @@ module Aws::MediaConnect
|
|
3177
4739
|
# @return [Integer]
|
3178
4740
|
#
|
3179
4741
|
# @!attribute [rw] max_bitrate
|
3180
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC
|
4742
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC
|
4743
|
+
# streams.
|
3181
4744
|
# @return [Integer]
|
3182
4745
|
#
|
3183
4746
|
# @!attribute [rw] max_latency
|
@@ -3231,7 +4794,7 @@ module Aws::MediaConnect
|
|
3231
4794
|
#
|
3232
4795
|
# @!attribute [rw] stream_id
|
3233
4796
|
# The stream ID that you want to use for this transport. This
|
3234
|
-
# parameter applies only to Zixi-based streams.
|
4797
|
+
# parameter applies only to Zixi and SRT caller-based streams.
|
3235
4798
|
# @return [String]
|
3236
4799
|
#
|
3237
4800
|
# @!attribute [rw] vpc_interface_name
|
@@ -3245,6 +4808,11 @@ module Aws::MediaConnect
|
|
3245
4808
|
# 10.0.0.0/16.
|
3246
4809
|
# @return [String]
|
3247
4810
|
#
|
4811
|
+
# @!attribute [rw] gateway_bridge_source
|
4812
|
+
# The source configuration for cloud flows receiving a stream from a
|
4813
|
+
# bridge.
|
4814
|
+
# @return [Types::UpdateGatewayBridgeSourceRequest]
|
4815
|
+
#
|
3248
4816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSourceRequest AWS API Documentation
|
3249
4817
|
#
|
3250
4818
|
class UpdateFlowSourceRequest < Struct.new(
|
@@ -3266,7 +4834,8 @@ module Aws::MediaConnect
|
|
3266
4834
|
:source_listener_port,
|
3267
4835
|
:stream_id,
|
3268
4836
|
:vpc_interface_name,
|
3269
|
-
:whitelist_cidr
|
4837
|
+
:whitelist_cidr,
|
4838
|
+
:gateway_bridge_source)
|
3270
4839
|
SENSITIVE = []
|
3271
4840
|
include Aws::Structure
|
3272
4841
|
end
|
@@ -3292,6 +4861,88 @@ module Aws::MediaConnect
|
|
3292
4861
|
include Aws::Structure
|
3293
4862
|
end
|
3294
4863
|
|
4864
|
+
# The source configuration for cloud flows receiving a stream from a
|
4865
|
+
# bridge.
|
4866
|
+
#
|
4867
|
+
# @!attribute [rw] bridge_arn
|
4868
|
+
# The ARN of the bridge feeding this flow.
|
4869
|
+
# @return [String]
|
4870
|
+
#
|
4871
|
+
# @!attribute [rw] vpc_interface_attachment
|
4872
|
+
# The name of the VPC interface attachment to use for this bridge
|
4873
|
+
# source.
|
4874
|
+
# @return [Types::VpcInterfaceAttachment]
|
4875
|
+
#
|
4876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayBridgeSourceRequest AWS API Documentation
|
4877
|
+
#
|
4878
|
+
class UpdateGatewayBridgeSourceRequest < Struct.new(
|
4879
|
+
:bridge_arn,
|
4880
|
+
:vpc_interface_attachment)
|
4881
|
+
SENSITIVE = []
|
4882
|
+
include Aws::Structure
|
4883
|
+
end
|
4884
|
+
|
4885
|
+
# The state update that you want to make to an existing gateway
|
4886
|
+
# instance.
|
4887
|
+
#
|
4888
|
+
# @!attribute [rw] bridge_placement
|
4889
|
+
# The availability of the instance to host new bridges. The
|
4890
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
4891
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
4892
|
+
# AVAILABLE, new bridges can be added to this instance.
|
4893
|
+
# @return [String]
|
4894
|
+
#
|
4895
|
+
# @!attribute [rw] gateway_instance_arn
|
4896
|
+
# @return [String]
|
4897
|
+
#
|
4898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceRequest AWS API Documentation
|
4899
|
+
#
|
4900
|
+
class UpdateGatewayInstanceRequest < Struct.new(
|
4901
|
+
:bridge_placement,
|
4902
|
+
:gateway_instance_arn)
|
4903
|
+
SENSITIVE = []
|
4904
|
+
include Aws::Structure
|
4905
|
+
end
|
4906
|
+
|
4907
|
+
# The result of a successful UpdateGatewayInstance request.
|
4908
|
+
#
|
4909
|
+
# @!attribute [rw] bridge_placement
|
4910
|
+
# The availability of the instance to host new bridges. The
|
4911
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is
|
4912
|
+
# LOCKED, no new bridges can be deployed to this instance. If it is
|
4913
|
+
# AVAILABLE, new bridges can be added to this instance.
|
4914
|
+
# @return [String]
|
4915
|
+
#
|
4916
|
+
# @!attribute [rw] gateway_instance_arn
|
4917
|
+
# The Amazon Resource Name (ARN) of the instance.
|
4918
|
+
# @return [String]
|
4919
|
+
#
|
4920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstanceResponse AWS API Documentation
|
4921
|
+
#
|
4922
|
+
class UpdateGatewayInstanceResponse < Struct.new(
|
4923
|
+
:bridge_placement,
|
4924
|
+
:gateway_instance_arn)
|
4925
|
+
SENSITIVE = []
|
4926
|
+
include Aws::Structure
|
4927
|
+
end
|
4928
|
+
|
4929
|
+
# @!attribute [rw] max_bitrate
|
4930
|
+
# The maximum expected bitrate (in bps).
|
4931
|
+
# @return [Integer]
|
4932
|
+
#
|
4933
|
+
# @!attribute [rw] max_outputs
|
4934
|
+
# The maximum number of expected outputs.
|
4935
|
+
# @return [Integer]
|
4936
|
+
#
|
4937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateIngressGatewayBridgeRequest AWS API Documentation
|
4938
|
+
#
|
4939
|
+
class UpdateIngressGatewayBridgeRequest < Struct.new(
|
4940
|
+
:max_bitrate,
|
4941
|
+
:max_outputs)
|
4942
|
+
SENSITIVE = []
|
4943
|
+
include Aws::Structure
|
4944
|
+
end
|
4945
|
+
|
3295
4946
|
# Update maintenance setting for a flow
|
3296
4947
|
#
|
3297
4948
|
# @!attribute [rw] maintenance_day
|
@@ -3361,10 +5012,10 @@ module Aws::MediaConnect
|
|
3361
5012
|
include Aws::Structure
|
3362
5013
|
end
|
3363
5014
|
|
3364
|
-
# The settings for attaching a VPC interface to an
|
5015
|
+
# The settings for attaching a VPC interface to an resource.
|
3365
5016
|
#
|
3366
5017
|
# @!attribute [rw] vpc_interface_name
|
3367
|
-
# The name of the VPC interface to use for this
|
5018
|
+
# The name of the VPC interface to use for this resource.
|
3368
5019
|
# @return [String]
|
3369
5020
|
#
|
3370
5021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VpcInterfaceAttachment AWS API Documentation
|