@aws-sdk/client-medialive 3.409.0 → 3.413.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 (55) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/MediaLive.js +4 -0
  3. package/dist-cjs/commands/StartInputDeviceCommand.js +46 -0
  4. package/dist-cjs/commands/StopInputDeviceCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +12 -7
  7. package/dist-cjs/models/models_1.js +7 -3
  8. package/dist-cjs/protocols/Aws_restJson1.js +165 -3
  9. package/dist-cjs/runtimeExtensions.js +3 -0
  10. package/dist-es/MediaLive.js +4 -0
  11. package/dist-es/commands/StartInputDeviceCommand.js +42 -0
  12. package/dist-es/commands/StopInputDeviceCommand.js +42 -0
  13. package/dist-es/commands/index.js +2 -0
  14. package/dist-es/models/models_0.js +9 -4
  15. package/dist-es/models/models_1.js +4 -0
  16. package/dist-es/protocols/Aws_restJson1.js +158 -0
  17. package/dist-es/runtimeExtensions.js +3 -0
  18. package/dist-types/MediaLive.d.ts +14 -0
  19. package/dist-types/MediaLiveClient.d.ts +4 -2
  20. package/dist-types/commands/DescribeInputDeviceCommand.d.ts +11 -0
  21. package/dist-types/commands/ListInputDevicesCommand.d.ts +11 -0
  22. package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListMultiplexesCommand.d.ts +2 -1
  24. package/dist-types/commands/ListOfferingsCommand.d.ts +1 -2
  25. package/dist-types/commands/StartInputDeviceCommand.d.ts +95 -0
  26. package/dist-types/commands/StopInputDeviceCommand.d.ts +95 -0
  27. package/dist-types/commands/UpdateInputDeviceCommand.d.ts +25 -0
  28. package/dist-types/commands/index.d.ts +2 -0
  29. package/dist-types/extensionConfiguration.d.ts +2 -1
  30. package/dist-types/models/models_0.d.ts +71 -39
  31. package/dist-types/models/models_1.d.ts +86 -120
  32. package/dist-types/models/models_2.d.ts +164 -1
  33. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +4 -1
  35. package/dist-types/runtimeConfig.d.ts +4 -1
  36. package/dist-types/runtimeConfig.native.d.ts +4 -1
  37. package/dist-types/runtimeExtensions.d.ts +1 -1
  38. package/dist-types/ts3.4/MediaLive.d.ts +34 -0
  39. package/dist-types/ts3.4/MediaLiveClient.d.ts +12 -0
  40. package/dist-types/ts3.4/commands/ListMultiplexProgramsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListMultiplexesCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/StartInputDeviceCommand.d.ts +38 -0
  44. package/dist-types/ts3.4/commands/StopInputDeviceCommand.d.ts +38 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  46. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
  47. package/dist-types/ts3.4/models/models_0.d.ts +23 -12
  48. package/dist-types/ts3.4/models/models_1.d.ts +24 -31
  49. package/dist-types/ts3.4/models/models_2.d.ts +40 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -1
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -1
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
  54. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  55. package/package.json +30 -30
