@aws-sdk/client-mediaconnect 3.325.0 → 3.326.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.
Files changed (51) hide show
  1. package/dist-types/commands/AddBridgeOutputsCommand.d.ts +23 -0
  2. package/dist-types/commands/AddBridgeSourcesCommand.d.ts +25 -0
  3. package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +29 -0
  4. package/dist-types/commands/AddFlowOutputsCommand.d.ts +74 -0
  5. package/dist-types/commands/AddFlowSourcesCommand.d.ts +70 -0
  6. package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +20 -0
  7. package/dist-types/commands/CreateBridgeCommand.d.ts +71 -0
  8. package/dist-types/commands/CreateFlowCommand.d.ts +279 -0
  9. package/dist-types/commands/CreateGatewayCommand.d.ts +26 -0
  10. package/dist-types/commands/DeleteBridgeCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteFlowCommand.d.ts +7 -0
  12. package/dist-types/commands/DeleteGatewayCommand.d.ts +6 -0
  13. package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +7 -0
  14. package/dist-types/commands/DescribeBridgeCommand.d.ts +71 -0
  15. package/dist-types/commands/DescribeFlowCommand.d.ts +282 -0
  16. package/dist-types/commands/DescribeGatewayCommand.d.ts +26 -0
  17. package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +21 -0
  18. package/dist-types/commands/DescribeOfferingCommand.d.ts +18 -0
  19. package/dist-types/commands/DescribeReservationCommand.d.ts +23 -0
  20. package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +29 -0
  21. package/dist-types/commands/ListBridgesCommand.d.ts +15 -0
  22. package/dist-types/commands/ListEntitlementsCommand.d.ts +13 -0
  23. package/dist-types/commands/ListFlowsCommand.d.ts +22 -0
  24. package/dist-types/commands/ListGatewayInstancesCommand.d.ts +14 -0
  25. package/dist-types/commands/ListGatewaysCommand.d.ts +13 -0
  26. package/dist-types/commands/ListOfferingsCommand.d.ts +21 -0
  27. package/dist-types/commands/ListReservationsCommand.d.ts +26 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  29. package/dist-types/commands/PurchaseOfferingCommand.d.ts +23 -0
  30. package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +7 -0
  31. package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +7 -0
  32. package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +7 -0
  33. package/dist-types/commands/RemoveFlowOutputCommand.d.ts +7 -0
  34. package/dist-types/commands/RemoveFlowSourceCommand.d.ts +7 -0
  35. package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +10 -0
  36. package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +7 -0
  37. package/dist-types/commands/StartFlowCommand.d.ts +7 -0
  38. package/dist-types/commands/StopFlowCommand.d.ts +7 -0
  39. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  40. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  41. package/dist-types/commands/UpdateBridgeCommand.d.ts +71 -0
  42. package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +21 -0
  43. package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +23 -0
  44. package/dist-types/commands/UpdateBridgeStateCommand.d.ts +7 -0
  45. package/dist-types/commands/UpdateFlowCommand.d.ts +279 -0
  46. package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +27 -0
  47. package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +27 -0
  48. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +72 -0
  49. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +68 -0
  50. package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +7 -0
  51. package/package.json +3 -3
@@ -43,6 +43,27 @@ export interface AddBridgeOutputsCommandOutput extends AddBridgeOutputsResponse,
43
43
  * };
44
44
  * const command = new AddBridgeOutputsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // AddBridgeOutputsResponse
