@aws-sdk/client-medialive 3.409.0 → 3.410.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.
- package/README.md +16 -0
- package/dist-cjs/MediaLive.js +4 -0
- package/dist-cjs/commands/StartInputDeviceCommand.js +46 -0
- package/dist-cjs/commands/StopInputDeviceCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +12 -7
- package/dist-cjs/models/models_1.js +7 -3
- package/dist-cjs/protocols/Aws_restJson1.js +165 -3
- package/dist-cjs/runtimeExtensions.js +3 -0
- package/dist-es/MediaLive.js +4 -0
- package/dist-es/commands/StartInputDeviceCommand.js +42 -0
- package/dist-es/commands/StopInputDeviceCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +9 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +158 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/MediaLive.d.ts +14 -0
- package/dist-types/MediaLiveClient.d.ts +4 -2
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +11 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +11 -0
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiplexesCommand.d.ts +2 -1
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -2
- package/dist-types/commands/StartInputDeviceCommand.d.ts +95 -0
- package/dist-types/commands/StopInputDeviceCommand.d.ts +95 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +25 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +71 -39
- package/dist-types/models/models_1.d.ts +86 -120
- package/dist-types/models/models_2.d.ts +164 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -1
- package/dist-types/runtimeConfig.d.ts +4 -1
- package/dist-types/runtimeConfig.native.d.ts +4 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/MediaLive.d.ts +34 -0
- package/dist-types/ts3.4/MediaLiveClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListMultiplexProgramsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMultiplexesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartInputDeviceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StopInputDeviceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +23 -12
- package/dist-types/ts3.4/models/models_1.d.ts +24 -31
- package/dist-types/ts3.4/models/models_2.d.ts +40 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +30 -30
|
@@ -1,5 +1,124 @@
|
|
|
1
|
-
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexState, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
|
|
1
|
+
import { CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, DeviceSettingsSyncState, DeviceUpdateStatus, Input, InputAttachment, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceType, InputDeviceUhdSettings, InputSecurityGroup, InputSourceRequest, InputSpecification, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OutputDestination, VpcOutputSettingsDescription } from "./models_0";
|
|
2
2
|
import { AccountConfiguration, Channel, EncoderSettings, InputDeviceConfigurableSettings, Multiplex, MultiplexProgram, MultiplexProgramSettings, MultiplexSettings, PipelineDetail, RenewalSettings, Reservation } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* Placeholder documentation for ListMultiplexesResponse
|
|
6
|
+
*/
|
|
7
|
+
export interface ListMultiplexesResponse {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* List of multiplexes.
|
|
11
|
+
*/
|
|
12
|
+
Multiplexes?: MultiplexSummary[];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* Token for the next ListMultiplexes request.
|
|
16
|
+
*/
|
|
17
|
+
NextToken?: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* Placeholder documentation for ListMultiplexProgramsRequest
|
|
22
|
+
*/
|
|
23
|
+
export interface ListMultiplexProgramsRequest {
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* The maximum number of items to return.
|
|
27
|
+
*/
|
|
28
|
+
MaxResults?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* The ID of the multiplex that the programs belong to.
|
|
32
|
+
*/
|
|
33
|
+
MultiplexId: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* The token to retrieve the next page of results.
|
|
37
|
+
*/
|
|
38
|
+
NextToken?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* Placeholder documentation for ListMultiplexProgramsResponse
|
|
43
|
+
*/
|
|
44
|
+
export interface ListMultiplexProgramsResponse {
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* List of multiplex programs.
|
|
48
|
+
*/
|
|
49
|
+
MultiplexPrograms?: MultiplexProgramSummary[];
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* Token for the next ListMultiplexProgram request.
|
|
53
|
+
*/
|
|
54
|
+
NextToken?: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* Placeholder documentation for ListOfferingsRequest
|
|
59
|
+
*/
|
|
60
|
+
export interface ListOfferingsRequest {
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
|
|
64
|
+
*/
|
|
65
|
+
ChannelClass?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* Filter to offerings that match the configuration of an existing channel, e.g. '2345678' (a channel ID)
|
|
69
|
+
*/
|
|
70
|
+
ChannelConfiguration?: string;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* Filter by codec, 'AVC', 'HEVC', 'MPEG2', 'AUDIO', or 'LINK'
|
|
74
|
+
*/
|
|
75
|
+
Codec?: string;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* Filter by offering duration, e.g. '12'
|
|
79
|
+
*/
|
|
80
|
+
Duration?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
* Placeholder documentation for MaxResults
|
|
84
|
+
*/
|
|
85
|
+
MaxResults?: number;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
* Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
|
|
89
|
+
*/
|
|
90
|
+
MaximumBitrate?: string;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* Filter by framerate, 'MAX_30_FPS' or 'MAX_60_FPS'
|
|
94
|
+
*/
|
|
95
|
+
MaximumFramerate?: string;
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
* Placeholder documentation for __string
|
|
99
|
+
*/
|
|
100
|
+
NextToken?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
* Filter by resolution, 'SD', 'HD', 'FHD', or 'UHD'
|
|
104
|
+
*/
|
|
105
|
+
Resolution?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* Filter by resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
|
|
109
|
+
*/
|
|
110
|
+
ResourceType?: string;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
|
|
114
|
+
*/
|
|
115
|
+
SpecialFeature?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
|
|
119
|
+
*/
|
|
120
|
+
VideoQuality?: string;
|
|
121
|
+
}
|
|
3
122
|
/**
|
|
4
123
|
* @public
|
|
5
124
|
* Placeholder documentation for ListOfferingsResponse
|
|
@@ -343,6 +462,23 @@ export interface StartChannelResponse {
|
|
|
343
462
|
*/
|
|
344
463
|
Vpc?: VpcOutputSettingsDescription;
|
|
345
464
|
}
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
* Placeholder documentation for StartInputDeviceRequest
|
|
468
|
+
*/
|
|
469
|
+
export interface StartInputDeviceRequest {
|
|
470
|
+
/**
|
|
471
|
+
* @public
|
|
472
|
+
* The unique ID of the input device to reboot. For example, hd-123456789abcdef.
|
|
473
|
+
*/
|
|
474
|
+
InputDeviceId: string | undefined;
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* @public
|
|
478
|
+
* Placeholder documentation for StartInputDeviceResponse
|
|
479
|
+
*/
|
|
480
|
+
export interface StartInputDeviceResponse {
|
|
481
|
+
}
|
|
346
482
|
/**
|
|
347
483
|
* @public
|
|
348
484
|
* Placeholder documentation for StartInputDeviceMaintenanceWindowRequest
|
|
@@ -536,6 +672,23 @@ export interface StopChannelResponse {
|
|
|
536
672
|
*/
|
|
537
673
|
Vpc?: VpcOutputSettingsDescription;
|
|
538
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
* Placeholder documentation for StopInputDeviceRequest
|
|
678
|
+
*/
|
|
679
|
+
export interface StopInputDeviceRequest {
|
|
680
|
+
/**
|
|
681
|
+
* @public
|
|
682
|
+
* The unique ID of the input device to reboot. For example, hd-123456789abcdef.
|
|
683
|
+
*/
|
|
684
|
+
InputDeviceId: string | undefined;
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* @public
|
|
688
|
+
* Placeholder documentation for StopInputDeviceResponse
|
|
689
|
+
*/
|
|
690
|
+
export interface StopInputDeviceResponse {
|
|
691
|
+
}
|
|
539
692
|
/**
|
|
540
693
|
* @public
|
|
541
694
|
* Placeholder documentation for StopMultiplexRequest
|
|
@@ -923,6 +1076,16 @@ export interface UpdateInputDeviceResponse {
|
|
|
923
1076
|
* The Availability Zone associated with this input device.
|
|
924
1077
|
*/
|
|
925
1078
|
AvailabilityZone?: string;
|
|
1079
|
+
/**
|
|
1080
|
+
* @public
|
|
1081
|
+
* An array of the ARNs for the MediaLive inputs attached to the device. Returned only if the outputType is MEDIALIVE_INPUT.
|
|
1082
|
+
*/
|
|
1083
|
+
MedialiveInputArns?: string[];
|
|
1084
|
+
/**
|
|
1085
|
+
* @public
|
|
1086
|
+
* 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.
|
|
1087
|
+
*/
|
|
1088
|
+
OutputType?: InputDeviceOutputType | string;
|
|
926
1089
|
}
|
|
927
1090
|
/**
|
|
928
1091
|
* @public
|
|
@@ -48,9 +48,11 @@ import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "../
|
|
|
48
48
|
import { RebootInputDeviceCommandInput, RebootInputDeviceCommandOutput } from "../commands/RebootInputDeviceCommand";
|
|
49
49
|
import { RejectInputDeviceTransferCommandInput, RejectInputDeviceTransferCommandOutput } from "../commands/RejectInputDeviceTransferCommand";
|
|
50
50
|
import { StartChannelCommandInput, StartChannelCommandOutput } from "../commands/StartChannelCommand";
|
|
51
|
+
import { StartInputDeviceCommandInput, StartInputDeviceCommandOutput } from "../commands/StartInputDeviceCommand";
|
|
51
52
|
import { StartInputDeviceMaintenanceWindowCommandInput, StartInputDeviceMaintenanceWindowCommandOutput } from "../commands/StartInputDeviceMaintenanceWindowCommand";
|
|
52
53
|
import { StartMultiplexCommandInput, StartMultiplexCommandOutput } from "../commands/StartMultiplexCommand";
|
|
53
54
|
import { StopChannelCommandInput, StopChannelCommandOutput } from "../commands/StopChannelCommand";
|
|
55
|
+
import { StopInputDeviceCommandInput, StopInputDeviceCommandOutput } from "../commands/StopInputDeviceCommand";
|
|
54
56
|
import { StopMultiplexCommandInput, StopMultiplexCommandOutput } from "../commands/StopMultiplexCommand";
|
|
55
57
|
import { TransferInputDeviceCommandInput, TransferInputDeviceCommandOutput } from "../commands/TransferInputDeviceCommand";
|
|
56
58
|
import { UpdateAccountConfigurationCommandInput, UpdateAccountConfigurationCommandOutput } from "../commands/UpdateAccountConfigurationCommand";
|
|
@@ -254,6 +256,10 @@ export declare const se_RejectInputDeviceTransferCommand: (input: RejectInputDev
|
|
|
254
256
|
* serializeAws_restJson1StartChannelCommand
|
|
255
257
|
*/
|
|
256
258
|
export declare const se_StartChannelCommand: (input: StartChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
|
+
/**
|
|
260
|
+
* serializeAws_restJson1StartInputDeviceCommand
|
|
261
|
+
*/
|
|
262
|
+
export declare const se_StartInputDeviceCommand: (input: StartInputDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
257
263
|
/**
|
|
258
264
|
* serializeAws_restJson1StartInputDeviceMaintenanceWindowCommand
|
|
259
265
|
*/
|
|
@@ -266,6 +272,10 @@ export declare const se_StartMultiplexCommand: (input: StartMultiplexCommandInpu
|
|
|
266
272
|
* serializeAws_restJson1StopChannelCommand
|
|
267
273
|
*/
|
|
268
274
|
export declare const se_StopChannelCommand: (input: StopChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
275
|
+
/**
|
|
276
|
+
* serializeAws_restJson1StopInputDeviceCommand
|
|
277
|
+
*/
|
|
278
|
+
export declare const se_StopInputDeviceCommand: (input: StopInputDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
269
279
|
/**
|
|
270
280
|
* serializeAws_restJson1StopMultiplexCommand
|
|
271
281
|
*/
|
|
@@ -502,6 +512,10 @@ export declare const de_RejectInputDeviceTransferCommand: (output: __HttpRespons
|
|
|
502
512
|
* deserializeAws_restJson1StartChannelCommand
|
|
503
513
|
*/
|
|
504
514
|
export declare const de_StartChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartChannelCommandOutput>;
|
|
515
|
+
/**
|
|
516
|
+
* deserializeAws_restJson1StartInputDeviceCommand
|
|
517
|
+
*/
|
|
518
|
+
export declare const de_StartInputDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartInputDeviceCommandOutput>;
|
|
505
519
|
/**
|
|
506
520
|
* deserializeAws_restJson1StartInputDeviceMaintenanceWindowCommand
|
|
507
521
|
*/
|
|
@@ -514,6 +528,10 @@ export declare const de_StartMultiplexCommand: (output: __HttpResponse, context:
|
|
|
514
528
|
* deserializeAws_restJson1StopChannelCommand
|
|
515
529
|
*/
|
|
516
530
|
export declare const de_StopChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopChannelCommandOutput>;
|
|
531
|
+
/**
|
|
532
|
+
* deserializeAws_restJson1StopInputDeviceCommand
|
|
533
|
+
*/
|
|
534
|
+
export declare const de_StopInputDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopInputDeviceCommandOutput>;
|
|
517
535
|
/**
|
|
518
536
|
* deserializeAws_restJson1StopMultiplexCommand
|
|
519
537
|
*/
|
|
@@ -11,7 +11,10 @@ export declare const getRuntimeConfig: (config: MediaLiveClientConfig) => {
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
15
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
19
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
20
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -11,7 +11,10 @@ export declare const getRuntimeConfig: (config: MediaLiveClientConfig) => {
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
-
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
15
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
19
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
20
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,7 +5,10 @@ import { MediaLiveClientConfig } from "./MediaLiveClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: MediaLiveClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").
|
|
8
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
9
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
+
httpHandlerConfigs(): {};
|
|
11
|
+
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
12
|
apiVersion: string;
|
|
10
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
@@ -3,7 +3,7 @@ import { MediaLiveExtensionConfiguration } from "./extensionConfiguration";
|
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface RuntimeExtension {
|
|
6
|
-
configure(
|
|
6
|
+
configure(extensionConfiguration: MediaLiveExtensionConfiguration): void;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* @public
|
|
@@ -191,6 +191,10 @@ import {
|
|
|
191
191
|
StartChannelCommandInput,
|
|
192
192
|
StartChannelCommandOutput,
|
|
193
193
|
} from "./commands/StartChannelCommand";
|
|
194
|
+
import {
|
|
195
|
+
StartInputDeviceCommandInput,
|
|
196
|
+
StartInputDeviceCommandOutput,
|
|
197
|
+
} from "./commands/StartInputDeviceCommand";
|
|
194
198
|
import {
|
|
195
199
|
StartInputDeviceMaintenanceWindowCommandInput,
|
|
196
200
|
StartInputDeviceMaintenanceWindowCommandOutput,
|
|
@@ -203,6 +207,10 @@ import {
|
|
|
203
207
|
StopChannelCommandInput,
|
|
204
208
|
StopChannelCommandOutput,
|
|
205
209
|
} from "./commands/StopChannelCommand";
|
|
210
|
+
import {
|
|
211
|
+
StopInputDeviceCommandInput,
|
|
212
|
+
StopInputDeviceCommandOutput,
|
|
213
|
+
} from "./commands/StopInputDeviceCommand";
|
|
206
214
|
import {
|
|
207
215
|
StopMultiplexCommandInput,
|
|
208
216
|
StopMultiplexCommandOutput,
|
|
@@ -873,6 +881,19 @@ export interface MediaLive {
|
|
|
873
881
|
options: __HttpHandlerOptions,
|
|
874
882
|
cb: (err: any, data?: StartChannelCommandOutput) => void
|
|
875
883
|
): void;
|
|
884
|
+
startInputDevice(
|
|
885
|
+
args: StartInputDeviceCommandInput,
|
|
886
|
+
options?: __HttpHandlerOptions
|
|
887
|
+
): Promise<StartInputDeviceCommandOutput>;
|
|
888
|
+
startInputDevice(
|
|
889
|
+
args: StartInputDeviceCommandInput,
|
|
890
|
+
cb: (err: any, data?: StartInputDeviceCommandOutput) => void
|
|
891
|
+
): void;
|
|
892
|
+
startInputDevice(
|
|
893
|
+
args: StartInputDeviceCommandInput,
|
|
894
|
+
options: __HttpHandlerOptions,
|
|
895
|
+
cb: (err: any, data?: StartInputDeviceCommandOutput) => void
|
|
896
|
+
): void;
|
|
876
897
|
startInputDeviceMaintenanceWindow(
|
|
877
898
|
args: StartInputDeviceMaintenanceWindowCommandInput,
|
|
878
899
|
options?: __HttpHandlerOptions
|
|
@@ -918,6 +939,19 @@ export interface MediaLive {
|
|
|
918
939
|
options: __HttpHandlerOptions,
|
|
919
940
|
cb: (err: any, data?: StopChannelCommandOutput) => void
|
|
920
941
|
): void;
|
|
942
|
+
stopInputDevice(
|
|
943
|
+
args: StopInputDeviceCommandInput,
|
|
944
|
+
options?: __HttpHandlerOptions
|
|
945
|
+
): Promise<StopInputDeviceCommandOutput>;
|
|
946
|
+
stopInputDevice(
|
|
947
|
+
args: StopInputDeviceCommandInput,
|
|
948
|
+
cb: (err: any, data?: StopInputDeviceCommandOutput) => void
|
|
949
|
+
): void;
|
|
950
|
+
stopInputDevice(
|
|
951
|
+
args: StopInputDeviceCommandInput,
|
|
952
|
+
options: __HttpHandlerOptions,
|
|
953
|
+
cb: (err: any, data?: StopInputDeviceCommandOutput) => void
|
|
954
|
+
): void;
|
|
921
955
|
stopMultiplex(
|
|
922
956
|
args: StopMultiplexCommandInput,
|
|
923
957
|
options?: __HttpHandlerOptions
|
|
@@ -238,6 +238,10 @@ import {
|
|
|
238
238
|
StartChannelCommandInput,
|
|
239
239
|
StartChannelCommandOutput,
|
|
240
240
|
} from "./commands/StartChannelCommand";
|
|
241
|
+
import {
|
|
242
|
+
StartInputDeviceCommandInput,
|
|
243
|
+
StartInputDeviceCommandOutput,
|
|
244
|
+
} from "./commands/StartInputDeviceCommand";
|
|
241
245
|
import {
|
|
242
246
|
StartInputDeviceMaintenanceWindowCommandInput,
|
|
243
247
|
StartInputDeviceMaintenanceWindowCommandOutput,
|
|
@@ -250,6 +254,10 @@ import {
|
|
|
250
254
|
StopChannelCommandInput,
|
|
251
255
|
StopChannelCommandOutput,
|
|
252
256
|
} from "./commands/StopChannelCommand";
|
|
257
|
+
import {
|
|
258
|
+
StopInputDeviceCommandInput,
|
|
259
|
+
StopInputDeviceCommandOutput,
|
|
260
|
+
} from "./commands/StopInputDeviceCommand";
|
|
253
261
|
import {
|
|
254
262
|
StopMultiplexCommandInput,
|
|
255
263
|
StopMultiplexCommandOutput,
|
|
@@ -350,9 +358,11 @@ export type ServiceInputTypes =
|
|
|
350
358
|
| RebootInputDeviceCommandInput
|
|
351
359
|
| RejectInputDeviceTransferCommandInput
|
|
352
360
|
| StartChannelCommandInput
|
|
361
|
+
| StartInputDeviceCommandInput
|
|
353
362
|
| StartInputDeviceMaintenanceWindowCommandInput
|
|
354
363
|
| StartMultiplexCommandInput
|
|
355
364
|
| StopChannelCommandInput
|
|
365
|
+
| StopInputDeviceCommandInput
|
|
356
366
|
| StopMultiplexCommandInput
|
|
357
367
|
| TransferInputDeviceCommandInput
|
|
358
368
|
| UpdateAccountConfigurationCommandInput
|
|
@@ -413,9 +423,11 @@ export type ServiceOutputTypes =
|
|
|
413
423
|
| RebootInputDeviceCommandOutput
|
|
414
424
|
| RejectInputDeviceTransferCommandOutput
|
|
415
425
|
| StartChannelCommandOutput
|
|
426
|
+
| StartInputDeviceCommandOutput
|
|
416
427
|
| StartInputDeviceMaintenanceWindowCommandOutput
|
|
417
428
|
| StartMultiplexCommandOutput
|
|
418
429
|
| StopChannelCommandOutput
|
|
430
|
+
| StopInputDeviceCommandOutput
|
|
419
431
|
| StopMultiplexCommandOutput
|
|
420
432
|
| TransferInputDeviceCommandOutput
|
|
421
433
|
| UpdateAccountConfigurationCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
ListMultiplexProgramsRequest,
|
|
16
16
|
ListMultiplexProgramsResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface ListMultiplexProgramsCommandInput
|
|
20
20
|
extends ListMultiplexProgramsRequest {}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaLiveClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
ListMultiplexesResponse,
|
|
17
|
-
} from "../models/models_1";
|
|
14
|
+
import { ListMultiplexesRequest } from "../models/models_1";
|
|
15
|
+
import { ListMultiplexesResponse } from "../models/models_2";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface ListMultiplexesCommandInput extends ListMultiplexesRequest {}
|
|
20
18
|
export interface ListMultiplexesCommandOutput
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaLiveClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
14
|
+
import {
|
|
15
|
+
ListOfferingsRequest,
|
|
16
|
+
ListOfferingsResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
16
18
|
export { __MetadataBearer, $Command };
|
|
17
19
|
export interface ListOfferingsCommandInput extends ListOfferingsRequest {}
|
|
18
20
|
export interface ListOfferingsCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
MediaLiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../MediaLiveClient";
|
|
14
|
+
import {
|
|
15
|
+
StartInputDeviceRequest,
|
|
16
|
+
StartInputDeviceResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartInputDeviceCommandInput extends StartInputDeviceRequest {}
|
|
20
|
+
export interface StartInputDeviceCommandOutput
|
|
21
|
+
extends StartInputDeviceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StartInputDeviceCommand extends $Command<
|
|
24
|
+
StartInputDeviceCommandInput,
|
|
25
|
+
StartInputDeviceCommandOutput,
|
|
26
|
+
MediaLiveClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartInputDeviceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StartInputDeviceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaLiveClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartInputDeviceCommandInput, StartInputDeviceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
MediaLiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../MediaLiveClient";
|
|
14
|
+
import {
|
|
15
|
+
StopInputDeviceRequest,
|
|
16
|
+
StopInputDeviceResponse,
|
|
17
|
+
} from "../models/models_2";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StopInputDeviceCommandInput extends StopInputDeviceRequest {}
|
|
20
|
+
export interface StopInputDeviceCommandOutput
|
|
21
|
+
extends StopInputDeviceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StopInputDeviceCommand extends $Command<
|
|
24
|
+
StopInputDeviceCommandInput,
|
|
25
|
+
StopInputDeviceCommandOutput,
|
|
26
|
+
MediaLiveClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StopInputDeviceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StopInputDeviceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaLiveClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StopInputDeviceCommandInput, StopInputDeviceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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,3 +1,5 @@
|
|
|
1
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
1
2
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
2
3
|
export interface MediaLiveExtensionConfiguration
|
|
3
|
-
extends
|
|
4
|
+
extends HttpHandlerExtensionConfiguration,
|
|
5
|
+
DefaultExtensionConfiguration {}
|
|
@@ -1171,12 +1171,31 @@ export interface InputDeviceNetworkSettings {
|
|
|
1171
1171
|
IpScheme?: InputDeviceIpScheme | string;
|
|
1172
1172
|
SubnetMask?: string;
|
|
1173
1173
|
}
|
|
1174
|
+
export declare const InputDeviceOutputType: {
|
|
1175
|
+
readonly MEDIACONNECT_FLOW: "MEDIACONNECT_FLOW";
|
|
1176
|
+
readonly MEDIALIVE_INPUT: "MEDIALIVE_INPUT";
|
|
1177
|
+
readonly NONE: "NONE";
|
|
1178
|
+
};
|
|
1179
|
+
export type InputDeviceOutputType =
|
|
1180
|
+
(typeof InputDeviceOutputType)[keyof typeof InputDeviceOutputType];
|
|
1174
1181
|
export declare const InputDeviceType: {
|
|
1175
1182
|
readonly HD: "HD";
|
|
1176
1183
|
readonly UHD: "UHD";
|
|
1177
1184
|
};
|
|
1178
1185
|
export type InputDeviceType =
|
|
1179
1186
|
(typeof InputDeviceType)[keyof typeof InputDeviceType];
|
|
1187
|
+
export declare const InputDeviceCodec: {
|
|
1188
|
+
readonly AVC: "AVC";
|
|
1189
|
+
readonly HEVC: "HEVC";
|
|
1190
|
+
};
|
|
1191
|
+
export type InputDeviceCodec =
|
|
1192
|
+
(typeof InputDeviceCodec)[keyof typeof InputDeviceCodec];
|
|
1193
|
+
export interface InputDeviceMediaConnectSettings {
|
|
1194
|
+
FlowArn?: string;
|
|
1195
|
+
RoleArn?: string;
|
|
1196
|
+
SecretArn?: string;
|
|
1197
|
+
SourceName?: string;
|
|
1198
|
+
}
|
|
1180
1199
|
export interface InputDeviceUhdSettings {
|
|
1181
1200
|
ActiveInput?: InputDeviceActiveInput | string;
|
|
1182
1201
|
ConfiguredInput?: InputDeviceConfiguredInput | string;
|
|
@@ -1187,6 +1206,8 @@ export interface InputDeviceUhdSettings {
|
|
|
1187
1206
|
ScanType?: InputDeviceScanType | string;
|
|
1188
1207
|
Width?: number;
|
|
1189
1208
|
LatencyMs?: number;
|
|
1209
|
+
Codec?: InputDeviceCodec | string;
|
|
1210
|
+
MediaconnectSettings?: InputDeviceMediaConnectSettings;
|
|
1190
1211
|
}
|
|
1191
1212
|
export interface InputDeviceSummary {
|
|
1192
1213
|
Arn?: string;
|
|
@@ -1203,6 +1224,8 @@ export interface InputDeviceSummary {
|
|
|
1203
1224
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
1204
1225
|
Tags?: Record<string, string>;
|
|
1205
1226
|
AvailabilityZone?: string;
|
|
1227
|
+
MedialiveInputArns?: string[];
|
|
1228
|
+
OutputType?: InputDeviceOutputType | string;
|
|
1206
1229
|
}
|
|
1207
1230
|
export declare const InputSecurityGroupState: {
|
|
1208
1231
|
readonly DELETED: "DELETED";
|
|
@@ -1888,15 +1911,3 @@ export declare const HlsIvInManifest: {
|
|
|
1888
1911
|
};
|
|
1889
1912
|
export type HlsIvInManifest =
|
|
1890
1913
|
(typeof HlsIvInManifest)[keyof typeof HlsIvInManifest];
|
|
1891
|
-
export declare const HlsIvSource: {
|
|
1892
|
-
readonly EXPLICIT: "EXPLICIT";
|
|
1893
|
-
readonly FOLLOWS_SEGMENT_NUMBER: "FOLLOWS_SEGMENT_NUMBER";
|
|
1894
|
-
};
|
|
1895
|
-
export type HlsIvSource = (typeof HlsIvSource)[keyof typeof HlsIvSource];
|
|
1896
|
-
export interface StaticKeySettings {
|
|
1897
|
-
KeyProviderServer?: InputLocation;
|
|
1898
|
-
StaticKeyValue: string | undefined;
|
|
1899
|
-
}
|
|
1900
|
-
export interface KeyProviderSettings {
|
|
1901
|
-
StaticKeySettings?: StaticKeySettings;
|
|
1902
|
-
}
|