@@ -0,0 +1,95 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
5
+ import { StopInputDeviceRequest, StopInputDeviceResponse } from "../models/models_2";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StopInputDeviceCommand}.
14
+ */
15
+ export interface StopInputDeviceCommandInput extends StopInputDeviceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StopInputDeviceCommand}.
21
+ */
22
+ export interface StopInputDeviceCommandOutput extends StopInputDeviceResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * Stop an input device that is attached to a MediaConnect flow. (There is no need to stop a device that is attached to a MediaLive input; MediaLive automatically stops the device when the channel stops.)
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MediaLiveClient, StopInputDeviceCommand } from "@aws-sdk/client-medialive"; // ES Modules import
31
+ * // const { MediaLiveClient, StopInputDeviceCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
32
+ * const client = new MediaLiveClient(config);
33
+ * const input = { // StopInputDeviceRequest
34
+ * InputDeviceId: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new StopInputDeviceCommand(input);
37
+ * const response = await client.send(command);
38
+ * // {};
39
+ *
40
+ * ```
41
+ *
42
+ * @param StopInputDeviceCommandInput - {@link StopInputDeviceCommandInput}
43
+ * @returns {@link StopInputDeviceCommandOutput}
44
+ * @see {@link StopInputDeviceCommandInput} for command's `input` shape.
45
+ * @see {@link StopInputDeviceCommandOutput} for command's `response` shape.
46
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
47
+ *
48
+ * @throws {@link BadGatewayException} (server fault)
49
+ * Placeholder documentation for BadGatewayException
50
+ *
51
+ * @throws {@link BadRequestException} (client fault)
52
+ * Placeholder documentation for BadRequestException
53
+ *
54
+ * @throws {@link ForbiddenException} (client fault)
55
+ * Placeholder documentation for ForbiddenException
56
+ *
57
+ * @throws {@link GatewayTimeoutException} (server fault)
58
+ * Placeholder documentation for GatewayTimeoutException
59
+ *
60
+ * @throws {@link InternalServerErrorException} (server fault)
61
+ * Placeholder documentation for InternalServerErrorException
62
+ *
63
+ * @throws {@link NotFoundException} (client fault)
64
+ * Placeholder documentation for NotFoundException
65
+ *
66
+ * @throws {@link TooManyRequestsException} (client fault)
67
+ * Placeholder documentation for TooManyRequestsException
68
+ *
69
+ * @throws {@link UnprocessableEntityException} (client fault)
70
+ * Placeholder documentation for UnprocessableEntityException
71
+ *
72
+ * @throws {@link MediaLiveServiceException}
73
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
74
+ *
75
+ */
76
+ export declare class StopInputDeviceCommand extends $Command<StopInputDeviceCommandInput, StopInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
77
+ readonly input: StopInputDeviceCommandInput;
78
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
82
+ constructor(input: StopInputDeviceCommandInput);
83
+ /**
84
+ * @internal
85
+ */
86
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaLiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopInputDeviceCommandInput, StopInputDeviceCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
90
+ private serialize;
91
+ /**
92
+ * @internal
93
+ */
94
+ private deserialize;
95
+ }
@@ -35,6 +35,13 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
35
35
  * ConfiguredInput: "AUTO" || "HDMI" || "SDI",
36
36
  * MaxBitrate: Number("int"),
37
37
  * LatencyMs: Number("int"),
38
+ * Codec: "HEVC" || "AVC",
39
+ * MediaconnectSettings: { // InputDeviceMediaConnectConfigurableSettings
40
+ * FlowArn: "STRING_VALUE",
41
+ * RoleArn: "STRING_VALUE",
42
+ * SecretArn: "STRING_VALUE",
43
+ * SourceName: "STRING_VALUE",
44
+ * },
38
45
  * },
39
46
  * InputDeviceId: "STRING_VALUE", // required
40
47
  * Name: "STRING_VALUE",
@@ -42,6 +49,13 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
42
49
  * ConfiguredInput: "AUTO" || "HDMI" || "SDI",
43
50
  * MaxBitrate: Number("int"),
44
51
  * LatencyMs: Number("int"),
52
+ * Codec: "HEVC" || "AVC",
53
+ * MediaconnectSettings: {
54
+ * FlowArn: "STRING_VALUE",
55
+ * RoleArn: "STRING_VALUE",
56
+ * SecretArn: "STRING_VALUE",
57
+ * SourceName: "STRING_VALUE",
58
+ * },
45
59
  * },
46
60
  * AvailabilityZone: "STRING_VALUE",
47
61
  * };
@@ -87,11 +101,22 @@ export interface UpdateInputDeviceCommandOutput extends UpdateInputDeviceRespons
87
101
  * // ScanType: "INTERLACED" || "PROGRESSIVE",
88
102
  * // Width: Number("int"),
89
103
  * // LatencyMs: Number("int"),
104
+ * // Codec: "HEVC" || "AVC",
105
+ * // MediaconnectSettings: { // InputDeviceMediaConnectSettings
106
+ * // FlowArn: "STRING_VALUE",
107
+ * // RoleArn: "STRING_VALUE",
108
+ * // SecretArn: "STRING_VALUE",
109
+ * // SourceName: "STRING_VALUE",
110
+ * // },
90
111
  * // },
91
112
  * // Tags: { // Tags
92
113
  * // "<keys>": "STRING_VALUE",
93
114
  * // },
94
115
  * // AvailabilityZone: "STRING_VALUE",
116
+ * // MedialiveInputArns: [
117
+ * // "STRING_VALUE",
118
+ * // ],
119
+ * // OutputType: "NONE" || "MEDIALIVE_INPUT" || "MEDIACONNECT_FLOW",
95
120
  * // };
96
121
  *
97
122
  * ```
@@ -46,9 +46,11 @@ export * from "./PurchaseOfferingCommand";
46
46
  export * from "./RebootInputDeviceCommand";
47
47
  export * from "./RejectInputDeviceTransferCommand";
48
48
  export * from "./StartChannelCommand";
49
+ export * from "./StartInputDeviceCommand";
49
50
  export * from "./StartInputDeviceMaintenanceWindowCommand";
50
51
  export * from "./StartMultiplexCommand";
51
52
  export * from "./StopChannelCommand";
53
+ export * from "./StopInputDeviceCommand";
52
54
  export * from "./StopMultiplexCommand";
53
55
  export * from "./TransferInputDeviceCommand";
54
56
  export * from "./UpdateAccountConfigurationCommand";
@@ -1,6 +1,7 @@
1
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
1
2
  import { DefaultExtensionConfiguration } from "@smithy/types";
2
3
  /**
3
4
  * @internal
4
5
  */
5
- export interface MediaLiveExtensionConfiguration extends DefaultExtensionConfiguration {
6
+ export interface MediaLiveExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration {
6
7
  }
@@ -3517,6 +3517,19 @@ export interface InputDeviceNetworkSettings {
3517
3517
  */
3518
3518
  SubnetMask?: string;
3519
3519
  }
3520
+ /**
3521
+ * @public
3522
+ * @enum
3523
+ */
3524
+ export declare const InputDeviceOutputType: {
3525
+ readonly MEDIACONNECT_FLOW: "MEDIACONNECT_FLOW";
3526
+ readonly MEDIALIVE_INPUT: "MEDIALIVE_INPUT";
3527
+ readonly NONE: "NONE";
3528
+ };
3529
+ /**
3530
+ * @public
3531
+ */
3532
+ export type InputDeviceOutputType = (typeof InputDeviceOutputType)[keyof typeof InputDeviceOutputType];
3520
3533
  /**
3521
3534
  * @public
3522
3535
  * @enum
@@ -3529,6 +3542,44 @@ export declare const InputDeviceType: {
3529
3542
  * @public
3530
3543
  */
3531
3544
  export type InputDeviceType = (typeof InputDeviceType)[keyof typeof InputDeviceType];
3545
+ /**
3546
+ * @public
3547
+ * @enum
3548
+ */
3549
+ export declare const InputDeviceCodec: {
3550
+ readonly AVC: "AVC";
3551
+ readonly HEVC: "HEVC";
3552
+ };
3553
+ /**
3554
+ * @public
3555
+ */
3556
+ export type InputDeviceCodec = (typeof InputDeviceCodec)[keyof typeof InputDeviceCodec];
3557
+ /**
3558
+ * @public
3559
+ * Information about the MediaConnect flow attached to the device.
3560
+ */
3561
+ export interface InputDeviceMediaConnectSettings {
3562
+ /**
3563
+ * @public
3564
+ * The ARN of the MediaConnect flow.
3565
+ */
3566
+ FlowArn?: string;
3567
+ /**
3568
+ * @public
3569
+ * The ARN for the role that MediaLive assumes to access the attached flow and secret.
3570
+ */
3571
+ RoleArn?: string;
3572
+ /**
3573
+ * @public
3574
+ * The ARN of the secret used to encrypt the stream.
3575
+ */
3576
+ SecretArn?: string;
3577
+ /**
3578
+ * @public
3579
+ * The name of the MediaConnect flow source.
3580
+ */
3581
+ SourceName?: string;
3582
+ }
3532
3583
  /**
3533
3584
  * @public
3534
3585
  * Settings that describe the active source from the input device, and the video characteristics of that source.
@@ -3579,6 +3630,16 @@ export interface InputDeviceUhdSettings {
3579
3630
  * The Link device's buffer size (latency) in milliseconds (ms). You can specify this value.
3580
3631
  */
3581
3632
  LatencyMs?: number;
3633
+ /**
3634
+ * @public
3635
+ * The codec for the video that the device produces.
3636
+ */
3637
+ Codec?: InputDeviceCodec | string;
3638
+ /**
3639
+ * @public
3640
+ * Information about the MediaConnect flow attached to the device. Returned only if the outputType is MEDIACONNECT_FLOW.
3641
+ */
3642
+ MediaconnectSettings?: InputDeviceMediaConnectSettings;
3582
3643
  }
3583
3644
  /**
3584
3645
  * @public
@@ -3655,6 +3716,16 @@ export interface InputDeviceSummary {
3655
3716
  * The Availability Zone associated with this input device.
3656
3717
  */
3657
3718
  AvailabilityZone?: string;
3719
+ /**
3720
+ * @public
3721
+ * An array of the ARNs for the MediaLive inputs attached to the device. Returned only if the outputType is MEDIALIVE_INPUT.
3722
+ */
3723
+ MedialiveInputArns?: string[];
3724
+ /**
3725
+ * @public
3726
+ * The output attachment type of the input device. Specifies MEDIACONNECT_FLOW if this device is the source for a MediaConnect flow. Specifies MEDIALIVE_INPUT if this device is the source for a MediaLive input.
3727
+ */
3728
+ OutputType?: InputDeviceOutputType | string;
3658
3729
  }
