@aws-sdk/client-mediatailor 3.296.0 → 3.297.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/dist-types/MediaTailor.d.ts +45 -0
- package/dist-types/MediaTailorClient.d.ts +24 -4
- package/dist-types/commands/ConfigureLogsForChannelCommand.d.ts +16 -0
- package/dist-types/commands/ConfigureLogsForPlaybackConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +16 -0
- package/dist-types/commands/CreateLiveSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreatePrefetchScheduleCommand.d.ts +16 -0
- package/dist-types/commands/CreateProgramCommand.d.ts +16 -0
- package/dist-types/commands/CreateSourceLocationCommand.d.ts +16 -0
- package/dist-types/commands/CreateVodSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLiveSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeletePlaybackConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePrefetchScheduleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProgramCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSourceLocationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVodSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLiveSourceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProgramCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSourceLocationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVodSourceCommand.d.ts +16 -0
- package/dist-types/commands/GetChannelPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetChannelScheduleCommand.d.ts +16 -0
- package/dist-types/commands/GetPlaybackConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetPrefetchScheduleCommand.d.ts +16 -0
- package/dist-types/commands/ListAlertsCommand.d.ts +16 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +16 -0
- package/dist-types/commands/ListLiveSourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListPlaybackConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListPrefetchSchedulesCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceLocationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVodSourcesCommand.d.ts +16 -0
- package/dist-types/commands/PutChannelPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutPlaybackConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/StartChannelCommand.d.ts +16 -0
- package/dist-types/commands/StopChannelCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLiveSourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProgramCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSourceLocationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVodSourceCommand.d.ts +16 -0
- package/dist-types/models/MediaTailorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +336 -0
- package/dist-types/pagination/GetChannelSchedulePaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAlertsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListChannelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLiveSourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPlaybackConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPrefetchSchedulesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSourceLocationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVodSourcesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeChannelCommandInput extends DescribeChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeChannelCommandOutput extends DescribeChannelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a channel. For information about MediaTailor channels, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-channels.html">Working with channels</a> in the <i>MediaTailor User Guide</i>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeChannelCommandInput - {@link DescribeChannelCommandInput}
|
|
34
|
+
* @returns {@link DescribeChannelCommandOutput}
|
|
28
35
|
* @see {@link DescribeChannelCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeChannelCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
34
41
|
export declare class DescribeChannelCommand extends $Command<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeChannelCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DescribeChannelCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeChannelCommandInput, DescribeChannelCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { DescribeLiveSourceRequest, DescribeLiveSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLiveSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLiveSourceCommandInput extends DescribeLiveSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLiveSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The live source to describe.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeLiveSourceCommandInput - {@link DescribeLiveSourceCommandInput}
|
|
34
|
+
* @returns {@link DescribeLiveSourceCommandOutput}
|
|
28
35
|
* @see {@link DescribeLiveSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeLiveSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DescribeLiveSourceCommandOutput extends DescribeLiveSourceRespo
|
|
|
34
41
|
export declare class DescribeLiveSourceCommand extends $Command<DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeLiveSourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DescribeLiveSourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLiveSourceCommandInput, DescribeLiveSourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { DescribeProgramRequest, DescribeProgramResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeProgramCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeProgramCommandInput extends DescribeProgramRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeProgramCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeProgramCommandOutput extends DescribeProgramResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a program within a channel. For information about programs, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-programs.html">Working with programs</a> in the <i>MediaTailor User Guide</i>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeProgramCommandInput - {@link DescribeProgramCommandInput}
|
|
34
|
+
* @returns {@link DescribeProgramCommandOutput}
|
|
28
35
|
* @see {@link DescribeProgramCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeProgramCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DescribeProgramCommandOutput extends DescribeProgramResponse, _
|
|
|
34
41
|
export declare class DescribeProgramCommand extends $Command<DescribeProgramCommandInput, DescribeProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeProgramCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DescribeProgramCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProgramCommandInput, DescribeProgramCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { DescribeSourceLocationRequest, DescribeSourceLocationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSourceLocationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSourceLocationCommandInput extends DescribeSourceLocationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSourceLocationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a source location. A source location is a container for sources. For more information about source locations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-source-locations.html">Working with source locations</a> in the <i>MediaTailor User Guide</i>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeSourceLocationCommandInput - {@link DescribeSourceLocationCommandInput}
|
|
34
|
+
* @returns {@link DescribeSourceLocationCommandOutput}
|
|
28
35
|
* @see {@link DescribeSourceLocationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeSourceLocationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DescribeSourceLocationCommandOutput extends DescribeSourceLocat
|
|
|
34
41
|
export declare class DescribeSourceLocationCommand extends $Command<DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeSourceLocationCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DescribeSourceLocationCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSourceLocationCommandInput, DescribeSourceLocationCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { DescribeVodSourceRequest, DescribeVodSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeVodSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeVodSourceCommandInput extends DescribeVodSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeVodSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeVodSourceCommandOutput extends DescribeVodSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides details about a specific video on demand (VOD) source in a specific source location.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeVodSourceCommandInput - {@link DescribeVodSourceCommandInput}
|
|
34
|
+
* @returns {@link DescribeVodSourceCommandOutput}
|
|
28
35
|
* @see {@link DescribeVodSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeVodSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DescribeVodSourceCommandOutput extends DescribeVodSourceRespons
|
|
|
34
41
|
export declare class DescribeVodSourceCommand extends $Command<DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DescribeVodSourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DescribeVodSourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVodSourceCommandInput, DescribeVodSourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { GetChannelPolicyRequest, GetChannelPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetChannelPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetChannelPolicyCommandInput extends GetChannelPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetChannelPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the channel's IAM policy. IAM policies are used to control access to your channel.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetChannelPolicyCommandInput - {@link GetChannelPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetChannelPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetChannelPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetChannelPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface GetChannelPolicyCommandOutput extends GetChannelPolicyResponse,
|
|
|
34
41
|
export declare class GetChannelPolicyCommand extends $Command<GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: GetChannelPolicyCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: GetChannelPolicyCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { GetChannelScheduleRequest, GetChannelScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetChannelScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetChannelScheduleCommandInput extends GetChannelScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetChannelScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetChannelScheduleCommandOutput extends GetChannelScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about your channel's schedule.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetChannelScheduleCommandInput - {@link GetChannelScheduleCommandInput}
|
|
34
|
+
* @returns {@link GetChannelScheduleCommandOutput}
|
|
28
35
|
* @see {@link GetChannelScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetChannelScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface GetChannelScheduleCommandOutput extends GetChannelScheduleRespo
|
|
|
34
41
|
export declare class GetChannelScheduleCommand extends $Command<GetChannelScheduleCommandInput, GetChannelScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: GetChannelScheduleCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: GetChannelScheduleCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetChannelScheduleCommandInput, GetChannelScheduleCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { GetPlaybackConfigurationRequest, GetPlaybackConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPlaybackConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPlaybackConfigurationCommandInput extends GetPlaybackConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPlaybackConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a playback configuration. For information about MediaTailor configurations, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/configurations.html">Working with configurations in AWS Elemental MediaTailor</a>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPlaybackConfigurationCommandInput - {@link GetPlaybackConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetPlaybackConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetPlaybackConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface GetPlaybackConfigurationCommandOutput extends GetPlaybackConfig
|
|
|
34
41
|
export declare class GetPlaybackConfigurationCommand extends $Command<GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: GetPlaybackConfigurationCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: GetPlaybackConfigurationCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPlaybackConfigurationCommandInput, GetPlaybackConfigurationCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { GetPrefetchScheduleRequest, GetPrefetchScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPrefetchScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPrefetchScheduleCommandInput extends GetPrefetchScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPrefetchScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a prefetch schedule for a playback configuration. A prefetch schedule allows you to tell MediaTailor to fetch and prepare certain ads before an ad break happens. For more information about ad prefetching, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/prefetching-ads.html">Using ad prefetching</a> in the <i>MediaTailor User Guide</i>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPrefetchScheduleCommandInput - {@link GetPrefetchScheduleCommandInput}
|
|
34
|
+
* @returns {@link GetPrefetchScheduleCommandOutput}
|
|
28
35
|
* @see {@link GetPrefetchScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPrefetchScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface GetPrefetchScheduleCommandOutput extends GetPrefetchScheduleRes
|
|
|
34
41
|
export declare class GetPrefetchScheduleCommand extends $Command<GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: GetPrefetchScheduleCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: GetPrefetchScheduleCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPrefetchScheduleCommandInput, GetPrefetchScheduleCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { ListAlertsRequest, ListAlertsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAlertsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAlertsCommandInput extends ListAlertsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAlertsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the alerts that are associated with a MediaTailor channel assembly resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAlertsCommandInput - {@link ListAlertsCommandInput}
|
|
34
|
+
* @returns {@link ListAlertsCommandOutput}
|
|
28
35
|
* @see {@link ListAlertsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAlertsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListAlertsCommandOutput extends ListAlertsResponse, __MetadataB
|
|
|
34
41
|
export declare class ListAlertsCommand extends $Command<ListAlertsCommandInput, ListAlertsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: ListAlertsCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListAlertsCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAlertsCommandInput, ListAlertsCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListChannelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListChannelsCommandInput extends ListChannelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListChannelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListChannelsCommandOutput extends ListChannelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about the channels that are associated with the current AWS account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListChannelsCommandInput - {@link ListChannelsCommandInput}
|
|
34
|
+
* @returns {@link ListChannelsCommandOutput}
|
|
28
35
|
* @see {@link ListChannelsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListChannelsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
34
41
|
export declare class ListChannelsCommand extends $Command<ListChannelsCommandInput, ListChannelsCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: ListChannelsCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListChannelsCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChannelsCommandInput, ListChannelsCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient";
|
|
5
5
|
import { ListLiveSourcesRequest, ListLiveSourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLiveSourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLiveSourcesCommandInput extends ListLiveSourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLiveSourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the live sources contained in a source location. A source represents a piece of content.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLiveSourcesCommandInput - {@link ListLiveSourcesCommandInput}
|
|
34
|
+
* @returns {@link ListLiveSourcesCommandOutput}
|
|
28
35
|
* @see {@link ListLiveSourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLiveSourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListLiveSourcesCommandOutput extends ListLiveSourcesResponse, _
|
|
|
34
41
|
export declare class ListLiveSourcesCommand extends $Command<ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: ListLiveSourcesCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListLiveSourcesCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLiveSourcesCommandInput, ListLiveSourcesCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|