@aws-sdk/client-mediaconnect 3.974.0 → 3.978.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 (37) hide show
  1. package/dist-cjs/index.js +344 -182
  2. package/dist-es/MediaConnect.js +47 -1
  3. package/dist-es/models/enums.js +5 -0
  4. package/dist-es/schemas/schemas_0.js +102 -42
  5. package/dist-es/waiters/index.js +1 -0
  6. package/dist-es/waiters/waitForInputActive.js +9 -0
  7. package/dist-es/waiters/waitForOutputActive.js +9 -0
  8. package/dist-es/waiters/waitForOutputUnrouted.js +46 -0
  9. package/dist-types/MediaConnect.d.ts +138 -1
  10. package/dist-types/commands/AddFlowOutputsCommand.d.ts +3 -0
  11. package/dist-types/commands/AddFlowSourcesCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateFlowCommand.d.ts +25 -2
  13. package/dist-types/commands/DescribeFlowCommand.d.ts +14 -1
  14. package/dist-types/commands/DescribeFlowSourceMetadataCommand.d.ts +34 -0
  15. package/dist-types/commands/StartRouterInputCommand.d.ts +1 -1
  16. package/dist-types/commands/StopRouterInputCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateFlowCommand.d.ts +20 -3
  18. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +3 -0
  19. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
  20. package/dist-types/commands/UpdateRouterInputCommand.d.ts +1 -1
  21. package/dist-types/models/enums.d.ts +13 -0
  22. package/dist-types/models/models_0.d.ts +203 -172
  23. package/dist-types/models/models_1.d.ts +127 -2
  24. package/dist-types/schemas/schemas_0.d.ts +6 -0
  25. package/dist-types/ts3.4/MediaConnect.d.ts +176 -1
  26. package/dist-types/ts3.4/commands/StartRouterInputCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/StopRouterInputCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/UpdateRouterInputCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +41 -35
  31. package/dist-types/ts3.4/models/models_1.d.ts +36 -0
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  34. package/dist-types/ts3.4/waiters/waitForOutputUnrouted.d.ts +11 -0
  35. package/dist-types/waiters/index.d.ts +1 -0
  36. package/dist-types/waiters/waitForOutputUnrouted.d.ts +14 -0
  37. package/package.json +17 -17