3659
3730
  /**
3660
3731
  * @public
@@ -5763,42 +5834,3 @@ export declare const HlsIvInManifest: {
5763
5834
  * @public
5764
5835
  */
5765
5836
  export type HlsIvInManifest = (typeof HlsIvInManifest)[keyof typeof HlsIvInManifest];
5766
- /**
5767
- * @public
5768
- * @enum
5769
- */
5770
- export declare const HlsIvSource: {
5771
- readonly EXPLICIT: "EXPLICIT";
5772
- readonly FOLLOWS_SEGMENT_NUMBER: "FOLLOWS_SEGMENT_NUMBER";
5773
- };
5774
- /**
5775
- * @public
5776
- */
5777
- export type HlsIvSource = (typeof HlsIvSource)[keyof typeof HlsIvSource];
5778
- /**
5779
- * @public
5780
- * Static Key Settings
5781
- */
5782
- export interface StaticKeySettings {
5783
- /**
5784
- * @public
5785
- * The URL of the license server used for protecting content.
5786
- */
5787
- KeyProviderServer?: InputLocation;
5788
- /**
5789
- * @public
5790
- * Static key value as a 32 character hexadecimal string.
5791
- */
5792
- StaticKeyValue: string | undefined;
5793
- }
5794
- /**
5795
- * @public
5796
- * Key Provider Settings
5797
- */
5798
- export interface KeyProviderSettings {
5799
- /**
5800
- * @public
5801
- * Static Key Settings
5802
- */
5803
- StaticKeySettings?: StaticKeySettings;
5804
- }
@@ -1,7 +1,46 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { StreamingBlobTypes } from "@smithy/types";
3
3
  import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
