@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
@@ -31,6 +31,286 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
31
31
  * };
32
32
  * const command = new DescribeFlowCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeFlowResponse
35
+ * // Flow: { // Flow
36
+ * // AvailabilityZone: "STRING_VALUE", // required
37
+ * // Description: "STRING_VALUE",
38
+ * // EgressIp: "STRING_VALUE",
39
+ * // Entitlements: [ // __listOfEntitlement // required
40
+ * // { // Entitlement
41
+ * // DataTransferSubscriberFeePercent: Number("int"),
42
+ * // Description: "STRING_VALUE",
43
+ * // Encryption: { // Encryption
44
+ * // Algorithm: "aes128" || "aes192" || "aes256",
45
+ * // ConstantInitializationVector: "STRING_VALUE",
46
+ * // DeviceId: "STRING_VALUE",
47
+ * // KeyType: "speke" || "static-key" || "srt-password",
48
+ * // Region: "STRING_VALUE",
49
+ * // ResourceId: "STRING_VALUE",
50
+ * // RoleArn: "STRING_VALUE", // required
51
+ * // SecretArn: "STRING_VALUE",
52
+ * // Url: "STRING_VALUE",
53
+ * // },
54
+ * // EntitlementArn: "STRING_VALUE", // required
55
+ * // EntitlementStatus: "ENABLED" || "DISABLED",
56
+ * // Name: "STRING_VALUE", // required
57
+ * // Subscribers: [ // __listOf__string // required
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // },
61
+ * // ],
62
+ * // FlowArn: "STRING_VALUE", // required
63
+ * // MediaStreams: [ // __listOfMediaStream
64
+ * // { // MediaStream
65
+ * // Attributes: { // MediaStreamAttributes
66
+ * // Fmtp: { // Fmtp
67
+ * // ChannelOrder: "STRING_VALUE",
68
+ * // Colorimetry: "BT601" || "BT709" || "BT2020" || "BT2100" || "ST2065-1" || "ST2065-3" || "XYZ",
69
+ * // ExactFramerate: "STRING_VALUE",
70
+ * // Par: "STRING_VALUE",
71
+ * // Range: "NARROW" || "FULL" || "FULLPROTECT",
72
+ * // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
73
+ * // Tcs: "SDR" || "PQ" || "HLG" || "LINEAR" || "BT2100LINPQ" || "BT2100LINHLG" || "ST2065-1" || "ST428-1" || "DENSITY",
74
+ * // },
75
+ * // Lang: "STRING_VALUE",
76
+ * // },
77
+ * // ClockRate: Number("int"),
78
+ * // Description: "STRING_VALUE",
79
+ * // Fmt: Number("int"), // required
80
+ * // MediaStreamId: Number("int"), // required
81
+ * // MediaStreamName: "STRING_VALUE", // required
82
+ * // MediaStreamType: "video" || "audio" || "ancillary-data", // required
83
+ * // VideoFormat: "STRING_VALUE",
84
+ * // },
85
+ * // ],
86
+ * // Name: "STRING_VALUE", // required
87
+ * // Outputs: [ // __listOfOutput // required
88
+ * // { // Output
89
+ * // DataTransferSubscriberFeePercent: Number("int"),
90
+ * // Description: "STRING_VALUE",
91
+ * // Destination: "STRING_VALUE",
92
+ * // 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: [
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
+ * // Source: { // Source
156
+ * // DataTransferSubscriberFeePercent: Number("int"),
157
+ * // Decryption: {
158
+ * // Algorithm: "aes128" || "aes192" || "aes256",
159
+ * // ConstantInitializationVector: "STRING_VALUE",
160
+ * // DeviceId: "STRING_VALUE",
161
+ * // KeyType: "speke" || "static-key" || "srt-password",
162
+ * // Region: "STRING_VALUE",
163
+ * // ResourceId: "STRING_VALUE",
164
+ * // RoleArn: "STRING_VALUE", // required
165
+ * // SecretArn: "STRING_VALUE",
166
+ * // Url: "STRING_VALUE",
167
+ * // },
168
+ * // Description: "STRING_VALUE",
169
+ * // EntitlementArn: "STRING_VALUE",
170
+ * // IngestIp: "STRING_VALUE",
171
+ * // IngestPort: Number("int"),
172
+ * // MediaStreamSourceConfigurations: [ // __listOfMediaStreamSourceConfiguration
173
+ * // { // MediaStreamSourceConfiguration
174
+ * // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
175
+ * // InputConfigurations: [ // __listOfInputConfiguration
176
+ * // { // InputConfiguration
177
+ * // InputIp: "STRING_VALUE", // required
178
+ * // InputPort: Number("int"), // required
179
+ * // Interface: {
180
+ * // Name: "STRING_VALUE", // required
181
+ * // },
182
+ * // },
183
+ * // ],
184
+ * // MediaStreamName: "STRING_VALUE", // required
185
+ * // },
186
+ * // ],
187
+ * // Name: "STRING_VALUE", // required
188
+ * // SenderControlPort: Number("int"),
189
+ * // SenderIpAddress: "STRING_VALUE",
190
+ * // SourceArn: "STRING_VALUE", // required
191
+ * // Transport: {
192
+ * // CidrAllowList: [
193
+ * // "STRING_VALUE",
194
+ * // ],
195
+ * // MaxBitrate: Number("int"),
196
+ * // MaxLatency: Number("int"),
197
+ * // MaxSyncBuffer: Number("int"),
198
+ * // MinLatency: Number("int"),
199
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
200
+ * // RemoteId: "STRING_VALUE",
201
+ * // SenderControlPort: Number("int"),
202
+ * // SenderIpAddress: "STRING_VALUE",
203
+ * // SmoothingLatency: Number("int"),
204
+ * // SourceListenerAddress: "STRING_VALUE",
205
+ * // SourceListenerPort: Number("int"),
206
+ * // StreamId: "STRING_VALUE",
207
+ * // },
208
+ * // VpcInterfaceName: "STRING_VALUE",
209
+ * // WhitelistCidr: "STRING_VALUE",
210
+ * // GatewayBridgeSource: { // GatewayBridgeSource
211
+ * // BridgeArn: "STRING_VALUE", // required
212
+ * // VpcInterfaceAttachment: {
213
+ * // VpcInterfaceName: "STRING_VALUE",
214
+ * // },
215
+ * // },
216
+ * // },
217
+ * // SourceFailoverConfig: { // FailoverConfig
218
+ * // FailoverMode: "MERGE" || "FAILOVER",
219
+ * // RecoveryWindow: Number("int"),
220
+ * // SourcePriority: { // SourcePriority
221
+ * // PrimarySource: "STRING_VALUE",
222
+ * // },
223
+ * // State: "ENABLED" || "DISABLED",
224
+ * // },
225
+ * // Sources: [ // __listOfSource
226
+ * // {
227
+ * // DataTransferSubscriberFeePercent: Number("int"),
228
+ * // Decryption: {
229
+ * // Algorithm: "aes128" || "aes192" || "aes256",
230
+ * // ConstantInitializationVector: "STRING_VALUE",
231
+ * // DeviceId: "STRING_VALUE",
232
+ * // KeyType: "speke" || "static-key" || "srt-password",
233
+ * // Region: "STRING_VALUE",
234
+ * // ResourceId: "STRING_VALUE",
235
+ * // RoleArn: "STRING_VALUE", // required
236
+ * // SecretArn: "STRING_VALUE",
237
+ * // Url: "STRING_VALUE",
238
+ * // },
239
+ * // Description: "STRING_VALUE",
240
+ * // EntitlementArn: "STRING_VALUE",
241
+ * // IngestIp: "STRING_VALUE",
242
+ * // IngestPort: Number("int"),
243
+ * // MediaStreamSourceConfigurations: [
244
+ * // {
245
+ * // EncodingName: "jxsv" || "raw" || "smpte291" || "pcm", // required
246
+ * // InputConfigurations: [
247
+ * // {
248
+ * // InputIp: "STRING_VALUE", // required
249
+ * // InputPort: Number("int"), // required
250
+ * // Interface: {
251
+ * // Name: "STRING_VALUE", // required
252
+ * // },
253
+ * // },
254
+ * // ],
255
+ * // MediaStreamName: "STRING_VALUE", // required
256
+ * // },
257
+ * // ],
258
+ * // Name: "STRING_VALUE", // required
259
+ * // SenderControlPort: Number("int"),
260
+ * // SenderIpAddress: "STRING_VALUE",
261
+ * // SourceArn: "STRING_VALUE", // required
262
+ * // Transport: {
263
+ * // CidrAllowList: [
264
+ * // "STRING_VALUE",
265
+ * // ],
266
+ * // MaxBitrate: Number("int"),
267
+ * // MaxLatency: Number("int"),
268
+ * // MaxSyncBuffer: Number("int"),
269
+ * // MinLatency: Number("int"),
270
+ * // Protocol: "zixi-push" || "rtp-fec" || "rtp" || "zixi-pull" || "rist" || "st2110-jpegxs" || "cdi" || "srt-listener" || "srt-caller" || "fujitsu-qos" || "udp", // required
271
+ * // RemoteId: "STRING_VALUE",
272
+ * // SenderControlPort: Number("int"),
273
+ * // SenderIpAddress: "STRING_VALUE",
274
+ * // SmoothingLatency: Number("int"),
275
+ * // SourceListenerAddress: "STRING_VALUE",
276
+ * // SourceListenerPort: Number("int"),
277
+ * // StreamId: "STRING_VALUE",
278
+ * // },
279
+ * // VpcInterfaceName: "STRING_VALUE",
280
+ * // WhitelistCidr: "STRING_VALUE",
281
+ * // GatewayBridgeSource: {
282
+ * // BridgeArn: "STRING_VALUE", // required
283
+ * // VpcInterfaceAttachment: {
284
+ * // VpcInterfaceName: "STRING_VALUE",
285
+ * // },
286
+ * // },
287
+ * // },
288
+ * // ],
289
+ * // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR", // required
290
+ * // VpcInterfaces: [ // __listOfVpcInterface
291
+ * // { // VpcInterface
292
+ * // Name: "STRING_VALUE", // required
293
+ * // NetworkInterfaceIds: [ // required
294
+ * // "STRING_VALUE",
295
+ * // ],
296
+ * // NetworkInterfaceType: "ena" || "efa", // required
297
+ * // RoleArn: "STRING_VALUE", // required
298
+ * // SecurityGroupIds: "<__listOf__string>", // required
299
+ * // SubnetId: "STRING_VALUE", // required
300
+ * // },
301
+ * // ],
302
+ * // Maintenance: { // Maintenance
303
+ * // MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
304
+ * // MaintenanceDeadline: "STRING_VALUE",
305
+ * // MaintenanceScheduledDate: "STRING_VALUE",
306
+ * // MaintenanceStartHour: "STRING_VALUE",
307
+ * // },
308
+ * // },
309
+ * // Messages: { // Messages
310
+ * // Errors: "<__listOf__string>", // required
311
+ * // },
312
+ * // };
313
+ *
34
314
  * ```
35
315
  *
36
316
  * @param DescribeFlowCommandInput - {@link DescribeFlowCommandInput}
@@ -57,6 +337,8 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
57
337
  * @throws {@link TooManyRequestsException} (client fault)
58
338
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
59
339
  *
340
+ * @throws {@link MediaConnectServiceException}
341
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
60
342
  *
61
343
  */
62
344
  export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, MediaConnectClientResolvedConfig> {
@@ -31,6 +31,30 @@ export interface DescribeGatewayCommandOutput extends DescribeGatewayResponse, _
31
31
  * };
32
32
  * const command = new DescribeGatewayCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeGatewayResponse
35
+ * // Gateway: { // Gateway
36
+ * // EgressCidrBlocks: [ // __listOf__string // required
37
+ * // "STRING_VALUE",
38
+ * // ],
39
+ * // GatewayArn: "STRING_VALUE", // required
40
+ * // GatewayMessages: [ // __listOfMessageDetail
41
+ * // { // MessageDetail
42
+ * // Code: "STRING_VALUE", // required
43
+ * // Message: "STRING_VALUE", // required
44
+ * // ResourceName: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // GatewayState: "CREATING" || "ACTIVE" || "UPDATING" || "ERROR" || "DELETING" || "DELETED",
48
+ * // Name: "STRING_VALUE", // required
49
+ * // Networks: [ // __listOfGatewayNetwork // required
50
+ * // { // GatewayNetwork
51
+ * // CidrBlock: "STRING_VALUE", // required
52
+ * // Name: "STRING_VALUE", // required
53
+ * // },
54
+ * // ],
55
+ * // },
56
+ * // };
57
+ *
34
58
  * ```