@@ -1,5 +1,130 @@
1
- import { MaintenanceScheduleType, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RoutingScope } from "./enums";
2
- import type { MaintenanceConfiguration, MaintenanceSchedule, RouterNetworkInterface, RouterNetworkInterfaceConfiguration, RouterOutput, RouterOutputConfiguration } from "./models_0";
1
+ import { MaintenanceScheduleType, RouterInputState, RouterInputTier, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RoutingScope } from "./enums";
2
+ import type { MaintenanceConfiguration, MaintenanceSchedule, RouterInput, RouterInputConfiguration, RouterInputTransitEncryption, RouterNetworkInterface, RouterNetworkInterfaceConfiguration, RouterOutput, RouterOutputConfiguration } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface StartRouterInputRequest {
7
+ /**
8
+ * <p>The Amazon Resource Name (ARN) of the router input that you want to start.</p>
9
+ * @public
10
+ */
11
+ Arn: string | undefined;
12
+ }
13
+ /**
14
+ * @public
15
+ */
16
+ export interface StartRouterInputResponse {
17
+ /**
18
+ * <p>The ARN of the router input that was started.</p>
19
+ * @public
20
+ */
21
+ Arn: string | undefined;
22
+ /**
23
+ * <p>The name of the router input that was started.</p>
24
+ * @public
25
+ */
26
+ Name: string | undefined;
27
+ /**
28
+ * <p>The current state of the router input after being started.</p>
29
+ * @public
30
+ */
31
+ State: RouterInputState | undefined;
32
+ /**
33
+ * <p>The type of maintenance schedule associated with the router input.</p>
34
+ * @public
35
+ */
36
+ MaintenanceScheduleType: MaintenanceScheduleType | undefined;
37
+ /**
38
+ * <p>The details of the maintenance schedule for the router input.</p>
39
+ * @public
40
+ */
41
+ MaintenanceSchedule: MaintenanceSchedule | undefined;
42
+ }
43
+ /**
44
+ * @public
45
+ */
46
+ export interface StopRouterInputRequest {
47
+ /**
48
+ * <p>The Amazon Resource Name (ARN) of the router input that you want to stop.</p>
49
+ * @public
50
+ */
51
+ Arn: string | undefined;
52
+ }
53
+ /**
54
+ * @public
55
+ */
56
+ export interface StopRouterInputResponse {
57
+ /**
58
+ * <p>The ARN of the router input that was stopped.</p>
59
+ * @public
60
+ */
61
+ Arn: string | undefined;
62
+ /**
63
+ * <p>The name of the router input that was stopped.</p>
64
+ * @public
65
+ */
66
+ Name: string | undefined;
67
+ /**
68
+ * <p>The current state of the router input after being stopped.</p>
69
+ * @public
70
+ */
71
+ State: RouterInputState | undefined;
72
+ }
73
+ /**
74
+ * @public
75
+ */
76
+ export interface UpdateRouterInputRequest {
77
+ /**
78
+ * <p>The Amazon Resource Name (ARN) of the router input that you want to update.</p>
79
+ * @public
80
+ */
81
+ Arn: string | undefined;
82
+ /**
83
+ * <p>The updated name for the router input.</p>
84
+ * @public
85
+ */
86
+ Name?: string | undefined;
87
+ /**
88
+ * <p>The updated configuration settings for the router input. Changing the type of the configuration is not supported.</p>
89
+ * @public
90
+ */
91
+ Configuration?: RouterInputConfiguration | undefined;
92
+ /**
93
+ * <p>The updated maximum bitrate for the router input.</p>
94
+ * @public
95
+ */
96
+ MaximumBitrate?: number | undefined;
97
+ /**
98
+ * <p>Specifies whether the router input can be assigned to outputs in different Regions. REGIONAL (default) - can be assigned only to outputs in the same Region. GLOBAL - can be assigned to outputs in any Region.</p>
99
+ * @public
100
+ */
101
+ RoutingScope?: RoutingScope | undefined;
102
+ /**
103
+ * <p>The updated tier level for the router input.</p>
104
+ * @public
105
+ */
106
+ Tier?: RouterInputTier | undefined;
107
+ /**
108
+ * <p>The updated transit encryption settings for the router input.</p>
109
+ * @public
110
+ */
111
+ TransitEncryption?: RouterInputTransitEncryption | undefined;
112
+ /**
113
+ * <p>The updated maintenance configuration settings for the router input, including any changes to preferred maintenance windows and schedules.</p>
114
+ * @public
115
+ */
116
+ MaintenanceConfiguration?: MaintenanceConfiguration | undefined;
117
+ }
118
+ /**
119
+ * @public
120
+ */
121
+ export interface UpdateRouterInputResponse {
122
+ /**
123
+ * <p>The updated router input.</p>
124
+ * @public
125
+ */
126
+ RouterInput: RouterInput | undefined;
127
+ }
3
128
  /**
4
129
  * @public
5
130
  */
@@ -92,6 +92,7 @@ export declare var DescribeReservationResponse$: StaticStructureSchema;
92
92
  export declare var DestinationConfiguration$: StaticStructureSchema;
93
93
  export declare var DestinationConfigurationRequest$: StaticStructureSchema;
94
94
  export declare var EgressGatewayBridge$: StaticStructureSchema;
95
+ export declare var EncodingConfig$: StaticStructureSchema;
95
96
  export declare var EncodingParameters$: StaticStructureSchema;
96
97
  export declare var EncodingParametersRequest$: StaticStructureSchema;
97
98
  export declare var Encryption$: StaticStructureSchema;
@@ -187,6 +188,11 @@ export declare var MonitoringConfig$: StaticStructureSchema;
187
188
  export declare var MulticastSourceSettings$: StaticStructureSchema;
188
189
  export declare var NdiConfig$: StaticStructureSchema;