47
+ * // BridgeArn: "STRING_VALUE",
48
+ * // Outputs: [ // __listOfBridgeOutput
49
+ * // { // BridgeOutput
50
+ * // FlowOutput: { // BridgeFlowOutput
51
+ * // FlowArn: "STRING_VALUE", // required
52
+ * // FlowSourceArn: "STRING_VALUE", // required
53
+ * // Name: "STRING_VALUE", // required
54
+ * // },
55
+ * // NetworkOutput: { // BridgeNetworkOutput
56
+ * // IpAddress: "STRING_VALUE", // required
57
+ * // Name: "STRING_VALUE", // required
58
+ * // NetworkName: "STRING_VALUE", // required
59
+ * // Port: Number("int"), // required
60
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
61
+ * // Ttl: Number("int"), // required
62
+ * // },
63
+ * // },
64
+ * // ],
65
+ * // };
66
+ *
46
67
  * ```
47
68
  *
48
69
  * @param AddBridgeOutputsCommandInput - {@link AddBridgeOutputsCommandInput}
@@ -72,6 +93,8 @@ export interface AddBridgeOutputsCommandOutput extends AddBridgeOutputsResponse,
72
93
  * @throws {@link TooManyRequestsException} (client fault)
73
94
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
74
95
  *
96
+ * @throws {@link MediaConnectServiceException}
97
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
75
98
  *
76
99
  */
77
100
  export declare class AddBridgeOutputsCommand extends $Command<AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -49,6 +49,29 @@ export interface AddBridgeSourcesCommandOutput extends AddBridgeSourcesResponse,
49
49
  * };
50
50
  * const command = new AddBridgeSourcesCommand(input);
51
51
  * const response = await client.send(command);
52
+ * // { // AddBridgeSourcesResponse
53
+ * // BridgeArn: "STRING_VALUE",
54
+ * // Sources: [ // __listOfBridgeSource
55
+ * // { // BridgeSource
56
+ * // FlowSource: { // BridgeFlowSource
57
+ * // FlowArn: "STRING_VALUE", // required
58
+ * // FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
59
+ * // VpcInterfaceName: "STRING_VALUE",
60
+ * // },
61
+ * // Name: "STRING_VALUE", // required
62
+ * // OutputArn: "STRING_VALUE",
63
+ * // },
64
+ * // NetworkSource: { // BridgeNetworkSource
65
+ * // MulticastIp: "STRING_VALUE", // required
66
+ * // Name: "STRING_VALUE", // required
67
+ * // NetworkName: "STRING_VALUE", // required
68
+ * // Port: Number("int"), // required
69
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
70
+ * // },
71
+ * // },
72
+ * // ],
73
+ * // };
74
+ *
52
75
  * ```
53
76
  *
54
77
  * @param AddBridgeSourcesCommandInput - {@link AddBridgeSourcesCommandInput}
@@ -78,6 +101,8 @@ export interface AddBridgeSourcesCommandOutput extends AddBridgeSourcesResponse,
78
101
  * @throws {@link TooManyRequestsException} (client fault)
79
102
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
80
103
  *
104
+ * @throws {@link MediaConnectServiceException}
105
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
81
106
  *
82
107
  */
83
108
  export declare class AddBridgeSourcesCommand extends $Command<AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput, MediaConnectClientResolvedConfig> {
@@ -53,6 +53,33 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
53
53
  * };
54
54
  * const command = new AddFlowMediaStreamsCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // AddFlowMediaStreamsResponse