35
59
  *
36
60
  * @param DescribeGatewayCommandInput - {@link DescribeGatewayCommandInput}
@@ -60,6 +84,8 @@ export interface DescribeGatewayCommandOutput extends DescribeGatewayResponse, _
60
84
  * @throws {@link TooManyRequestsException} (client fault)
61
85
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
86
  *
87
+ * @throws {@link MediaConnectServiceException}
88
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
63
89
  *
64
90
  */
65
91
  export declare class DescribeGatewayCommand extends $Command<DescribeGatewayCommandInput, DescribeGatewayCommandOutput, MediaConnectClientResolvedConfig> {
@@ -31,6 +31,25 @@ export interface DescribeGatewayInstanceCommandOutput extends DescribeGatewayIns
31
31
  * };
32
32
  * const command = new DescribeGatewayInstanceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeGatewayInstanceResponse
35
+ * // GatewayInstance: { // GatewayInstance
36
+ * // BridgePlacement: "AVAILABLE" || "LOCKED", // required
37
+ * // ConnectionStatus: "CONNECTED" || "DISCONNECTED", // required
38
+ * // GatewayArn: "STRING_VALUE", // required
39
+ * // GatewayInstanceArn: "STRING_VALUE", // required
40
+ * // InstanceId: "STRING_VALUE", // required
41
+ * // InstanceMessages: [ // __listOfMessageDetail
42
+ * // { // MessageDetail
43
+ * // Code: "STRING_VALUE", // required
44
+ * // Message: "STRING_VALUE", // required
45
+ * // ResourceName: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // InstanceState: "REGISTERING" || "ACTIVE" || "DEREGISTERING" || "DEREGISTERED" || "REGISTRATION_ERROR" || "DEREGISTRATION_ERROR", // required
49
+ * // RunningBridgeCount: Number("int"), // required
50
+ * // },
51
+ * // };
52
+ *
34
53
  * ```
35
54
  *
36
55
  * @param DescribeGatewayInstanceCommandInput - {@link DescribeGatewayInstanceCommandInput}
@@ -60,6 +79,8 @@ export interface DescribeGatewayInstanceCommandOutput extends DescribeGatewayIns
60
79
  * @throws {@link TooManyRequestsException} (client fault)
61
80
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
81
  *
82
+ * @throws {@link MediaConnectServiceException}
83
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
63
84
  *
64
85
  */
65
86
  export declare class DescribeGatewayInstanceCommand extends $Command<DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput, MediaConnectClientResolvedConfig> {
@@ -31,6 +31,22 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
31
31
  * };
32
32
  * const command = new DescribeOfferingCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeOfferingResponse
35
+ * // Offering: { // Offering
36
+ * // CurrencyCode: "STRING_VALUE", // required
37
+ * // Duration: Number("int"), // required
38
+ * // DurationUnits: "MONTHS", // required
39
+ * // OfferingArn: "STRING_VALUE", // required
40
+ * // OfferingDescription: "STRING_VALUE", // required
41
+ * // PricePerUnit: "STRING_VALUE", // required
42
+ * // PriceUnits: "HOURLY", // required
43
+ * // ResourceSpecification: { // ResourceSpecification
44
+ * // ReservedBitrate: Number("int"),
45
+ * // ResourceType: "Mbps_Outbound_Bandwidth", // required
46
+ * // },
47
+ * // },
48
+ * // };
49
+ *
34
50
  * ```