189
190
  export declare var NdiDiscoveryServerConfig$: StaticStructureSchema;
191
+ export declare var NdiMediaInfo$: StaticStructureSchema;
192
+ export declare var NdiMediaStreamInfo$: StaticStructureSchema;
193
+ export declare var NdiSourceInfo$: StaticStructureSchema;
194
+ export declare var NdiSourceMetadataInfo$: StaticStructureSchema;
195
+ export declare var NdiSourceSettings$: StaticStructureSchema;
190
196
  export declare var NotFoundException$: StaticErrorSchema;
191
197
  export declare var Offering$: StaticStructureSchema;
192
198
  export declare var Output$: StaticStructureSchema;
@@ -1,4 +1,10 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ WaiterConfiguration,
6
+ } from "@smithy/types";
7
+ import { WaiterResult } from "@smithy/util-waiter";
2
8
  import {
3
9
  AddBridgeOutputsCommandInput,
4
10
  AddBridgeOutputsCommandOutput,
@@ -1405,6 +1411,175 @@ export interface MediaConnect {
1405
1411
  options: __HttpHandlerOptions,
1406
1412
  cb: (err: any, data?: UpdateRouterOutputCommandOutput) => void
1407
1413
  ): void;
1414
+ paginateListBridges(
1415
+ args?: ListBridgesCommandInput,
1416
+ paginationConfig?: Pick<
1417
+ PaginationConfiguration,
1418
+ Exclude<keyof PaginationConfiguration, "client">
1419
+ >
1420
+ ): Paginator<ListBridgesCommandOutput>;
1421
+ paginateListEntitlements(
1422
+ args?: ListEntitlementsCommandInput,
1423
+ paginationConfig?: Pick<
1424
+ PaginationConfiguration,
1425
+ Exclude<keyof PaginationConfiguration, "client">
1426
+ >
1427
+ ): Paginator<ListEntitlementsCommandOutput>;
1428
+ paginateListFlows(
1429
+ args?: ListFlowsCommandInput,
1430
+ paginationConfig?: Pick<
1431
+ PaginationConfiguration,
1432
+ Exclude<keyof PaginationConfiguration, "client">
1433
+ >
1434
+ ): Paginator<ListFlowsCommandOutput>;
1435
+ paginateListGatewayInstances(
1436
+ args?: ListGatewayInstancesCommandInput,
1437
+ paginationConfig?: Pick<
1438
+ PaginationConfiguration,
1439
+ Exclude<keyof PaginationConfiguration, "client">
1440
+ >
1441
+ ): Paginator<ListGatewayInstancesCommandOutput>;
1442
+ paginateListGateways(
1443
+ args?: ListGatewaysCommandInput,
1444
+ paginationConfig?: Pick<
1445
+ PaginationConfiguration,
1446
+ Exclude<keyof PaginationConfiguration, "client">
1447
+ >
1448
+ ): Paginator<ListGatewaysCommandOutput>;
1449
+ paginateListOfferings(
1450
+ args?: ListOfferingsCommandInput,
1451
+ paginationConfig?: Pick<
1452
+ PaginationConfiguration,
1453
+ Exclude<keyof PaginationConfiguration, "client">
1454
+ >
1455
+ ): Paginator<ListOfferingsCommandOutput>;
1456
+ paginateListReservations(
1457
+ args?: ListReservationsCommandInput,
1458
+ paginationConfig?: Pick<
1459
+ PaginationConfiguration,
1460
+ Exclude<keyof PaginationConfiguration, "client">
1461
+ >
1462
+ ): Paginator<ListReservationsCommandOutput>;
1463
+ paginateListRouterInputs(
1464
+ args?: ListRouterInputsCommandInput,
1465
+ paginationConfig?: Pick<
1466
+ PaginationConfiguration,
1467
+ Exclude<keyof PaginationConfiguration, "client">
1468
+ >
1469
+ ): Paginator<ListRouterInputsCommandOutput>;
1470
+ paginateListRouterNetworkInterfaces(
1471
+ args?: ListRouterNetworkInterfacesCommandInput,
1472
+ paginationConfig?: Pick<
1473
+ PaginationConfiguration,
1474
+ Exclude<keyof PaginationConfiguration, "client">
1475
+ >
1476
+ ): Paginator<ListRouterNetworkInterfacesCommandOutput>;
1477
+ paginateListRouterOutputs(
1478
+ args?: ListRouterOutputsCommandInput,
1479
+ paginationConfig?: Pick<
1480
+ PaginationConfiguration,
1481
+ Exclude<keyof PaginationConfiguration, "client">
1482
+ >
1483
+ ): Paginator<ListRouterOutputsCommandOutput>;
1484
+ waitUntilFlowActive(
1485
+ args: DescribeFlowCommandInput,
1486
+ waiterConfig:
1487
+ | number
1488
+ | Pick<
1489
+ WaiterConfiguration<MediaConnect>,
1490
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1491
+ >
1492
+ ): Promise<WaiterResult>;
1493
+ waitUntilFlowDeleted(
1494
+ args: DescribeFlowCommandInput,
1495
+ waiterConfig:
1496
+ | number
1497
+ | Pick<
1498
+ WaiterConfiguration<MediaConnect>,
1499
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1500
+ >
1501
+ ): Promise<WaiterResult>;
1502
+ waitUntilFlowStandby(
1503
+ args: DescribeFlowCommandInput,
1504
+ waiterConfig:
1505
+ | number
1506
+ | Pick<
1507
+ WaiterConfiguration<MediaConnect>,
1508
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1509
+ >
1510
+ ): Promise<WaiterResult>;
1511
+ waitUntilInputStandby(
1512
+ args: GetRouterInputCommandInput,
1513
+ waiterConfig:
1514
+ | number
1515
+ | Pick<
1516
+ WaiterConfiguration<MediaConnect>,
1517
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1518
+ >
1519
+ ): Promise<WaiterResult>;
1520
+ waitUntilInputDeleted(
1521
+ args: GetRouterInputCommandInput,
1522
+ waiterConfig:
1523
+ | number
1524
+ | Pick<
1525
+ WaiterConfiguration<MediaConnect>,
1526
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1527
+ >
1528
+ ): Promise<WaiterResult>;
1529
+ waitUntilInputActive(
1530
+ args: GetRouterInputCommandInput,
1531
+ waiterConfig:
1532
+ | number
1533
+ | Pick<
1534
+ WaiterConfiguration<MediaConnect>,
1535
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1536
+ >
1537
+ ): Promise<WaiterResult>;
1538
+ waitUntilOutputUnrouted(
1539
+ args: GetRouterOutputCommandInput,
1540
+ waiterConfig:
1541
+ | number
1542
+ | Pick<
1543
+ WaiterConfiguration<MediaConnect>,
1544
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1545
+ >
1546
+ ): Promise<WaiterResult>;
1547
+ waitUntilOutputDeleted(
1548
+ args: GetRouterOutputCommandInput,
1549
+ waiterConfig:
1550
+ | number
1551
+ | Pick<
1552
+ WaiterConfiguration<MediaConnect>,
1553
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1554
+ >
1555
+ ): Promise<WaiterResult>;
1556
+ waitUntilOutputActive(
1557
+ args: GetRouterOutputCommandInput,
1558
+ waiterConfig:
1559
+ | number
1560
+ | Pick<
1561
+ WaiterConfiguration<MediaConnect>,
1562
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1563
+ >
1564
+ ): Promise<WaiterResult>;
1565
+ waitUntilOutputStandby(
1566
+ args: GetRouterOutputCommandInput,
1567
+ waiterConfig:
1568
+ | number
1569
+ | Pick<
1570
+ WaiterConfiguration<MediaConnect>,
1571
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1572
+ >
1573
+ ): Promise<WaiterResult>;
1574
+ waitUntilOutputRouted(
1575
+ args: GetRouterOutputCommandInput,
1576
+ waiterConfig:
1577
+ | number
1578
+ | Pick<
1579
+ WaiterConfiguration<MediaConnect>,
1580
+ Exclude<keyof WaiterConfiguration<MediaConnect>, "client">
1581
+ >
1582
+ ): Promise<WaiterResult>;
1408
1583
  }