57
+ * // FlowArn: "STRING_VALUE",
58
+ * // MediaStreams: [ // __listOfMediaStream
59
+ * // { // MediaStream
60
+ * // Attributes: { // MediaStreamAttributes
61
+ * // Fmtp: { // Fmtp
62
+ * // ChannelOrder: "STRING_VALUE",
63
+ * // Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
64
+ * // ExactFramerate: "STRING_VALUE",
65
+ * // Par: "STRING_VALUE",
66
+ * // Range: "NARROW" || "FULL" || "FULLPROTECT",
67
+ * // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
68
+ * // Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
69
+ * // },
70
+ * // Lang: "STRING_VALUE",
71
+ * // },
72
+ * // ClockRate: Number("int"),
73
+ * // Description: "STRING_VALUE",
74
+ * // Fmt: Number("int"), // required
75
+ * // MediaStreamId: Number("int"), // required
76
+ * // MediaStreamName: "STRING_VALUE", // required
77
+ * // MediaStreamType: "video" || "audio" || "ancillary-data", // required
78
+ * // VideoFormat: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // };
82
+ *
56
83
  * ```
57
84
  *
58
85
  * @param AddFlowMediaStreamsCommandInput - {@link AddFlowMediaStreamsCommandInput}
@@ -79,6 +106,8 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
79
106
  * @throws {@link TooManyRequestsException} (client fault)
80
107
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
81
108
  *
109
+ * @throws {@link MediaConnectServiceException}
110
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
82
111
  *
83
112
  */
84
113
  export declare class AddFlowMediaStreamsCommand extends $Command<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -82,6 +82,78 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
82
82
  * };
83
83
  * const command = new AddFlowOutputsCommand(input);
84
84
  * const response = await client.send(command);
85
+ * // { // AddFlowOutputsResponse
86
+ * // FlowArn: "STRING_VALUE",
87
+ * // Outputs: [ // __listOfOutput
88
+ * // { // Output
89
+ * // DataTransferSubscriberFeePercent: Number("int"),
90
+ * // Description: "STRING_VALUE",
91
+ * // Destination: "STRING_VALUE",
92
+ * // Encryption: { // Encryption
93
+ * // Algorithm: "aes128" || "aes192" || "aes256",
94
+ * // ConstantInitializationVector: "STRING_VALUE",
95
+ * // DeviceId: "STRING_VALUE",
96
+ * // KeyType: "speke" || "static-key" || "srt-password",
97
+ * // Region: "STRING_VALUE",
98
+ * // ResourceId: "STRING_VALUE",
99
+ * // RoleArn: "STRING_VALUE", // required
100
+ * // SecretArn: "STRING_VALUE",
101
+ * // Url: "STRING_VALUE",
102
+ * // },
103
+ * // EntitlementArn: "STRING_VALUE",
104
+ * // ListenerAddress: "STRING_VALUE",
105
+ * // MediaLiveInputArn: "STRING_VALUE",
106
+ * // MediaStreamOutputConfigurations: [ // __listOfMediaStreamOutputConfiguration
107
+ * // { // MediaStreamOutputConfiguration
108
+ * // DestinationConfigurations: [ // __listOfDestinationConfiguration
109
+ * // { // DestinationConfiguration
110
+ * // DestinationIp: "STRING_VALUE", // required
111
+ * // DestinationPort: Number("int"), // required
112
+ * // Interface: { // Interface
113
+ * // Name: "STRING_VALUE", // required
114
+ * // },
115
+ * // OutboundIp: "STRING_VALUE", // required
116
+ * // },
117
+ * // ],
118
+ * // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
119
+ * // EncodingParameters: { // EncodingParameters
120
+ * // CompressionFactor: Number("double"), // required
121
+ * // EncoderProfile: "main" || "high", // required
122
+ * // },
123
+ * // MediaStreamName: "STRING_VALUE", // required
124
+ * // },
125
+ * // ],
126
+ * // Name: "STRING_VALUE", // required
127
+ * // OutputArn: "STRING_VALUE", // required
128
+ * // Port: Number("int"),
129
+ * // Transport: { // Transport
130
+ * // CidrAllowList: [ // __listOf__string
131
+ * // "STRING_VALUE",
132
+ * // ],
133
+ * // MaxBitrate: Number("int"),
134
+ * // MaxLatency: Number("int"),
135
+ * // MaxSyncBuffer: Number("int"),
136
+ * // MinLatency: Number("int"),
137
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
138
+ * // RemoteId: "STRING_VALUE",
139
+ * // SenderControlPort: Number("int"),
140
+ * // SenderIpAddress: "STRING_VALUE",
141
+ * // SmoothingLatency: Number("int"),
142
+ * // SourceListenerAddress: "STRING_VALUE",
143
+ * // SourceListenerPort: Number("int"),
144
+ * // StreamId: "STRING_VALUE",
145
+ * // },
146
+ * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
147
+ * // VpcInterfaceName: "STRING_VALUE",
148
+ * // },
149
+ * // BridgeArn: "STRING_VALUE",
150
+ * // BridgePorts: [ // __listOf__integer
151
+ * // Number("int"),
152
+ * // ],
153
+ * // },
154
+ * // ],
155
+ * // };
156
+ *
85
157
  * ```
86
158
  *
87
159
  * @param AddFlowOutputsCommandInput - {@link AddFlowOutputsCommandInput}
@@ -111,6 +183,8 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
111
183
  * @throws {@link TooManyRequestsException} (client fault)
112
184
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
113
185
  *
186
+ * @throws {@link MediaConnectServiceException}
187
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
114
188
  *
115
189
  */
116
190
  export declare class AddFlowOutputsCommand extends $Command<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -82,6 +82,74 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
82
82
  * };
83
83
  * const command = new AddFlowSourcesCommand(input);
84
84
  * const response = await client.send(command);