35
51
  *
36
52
  * @param DescribeOfferingCommandInput - {@link DescribeOfferingCommandInput}
@@ -54,6 +70,8 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
54
70
  * @throws {@link TooManyRequestsException} (client fault)
55
71
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
56
72
  *
73
+ * @throws {@link MediaConnectServiceException}
74
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
57
75
  *
58
76
  */
59
77
  export declare class DescribeOfferingCommand extends $Command<DescribeOfferingCommandInput, DescribeOfferingCommandOutput, MediaConnectClientResolvedConfig> {
@@ -31,6 +31,27 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
31
31
  * };
32
32
  * const command = new DescribeReservationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeReservationResponse
35
+ * // Reservation: { // Reservation
36
+ * // CurrencyCode: "STRING_VALUE", // required
37
+ * // Duration: Number("int"), // required
38
+ * // DurationUnits: "MONTHS", // required
39
+ * // End: "STRING_VALUE", // required
40
+ * // OfferingArn: "STRING_VALUE", // required
41
+ * // OfferingDescription: "STRING_VALUE", // required
42
+ * // PricePerUnit: "STRING_VALUE", // required
43
+ * // PriceUnits: "HOURLY", // required
44
+ * // ReservationArn: "STRING_VALUE", // required
45
+ * // ReservationName: "STRING_VALUE", // required
46
+ * // ReservationState: "ACTIVE" || "EXPIRED" || "PROCESSING" || "CANCELED", // required
47
+ * // ResourceSpecification: { // ResourceSpecification
48
+ * // ReservedBitrate: Number("int"),
49
+ * // ResourceType: "Mbps_Outbound_Bandwidth", // required
50
+ * // },
51
+ * // Start: "STRING_VALUE", // required
52
+ * // },
53
+ * // };
54
+ *
34
55
  * ```
35
56
  *
36
57
  * @param DescribeReservationCommandInput - {@link DescribeReservationCommandInput}
@@ -54,6 +75,8 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
54
75
  * @throws {@link TooManyRequestsException} (client fault)
55
76
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
56
77
  *
78
+ * @throws {@link MediaConnectServiceException}
79
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
57
80
  *
58
81
  */
59
82
  export declare class DescribeReservationCommand extends $Command<DescribeReservationCommandInput, DescribeReservationCommandOutput, MediaConnectClientResolvedConfig> {
@@ -53,6 +53,33 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement
53
53
  * };
54
54
  * const command = new GrantFlowEntitlementsCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // GrantFlowEntitlementsResponse
57
+ * // Entitlements: [ // __listOfEntitlement
58
+ * // { // Entitlement
59
+ * // DataTransferSubscriberFeePercent: Number("int"),
60
+ * // Description: "STRING_VALUE",
61
+ * // Encryption: { // Encryption
62
+ * // Algorithm: "aes128" || "aes192" || "aes256",
63
+ * // ConstantInitializationVector: "STRING_VALUE",
64
+ * // DeviceId: "STRING_VALUE",
65
+ * // KeyType: "speke" || "static-key" || "srt-password",
66
+ * // Region: "STRING_VALUE",
67
+ * // ResourceId: "STRING_VALUE",
68
+ * // RoleArn: "STRING_VALUE", // required
69
+ * // SecretArn: "STRING_VALUE",
70
+ * // Url: "STRING_VALUE",
71
+ * // },
72
+ * // EntitlementArn: "STRING_VALUE", // required
73
+ * // EntitlementStatus: "ENABLED" || "DISABLED",
74
+ * // Name: "STRING_VALUE", // required
75
+ * // Subscribers: [ // __listOf__string // required
76
+ * // "STRING_VALUE",
77
+ * // ],
78
+ * // },
79
+ * // ],
80
+ * // FlowArn: "STRING_VALUE",
81
+ * // };
82
+ *
56
83
  * ```