4
- import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, KeyProviderSettings, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
4
+ import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexState, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
5
+ /**
6
+ * @public
7
+ * @enum
8
+ */
9
+ export declare const HlsIvSource: {
10
+ readonly EXPLICIT: "EXPLICIT";
11
+ readonly FOLLOWS_SEGMENT_NUMBER: "FOLLOWS_SEGMENT_NUMBER";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type HlsIvSource = (typeof HlsIvSource)[keyof typeof HlsIvSource];
17
+ /**
18
+ * @public
19
+ * Static Key Settings
20
+ */
21
+ export interface StaticKeySettings {
22
+ /**
23
+ * @public
24
+ * The URL of the license server used for protecting content.
25
+ */
26
+ KeyProviderServer?: InputLocation;
27
+ /**
28
+ * @public
29
+ * Static key value as a 32 character hexadecimal string.
30
+ */
31
+ StaticKeyValue: string | undefined;
32
+ }
33
+ /**
34
+ * @public
35
+ * Key Provider Settings
36
+ */
37
+ export interface KeyProviderSettings {
38
+ /**
39
+ * @public
40
+ * Static Key Settings
41
+ */
42
+ StaticKeySettings?: StaticKeySettings;
43
+ }
5
44
  /**
6
45
  * @public
7
46
  * @enum
@@ -5830,6 +5869,16 @@ export interface DescribeInputDeviceResponse {
5830
5869
  * The Availability Zone associated with this input device.
5831
5870
  */
5832
5871
  AvailabilityZone?: string;
5872
+ /**
5873
+ * @public
5874
+ * An array of the ARNs for the MediaLive inputs attached to the device. Returned only if the outputType is MEDIALIVE_INPUT.
5875
+ */
5876
+ MedialiveInputArns?: string[];
5877
+ /**
5878
+ * @public
5879
+ * The output attachment type of the input device. Specifies MEDIACONNECT_FLOW if this device is the source for a MediaConnect flow. Specifies MEDIALIVE_INPUT if this device is the source for a MediaLive input.
5880
+ */
5881
+ OutputType?: InputDeviceOutputType | string;
5833
5882
  }