85
+ * // { // AddFlowSourcesResponse
86
+ * // FlowArn: "STRING_VALUE",
87
+ * // Sources: [ // __listOfSource
88
+ * // { // Source
89
+ * // DataTransferSubscriberFeePercent: Number("int"),
90
+ * // Decryption: { // Encryption
91
+ * // Algorithm: "aes128" || "aes192" || "aes256",
92
+ * // ConstantInitializationVector: "STRING_VALUE",
93
+ * // DeviceId: "STRING_VALUE",
94
+ * // KeyType: "speke" || "static-key" || "srt-password",
95
+ * // Region: "STRING_VALUE",
96
+ * // ResourceId: "STRING_VALUE",
97
+ * // RoleArn: "STRING_VALUE", // required
98
+ * // SecretArn: "STRING_VALUE",
99
+ * // Url: "STRING_VALUE",
100
+ * // },
101
+ * // Description: "STRING_VALUE",
102
+ * // EntitlementArn: "STRING_VALUE",
103
+ * // IngestIp: "STRING_VALUE",
104
+ * // IngestPort: Number("int"),
105
+ * // MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfiguration
106
+ * // { // MediaStreamSourceConfiguration
107
+ * // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
108
+ * // InputConfigurations: [ // __listOfInputConfiguration
109
+ * // { // InputConfiguration
110
+ * // InputIp: "STRING_VALUE", // required
111
+ * // InputPort: Number("int"), // required
112
+ * // Interface: { // Interface
113
+ * // Name: "STRING_VALUE", // required
114
+ * // },
115
+ * // },
116
+ * // ],
117
+ * // MediaStreamName: "STRING_VALUE", // required
118
+ * // },
119
+ * // ],
120
+ * // Name: "STRING_VALUE", // required
121
+ * // SenderControlPort: Number("int"),
122
+ * // SenderIpAddress: "STRING_VALUE",
123
+ * // SourceArn: "STRING_VALUE", // required
124
+ * // Transport: { // Transport
125
+ * // CidrAllowList: [ // __listOf__string
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // MaxBitrate: Number("int"),
129
+ * // MaxLatency: Number("int"),
130
+ * // MaxSyncBuffer: Number("int"),
131
+ * // MinLatency: Number("int"),
132
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
133
+ * // RemoteId: "STRING_VALUE",
134
+ * // SenderControlPort: Number("int"),
135
+ * // SenderIpAddress: "STRING_VALUE",
136
+ * // SmoothingLatency: Number("int"),
137
+ * // SourceListenerAddress: "STRING_VALUE",
138
+ * // SourceListenerPort: Number("int"),
139
+ * // StreamId: "STRING_VALUE",
140
+ * // },
141
+ * // VpcInterfaceName: "STRING_VALUE",
142
+ * // WhitelistCidr: "STRING_VALUE",
143
+ * // GatewayBridgeSource: { // GatewayBridgeSource
144
+ * // BridgeArn: "STRING_VALUE", // required
145
+ * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
146
+ * // VpcInterfaceName: "STRING_VALUE",
147
+ * // },
148
+ * // },
149
+ * // },
150
+ * // ],
151
+ * // };
152
+ *
85
153
  * ```
86
154
  *
87
155
  * @param AddFlowSourcesCommandInput - {@link AddFlowSourcesCommandInput}
@@ -108,6 +176,8 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
108
176
  * @throws {@link TooManyRequestsException} (client fault)
109
177
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
110
178
  *
179
+ * @throws {@link MediaConnectServiceException}
180
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
111
181
  *
112
182
  */
113
183
  export declare class AddFlowSourcesCommand extends $Command<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput, MediaConnectClientResolvedConfig> {
@@ -42,6 +42,24 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
42
42
  * };
43
43
  * const command = new AddFlowVpcInterfacesCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // AddFlowVpcInterfacesResponse
46
+ * // FlowArn: "STRING_VALUE",
47
+ * // VpcInterfaces: [ // __listOfVpcInterface
48
+ * // { // VpcInterface
49
+ * // Name: "STRING_VALUE", // required
50
+ * // NetworkInterfaceIds: [ // __listOf__string // required
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // NetworkInterfaceType: "ena" || "efa", // required
54
+ * // RoleArn: "STRING_VALUE", // required
55
+ * // SecurityGroupIds: [ // required
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // SubnetId: "STRING_VALUE", // required
59
+ * // },
60
+ * // ],
61
+ * // };
62
+ *
45
63
  * ```
46
64
  *
47
65
  * @param AddFlowVpcInterfacesCommandInput - {@link AddFlowVpcInterfacesCommandInput}
@@ -68,6 +86,8 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
68
86
  * @throws {@link TooManyRequestsException} (client fault)
69
87
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
70
88
  *
89
+ * @throws {@link MediaConnectServiceException}
90
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
71
91
  *
72
92
  */