1409
1584
  export declare class MediaConnect
1410
1585
  extends MediaConnectClient
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StartRouterInputRequest,
10
10
  StartRouterInputResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StartRouterInputCommandInput extends StartRouterInputRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StopRouterInputRequest,
10
10
  StopRouterInputResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StopRouterInputCommandInput extends StopRouterInputRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateRouterInputRequest,
10
10
  UpdateRouterInputResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateRouterInputCommandInput
@@ -367,8 +367,15 @@ export declare const ContentQualityAnalysisState: {
367
367
  };
368
368
  export type ContentQualityAnalysisState =
369
369
  (typeof ContentQualityAnalysisState)[keyof typeof ContentQualityAnalysisState];
370
+ export declare const EncodingProfile: {
371
+ readonly CONTRIBUTION_H264_DEFAULT: "CONTRIBUTION_H264_DEFAULT";
372
+ readonly DISTRIBUTION_H264_DEFAULT: "DISTRIBUTION_H264_DEFAULT";
373
+ };
374
+ export type EncodingProfile =
375
+ (typeof EncodingProfile)[keyof typeof EncodingProfile];
370
376
  export declare const FlowSize: {
371
377
  readonly LARGE: "LARGE";
378
+ readonly LARGE_4X: "LARGE_4X";
372
379
  readonly MEDIUM: "MEDIUM";
373
380
  };