5834
5883
  /**
5835
5884
  * @public
@@ -6292,6 +6341,32 @@ export interface DescribeThumbnailsResponse {
6292
6341
  */
6293
6342
  ThumbnailDetails?: ThumbnailDetail[];
6294
6343
  }
6344
+ /**
6345
+ * @public
6346
+ * Parameters required to attach a MediaConnect flow to the device.
6347
+ */
6348
+ export interface InputDeviceMediaConnectConfigurableSettings {
6349
+ /**
6350
+ * @public
6351
+ * The ARN of the MediaConnect flow to attach this device to.
6352
+ */
6353
+ FlowArn?: string;
6354
+ /**
6355
+ * @public
6356
+ * The ARN for the role that MediaLive assumes to access the attached flow and secret. For more information about how to create this role, see the MediaLive user guide.
6357
+ */
6358
+ RoleArn?: string;
6359
+ /**
6360
+ * @public
6361
+ * The ARN for the secret that holds the encryption key to encrypt the content output by the device.
6362
+ */
6363
+ SecretArn?: string;
6364
+ /**
6365
+ * @public
6366
+ * The name of the MediaConnect Flow source to stream to.
6367
+ */
6368
+ SourceName?: string;
6369
+ }
6295
6370
  /**
6296
6371
  * @public
6297
6372
  * Configurable settings for the input device.
@@ -6312,6 +6387,16 @@ export interface InputDeviceConfigurableSettings {
6312
6387
  * The Link device's buffer size (latency) in milliseconds (ms).
6313
6388
  */
6314
6389
  LatencyMs?: number;
6390
+ /**
6391
+ * @public
6392
+ * Choose the codec for the video that the device produces. Only UHD devices can specify this parameter.
6393
+ */
6394
+ Codec?: InputDeviceCodec | string;
6395
+ /**
6396
+ * @public
6397
+ * To attach this device to a MediaConnect flow, specify these parameters. To detach an existing flow, enter \{\} for the value of mediaconnectSettings. Only UHD devices can specify this parameter.
6398
+ */
6399
+ MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
6315
6400
  }
