@aws-sdk/client-mediatailor 3.72.0 → 3.76.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/CHANGELOG.md +27 -0
- package/dist-cjs/MediaTailor.js +75 -0
- package/dist-cjs/commands/CreateLiveSourceCommand.js +36 -0
- package/dist-cjs/commands/DeleteLiveSourceCommand.js +36 -0
- package/dist-cjs/commands/DescribeLiveSourceCommand.js +36 -0
- package/dist-cjs/commands/ListLiveSourcesCommand.js +36 -0
- package/dist-cjs/commands/UpdateLiveSourceCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +85 -14
- package/dist-cjs/pagination/ListLiveSourcesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +499 -2
- package/dist-es/MediaTailor.js +75 -0
- package/dist-es/commands/CreateLiveSourceCommand.js +39 -0
- package/dist-es/commands/DeleteLiveSourceCommand.js +39 -0
- package/dist-es/commands/DescribeLiveSourceCommand.js +39 -0
- package/dist-es/commands/ListLiveSourcesCommand.js +39 -0
- package/dist-es/commands/UpdateLiveSourceCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +58 -9
- package/dist-es/pagination/ListLiveSourcesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +607 -13
- package/dist-types/MediaTailor.d.ts +35 -0
- package/dist-types/MediaTailorClient.d.ts +7 -2
- package/dist-types/commands/CreateLiveSourceCommand.d.ts +35 -0
- package/dist-types/commands/DeleteLiveSourceCommand.d.ts +35 -0
- package/dist-types/commands/DescribeLiveSourceCommand.d.ts +35 -0
- package/dist-types/commands/ListLiveSourcesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateLiveSourceCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +387 -39
- package/dist-types/pagination/ListLiveSourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/MediaTailor.d.ts +25 -0
- package/dist-types/ts3.4/MediaTailorClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateLiveSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLiveSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLiveSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListLiveSourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLiveSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +217 -19
- package/dist-types/ts3.4/pagination/ListLiveSourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +9 -9
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput } from "./commands/ConfigureLogsForPlaybackConfigurationCommand";
|
|
3
3
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
|
|
4
|
+
import { CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput } from "./commands/CreateLiveSourceCommand";
|
|
4
5
|
import { CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput } from "./commands/CreatePrefetchScheduleCommand";
|
|
5
6
|
import { CreateProgramCommandInput, CreateProgramCommandOutput } from "./commands/CreateProgramCommand";
|
|
6
7
|
import { CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput } from "./commands/CreateSourceLocationCommand";
|
|
7
8
|
import { CreateVodSourceCommandInput, CreateVodSourceCommandOutput } from "./commands/CreateVodSourceCommand";
|
|
8
9
|
import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
|
|
9
10
|
import { DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput } from "./commands/DeleteChannelPolicyCommand";
|
|
11
|
+
import { DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput } from "./commands/DeleteLiveSourceCommand";
|
|
10
12
|
import { DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput } from "./commands/DeletePlaybackConfigurationCommand";
|
|
11
13
|
import { DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput } from "./commands/DeletePrefetchScheduleCommand";
|
|
12
14
|
import { DeleteProgramCommandInput, DeleteProgramCommandOutput } from "./commands/DeleteProgramCommand";
|
|
13
15
|
import { DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput } from "./commands/DeleteSourceLocationCommand";
|
|
14
16
|
import { DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput } from "./commands/DeleteVodSourceCommand";
|
|
15
17
|
import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "./commands/DescribeChannelCommand";
|
|
18
|
+
import { DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput } from "./commands/DescribeLiveSourceCommand";
|
|
16
19
|
import { DescribeProgramCommandInput, DescribeProgramCommandOutput } from "./commands/DescribeProgramCommand";
|
|
17
20
|
import { DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput } from "./commands/DescribeSourceLocationCommand";
|
|
18
21
|
import { DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput } from "./commands/DescribeVodSourceCommand";
|
|
@@ -22,6 +25,7 @@ import { GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOu
|
|
|
22
25
|
import { GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput } from "./commands/GetPrefetchScheduleCommand";
|
|
23
26
|
import { ListAlertsCommandInput, ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
24
27
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
28
|
+
import { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "./commands/ListLiveSourcesCommand";
|
|
25
29
|
import { ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput } from "./commands/ListPlaybackConfigurationsCommand";
|
|
26
30
|
import { ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput } from "./commands/ListPrefetchSchedulesCommand";
|
|
27
31
|
import { ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput } from "./commands/ListSourceLocationsCommand";
|
|
@@ -34,6 +38,7 @@ import { StopChannelCommandInput, StopChannelCommandOutput } from "./commands/St
|
|
|
34
38
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
35
39
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
36
40
|
import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
|
|
41
|
+
import { UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput } from "./commands/UpdateLiveSourceCommand";
|
|
37
42
|
import { UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput } from "./commands/UpdateSourceLocationCommand";
|
|
38
43
|
import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput } from "./commands/UpdateVodSourceCommand";
|
|
39
44
|
import { MediaTailorClient } from "./MediaTailorClient";
|
|
@@ -53,6 +58,12 @@ export declare class MediaTailor extends MediaTailorClient {
|
|
|
53
58
|
createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
|
|
54
59
|
createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
55
60
|
createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
61
|
+
/**
|
|
62
|
+
* <p>Creates name for a specific live source in a source location.</p>
|
|
63
|
+
*/
|
|
64
|
+
createLiveSource(args: CreateLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateLiveSourceCommandOutput>;
|
|
65
|
+
createLiveSource(args: CreateLiveSourceCommandInput, cb: (err: any, data?: CreateLiveSourceCommandOutput) => void): void;
|
|
66
|
+
createLiveSource(args: CreateLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLiveSourceCommandOutput) => void): void;
|
|
56
67
|
/**
|
|
57
68
|
* <p>Creates a new prefetch schedule for the specified playback configuration.</p>
|
|
58
69
|
*/
|
|
@@ -89,6 +100,12 @@ export declare class MediaTailor extends MediaTailorClient {
|
|
|
89
100
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelPolicyCommandOutput>;
|
|
90
101
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
|
|
91
102
|
deleteChannelPolicy(args: DeleteChannelPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelPolicyCommandOutput) => void): void;
|
|
103
|
+
/**
|
|
104
|
+
* <p>Deletes a specific live source in a specific source location.</p>
|
|
105
|
+
*/
|
|
106
|
+
deleteLiveSource(args: DeleteLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLiveSourceCommandOutput>;
|
|
107
|
+
deleteLiveSource(args: DeleteLiveSourceCommandInput, cb: (err: any, data?: DeleteLiveSourceCommandOutput) => void): void;
|
|
108
|
+
deleteLiveSource(args: DeleteLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLiveSourceCommandOutput) => void): void;
|
|
92
109
|
/**
|
|
93
110
|
* <p>Deletes the playback configuration for the specified name.</p>
|
|
94
111
|
*/
|
|
@@ -125,6 +142,12 @@ export declare class MediaTailor extends MediaTailorClient {
|
|
|
125
142
|
describeChannel(args: DescribeChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelCommandOutput>;
|
|
126
143
|
describeChannel(args: DescribeChannelCommandInput, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
127
144
|
describeChannel(args: DescribeChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
145
|
+
/**
|
|
146
|
+
* <p>Provides details about a specific live source in a specific source location.</p>
|
|
147
|
+
*/
|
|
148
|
+
describeLiveSource(args: DescribeLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLiveSourceCommandOutput>;
|
|
149
|
+
describeLiveSource(args: DescribeLiveSourceCommandInput, cb: (err: any, data?: DescribeLiveSourceCommandOutput) => void): void;
|
|
150
|
+
describeLiveSource(args: DescribeLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLiveSourceCommandOutput) => void): void;
|
|
128
151
|
/**
|
|
129
152
|
* <p>Retrieves the properties of the requested program.</p>
|
|
130
153
|
*/
|
|
@@ -179,6 +202,12 @@ export declare class MediaTailor extends MediaTailorClient {
|
|
|
179
202
|
listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
|
|
180
203
|
listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
181
204
|
listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
205
|
+
/**
|
|
206
|
+
* <p>lists all the live sources in a source location.</p>
|
|
207
|
+
*/
|
|
208
|
+
listLiveSources(args: ListLiveSourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListLiveSourcesCommandOutput>;
|
|
209
|
+
listLiveSources(args: ListLiveSourcesCommandInput, cb: (err: any, data?: ListLiveSourcesCommandOutput) => void): void;
|
|
210
|
+
listLiveSources(args: ListLiveSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLiveSourcesCommandOutput) => void): void;
|
|
182
211
|
/**
|
|
183
212
|
* <p>Returns a list of the playback configurations defined in AWS Elemental MediaTailor. You can specify a maximum number of configurations to return at a time. The default maximum is 50. Results are returned in pagefuls. If MediaTailor has more configurations than the specified maximum, it provides parameters in the response that you can use to retrieve the next pageful.</p>
|
|
184
213
|
*/
|
|
@@ -251,6 +280,12 @@ export declare class MediaTailor extends MediaTailorClient {
|
|
|
251
280
|
updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
|
|
252
281
|
updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
253
282
|
updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
283
|
+
/**
|
|
284
|
+
* <p>Updates a specific live source in a specific source location.</p>
|
|
285
|
+
*/
|
|
286
|
+
updateLiveSource(args: UpdateLiveSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLiveSourceCommandOutput>;
|
|
287
|
+
updateLiveSource(args: UpdateLiveSourceCommandInput, cb: (err: any, data?: UpdateLiveSourceCommandOutput) => void): void;
|
|
288
|
+
updateLiveSource(args: UpdateLiveSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLiveSourceCommandOutput) => void): void;
|
|
254
289
|
/**
|
|
255
290
|
* <p>Updates a source location on a specific channel.</p>
|
|
256
291
|
*/
|
|
@@ -8,18 +8,21 @@ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfig
|
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { ConfigureLogsForPlaybackConfigurationCommandInput, ConfigureLogsForPlaybackConfigurationCommandOutput } from "./commands/ConfigureLogsForPlaybackConfigurationCommand";
|
|
10
10
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
|
|
11
|
+
import { CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput } from "./commands/CreateLiveSourceCommand";
|
|
11
12
|
import { CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput } from "./commands/CreatePrefetchScheduleCommand";
|
|
12
13
|
import { CreateProgramCommandInput, CreateProgramCommandOutput } from "./commands/CreateProgramCommand";
|
|
13
14
|
import { CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput } from "./commands/CreateSourceLocationCommand";
|
|
14
15
|
import { CreateVodSourceCommandInput, CreateVodSourceCommandOutput } from "./commands/CreateVodSourceCommand";
|
|
15
16
|
import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
|
|
16
17
|
import { DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput } from "./commands/DeleteChannelPolicyCommand";
|
|
18
|
+
import { DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput } from "./commands/DeleteLiveSourceCommand";
|
|
17
19
|
import { DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput } from "./commands/DeletePlaybackConfigurationCommand";
|
|
18
20
|
import { DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput } from "./commands/DeletePrefetchScheduleCommand";
|
|
19
21
|
import { DeleteProgramCommandInput, DeleteProgramCommandOutput } from "./commands/DeleteProgramCommand";
|
|
20
22
|
import { DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput } from "./commands/DeleteSourceLocationCommand";
|
|
21
23
|
import { DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput } from "./commands/DeleteVodSourceCommand";
|
|
22
24
|
import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "./commands/DescribeChannelCommand";
|
|
25
|
+
import { DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput } from "./commands/DescribeLiveSourceCommand";
|
|
23
26
|
import { DescribeProgramCommandInput, DescribeProgramCommandOutput } from "./commands/DescribeProgramCommand";
|
|
24
27
|
import { DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput } from "./commands/DescribeSourceLocationCommand";
|
|
25
28
|
import { DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput } from "./commands/DescribeVodSourceCommand";
|
|
@@ -29,6 +32,7 @@ import { GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOu
|
|
|
29
32
|
import { GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput } from "./commands/GetPrefetchScheduleCommand";
|
|
30
33
|
import { ListAlertsCommandInput, ListAlertsCommandOutput } from "./commands/ListAlertsCommand";
|
|
31
34
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
|
|
35
|
+
import { ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput } from "./commands/ListLiveSourcesCommand";
|
|
32
36
|
import { ListPlaybackConfigurationsCommandInput, ListPlaybackConfigurationsCommandOutput } from "./commands/ListPlaybackConfigurationsCommand";
|
|
33
37
|
import { ListPrefetchSchedulesCommandInput, ListPrefetchSchedulesCommandOutput } from "./commands/ListPrefetchSchedulesCommand";
|
|
34
38
|
import { ListSourceLocationsCommandInput, ListSourceLocationsCommandOutput } from "./commands/ListSourceLocationsCommand";
|
|
@@ -41,10 +45,11 @@ import { StopChannelCommandInput, StopChannelCommandOutput } from "./commands/St
|
|
|
41
45
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
42
46
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
43
47
|
import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
|
|
48
|
+
import { UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput } from "./commands/UpdateLiveSourceCommand";
|
|
44
49
|
import { UpdateSourceLocationCommandInput, UpdateSourceLocationCommandOutput } from "./commands/UpdateSourceLocationCommand";
|
|
45
50
|
import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput } from "./commands/UpdateVodSourceCommand";
|
|
46
|
-
export declare type ServiceInputTypes = ConfigureLogsForPlaybackConfigurationCommandInput | CreateChannelCommandInput | CreatePrefetchScheduleCommandInput | CreateProgramCommandInput | CreateSourceLocationCommandInput | CreateVodSourceCommandInput | DeleteChannelCommandInput | DeleteChannelPolicyCommandInput | DeletePlaybackConfigurationCommandInput | DeletePrefetchScheduleCommandInput | DeleteProgramCommandInput | DeleteSourceLocationCommandInput | DeleteVodSourceCommandInput | DescribeChannelCommandInput | DescribeProgramCommandInput | DescribeSourceLocationCommandInput | DescribeVodSourceCommandInput | GetChannelPolicyCommandInput | GetChannelScheduleCommandInput | GetPlaybackConfigurationCommandInput | GetPrefetchScheduleCommandInput | ListAlertsCommandInput | ListChannelsCommandInput | ListPlaybackConfigurationsCommandInput | ListPrefetchSchedulesCommandInput | ListSourceLocationsCommandInput | ListTagsForResourceCommandInput | ListVodSourcesCommandInput | PutChannelPolicyCommandInput | PutPlaybackConfigurationCommandInput | StartChannelCommandInput | StopChannelCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateSourceLocationCommandInput | UpdateVodSourceCommandInput;
|
|
47
|
-
export declare type ServiceOutputTypes = ConfigureLogsForPlaybackConfigurationCommandOutput | CreateChannelCommandOutput | CreatePrefetchScheduleCommandOutput | CreateProgramCommandOutput | CreateSourceLocationCommandOutput | CreateVodSourceCommandOutput | DeleteChannelCommandOutput | DeleteChannelPolicyCommandOutput | DeletePlaybackConfigurationCommandOutput | DeletePrefetchScheduleCommandOutput | DeleteProgramCommandOutput | DeleteSourceLocationCommandOutput | DeleteVodSourceCommandOutput | DescribeChannelCommandOutput | DescribeProgramCommandOutput | DescribeSourceLocationCommandOutput | DescribeVodSourceCommandOutput | GetChannelPolicyCommandOutput | GetChannelScheduleCommandOutput | GetPlaybackConfigurationCommandOutput | GetPrefetchScheduleCommandOutput | ListAlertsCommandOutput | ListChannelsCommandOutput | ListPlaybackConfigurationsCommandOutput | ListPrefetchSchedulesCommandOutput | ListSourceLocationsCommandOutput | ListTagsForResourceCommandOutput | ListVodSourcesCommandOutput | PutChannelPolicyCommandOutput | PutPlaybackConfigurationCommandOutput | StartChannelCommandOutput | StopChannelCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateSourceLocationCommandOutput | UpdateVodSourceCommandOutput;
|
|
51
|
+
export declare type ServiceInputTypes = ConfigureLogsForPlaybackConfigurationCommandInput | CreateChannelCommandInput | CreateLiveSourceCommandInput | CreatePrefetchScheduleCommandInput | CreateProgramCommandInput | CreateSourceLocationCommandInput | CreateVodSourceCommandInput | DeleteChannelCommandInput | DeleteChannelPolicyCommandInput | DeleteLiveSourceCommandInput | DeletePlaybackConfigurationCommandInput | DeletePrefetchScheduleCommandInput | DeleteProgramCommandInput | DeleteSourceLocationCommandInput | DeleteVodSourceCommandInput | DescribeChannelCommandInput | DescribeLiveSourceCommandInput | DescribeProgramCommandInput | DescribeSourceLocationCommandInput | DescribeVodSourceCommandInput | GetChannelPolicyCommandInput | GetChannelScheduleCommandInput | GetPlaybackConfigurationCommandInput | GetPrefetchScheduleCommandInput | ListAlertsCommandInput | ListChannelsCommandInput | ListLiveSourcesCommandInput | ListPlaybackConfigurationsCommandInput | ListPrefetchSchedulesCommandInput | ListSourceLocationsCommandInput | ListTagsForResourceCommandInput | ListVodSourcesCommandInput | PutChannelPolicyCommandInput | PutPlaybackConfigurationCommandInput | StartChannelCommandInput | StopChannelCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateLiveSourceCommandInput | UpdateSourceLocationCommandInput | UpdateVodSourceCommandInput;
|
|
52
|
+
export declare type ServiceOutputTypes = ConfigureLogsForPlaybackConfigurationCommandOutput | CreateChannelCommandOutput | CreateLiveSourceCommandOutput | CreatePrefetchScheduleCommandOutput | CreateProgramCommandOutput | CreateSourceLocationCommandOutput | CreateVodSourceCommandOutput | DeleteChannelCommandOutput | DeleteChannelPolicyCommandOutput | DeleteLiveSourceCommandOutput | DeletePlaybackConfigurationCommandOutput | DeletePrefetchScheduleCommandOutput | DeleteProgramCommandOutput | DeleteSourceLocationCommandOutput | DeleteVodSourceCommandOutput | DescribeChannelCommandOutput | DescribeLiveSourceCommandOutput | DescribeProgramCommandOutput | DescribeSourceLocationCommandOutput | DescribeVodSourceCommandOutput | GetChannelPolicyCommandOutput | GetChannelScheduleCommandOutput | GetPlaybackConfigurationCommandOutput | GetPrefetchScheduleCommandOutput | ListAlertsCommandOutput | ListChannelsCommandOutput | ListLiveSourcesCommandOutput | ListPlaybackConfigurationsCommandOutput | ListPrefetchSchedulesCommandOutput | ListSourceLocationsCommandOutput | ListTagsForResourceCommandOutput | ListVodSourcesCommandOutput | PutChannelPolicyCommandOutput | PutPlaybackConfigurationCommandOutput | StartChannelCommandOutput | StopChannelCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateLiveSourceCommandOutput | UpdateSourceLocationCommandOutput | UpdateVodSourceCommandOutput;
|
|
48
53
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
49
54
|
/**
|
|
50
55
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
4
|
+
import { CreateLiveSourceRequest, CreateLiveSourceResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateLiveSourceCommandInput extends CreateLiveSourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateLiveSourceCommandOutput extends CreateLiveSourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates name for a specific live source in a source location.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { MediaTailorClient, CreateLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
|
|
15
|
+
* // const { MediaTailorClient, CreateLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
|
|
16
|
+
* const client = new MediaTailorClient(config);
|
|
17
|
+
* const command = new CreateLiveSourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateLiveSourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateLiveSourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateLiveSourceCommand extends $Command<CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateLiveSourceCommandInput;
|
|
28
|
+
constructor(input: CreateLiveSourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLiveSourceCommandInput, CreateLiveSourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
4
|
+
import { DeleteLiveSourceRequest, DeleteLiveSourceResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteLiveSourceCommandInput extends DeleteLiveSourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Deletes a specific live source in a specific source location.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { MediaTailorClient, DeleteLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
|
|
15
|
+
* // const { MediaTailorClient, DeleteLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
|
|
16
|
+
* const client = new MediaTailorClient(config);
|
|
17
|
+
* const command = new DeleteLiveSourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteLiveSourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteLiveSourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteLiveSourceCommand extends $Command<DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteLiveSourceCommandInput;
|
|
28
|
+
constructor(input: DeleteLiveSourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
4
|
+
import { DescribeLiveSourceRequest, DescribeLiveSourceResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeLiveSourceCommandInput extends DescribeLiveSourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Provides details about a specific live source in a specific source location.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { MediaTailorClient, DescribeLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
|
|
15
|
+
* // const { MediaTailorClient, DescribeLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
|
|
16
|
+
* const client = new MediaTailorClient(config);
|
|
17
|
+
* const command = new DescribeLiveSourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DescribeLiveSourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DescribeLiveSourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DescribeLiveSourceCommand extends $Command<DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
27
|
+
readonly input: DescribeLiveSourceCommandInput;
|
|
28
|
+
constructor(input: DescribeLiveSourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
4
|
+
import { ListLiveSourcesRequest, ListLiveSourcesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListLiveSourcesCommandInput extends ListLiveSourcesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>lists all the live sources in a source location.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { MediaTailorClient, ListLiveSourcesCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
|
|
15
|
+
* // const { MediaTailorClient, ListLiveSourcesCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
|
|
16
|
+
* const client = new MediaTailorClient(config);
|
|
17
|
+
* const command = new ListLiveSourcesCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListLiveSourcesCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListLiveSourcesCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListLiveSourcesCommand extends $Command<ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput, MediaTailorClientResolvedConfig> {
|
|
27
|
+
readonly input: ListLiveSourcesCommandInput;
|
|
28
|
+
constructor(input: ListLiveSourcesCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
4
|
+
import { UpdateLiveSourceRequest, UpdateLiveSourceResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateLiveSourceCommandInput extends UpdateLiveSourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateLiveSourceCommandOutput extends UpdateLiveSourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Updates a specific live source in a specific source location.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { MediaTailorClient, UpdateLiveSourceCommand } from "@aws-sdk/client-mediatailor"; // ES Modules import
|
|
15
|
+
* // const { MediaTailorClient, UpdateLiveSourceCommand } = require("@aws-sdk/client-mediatailor"); // CommonJS import
|
|
16
|
+
* const client = new MediaTailorClient(config);
|
|
17
|
+
* const command = new UpdateLiveSourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateLiveSourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateLiveSourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateLiveSourceCommand extends $Command<UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateLiveSourceCommandInput;
|
|
28
|
+
constructor(input: UpdateLiveSourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLiveSourceCommandInput, UpdateLiveSourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
export * from "./ConfigureLogsForPlaybackConfigurationCommand";
|
|
2
2
|
export * from "./CreateChannelCommand";
|
|
3
|
+
export * from "./CreateLiveSourceCommand";
|
|
3
4
|
export * from "./CreatePrefetchScheduleCommand";
|
|
4
5
|
export * from "./CreateProgramCommand";
|
|
5
6
|
export * from "./CreateSourceLocationCommand";
|
|
6
7
|
export * from "./CreateVodSourceCommand";
|
|
7
8
|
export * from "./DeleteChannelCommand";
|
|
8
9
|
export * from "./DeleteChannelPolicyCommand";
|
|
10
|
+
export * from "./DeleteLiveSourceCommand";
|
|
9
11
|
export * from "./DeletePlaybackConfigurationCommand";
|
|
10
12
|
export * from "./DeletePrefetchScheduleCommand";
|
|
11
13
|
export * from "./DeleteProgramCommand";
|
|
12
14
|
export * from "./DeleteSourceLocationCommand";
|
|
13
15
|
export * from "./DeleteVodSourceCommand";
|
|
14
16
|
export * from "./DescribeChannelCommand";
|
|
17
|
+
export * from "./DescribeLiveSourceCommand";
|
|
15
18
|
export * from "./DescribeProgramCommand";
|
|
16
19
|
export * from "./DescribeSourceLocationCommand";
|
|
17
20
|
export * from "./DescribeVodSourceCommand";
|
|
@@ -21,6 +24,7 @@ export * from "./GetPlaybackConfigurationCommand";
|
|
|
21
24
|
export * from "./GetPrefetchScheduleCommand";
|
|
22
25
|
export * from "./ListAlertsCommand";
|
|
23
26
|
export * from "./ListChannelsCommand";
|
|
27
|
+
export * from "./ListLiveSourcesCommand";
|
|
24
28
|
export * from "./ListPlaybackConfigurationsCommand";
|
|
25
29
|
export * from "./ListPrefetchSchedulesCommand";
|
|
26
30
|
export * from "./ListSourceLocationsCommand";
|
|
@@ -33,5 +37,6 @@ export * from "./StopChannelCommand";
|
|
|
33
37
|
export * from "./TagResourceCommand";
|
|
34
38
|
export * from "./UntagResourceCommand";
|
|
35
39
|
export * from "./UpdateChannelCommand";
|
|
40
|
+
export * from "./UpdateLiveSourceCommand";
|
|
36
41
|
export * from "./UpdateSourceLocationCommand";
|
|
37
42
|
export * from "./UpdateVodSourceCommand";
|