@aws-sdk/client-mediaconnect 3.975.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,4 +1,5 @@
1
- import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
2
+ import type { WaiterResult } from "@smithy/util-waiter";
2
3
  import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
3
4
  import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
4
5
  import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
@@ -585,6 +586,142 @@ export interface MediaConnect {
585
586
  updateRouterOutput(args: UpdateRouterOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouterOutputCommandOutput>;
586
587
  updateRouterOutput(args: UpdateRouterOutputCommandInput, cb: (err: any, data?: UpdateRouterOutputCommandOutput) => void): void;
587
588
  updateRouterOutput(args: UpdateRouterOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouterOutputCommandOutput) => void): void;
589
+ /**
590
+ * @see {@link ListBridgesCommand}
591
+ * @param args - command input.
592
+ * @param paginationConfig - optional pagination config.
593
+ * @returns AsyncIterable of {@link ListBridgesCommandOutput}.
594
+ */
595
+ paginateListBridges(args?: ListBridgesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBridgesCommandOutput>;
596
+ /**
597
+ * @see {@link ListEntitlementsCommand}
598
+ * @param args - command input.
599
+ * @param paginationConfig - optional pagination config.
600
+ * @returns AsyncIterable of {@link ListEntitlementsCommandOutput}.
601
+ */
602
+ paginateListEntitlements(args?: ListEntitlementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEntitlementsCommandOutput>;
603
+ /**
604
+ * @see {@link ListFlowsCommand}
605
+ * @param args - command input.
606
+ * @param paginationConfig - optional pagination config.
607
+ * @returns AsyncIterable of {@link ListFlowsCommandOutput}.
608
+ */
609
+ paginateListFlows(args?: ListFlowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFlowsCommandOutput>;
610
+ /**
611
+ * @see {@link ListGatewayInstancesCommand}
612
+ * @param args - command input.
613
+ * @param paginationConfig - optional pagination config.
614
+ * @returns AsyncIterable of {@link ListGatewayInstancesCommandOutput}.
615
+ */
616
+ paginateListGatewayInstances(args?: ListGatewayInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGatewayInstancesCommandOutput>;
617
+ /**
618
+ * @see {@link ListGatewaysCommand}
619
+ * @param args - command input.
620
+ * @param paginationConfig - optional pagination config.
621
+ * @returns AsyncIterable of {@link ListGatewaysCommandOutput}.
622
+ */
623
+ paginateListGateways(args?: ListGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGatewaysCommandOutput>;
624
+ /**
625
+ * @see {@link ListOfferingsCommand}
626
+ * @param args - command input.
627
+ * @param paginationConfig - optional pagination config.
628
+ * @returns AsyncIterable of {@link ListOfferingsCommandOutput}.
629
+ */
630
+ paginateListOfferings(args?: ListOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOfferingsCommandOutput>;
631
+ /**
632
+ * @see {@link ListReservationsCommand}
633
+ * @param args - command input.
634
+ * @param paginationConfig - optional pagination config.
635
+ * @returns AsyncIterable of {@link ListReservationsCommandOutput}.
636
+ */
637
+ paginateListReservations(args?: ListReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReservationsCommandOutput>;
638
+ /**
639
+ * @see {@link ListRouterInputsCommand}
640
+ * @param args - command input.
641
+ * @param paginationConfig - optional pagination config.
642
+ * @returns AsyncIterable of {@link ListRouterInputsCommandOutput}.
643
+ */
644
+ paginateListRouterInputs(args?: ListRouterInputsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRouterInputsCommandOutput>;
645
+ /**
646
+ * @see {@link ListRouterNetworkInterfacesCommand}
647
+ * @param args - command input.
648
+ * @param paginationConfig - optional pagination config.
649
+ * @returns AsyncIterable of {@link ListRouterNetworkInterfacesCommandOutput}.
650
+ */
651
+ paginateListRouterNetworkInterfaces(args?: ListRouterNetworkInterfacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRouterNetworkInterfacesCommandOutput>;
652
+ /**
653
+ * @see {@link ListRouterOutputsCommand}
654
+ * @param args - command input.
655
+ * @param paginationConfig - optional pagination config.
656
+ * @returns AsyncIterable of {@link ListRouterOutputsCommandOutput}.
657
+ */
658
+ paginateListRouterOutputs(args?: ListRouterOutputsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRouterOutputsCommandOutput>;
659
+ /**
660
+ * @see {@link DescribeFlowCommand}
661
+ * @param args - command input.
662
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
663
+ */
664
+ waitUntilFlowActive(args: DescribeFlowCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
665
+ /**
666
+ * @see {@link DescribeFlowCommand}
667
+ * @param args - command input.
668
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
669
+ */
670
+ waitUntilFlowDeleted(args: DescribeFlowCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
671
+ /**
672
+ * @see {@link DescribeFlowCommand}
673
+ * @param args - command input.
674
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
675
+ */
676
+ waitUntilFlowStandby(args: DescribeFlowCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
677
+ /**
678
+ * @see {@link GetRouterInputCommand}
679
+ * @param args - command input.
680
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
681
+ */
682
+ waitUntilInputStandby(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
683
+ /**
684
+ * @see {@link GetRouterInputCommand}
685
+ * @param args - command input.
686
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
687
+ */
688
+ waitUntilInputDeleted(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
689
+ /**
690
+ * @see {@link GetRouterInputCommand}
691
+ * @param args - command input.
692
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
693
+ */
694
+ waitUntilInputActive(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
695
+ /**
696
+ * @see {@link GetRouterOutputCommand}
697
+ * @param args - command input.
698
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
699
+ */
700
+ waitUntilOutputUnrouted(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
701
+ /**
702
+ * @see {@link GetRouterOutputCommand}
703
+ * @param args - command input.
704
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
705
+ */
706
+ waitUntilOutputDeleted(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
707
+ /**
708
+ * @see {@link GetRouterOutputCommand}
709
+ * @param args - command input.
710
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
711
+ */
712
+ waitUntilOutputActive(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
713
+ /**
714
+ * @see {@link GetRouterOutputCommand}
715
+ * @param args - command input.
716
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
717
+ */
718
+ waitUntilOutputStandby(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
719
+ /**
720
+ * @see {@link GetRouterOutputCommand}
721
+ * @param args - command input.
722
+ * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
723
+ */
724
+ waitUntilOutputRouted(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
588
725
  }
589
726
  /**
590
727
  * <p>Welcome to the Elemental MediaConnect API reference. </p> <p>MediaConnect is a service that lets you ingest live video content into the cloud and distribute it to destinations all over the world, both inside and outside the Amazon Web Services cloud. This API reference provides descriptions, syntax, and usage examples for each of the actions and data types that are supported by MediaConnect. </p> <p>Use the following links to get started with the MediaConnect API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/API_Operations.html">Actions</a>: An alphabetical list of all MediaConnect API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/API_Types.html">Data types</a>: An alphabetical list of all MediaConnect data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/CommonParameters.html">Common parameters</a>: Parameters that all operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul>
@@ -171,6 +171,9 @@ declare const AddFlowOutputsCommand_base: {
171
171
  * // StreamId: "STRING_VALUE",
172
172
  * // NdiSpeedHqQuality: Number("int"),
173
173
  * // NdiProgramName: "STRING_VALUE",
174
+ * // NdiSourceSettings: { // NdiSourceSettings
175
+ * // SourceName: "STRING_VALUE",
176
+ * // },
174
177
  * // },
175
178
  * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
176
179
  * // VpcInterfaceName: "STRING_VALUE",
@@ -87,6 +87,9 @@ declare const AddFlowSourcesCommand_base: {
87
87
  * VpcInterfaceName: "STRING_VALUE",
88
88
  * },
89
89
  * },
90
+ * NdiSourceSettings: { // NdiSourceSettings
91
+ * SourceName: "STRING_VALUE",
92
+ * },
90
93
  * SourceTags: { // __mapOfString
91
94
  * "<keys>": "STRING_VALUE",
92
95
  * },
@@ -163,6 +166,9 @@ declare const AddFlowSourcesCommand_base: {
163
166
  * // StreamId: "STRING_VALUE",
164
167
  * // NdiSpeedHqQuality: Number("int"),
165
168
  * // NdiProgramName: "STRING_VALUE",
169
+ * // NdiSourceSettings: { // NdiSourceSettings
170
+ * // SourceName: "STRING_VALUE",
171
+ * // },
166
172
  * // },
167
173
  * // VpcInterfaceName: "STRING_VALUE",
168
174
  * // WhitelistCidr: "STRING_VALUE",
@@ -205,6 +205,9 @@ declare const CreateFlowCommand_base: {
205
205
  * VpcInterfaceName: "STRING_VALUE",
206
206
  * },
207
207
  * },
208
+ * NdiSourceSettings: { // NdiSourceSettings
209
+ * SourceName: "STRING_VALUE",
210
+ * },
208
211
  * SourceTags: {
209
212
  * "<keys>": "STRING_VALUE",
210
213
  * },
@@ -277,6 +280,9 @@ declare const CreateFlowCommand_base: {
277
280
  * VpcInterfaceName: "STRING_VALUE",
278
281
  * },
279
282
  * },
283
+ * NdiSourceSettings: {
284
+ * SourceName: "STRING_VALUE",
285
+ * },
280
286
  * SourceTags: {
281
287
  * "<keys>": "STRING_VALUE",
282
288
  * },
@@ -333,7 +339,7 @@ declare const CreateFlowCommand_base: {
333
339
  * },
334
340
  * ],
335
341
  * },
336
- * FlowSize: "MEDIUM" || "LARGE",
342
+ * FlowSize: "MEDIUM" || "LARGE" || "LARGE_4X",
337
343
  * NdiConfig: { // NdiConfig
338
344
  * NdiState: "ENABLED" || "DISABLED",
339
345
  * MachineName: "STRING_VALUE",
@@ -345,6 +351,10 @@ declare const CreateFlowCommand_base: {
345
351
  * },
346
352
  * ],
347
353
  * },
354
+ * EncodingConfig: { // EncodingConfig
355
+ * EncodingProfile: "DISTRIBUTION_H264_DEFAULT" || "CONTRIBUTION_H264_DEFAULT",
356
+ * VideoMaxBitrate: Number("int"),
357
+ * },
348
358
  * FlowTags: "<__mapOfString>",
349
359
  * };
350
360
  * const command = new CreateFlowCommand(input);
@@ -462,6 +472,9 @@ declare const CreateFlowCommand_base: {
462
472
  * // StreamId: "STRING_VALUE",
463
473
  * // NdiSpeedHqQuality: Number("int"),
464
474
  * // NdiProgramName: "STRING_VALUE",
475
+ * // NdiSourceSettings: { // NdiSourceSettings
476
+ * // SourceName: "STRING_VALUE",
477
+ * // },
465
478
  * // },
466
479
  * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
467
480
  * // VpcInterfaceName: "STRING_VALUE",
@@ -540,6 +553,9 @@ declare const CreateFlowCommand_base: {
540
553
  * // StreamId: "STRING_VALUE",
541
554
  * // NdiSpeedHqQuality: Number("int"),
542
555
  * // NdiProgramName: "STRING_VALUE",
556
+ * // NdiSourceSettings: {
557
+ * // SourceName: "STRING_VALUE",
558
+ * // },
543
559
  * // },
544
560
  * // VpcInterfaceName: "STRING_VALUE",
545
561
  * // WhitelistCidr: "STRING_VALUE",
@@ -626,6 +642,9 @@ declare const CreateFlowCommand_base: {
626
642
  * // StreamId: "STRING_VALUE",
627
643
  * // NdiSpeedHqQuality: Number("int"),
628
644
  * // NdiProgramName: "STRING_VALUE",
645
+ * // NdiSourceSettings: {
646
+ * // SourceName: "STRING_VALUE",
647
+ * // },
629
648
  * // },
630
649
  * // VpcInterfaceName: "STRING_VALUE",
631
650
  * // WhitelistCidr: "STRING_VALUE",
@@ -693,7 +712,7 @@ declare const CreateFlowCommand_base: {
693
712
  * // },
694
713
  * // ],
695
714
  * // },
696
- * // FlowSize: "MEDIUM" || "LARGE",
715
+ * // FlowSize: "MEDIUM" || "LARGE" || "LARGE_4X",
697
716
  * // NdiConfig: { // NdiConfig
698
717
  * // NdiState: "ENABLED" || "DISABLED",
699
718
  * // MachineName: "STRING_VALUE",
@@ -705,6 +724,10 @@ declare const CreateFlowCommand_base: {
705
724
  * // },
706
725
  * // ],
707
726
  * // },
727
+ * // EncodingConfig: { // EncodingConfig
728
+ * // EncodingProfile: "DISTRIBUTION_H264_DEFAULT" || "CONTRIBUTION_H264_DEFAULT",
729
+ * // VideoMaxBitrate: Number("int"),
730
+ * // },
708
731
  * // },
709
732
  * // };
710
733
  *
@@ -154,6 +154,9 @@ declare const DescribeFlowCommand_base: {
154
154
  * // StreamId: "STRING_VALUE",
155
155
  * // NdiSpeedHqQuality: Number("int"),
156
156
  * // NdiProgramName: "STRING_VALUE",
157
+ * // NdiSourceSettings: { // NdiSourceSettings
158
+ * // SourceName: "STRING_VALUE",
159
+ * // },
157
160
  * // },
158
161
  * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
159
162
  * // VpcInterfaceName: "STRING_VALUE",
@@ -232,6 +235,9 @@ declare const DescribeFlowCommand_base: {
232
235
  * // StreamId: "STRING_VALUE",
233
236
  * // NdiSpeedHqQuality: Number("int"),
234
237
  * // NdiProgramName: "STRING_VALUE",
238
+ * // NdiSourceSettings: {
239
+ * // SourceName: "STRING_VALUE",
240
+ * // },
235
241
  * // },
236
242
  * // VpcInterfaceName: "STRING_VALUE",
237
243
  * // WhitelistCidr: "STRING_VALUE",
@@ -318,6 +324,9 @@ declare const DescribeFlowCommand_base: {
318
324
  * // StreamId: "STRING_VALUE",
319
325
  * // NdiSpeedHqQuality: Number("int"),
320
326
  * // NdiProgramName: "STRING_VALUE",
327
+ * // NdiSourceSettings: {
328
+ * // SourceName: "STRING_VALUE",
329
+ * // },
321
330
  * // },
322
331
  * // VpcInterfaceName: "STRING_VALUE",
323
332
  * // WhitelistCidr: "STRING_VALUE",
@@ -385,7 +394,7 @@ declare const DescribeFlowCommand_base: {
385
394
  * // },
386
395
  * // ],
387
396
  * // },
388
- * // FlowSize: "MEDIUM" || "LARGE",
397
+ * // FlowSize: "MEDIUM" || "LARGE" || "LARGE_4X",
389
398
  * // NdiConfig: { // NdiConfig
390
399
  * // NdiState: "ENABLED" || "DISABLED",
391
400
  * // MachineName: "STRING_VALUE",
@@ -397,6 +406,10 @@ declare const DescribeFlowCommand_base: {
397
406
  * // },
398
407
  * // ],
399
408
  * // },
409
+ * // EncodingConfig: { // EncodingConfig
410
+ * // EncodingProfile: "DISTRIBUTION_H264_DEFAULT" || "CONTRIBUTION_H264_DEFAULT",
411
+ * // VideoMaxBitrate: Number("int"),
412
+ * // },
400
413
  * // },
401
414
  * // Messages: { // Messages
402
415
  * // Errors: "<__listOfString>", // required
@@ -76,6 +76,40 @@ declare const DescribeFlowSourceMetadataCommand_base: {
76
76
  * // },
77
77
  * // ],
78
78
  * // },
79
+ * // NdiInfo: { // NdiSourceMetadataInfo
80
+ * // ActiveSource: { // NdiSourceInfo
81
+ * // SourceName: "STRING_VALUE", // required
82
+ * // },
83
+ * // DiscoveredSources: [ // __listOfNdiSourceInfo // required
84
+ * // {
85
+ * // SourceName: "STRING_VALUE", // required
86
+ * // },
87
+ * // ],
88
+ * // MediaInfo: { // NdiMediaInfo
89
+ * // Streams: [ // __listOfNdiMediaStreamInfo // required
90
+ * // { // NdiMediaStreamInfo
91
+ * // StreamType: "STRING_VALUE", // required
92
+ * // Codec: "STRING_VALUE", // required
93
+ * // StreamId: Number("int"), // required
94
+ * // ScanMode: "progressive" || "interlace" || "progressive-segmented-frame",
95
+ * // FrameResolution: {
96
+ * // FrameHeight: Number("int"), // required
97
+ * // FrameWidth: Number("int"), // required
98
+ * // },
99
+ * // FrameRate: "STRING_VALUE",
100
+ * // Channels: Number("int"),
101
+ * // SampleRate: Number("int"),
102
+ * // },
103
+ * // ],
104
+ * // },
105
+ * // Messages: [ // required
106
+ * // {
107
+ * // Code: "STRING_VALUE", // required
108
+ * // Message: "STRING_VALUE", // required
109
+ * // ResourceName: "STRING_VALUE",
110
+ * // },
111
+ * // ],
112
+ * // },
79
113
  * // };
80
114
  *
81
115
  * ```
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import type { StartRouterInputRequest, StartRouterInputResponse } from "../models/models_0";
4
+ import type { StartRouterInputRequest, StartRouterInputResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import type { StopRouterInputRequest, StopRouterInputResponse } from "../models/models_0";
4
+ import type { StopRouterInputRequest, StopRouterInputResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -27,7 +27,7 @@ declare const UpdateFlowCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p> Updates an existing flow.</p>
30
+ * <p> Updates an existing flow.</p> <note> <p> Because <code>UpdateFlowSources</code> and <code>UpdateFlow</code> are separate operations, you can't change both the source type AND the flow size in a single request. </p> <ul> <li> <p>If you have a <code>MEDIUM</code> flow and you want to change the flow source to NDI®:</p> <ul> <li> <p>First, use the <code>UpdateFlow</code> operation to upgrade the flow size to <code>LARGE</code>. </p> </li> <li> <p>After that, you can then use the <code>UpdateFlowSource</code> operation to configure the NDI source. </p> </li> </ul> </li> <li> <p>If you're switching from an NDI source to a transport stream (TS) source and want to downgrade the flow size: </p> <ul> <li> <p>First, use the <code>UpdateFlowSource</code> operation to change the flow source type. </p> </li> <li> <p>After that, you can then use the <code>UpdateFlow</code> operation to downgrade the flow size to <code>MEDIUM</code>.</p> </li> </ul> </li> </ul> </note>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -86,7 +86,11 @@ declare const UpdateFlowCommand_base: {
86
86
  * },
87
87
  * ],
88
88
  * },
89
- * FlowSize: "MEDIUM" || "LARGE",
89
+ * FlowSize: "MEDIUM" || "LARGE" || "LARGE_4X",
90
+ * EncodingConfig: { // EncodingConfig
91
+ * EncodingProfile: "DISTRIBUTION_H264_DEFAULT" || "CONTRIBUTION_H264_DEFAULT",
92
+ * VideoMaxBitrate: Number("int"),
93
+ * },
90
94
  * };
91
95
  * const command = new UpdateFlowCommand(input);
92
96
  * const response = await client.send(command);
@@ -203,6 +207,9 @@ declare const UpdateFlowCommand_base: {
203
207
  * // StreamId: "STRING_VALUE",
204
208
  * // NdiSpeedHqQuality: Number("int"),
205
209
  * // NdiProgramName: "STRING_VALUE",
210
+ * // NdiSourceSettings: { // NdiSourceSettings
211
+ * // SourceName: "STRING_VALUE",
212
+ * // },
206
213
  * // },
207
214
  * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
208
215
  * // VpcInterfaceName: "STRING_VALUE",
@@ -281,6 +288,9 @@ declare const UpdateFlowCommand_base: {
281
288
  * // StreamId: "STRING_VALUE",
282
289
  * // NdiSpeedHqQuality: Number("int"),
283
290
  * // NdiProgramName: "STRING_VALUE",
291
+ * // NdiSourceSettings: {
292
+ * // SourceName: "STRING_VALUE",
293
+ * // },
284
294
  * // },
285
295
  * // VpcInterfaceName: "STRING_VALUE",
286
296
  * // WhitelistCidr: "STRING_VALUE",
@@ -367,6 +377,9 @@ declare const UpdateFlowCommand_base: {
367
377
  * // StreamId: "STRING_VALUE",
368
378
  * // NdiSpeedHqQuality: Number("int"),
369
379
  * // NdiProgramName: "STRING_VALUE",
380
+ * // NdiSourceSettings: {
381
+ * // SourceName: "STRING_VALUE",
382
+ * // },
370
383
  * // },
371
384
  * // VpcInterfaceName: "STRING_VALUE",
372
385
  * // WhitelistCidr: "STRING_VALUE",
@@ -434,7 +447,7 @@ declare const UpdateFlowCommand_base: {
434
447
  * // },
435
448
  * // ],
436
449
  * // },
437
- * // FlowSize: "MEDIUM" || "LARGE",
450
+ * // FlowSize: "MEDIUM" || "LARGE" || "LARGE_4X",
438
451
  * // NdiConfig: { // NdiConfig
439
452
  * // NdiState: "ENABLED" || "DISABLED",
440
453
  * // MachineName: "STRING_VALUE",
@@ -446,6 +459,10 @@ declare const UpdateFlowCommand_base: {
446
459
  * // },
447
460
  * // ],
448
461
  * // },
462
+ * // EncodingConfig: { // EncodingConfig
463
+ * // EncodingProfile: "DISTRIBUTION_H264_DEFAULT" || "CONTRIBUTION_H264_DEFAULT",
464
+ * // VideoMaxBitrate: Number("int"),
465
+ * // },
449
466
  * // },
450
467
  * // };
451
468
  *
@@ -164,6 +164,9 @@ declare const UpdateFlowOutputCommand_base: {
164
164
  * // StreamId: "STRING_VALUE",
165
165
  * // NdiSpeedHqQuality: Number("int"),
166
166
  * // NdiProgramName: "STRING_VALUE",
167
+ * // NdiSourceSettings: { // NdiSourceSettings
168
+ * // SourceName: "STRING_VALUE",
169
+ * // },
167
170
  * // },
168
171
  * // VpcInterfaceAttachment: { // VpcInterfaceAttachment
169
172
  * // VpcInterfaceName: "STRING_VALUE",
@@ -27,7 +27,7 @@ declare const UpdateFlowSourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p> Updates the source of a flow.</p>
30
+ * <p> Updates the source of a flow.</p> <note> <p> Because <code>UpdateFlowSources</code> and <code>UpdateFlow</code> are separate operations, you can't change both the source type AND the flow size in a single request. </p> <ul> <li> <p>If you have a <code>MEDIUM</code> flow and you want to change the flow source to NDI®:</p> <ul> <li> <p>First, use the <code>UpdateFlow</code> operation to upgrade the flow size to <code>LARGE</code>. </p> </li> <li> <p>After that, you can then use the <code>UpdateFlowSource</code> operation to configure the NDI source. </p> </li> </ul> </li> <li> <p>If you're switching from an NDI source to a transport stream (TS) source and want to downgrade the flow size: </p> <ul> <li> <p>First, use the <code>UpdateFlowSource</code> operation to change the flow source type. </p> </li> <li> <p>After that, you can then use the <code>UpdateFlow</code> operation to downgrade the flow size to <code>MEDIUM</code>.</p> </li> </ul> </li> </ul> </note>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -85,6 +85,9 @@ declare const UpdateFlowSourceCommand_base: {
85
85
  * VpcInterfaceName: "STRING_VALUE",
86
86
  * },
87
87
  * },
88
+ * NdiSourceSettings: { // NdiSourceSettings
89
+ * SourceName: "STRING_VALUE",
90
+ * },
88
91
  * RouterIntegrationState: "ENABLED" || "DISABLED",
89
92
  * RouterIntegrationTransitDecryption: { // FlowTransitEncryption
90
93
  * EncryptionKeyType: "SECRETS_MANAGER" || "AUTOMATIC",
@@ -155,6 +158,9 @@ declare const UpdateFlowSourceCommand_base: {
155
158
  * // StreamId: "STRING_VALUE",
156
159
  * // NdiSpeedHqQuality: Number("int"),
157
160
  * // NdiProgramName: "STRING_VALUE",
161
+ * // NdiSourceSettings: { // NdiSourceSettings
162
+ * // SourceName: "STRING_VALUE",
163
+ * // },
158
164
  * // },
159
165
  * // VpcInterfaceName: "STRING_VALUE",
160
166
  * // WhitelistCidr: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import type { UpdateRouterInputRequest, UpdateRouterInputResponse } from "../models/models_0";
4
+ import type { UpdateRouterInputRequest, UpdateRouterInputResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -689,12 +689,25 @@ export declare const ContentQualityAnalysisState: {
689
689
  * @public
690
690
  */
691
691
  export type ContentQualityAnalysisState = (typeof ContentQualityAnalysisState)[keyof typeof ContentQualityAnalysisState];
692
+ /**
693
+ * @public
694
+ * @enum
695
+ */
696
+ export declare const EncodingProfile: {
697
+ readonly CONTRIBUTION_H264_DEFAULT: "CONTRIBUTION_H264_DEFAULT";
698
+ readonly DISTRIBUTION_H264_DEFAULT: "DISTRIBUTION_H264_DEFAULT";
699
+ };
700
+ /**
701
+ * @public
702
+ */
703
+ export type EncodingProfile = (typeof EncodingProfile)[keyof typeof EncodingProfile];
692
704
  /**
693
705
  * @public
694
706
  * @enum
695
707
  */
696
708
  export declare const FlowSize: {
697
709
  readonly LARGE: "LARGE";
710
+ readonly LARGE_4X: "LARGE_4X";
698
711
  readonly MEDIUM: "MEDIUM";
699
712
  };
700
713
  /**