@aws-sdk/client-mediaconnect 3.42.0 → 3.47.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.
@@ -284,6 +284,7 @@ export declare namespace MediaStreamOutputConfigurationRequest {
284
284
  }
285
285
  export declare enum Protocol {
286
286
  cdi = "cdi",
287
+ fujitsu_qos = "fujitsu-qos",
287
288
  rist = "rist",
288
289
  rtp = "rtp",
289
290
  rtp_fec = "rtp-fec",
@@ -328,7 +329,7 @@ export interface AddOutputRequest {
328
329
  */
329
330
  Encryption?: Encryption;
330
331
  /**
331
- * The maximum latency in milliseconds for Zixi-based streams.
332
+ * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
332
333
  */
333
334
  MaxLatency?: number;
334
335
  /**
@@ -355,6 +356,10 @@ export interface AddOutputRequest {
355
356
  * The remote ID for the Zixi-pull output stream.
356
357
  */
357
358
  RemoteId?: string;
359
+ /**
360
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
361
+ */
362
+ SenderControlPort?: number;
358
363
  /**
359
364
  * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
360
365
  */
@@ -884,7 +889,7 @@ export interface Transport {
884
889
  */
885
890
  MaxBitrate?: number;
886
891
  /**
887
- * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
892
+ * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
888
893
  */
889
894
  MaxLatency?: number;
890
895
  /**
@@ -903,6 +908,14 @@ export interface Transport {
903
908
  * The remote ID for the Zixi-pull stream.
904
909
  */
905
910
  RemoteId?: string;
911
+ /**
912
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
913
+ */
914
+ SenderControlPort?: number;
915
+ /**
916
+ * The IP address that the flow communicates with to initiate connection with the sender.
917
+ */
918
+ SenderIpAddress?: string;
906
919
  /**
907
920
  * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
908
921
  */
@@ -1075,7 +1088,7 @@ export interface SetSourceRequest {
1075
1088
  */
1076
1089
  MaxBitrate?: number;
1077
1090
  /**
1078
- * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
1091
+ * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
1079
1092
  */
1080
1093
  MaxLatency?: number;
1081
1094
  /**
@@ -1098,6 +1111,14 @@ export interface SetSourceRequest {
1098
1111
  * The protocol that is used by the source.
1099
1112
  */
1100
1113
  Protocol?: Protocol | string;
1114
+ /**
1115
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
1116
+ */
1117
+ SenderControlPort?: number;
1118
+ /**
1119
+ * The IP address that the flow communicates with to initiate connection with the sender.
1120
+ */
1121
+ SenderIpAddress?: string;
1101
1122
  /**
1102
1123
  * The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
1103
1124
  */
@@ -1153,6 +1174,14 @@ export interface Source {
1153
1174
  * The name of the source.
1154
1175
  */
1155
1176
  Name: string | undefined;
1177
+ /**
1178
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
1179
+ */
1180
+ SenderControlPort?: number;
1181
+ /**
1182
+ * The IP address that the flow communicates with to initiate connection with the sender.
1183
+ */
1184
+ SenderIpAddress?: string;
1156
1185
  /**
1157
1186
  * The ARN of the source.
1158
1187
  */
@@ -1185,7 +1214,7 @@ export declare enum NetworkInterfaceType {
1185
1214
  */
1186
1215
  export interface VpcInterface {
1187
1216
  /**
1188
- * Immutable and has to be a unique against other VpcInterfaces in this Flow
1217
+ * Immutable and has to be a unique against other VpcInterfaces in this Flow.
1189
1218
  */
1190
1219
  Name: string | undefined;
1191
1220
  /**
@@ -1292,12 +1321,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
1292
1321
  */
1293
1322
  Message: string | undefined;
1294
1323
  }
1295
- export declare namespace BadRequestException {
1296
- /**
1297
- * @internal
1298
- */
1299
- const filterSensitiveLog: (obj: BadRequestException) => any;
1300
- }
1301
1324
  /**
1302
1325
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1303
1326
  */
@@ -1309,12 +1332,6 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
1309
1332
  */
1310
1333
  Message: string | undefined;
1311
1334
  }
1312
- export declare namespace ForbiddenException {
1313
- /**
1314
- * @internal
1315
- */
1316
- const filterSensitiveLog: (obj: ForbiddenException) => any;
1317
- }
1318
1335
  /**
1319
1336
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1320
1337
  */
@@ -1326,12 +1343,6 @@ export interface InternalServerErrorException extends __SmithyException, $Metada
1326
1343
  */
1327
1344
  Message: string | undefined;
1328
1345
  }
1329
- export declare namespace InternalServerErrorException {
1330
- /**
1331
- * @internal
1332
- */
1333
- const filterSensitiveLog: (obj: InternalServerErrorException) => any;
1334
- }
1335
1346
  /**
1336
1347
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1337
1348
  */
@@ -1343,12 +1354,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
1343
1354
  */
1344
1355
  Message: string | undefined;
1345
1356
  }
1346
- export declare namespace NotFoundException {
1347
- /**
1348
- * @internal
1349
- */
1350
- const filterSensitiveLog: (obj: NotFoundException) => any;
1351
- }
1352
1357
  /**
1353
1358
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1354
1359
  */
@@ -1360,12 +1365,6 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
1360
1365
  */
1361
1366
  Message: string | undefined;
1362
1367
  }
1363
- export declare namespace ServiceUnavailableException {
1364
- /**
1365
- * @internal
1366
- */
1367
- const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
1368
- }
1369
1368
  /**
1370
1369
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1371
1370
  */
@@ -1377,12 +1376,6 @@ export interface TooManyRequestsException extends __SmithyException, $MetadataBe
1377
1376
  */
1378
1377
  Message: string | undefined;
1379
1378
  }
1380
- export declare namespace TooManyRequestsException {
1381
- /**
1382
- * @internal
1383
- */
1384
- const filterSensitiveLog: (obj: TooManyRequestsException) => any;
1385
- }
1386
1379
  /**
1387
1380
  * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
1388
1381
  */
@@ -1394,12 +1387,6 @@ export interface AddFlowOutputs420Exception extends __SmithyException, $Metadata
1394
1387
  */
1395
1388
  Message: string | undefined;
1396
1389
  }
