@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 { CreatePrefetchScheduleRequest, CreatePrefetchScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreatePrefetchScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreatePrefetchScheduleCommandInput extends CreatePrefetchScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreatePrefetchScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates 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 CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreatePrefetchScheduleCommandInput - {@link CreatePrefetchScheduleCommandInput}
|
|
34
|
+
* @returns {@link CreatePrefetchScheduleCommandOutput}
|
|
28
35
|
* @see {@link CreatePrefetchScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreatePrefetchScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface CreatePrefetchScheduleCommandOutput extends CreatePrefetchSched
|
|
|
34
41
|
export declare class CreatePrefetchScheduleCommand extends $Command<CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: CreatePrefetchScheduleCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: CreatePrefetchScheduleCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePrefetchScheduleCommandInput, CreatePrefetchScheduleCommandOutput>;
|
|
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 { CreateProgramRequest, CreateProgramResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateProgramCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateProgramCommandInput extends CreateProgramRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateProgramCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateProgramCommandOutput extends CreateProgramResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates 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 CreateProgramCommandOutput extends CreateProgramResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateProgramCommandInput - {@link CreateProgramCommandInput}
|
|
34
|
+
* @returns {@link CreateProgramCommandOutput}
|
|
28
35
|
* @see {@link CreateProgramCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateProgramCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface CreateProgramCommandOutput extends CreateProgramResponse, __Met
|
|
|
34
41
|
export declare class CreateProgramCommand extends $Command<CreateProgramCommandInput, CreateProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: CreateProgramCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: CreateProgramCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProgramCommandInput, CreateProgramCommandOutput>;
|
|
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 { CreateSourceLocationRequest, CreateSourceLocationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSourceLocationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSourceLocationCommandInput extends CreateSourceLocationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSourceLocationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSourceLocationCommandOutput extends CreateSourceLocationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates 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 CreateSourceLocationCommandOutput extends CreateSourceLocationR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateSourceLocationCommandInput - {@link CreateSourceLocationCommandInput}
|
|
34
|
+
* @returns {@link CreateSourceLocationCommandOutput}
|
|
28
35
|
* @see {@link CreateSourceLocationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateSourceLocationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface CreateSourceLocationCommandOutput extends CreateSourceLocationR
|
|
|
34
41
|
export declare class CreateSourceLocationCommand extends $Command<CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: CreateSourceLocationCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: CreateSourceLocationCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSourceLocationCommandInput, CreateSourceLocationCommandOutput>;
|
|
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 { CreateVodSourceRequest, CreateVodSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVodSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVodSourceCommandInput extends CreateVodSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVodSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The VOD source configuration parameters.</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 CreateVodSourceCommandOutput extends CreateVodSourceResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateVodSourceCommandInput - {@link CreateVodSourceCommandInput}
|
|
34
|
+
* @returns {@link CreateVodSourceCommandOutput}
|
|
28
35
|
* @see {@link CreateVodSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateVodSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface CreateVodSourceCommandOutput extends CreateVodSourceResponse, _
|
|
|
34
41
|
export declare class CreateVodSourceCommand extends $Command<CreateVodSourceCommandInput, CreateVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: CreateVodSourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: CreateVodSourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVodSourceCommandInput, CreateVodSourceCommandOutput>;
|
|
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 { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteChannelCommandInput extends DeleteChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteChannelCommandInput - {@link DeleteChannelCommandInput}
|
|
34
|
+
* @returns {@link DeleteChannelCommandOutput}
|
|
28
35
|
* @see {@link DeleteChannelCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteChannelCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
34
41
|
export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteChannelCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteChannelCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
|
|
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 { DeleteChannelPolicyRequest, DeleteChannelPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteChannelPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteChannelPolicyCommandInput extends DeleteChannelPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteChannelPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The channel policy to delete.</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 DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteChannelPolicyCommandInput - {@link DeleteChannelPolicyCommandInput}
|
|
34
|
+
* @returns {@link DeleteChannelPolicyCommandOutput}
|
|
28
35
|
* @see {@link DeleteChannelPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteChannelPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteChannelPolicyCommandOutput extends DeleteChannelPolicyRes
|
|
|
34
41
|
export declare class DeleteChannelPolicyCommand extends $Command<DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteChannelPolicyCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteChannelPolicyCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput>;
|
|
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 { DeleteLiveSourceRequest, DeleteLiveSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLiveSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLiveSourceCommandInput extends DeleteLiveSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLiveSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The live source to delete.</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 DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteLiveSourceCommandInput - {@link DeleteLiveSourceCommandInput}
|
|
34
|
+
* @returns {@link DeleteLiveSourceCommandOutput}
|
|
28
35
|
* @see {@link DeleteLiveSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteLiveSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteLiveSourceCommandOutput extends DeleteLiveSourceResponse,
|
|
|
34
41
|
export declare class DeleteLiveSourceCommand extends $Command<DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteLiveSourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteLiveSourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLiveSourceCommandInput, DeleteLiveSourceCommandOutput>;
|
|
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 { DeletePlaybackConfigurationRequest, DeletePlaybackConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePlaybackConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePlaybackConfigurationCommandInput extends DeletePlaybackConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePlaybackConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePlaybackConfigurationCommandOutput extends DeletePlaybackConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeletePlaybackConfigurationCommandOutput extends DeletePlayback
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePlaybackConfigurationCommandInput - {@link DeletePlaybackConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DeletePlaybackConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DeletePlaybackConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePlaybackConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeletePlaybackConfigurationCommandOutput extends DeletePlayback
|
|
|
34
41
|
export declare class DeletePlaybackConfigurationCommand extends $Command<DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeletePlaybackConfigurationCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeletePlaybackConfigurationCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePlaybackConfigurationCommandInput, DeletePlaybackConfigurationCommandOutput>;
|
|
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 { DeletePrefetchScheduleRequest, DeletePrefetchScheduleResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePrefetchScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePrefetchScheduleCommandInput extends DeletePrefetchScheduleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePrefetchScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchScheduleResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a prefetch schedule for a specific playback configuration. If you call <code>DeletePrefetchSchedule</code> on an expired prefetch schedule, MediaTailor returns an HTTP 404 status code. 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 DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePrefetchScheduleCommandInput - {@link DeletePrefetchScheduleCommandInput}
|
|
34
|
+
* @returns {@link DeletePrefetchScheduleCommandOutput}
|
|
28
35
|
* @see {@link DeletePrefetchScheduleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePrefetchScheduleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeletePrefetchScheduleCommandOutput extends DeletePrefetchSched
|
|
|
34
41
|
export declare class DeletePrefetchScheduleCommand extends $Command<DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeletePrefetchScheduleCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeletePrefetchScheduleCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePrefetchScheduleCommandInput, DeletePrefetchScheduleCommandOutput>;
|
|
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 { DeleteProgramRequest, DeleteProgramResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteProgramCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteProgramCommandInput extends DeleteProgramRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteProgramCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteProgramCommandOutput extends DeleteProgramResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteProgramCommandInput - {@link DeleteProgramCommandInput}
|
|
34
|
+
* @returns {@link DeleteProgramCommandOutput}
|
|
28
35
|
* @see {@link DeleteProgramCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteProgramCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteProgramCommandOutput extends DeleteProgramResponse, __Met
|
|
|
34
41
|
export declare class DeleteProgramCommand extends $Command<DeleteProgramCommandInput, DeleteProgramCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteProgramCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteProgramCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProgramCommandInput, DeleteProgramCommandOutput>;
|
|
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 { DeleteSourceLocationRequest, DeleteSourceLocationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSourceLocationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSourceLocationCommandInput extends DeleteSourceLocationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSourceLocationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteSourceLocationCommandOutput extends DeleteSourceLocationR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteSourceLocationCommandInput - {@link DeleteSourceLocationCommandInput}
|
|
34
|
+
* @returns {@link DeleteSourceLocationCommandOutput}
|
|
28
35
|
* @see {@link DeleteSourceLocationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteSourceLocationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteSourceLocationCommandOutput extends DeleteSourceLocationR
|
|
|
34
41
|
export declare class DeleteSourceLocationCommand extends $Command<DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteSourceLocationCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteSourceLocationCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSourceLocationCommandInput, DeleteSourceLocationCommandOutput>;
|
|
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 { DeleteVodSourceRequest, DeleteVodSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVodSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVodSourceCommandInput extends DeleteVodSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVodSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The video on demand (VOD) source to delete.</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 DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteVodSourceCommandInput - {@link DeleteVodSourceCommandInput}
|
|
34
|
+
* @returns {@link DeleteVodSourceCommandOutput}
|
|
28
35
|
* @see {@link DeleteVodSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteVodSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaTailorClientResolvedConfig | config} for MediaTailorClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface DeleteVodSourceCommandOutput extends DeleteVodSourceResponse, _
|
|
|
34
41
|
export declare class DeleteVodSourceCommand extends $Command<DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput, MediaTailorClientResolvedConfig> {
|
|
35
42
|
readonly input: DeleteVodSourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: DeleteVodSourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaTailorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVodSourceCommandInput, DeleteVodSourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|