57
84
  *
58
85
  * @param GrantFlowEntitlementsCommandInput - {@link GrantFlowEntitlementsCommandInput}
@@ -82,6 +109,8 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement
82
109
  * @throws {@link TooManyRequestsException} (client fault)
83
110
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
84
111
  *
112
+ * @throws {@link MediaConnectServiceException}
113
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
85
114
  *
86
115
  */
87
116
  export declare class GrantFlowEntitlementsCommand extends $Command<GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -33,6 +33,19 @@ export interface ListBridgesCommandOutput extends ListBridgesResponse, __Metadat
33
33
  * };
34
34
  * const command = new ListBridgesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListBridgesResponse
37
+ * // Bridges: [ // __listOfListedBridge
38
+ * // { // ListedBridge
39
+ * // BridgeArn: "STRING_VALUE", // required
40
+ * // BridgeState: "CREATING" || "STANDBY" || "STARTING" || "DEPLOYING" || "ACTIVE" || "STOPPING" || "DELETING" || "DELETED" || "START_FAILED" || "START_PENDING" || "STOP_FAILED" || "UPDATING", // required
41
+ * // BridgeType: "STRING_VALUE", // required
42
+ * // Name: "STRING_VALUE", // required
43
+ * // PlacementArn: "STRING_VALUE", // required
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
36
49
  * ```
37
50
  *
38
51
  * @param ListBridgesCommandInput - {@link ListBridgesCommandInput}
@@ -56,6 +69,8 @@ export interface ListBridgesCommandOutput extends ListBridgesResponse, __Metadat
56
69
  * @throws {@link TooManyRequestsException} (client fault)
57
70
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
58
71
  *
72
+ * @throws {@link MediaConnectServiceException}
73
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
59
74
  *
60
75
  */
61
76
  export declare class ListBridgesCommand extends $Command<ListBridgesCommandInput, ListBridgesCommandOutput, MediaConnectClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse,
32
32
  * };
33
33
  * const command = new ListEntitlementsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListEntitlementsResponse
36
+ * // Entitlements: [ // __listOfListedEntitlement
37
+ * // { // ListedEntitlement
38
+ * // DataTransferSubscriberFeePercent: Number("int"),
39
+ * // EntitlementArn: "STRING_VALUE", // required
40
+ * // EntitlementName: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param ListEntitlementsCommandInput - {@link ListEntitlementsCommandInput}
@@ -52,6 +63,8 @@ export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse,
52
63
  * @throws {@link TooManyRequestsException} (client fault)
53
64
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
54
65
  *
66
+ * @throws {@link MediaConnectServiceException}
67
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListEntitlementsCommand extends $Command<ListEntitlementsCommandInput, ListEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -32,6 +32,26 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
32
32
  * };
33
33
  * const command = new ListFlowsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListFlowsResponse
36
+ * // Flows: [ // __listOfListedFlow
37
+ * // { // ListedFlow
38
+ * // AvailabilityZone: "STRING_VALUE", // required
39
+ * // Description: "STRING_VALUE", // required
40
+ * // FlowArn: "STRING_VALUE", // required
41
+ * // Name: "STRING_VALUE", // required
42
+ * // SourceType: "OWNED" || "ENTITLED", // required
43
+ * // Status: "STANDBY" || "ACTIVE" || "UPDATING" || "DELETING" || "STARTING" || "STOPPING" || "ERROR", // required
44
+ * // Maintenance: { // Maintenance
45
+ * // MaintenanceDay: "Monday" || "Tuesday" || "Wednesday" || "Thursday" || "Friday" || "Saturday" || "Sunday",
46
+ * // MaintenanceDeadline: "STRING_VALUE",
47
+ * // MaintenanceScheduledDate: "STRING_VALUE",
48
+ * // MaintenanceStartHour: "STRING_VALUE",
49
+ * // },
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
35
55
  * ```