1397
- export declare namespace AddFlowOutputs420Exception {
1398
- /**
1399
- * @internal
1400
- */
1401
- const filterSensitiveLog: (obj: AddFlowOutputs420Exception) => any;
1402
- }
1403
1390
  /**
1404
1391
  * A request to add outputs to the specified flow.
1405
1392
  */
@@ -1516,12 +1503,6 @@ export interface CreateFlow420Exception extends __SmithyException, $MetadataBear
1516
1503
  */
1517
1504
  Message: string | undefined;
1518
1505
  }
1519
- export declare namespace CreateFlow420Exception {
1520
- /**
1521
- * @internal
1522
- */
1523
- const filterSensitiveLog: (obj: CreateFlow420Exception) => any;
1524
- }
1525
1506
  export declare enum FailoverMode {
1526
1507
  FAILOVER = "FAILOVER",
1527
1508
  MERGE = "MERGE"
@@ -1546,7 +1527,7 @@ export declare enum State {
1546
1527
  ENABLED = "ENABLED"
1547
1528
  }
1548
1529
  /**
1549
- * The settings for source failover
1530
+ * The settings for source failover.
1550
1531
  */
1551
1532
  export interface FailoverConfig {
1552
1533
  /**
@@ -1598,7 +1579,7 @@ export interface CreateFlowRequest {
1598
1579
  */
1599
1580
  Source?: SetSourceRequest;
1600
1581
  /**
1601
- * The settings for source failover
1582
+ * The settings for source failover.
1602
1583
  */
1603
1584
  SourceFailoverConfig?: FailoverConfig;
1604
1585
  Sources?: SetSourceRequest[];
@@ -1654,7 +1635,7 @@ export interface Flow {
1654
1635
  */
1655
1636
  Source: Source | undefined;
1656
1637
  /**
1657
- * The settings for source failover
1638
+ * The settings for source failover.
1658
1639
  */
1659
1640
  SourceFailoverConfig?: FailoverConfig;
1660
1641
  Sources?: Source[];
@@ -1815,12 +1796,6 @@ export interface GrantFlowEntitlements420Exception extends __SmithyException, $M
1815
1796
  */
1816
1797
  Message: string | undefined;
1817
1798
  }
1818
- export declare namespace GrantFlowEntitlements420Exception {
1819
- /**
1820
- * @internal
1821
- */
1822
- const filterSensitiveLog: (obj: GrantFlowEntitlements420Exception) => any;
1823
- }
1824
1799
  /**
1825
1800
  * A request to grant entitlements on a flow.
1826
1801
  */
@@ -2303,7 +2278,7 @@ export declare namespace UntagResourceRequest {
2303
2278
  const filterSensitiveLog: (obj: UntagResourceRequest) => any;
2304
2279
  }
2305
2280
  /**
2306
- * The settings for source failover
2281
+ * The settings for source failover.
2307
2282
  */
2308
2283
  export interface UpdateFailoverConfig {
2309
2284
  /**
@@ -2335,7 +2310,7 @@ export interface UpdateFlowRequest {
2335
2310
  */
2336
2311
  FlowArn: string | undefined;
2337
2312
  /**
2338
- * The settings for source failover
2313
+ * The settings for source failover.
2339
2314
  */
2340
2315
  SourceFailoverConfig?: UpdateFailoverConfig;
2341
2316
  }
@@ -2535,7 +2510,7 @@ export interface UpdateFlowOutputRequest {
2535
2510
  */
2536
2511
  FlowArn: string | undefined;
2537
2512
  /**
2538
- * The maximum latency in milliseconds for Zixi-based streams.
2513
+ * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
2539
2514
  */
2540
2515
  MaxLatency?: number;
2541
2516
  /**
@@ -2562,6 +2537,14 @@ export interface UpdateFlowOutputRequest {
2562
2537
  * The remote ID for the Zixi-pull stream.
2563
2538
  */
2564
2539
  RemoteId?: string;
2540
+ /**
2541
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
2542
+ */
2543
+ SenderControlPort?: number;
2544
+ /**
2545
+ * The IP address that the flow communicates with to initiate connection with the sender.
2546
+ */
2547
+ SenderIpAddress?: string;
2565
2548
  /**
2566
2549
  * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
2567
2550
  */
@@ -2626,7 +2609,7 @@ export interface UpdateFlowSourceRequest {
2626
2609
  */
2627
2610
  MaxBitrate?: number;
2628
2611
  /**
2629
- * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
2612
+ * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
2630
2613
  */
2631
2614
  MaxLatency?: number;
2632
2615
  /**
@@ -2645,6 +2628,14 @@ export interface UpdateFlowSourceRequest {
2645
2628
  * The protocol that is used by the source.
2646
2629
  */
2647
2630
  Protocol?: Protocol | string;
2631
+ /**
2632
+ * The port that the flow uses to send outbound requests to initiate connection with the sender.
2633
+ */
2634
+ SenderControlPort?: number;
2635
+ /**
2636
+ * The IP address that the flow communicates with to initiate connection with the sender.
2637
+ */
2638
+ SenderIpAddress?: string;
2648
2639
  /**
2649
2640
  * The ARN of the source that you want to update.
2650
2641
  */
@@ -1,10 +1,11 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { MediaConnectClientConfig } from "./MediaConnectClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,18 +1,19 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { MediaConnectClientConfig } from "./MediaConnectClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
28
29
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
30
  tls?: boolean | undefined;
30
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
4
4
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
10
10
  import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
@@ -81,6 +81,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
81
81
  regionInfoProvider?: RegionInfoProvider;
82
82
 
83
83
  defaultUserAgentProvider?: Provider<__UserAgent>;
84
+
85
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
84
86
  }
85
87
  declare type MediaConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
86
88
 
@@ -182,6 +182,7 @@ export declare namespace MediaStreamOutputConfigurationRequest {
182
182
  }
183
183
  export declare enum Protocol {
184
184
  cdi = "cdi",
185
+ fujitsu_qos = "fujitsu-qos",
185
186
  rist = "rist",
186
187
  rtp = "rtp",
187
188
  rtp_fec = "rtp-fec",
@@ -224,6 +225,8 @@ export interface AddOutputRequest {
224
225
 
225
226
  RemoteId?: string;
226
227
 
228
+ SenderControlPort?: number;
229
+
227
230
  SmoothingLatency?: number;
228
231
 
229
232
  StreamId?: string;
@@ -538,6 +541,10 @@ export interface Transport {
538
541
 
539
542
  RemoteId?: string;
540
543
 
544
+ SenderControlPort?: number;
545
+
546
+ SenderIpAddress?: string;
547
+
541
548
  SmoothingLatency?: number;
542
549
 
543
550
  StreamId?: string;
@@ -643,6 +650,10 @@ export interface SetSourceRequest {
643
650
 
644
651
  Protocol?: Protocol | string;
645
652
 
653
+ SenderControlPort?: number;
654
+
655
+ SenderIpAddress?: string;
656
+
646
657
  StreamId?: string;
647
658
 
648
659
  VpcInterfaceName?: string;
@@ -672,6 +683,10 @@ export interface Source {
672
683
 
673
684
  Name: string | undefined;
674
685
 
686
+ SenderControlPort?: number;
687
+
688
+ SenderIpAddress?: string;
689
+
675
690
  SourceArn: string | undefined;
676
691
 
677
692
  Transport?: Transport;
@@ -752,10 +767,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
752
767
 
753
768
  Message: string | undefined;
754
769
  }
755
- export declare namespace BadRequestException {
756
-
757
- const filterSensitiveLog: (obj: BadRequestException) => any;
758
- }
759
770
 
760
771
  export interface ForbiddenException extends __SmithyException, $MetadataBearer {
761
772
  name: "ForbiddenException";
@@ -763,10 +774,6 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
763
774
 
764
775
  Message: string | undefined;
765
776
  }
766
- export declare namespace ForbiddenException {
767
-
768
- const filterSensitiveLog: (obj: ForbiddenException) => any;
769
- }
770
777
 
771
778
  export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
772
779
  name: "InternalServerErrorException";
@@ -774,10 +781,6 @@ export interface InternalServerErrorException extends __SmithyException, $Metada
774
781
 
775
782
  Message: string | undefined;
776
783
  }
777
- export declare namespace InternalServerErrorException {
778
-
779
- const filterSensitiveLog: (obj: InternalServerErrorException) => any;
780
- }
781
784
 
782
785
  export interface NotFoundException extends __SmithyException, $MetadataBearer {
783
786
  name: "NotFoundException";
@@ -785,10 +788,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
785
788
 
786
789
  Message: string | undefined;
787
790
  }
788
- export declare namespace NotFoundException {
789
-
790
- const filterSensitiveLog: (obj: NotFoundException) => any;
791
- }
792
791
 
793
792
  export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
794
793
  name: "ServiceUnavailableException";
@@ -796,10 +795,6 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
796
795
 
797
796
  Message: string | undefined;
798
797
  }
799
- export declare namespace ServiceUnavailableException {
800
-
801
- const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
802
- }
803
798
 
804
799
  export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
805
800
  name: "TooManyRequestsException";
@@ -807,10 +802,6 @@ export interface TooManyRequestsException extends __SmithyException, $MetadataBe
807
802
 
808
803
  Message: string | undefined;
809
804
  }
810
- export declare namespace TooManyRequestsException {
811
-
812
- const filterSensitiveLog: (obj: TooManyRequestsException) => any;
813
- }
814
805
 
815
806
  export interface AddFlowOutputs420Exception extends __SmithyException, $MetadataBearer {
816
807
  name: "AddFlowOutputs420Exception";
@@ -818,10 +809,6 @@ export interface AddFlowOutputs420Exception extends __SmithyException, $Metadata
818
809
 
819
810
  Message: string | undefined;
820
811
  }
821
- export declare namespace AddFlowOutputs420Exception {
822
-
823
- const filterSensitiveLog: (obj: AddFlowOutputs420Exception) => any;
824
- }
825
812
 
826
813
  export interface AddFlowOutputsRequest {
827
814
 
@@ -892,10 +879,6 @@ export interface CreateFlow420Exception extends __SmithyException, $MetadataBear
892
879
 
893
880
  Message: string | undefined;
894
881
  }
895
- export declare namespace CreateFlow420Exception {
896
-
897
- const filterSensitiveLog: (obj: CreateFlow420Exception) => any;
898
- }
899
882
  export declare enum FailoverMode {
900
883
  FAILOVER = "FAILOVER",
901
884
  MERGE = "MERGE"
@@ -1075,10 +1058,6 @@ export interface GrantFlowEntitlements420Exception extends __SmithyException, $M
1075
1058
 
1076
1059
  Message: string | undefined;
1077
1060
  }
1078
- export declare namespace GrantFlowEntitlements420Exception {
1079
-
1080
- const filterSensitiveLog: (obj: GrantFlowEntitlements420Exception) => any;
1081
- }
1082
1061
 
1083
1062
  export interface GrantFlowEntitlementsRequest {
1084
1063
 
@@ -1525,6 +1504,10 @@ export interface UpdateFlowOutputRequest {
1525
1504
 
1526
1505
  RemoteId?: string;
1527
1506
 
1507
+ SenderControlPort?: number;
1508
+
1509
+ SenderIpAddress?: string;
1510
+
1528
1511
  SmoothingLatency?: number;
1529
1512
 
1530
1513
  StreamId?: string;
@@ -1570,6 +1553,10 @@ export interface UpdateFlowSourceRequest {
1570
1553
 
1571
1554
  Protocol?: Protocol | string;
1572
1555
 
1556
+ SenderControlPort?: number;
1557
+
1558
+ SenderIpAddress?: string;
1559
+
1573
1560
  SourceArn: string | undefined;
1574
1561
 
1575
1562
  StreamId?: string;
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { MediaConnectClientConfig } from "./MediaConnectClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<any>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,16 +1,17 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { MediaConnectClientConfig } from "./MediaConnectClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
9
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<string>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
23
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
24
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
26
27
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
28
  tls?: boolean | undefined;
28
29
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;