374
381
  export type FlowSize = (typeof FlowSize)[keyof typeof FlowSize];
@@ -10,6 +10,7 @@ import {
10
10
  DurationUnits,
11
11
  EncoderProfile,
12
12
  EncodingName,
13
+ EncodingProfile,
13
14
  EntitlementStatus,
14
15
  FailoverInputSourcePriorityMode,
15
16
  FailoverMode,
@@ -372,6 +373,23 @@ export interface NdiDiscoveryServerConfig {
372
373
  DiscoveryServerPort?: number | undefined;
373
374
  VpcInterfaceAdapter: string | undefined;
374
375
  }
376
+ export interface FrameResolution {
377
+ FrameHeight: number | undefined;
378
+ FrameWidth: number | undefined;
379
+ }
380
+ export interface NdiMediaStreamInfo {
381
+ StreamType: string | undefined;
382
+ Codec: string | undefined;
383
+ StreamId: number | undefined;
384
+ ScanMode?: ScanMode | undefined;
385
+ FrameResolution?: FrameResolution | undefined;
386
+ FrameRate?: string | undefined;
387
+ Channels?: number | undefined;
388
+ SampleRate?: number | undefined;
389
+ }
390
+ export interface NdiSourceInfo {
391
+ SourceName: string | undefined;
392
+ }
375
393
  export interface ResourceSpecification {
376
394
  ReservedBitrate?: number | undefined;
377
395
  ResourceType: ResourceType | undefined;
@@ -386,6 +404,9 @@ export interface Offering {
386
404
  PriceUnits: PriceUnits | undefined;
387
405
  ResourceSpecification: ResourceSpecification | undefined;
388
406
  }
407
+ export interface NdiSourceSettings {
408
+ SourceName?: string | undefined;
409
+ }
389
410
  export interface Transport {
390
411
  CidrAllowList?: string[] | undefined;
391
412
  MaxBitrate?: number | undefined;
@@ -402,6 +423,7 @@ export interface Transport {
402
423
  StreamId?: string | undefined;
403
424
  NdiSpeedHqQuality?: number | undefined;
404
425
  NdiProgramName?: string | undefined;
426
+ NdiSourceSettings?: NdiSourceSettings | undefined;
405
427
  }
406
428
  export interface Output {
407
429
  DataTransferSubscriberFeePercent?: number | undefined;
@@ -468,6 +490,7 @@ export interface SetSourceRequest {
468
490
  VpcInterfaceName?: string | undefined;
469
491
  WhitelistCidr?: string | undefined;
470
492
  GatewayBridgeSource?: SetGatewayBridgeSourceRequest | undefined;
493
+ NdiSourceSettings?: NdiSourceSettings | undefined;
471
494
  SourceTags?: Record<string, string> | undefined;
472
495
  RouterIntegrationState?: State | undefined;
473
496
  RouterIntegrationTransitDecryption?: FlowTransitEncryption | undefined;
@@ -499,10 +522,6 @@ export interface Source {
499
522
  RouterIntegrationTransitDecryption?: FlowTransitEncryption | undefined;
500
523
  ConnectedRouterOutputArn?: string | undefined;
501
524
  }
502
- export interface FrameResolution {
503
- FrameHeight: number | undefined;
504
- FrameWidth: number | undefined;
505
- }
506
525
  export interface TransportStream {
507
526
  Channels?: number | undefined;
508
527
  Codec?: string | undefined;
@@ -1481,6 +1500,10 @@ export interface UpdateBridgeStateResponse {
1481
1500
  BridgeArn?: string | undefined;
1482
1501
  DesiredState?: DesiredState | undefined;
1483
1502
  }
1503
+ export interface EncodingConfig {
1504
+ EncodingProfile?: EncodingProfile | undefined;
1505
+ VideoMaxBitrate?: number | undefined;
1506
+ }
1484
1507
  export interface NdiConfig {
1485
1508
  NdiState?: NdiState | undefined;
1486
1509
  MachineName?: string | undefined;
@@ -1506,6 +1529,7 @@ export interface CreateFlowRequest {
1506
1529
  SourceMonitoringConfig?: MonitoringConfig | undefined;
1507
1530
  FlowSize?: FlowSize | undefined;
1508
1531
  NdiConfig?: NdiConfig | undefined;
1532
+ EncodingConfig?: EncodingConfig | undefined;
1509
1533
  FlowTags?: Record<string, string> | undefined;
1510
1534
  }
1511
1535
  export interface Flow {
@@ -1526,6 +1550,7 @@ export interface Flow {
1526
1550
  SourceMonitoringConfig?: MonitoringConfig | undefined;
1527
1551
  FlowSize?: FlowSize | undefined;
1528
1552
  NdiConfig?: NdiConfig | undefined;
1553
+ EncodingConfig?: EncodingConfig | undefined;
1529
1554
  }
1530
1555
  export interface CreateFlowResponse {
1531
1556
  Flow?: Flow | undefined;
@@ -1645,6 +1670,15 @@ export interface DescribeFlowResponse {
1645
1670
  export interface DescribeFlowSourceMetadataRequest {
1646
1671
  FlowArn: string | undefined;
1647
1672
  }
1673
+ export interface NdiMediaInfo {
1674
+ Streams: NdiMediaStreamInfo[] | undefined;
1675
+ }
1676
+ export interface NdiSourceMetadataInfo {
1677
+ ActiveSource?: NdiSourceInfo | undefined;
1678
+ DiscoveredSources: NdiSourceInfo[] | undefined;
1679
+ MediaInfo: NdiMediaInfo | undefined;
1680
+ Messages: MessageDetail[] | undefined;
1681
+ }
1648
1682
  export interface TransportMediaInfo {
1649
1683
  Programs: TransportStreamProgram[] | undefined;
1650
1684
  }
@@ -1653,6 +1687,7 @@ export interface DescribeFlowSourceMetadataResponse {
1653
1687
  Messages?: MessageDetail[] | undefined;
1654
1688
  Timestamp?: Date | undefined;
1655
1689
  TransportMediaInfo?: TransportMediaInfo | undefined;
1690
+ NdiInfo?: NdiSourceMetadataInfo | undefined;
1656
1691
  }
1657
1692
  export interface DescribeFlowSourceThumbnailRequest {
1658
1693
  FlowArn: string | undefined;
@@ -1784,6 +1819,7 @@ export interface UpdateFlowRequest {
1784
1819
  SourceMonitoringConfig?: MonitoringConfig | undefined;
1785
1820
  NdiConfig?: NdiConfig | undefined;
1786
1821
  FlowSize?: FlowSize | undefined;
1822
+ EncodingConfig?: EncodingConfig | undefined;
1787
1823
  }
1788
1824
  export interface UpdateFlowResponse {
1789
1825
  Flow?: Flow | undefined;
@@ -1881,6 +1917,7 @@ export interface UpdateFlowSourceRequest {
1881
1917
  VpcInterfaceName?: string | undefined;
1882
1918
  WhitelistCidr?: string | undefined;
1883
1919
  GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest | undefined;
1920
+ NdiSourceSettings?: NdiSourceSettings | undefined;
1884
1921
  RouterIntegrationState?: State | undefined;
1885
1922
  RouterIntegrationTransitDecryption?: FlowTransitEncryption | undefined;
1886
1923
  }
@@ -2287,34 +2324,3 @@ export interface RestartRouterInputResponse {
2287
2324
  Name: string | undefined;
2288
2325
  State: RouterInputState | undefined;
2289
2326
  }
2290
- export interface StartRouterInputRequest {
2291
- Arn: string | undefined;
2292
- }
2293
- export interface StartRouterInputResponse {
2294
- Arn: string | undefined;
2295
- Name: string | undefined;
2296
- State: RouterInputState | undefined;
2297
- MaintenanceScheduleType: MaintenanceScheduleType | undefined;
2298
- MaintenanceSchedule: MaintenanceSchedule | undefined;
2299
- }
2300
- export interface StopRouterInputRequest {
2301
- Arn: string | undefined;
2302
- }
2303
- export interface StopRouterInputResponse {
2304
- Arn: string | undefined;
2305
- Name: string | undefined;
2306
- State: RouterInputState | undefined;
2307
- }
2308
- export interface UpdateRouterInputRequest {
2309
- Arn: string | undefined;
2310
- Name?: string | undefined;
2311
- Configuration?: RouterInputConfiguration | undefined;
2312
- MaximumBitrate?: number | undefined;
2313
- RoutingScope?: RoutingScope | undefined;
2314
- Tier?: RouterInputTier | undefined;
2315
- TransitEncryption?: RouterInputTransitEncryption | undefined;
2316
- MaintenanceConfiguration?: MaintenanceConfiguration | undefined;
2317
- }
2318
- export interface UpdateRouterInputResponse {
2319
- RouterInput: RouterInput | undefined;
2320
- }
@@ -1,5 +1,7 @@
1
1
  import {
2
2
  MaintenanceScheduleType,
3
+ RouterInputState,
4
+ RouterInputTier,
3
5
  RouterOutputRoutedState,
4
6
  RouterOutputState,
5
7
  RouterOutputTier,
@@ -8,11 +10,45 @@ import {
8
10
  import {
9
11
  MaintenanceConfiguration,
10
12
  MaintenanceSchedule,
13
+ RouterInput,
14
+ RouterInputConfiguration,
15
+ RouterInputTransitEncryption,
11
16
  RouterNetworkInterface,
12
17
  RouterNetworkInterfaceConfiguration,
13
18
  RouterOutput,
14
19
  RouterOutputConfiguration,
15
20
  } from "./models_0";
21
+ export interface StartRouterInputRequest {
22
+ Arn: string | undefined;
23
+ }
24
+ export interface StartRouterInputResponse {
25
+ Arn: string | undefined;
26
+ Name: string | undefined;
27
+ State: RouterInputState | undefined;
28
+ MaintenanceScheduleType: MaintenanceScheduleType | undefined;
29
+ MaintenanceSchedule: MaintenanceSchedule | undefined;
30
+ }
31
+ export interface StopRouterInputRequest {
32
+ Arn: string | undefined;
33
+ }
34
+ export interface StopRouterInputResponse {
35
+ Arn: string | undefined;
36
+ Name: string | undefined;
37
+ State: RouterInputState | undefined;
38
+ }
39
+ export interface UpdateRouterInputRequest {
40
+ Arn: string | undefined;
41
+ Name?: string | undefined;
42
+ Configuration?: RouterInputConfiguration | undefined;
43
+ MaximumBitrate?: number | undefined;
44
+ RoutingScope?: RoutingScope | undefined;
45
+ Tier?: RouterInputTier | undefined;
46
+ TransitEncryption?: RouterInputTransitEncryption | undefined;
47
+ MaintenanceConfiguration?: MaintenanceConfiguration | undefined;
48
+ }
49
+ export interface UpdateRouterInputResponse {
50
+ RouterInput: RouterInput | undefined;
51
+ }
16
52
  export interface UpdateRouterNetworkInterfaceRequest {
17
53
  Arn: string | undefined;
18
54
  Name?: string | undefined;
@@ -97,6 +97,7 @@ export declare var DescribeReservationResponse$: StaticStructureSchema;
97
97
  export declare var DestinationConfiguration$: StaticStructureSchema;
98
98
  export declare var DestinationConfigurationRequest$: StaticStructureSchema;
99
99
  export declare var EgressGatewayBridge$: StaticStructureSchema;
100
+ export declare var EncodingConfig$: StaticStructureSchema;
100
101
  export declare var EncodingParameters$: StaticStructureSchema;
101
102
  export declare var EncodingParametersRequest$: StaticStructureSchema;
102
103
  export declare var Encryption$: StaticStructureSchema;
@@ -192,6 +193,11 @@ export declare var MonitoringConfig$: StaticStructureSchema;
192
193
  export declare var MulticastSourceSettings$: StaticStructureSchema;
193
194
  export declare var NdiConfig$: StaticStructureSchema;
194
195
  export declare var NdiDiscoveryServerConfig$: StaticStructureSchema;
196
+ export declare var NdiMediaInfo$: StaticStructureSchema;
197
+ export declare var NdiMediaStreamInfo$: StaticStructureSchema;
198
+ export declare var NdiSourceInfo$: StaticStructureSchema;
199
+ export declare var NdiSourceMetadataInfo$: StaticStructureSchema;
200
+ export declare var NdiSourceSettings$: StaticStructureSchema;
195
201
  export declare var NotFoundException$: StaticErrorSchema;
196
202
  export declare var Offering$: StaticStructureSchema;
197
203
  export declare var Output$: StaticStructureSchema;
@@ -4,6 +4,7 @@ export * from "./waitForFlowStandby";
4
4
  export * from "./waitForInputStandby";
5
5
  export * from "./waitForInputDeleted";
6
6
  export * from "./waitForInputActive";
7
+ export * from "./waitForOutputUnrouted";
7
8
  export * from "./waitForOutputDeleted";
8
9
  export * from "./waitForOutputActive";
9
10
  export * from "./waitForOutputStandby";
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
3
+ import { MediaConnectClient } from "../MediaConnectClient";
4
+ export declare const waitForOutputUnrouted: (
5
+ params: WaiterConfiguration<MediaConnectClient>,
6
+ input: GetRouterOutputCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilOutputUnrouted: (
9
+ params: WaiterConfiguration<MediaConnectClient>,
10
+ input: GetRouterOutputCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -4,6 +4,7 @@ export * from "./waitForFlowStandby";
4
4
  export * from "./waitForInputStandby";
5
5
  export * from "./waitForInputDeleted";
6
6
  export * from "./waitForInputActive";
7
+ export * from "./waitForOutputUnrouted";
7
8
  export * from "./waitForOutputDeleted";
8
9
  export * from "./waitForOutputActive";
9
10
  export * from "./waitForOutputStandby";
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
3
+ import { MediaConnectClient } from "../MediaConnectClient";
4
+ /**
5
+ * Wait until the Output is UNROUTED
6
+ * @deprecated Use waitUntilOutputUnrouted instead. waitForOutputUnrouted does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForOutputUnrouted: (params: WaiterConfiguration<MediaConnectClient>, input: GetRouterOutputCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ * Wait until the Output is UNROUTED
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetRouterOutputCommand for polling.
13
+ */
14
+ export declare const waitUntilOutputUnrouted: (params: WaiterConfiguration<MediaConnectClient>, input: GetRouterOutputCommandInput) => Promise<WaiterResult>;