36
56
  *
37
57
  * @param ListFlowsCommandInput - {@link ListFlowsCommandInput}
@@ -52,6 +72,8 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
52
72
  * @throws {@link TooManyRequestsException} (client fault)
53
73
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
54
74
  *
75
+ * @throws {@link MediaConnectServiceException}
76
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
55
77
  *
56
78
  */
57
79
  export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, MediaConnectClientResolvedConfig> {
@@ -33,6 +33,18 @@ export interface ListGatewayInstancesCommandOutput extends ListGatewayInstancesR
33
33
  * };
34
34
  * const command = new ListGatewayInstancesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListGatewayInstancesResponse
37
+ * // Instances: [ // __listOfListedGatewayInstance
38
+ * // { // ListedGatewayInstance
39
+ * // GatewayArn: "STRING_VALUE", // required
40
+ * // GatewayInstanceArn: "STRING_VALUE", // required
41
+ * // InstanceId: "STRING_VALUE", // required
42
+ * // InstanceState: "REGISTERING" || "ACTIVE" || "DEREGISTERING" || "DEREGISTERED" || "REGISTRATION_ERROR" || "DEREGISTRATION_ERROR",
43
+ * // },
44
+ * // ],
45
+ * // NextToken: "STRING_VALUE",
46
+ * // };
47
+ *
36
48
  * ```
37
49
  *
38
50
  * @param ListGatewayInstancesCommandInput - {@link ListGatewayInstancesCommandInput}
@@ -56,6 +68,8 @@ export interface ListGatewayInstancesCommandOutput extends ListGatewayInstancesR
56
68
  * @throws {@link TooManyRequestsException} (client fault)
57
69
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
58
70
  *
71
+ * @throws {@link MediaConnectServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
59
73
  *
60
74
  */
61
75
  export declare class ListGatewayInstancesCommand extends $Command<ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput, MediaConnectClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface ListGatewaysCommandOutput extends ListGatewaysResponse, __Metad
32
32
  * };
33
33
  * const command = new ListGatewaysCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListGatewaysResponse
36
+ * // Gateways: [ // __listOfListedGateway
37
+ * // { // ListedGateway
38
+ * // GatewayArn: "STRING_VALUE", // required
39
+ * // GatewayState: "CREATING" || "ACTIVE" || "UPDATING" || "ERROR" || "DELETING" || "DELETED", // required
40
+ * // Name: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param ListGatewaysCommandInput - {@link ListGatewaysCommandInput}
@@ -55,6 +66,8 @@ export interface ListGatewaysCommandOutput extends ListGatewaysResponse, __Metad
55
66
  * @throws {@link TooManyRequestsException} (client fault)
56
67
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
57
68
  *
69
+ * @throws {@link MediaConnectServiceException}
70
+ * <p>Base exception class for all service exceptions from MediaConnect service.</p>
58
71
  *
59
72
  */
60
73
  export declare class ListGatewaysCommand extends $Command<ListGatewaysCommandInput, ListGatewaysCommandOutput, MediaConnectClientResolvedConfig> {