6316
6401
  /**
6317
6402
  * @public
@@ -6494,125 +6579,6 @@ export interface ListMultiplexesRequest {
6494
6579
  */
6495
6580
  NextToken?: string;
6496
6581
  }
6497
- /**
6498
- * @public
6499
- * Placeholder documentation for ListMultiplexesResponse
6500
- */
6501
- export interface ListMultiplexesResponse {
6502
- /**
6503
- * @public
6504
- * List of multiplexes.
6505
- */
6506
- Multiplexes?: MultiplexSummary[];
6507
- /**
6508
- * @public
6509
- * Token for the next ListMultiplexes request.
6510
- */
6511
- NextToken?: string;
6512
- }
6513
- /**
6514
- * @public
6515
- * Placeholder documentation for ListMultiplexProgramsRequest
6516
- */
6517
- export interface ListMultiplexProgramsRequest {
6518
- /**
6519
- * @public
6520
- * The maximum number of items to return.
6521
- */
6522
- MaxResults?: number;
6523
- /**
6524
- * @public
6525
- * The ID of the multiplex that the programs belong to.
6526
- */
6527
- MultiplexId: string | undefined;
6528
- /**
6529
- * @public
6530
- * The token to retrieve the next page of results.
6531
- */
6532
- NextToken?: string;
6533
- }
6534
- /**
6535
- * @public
6536
- * Placeholder documentation for ListMultiplexProgramsResponse
6537
- */
6538
- export interface ListMultiplexProgramsResponse {
6539
- /**
6540
- * @public
6541
- * List of multiplex programs.
6542
- */
6543
- MultiplexPrograms?: MultiplexProgramSummary[];
6544
- /**
6545
- * @public
6546
- * Token for the next ListMultiplexProgram request.
6547
- */
6548
- NextToken?: string;
6549
- }
6550
- /**
6551
- * @public
6552
- * Placeholder documentation for ListOfferingsRequest
6553
- */
6554
- export interface ListOfferingsRequest {
6555
- /**
6556
- * @public
6557
- * Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
6558
- */
6559
- ChannelClass?: string;
6560
- /**
6561
- * @public
6562
- * Filter to offerings that match the configuration of an existing channel, e.g. '2345678' (a channel ID)
6563
- */
6564
- ChannelConfiguration?: string;
6565
- /**
6566
- * @public
6567
- * Filter by codec, 'AVC', 'HEVC', 'MPEG2', 'AUDIO', or 'LINK'
6568
- */
6569
- Codec?: string;
6570
- /**
6571
- * @public
6572
- * Filter by offering duration, e.g. '12'
6573
- */
6574
- Duration?: string;
6575
- /**
6576
- * @public
6577
- * Placeholder documentation for MaxResults
6578
- */
6579
- MaxResults?: number;
6580
- /**
6581
- * @public
6582
- * Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
6583
- */
6584
- MaximumBitrate?: string;
6585
- /**
6586
- * @public
6587
- * Filter by framerate, 'MAX_30_FPS' or 'MAX_60_FPS'
6588
- */
6589
- MaximumFramerate?: string;
6590
- /**
6591
- * @public
6592
- * Placeholder documentation for __string
6593
- */
6594
- NextToken?: string;
6595
- /**
6596
- * @public
6597
- * Filter by resolution, 'SD', 'HD', 'FHD', or 'UHD'
6598
- */
6599
- Resolution?: string;
6600
- /**
6601
- * @public
6602
- * Filter by resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
6603
- */
6604
- ResourceType?: string;
6605
- /**
6606
- * @public
6607
- * Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
6608
- */
6609
- SpecialFeature?: string;
6610
- /**
6611
- * @public
6612
- * Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
6613
- */
6614
- VideoQuality?: string;
6615
- }
6616
6582
  /**
6617
6583
  * @internal
6618
6584
  */