73
93
  export declare class AddFlowVpcInterfacesCommand extends $Command<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput, MediaConnectClientResolvedConfig> {
@@ -77,6 +77,75 @@ export interface CreateBridgeCommandOutput extends CreateBridgeResponse, __Metad
77
77
  * };
78
78
  * const command = new CreateBridgeCommand(input);
79
79
  * const response = await client.send(command);
80
+ * // { // CreateBridgeResponse
81
+ * // Bridge: { // Bridge
82
+ * // BridgeArn: "STRING_VALUE", // required
83
+ * // BridgeMessages: [ // __listOfMessageDetail
84
+ * // { // MessageDetail
85
+ * // Code: "STRING_VALUE", // required
86
+ * // Message: "STRING_VALUE", // required
87
+ * // ResourceName: "STRING_VALUE",
88
+ * // },
89
+ * // ],
90
+ * // BridgeState: "CREATING" || "STANDBY" || "STARTING" || "DEPLOYING" || "ACTIVE" || "STOPPING" || "DELETING" || "DELETED" || "START_FAILED" || "START_PENDING" || "STOP_FAILED" || "UPDATING", // required
91
+ * // EgressGatewayBridge: { // EgressGatewayBridge
92
+ * // InstanceId: "STRING_VALUE",
93
+ * // MaxBitrate: Number("int"), // required
94
+ * // },
95
+ * // IngressGatewayBridge: { // IngressGatewayBridge
96
+ * // InstanceId: "STRING_VALUE",
97
+ * // MaxBitrate: Number("int"), // required
98
+ * // MaxOutputs: Number("int"), // required
99
+ * // },
100
+ * // Name: "STRING_VALUE", // required
101
+ * // Outputs: [ // __listOfBridgeOutput
102
+ * // { // BridgeOutput
103
+ * // FlowOutput: { // BridgeFlowOutput
104
+ * // FlowArn: "STRING_VALUE", // required
105
+ * // FlowSourceArn: "STRING_VALUE", // required
106
+ * // Name: "STRING_VALUE", // required
107
+ * // },
108
+ * // NetworkOutput: { // BridgeNetworkOutput
109
+ * // IpAddress: "STRING_VALUE", // required
110
+ * // Name: "STRING_VALUE", // required
111
+ * // NetworkName: "STRING_VALUE", // required
112
+ * // Port: Number("int"), // required
113
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
114
+ * // Ttl: Number("int"), // required
115
+ * // },
116
+ * // },
117
+ * // ],
118
+ * // PlacementArn: "STRING_VALUE", // required
119
+ * // SourceFailoverConfig: { // FailoverConfig
120
+ * // FailoverMode: "MERGE" || "FAILOVER",
121
+ * // RecoveryWindow: Number("int"),
122
+ * // SourcePriority: { // SourcePriority
123
+ * // PrimarySource: "STRING_VALUE",
124
+ * // },
125
+ * // State: "ENABLED" || "DISABLED",
126
+ * // },
127
+ * // Sources: [ // __listOfBridgeSource
128
+ * // { // BridgeSource
129
+ * // FlowSource: { // BridgeFlowSource
130
+ * // FlowArn: "STRING_VALUE", // required
131
+ * // FlowVpcInterfaceAttachment: { // VpcInterfaceAttachment
132
+ * // VpcInterfaceName: "STRING_VALUE",
133
+ * // },
134
+ * // Name: "STRING_VALUE", // required
135
+ * // OutputArn: "STRING_VALUE",
136
+ * // },
137
+ * // NetworkSource: { // BridgeNetworkSource
138
+ * // MulticastIp: "STRING_VALUE", // required
139
+ * // Name: "STRING_VALUE", // required
140
+ * // NetworkName: "STRING_VALUE", // required
141
+ * // Port: Number("int"), // required
142
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
143
+ * // },
144
+ * // },
145
+ * // ],
146
+ * // },
147
+ * // };
148
+ *
80
149
  * ```
81
150
  *
82
151
  * @param CreateBridgeCommandInput - {@link CreateBridgeCommandInput}
@@ -106,6 +175,8 @@ export interface CreateBridgeCommandOutput extends CreateBridgeResponse, __Metad
106
175
  * @throws {@link TooManyRequestsException} (client fault)
107
176
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
108
177
  *
178
+ * @throws {@link MediaConnectServiceException}
179
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
109
180
  *
110
181
  */
111
182
  export declare class CreateBridgeCommand extends $Command<CreateBridgeCommandInput, CreateBridgeCommandOutput, MediaConnectClientResolvedConfig> {