Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MediaTailor

import { MediaTailor } from "https://aws-api.deno.dev/v0.2/services/mediatailor.ts?docs=full";
class MediaTailor {
constructor(apiFactory: client.ApiFactory);
async createChannel(params: CreateChannelRequest, opts?: client.RequestOptions): Promise<CreateChannelResponse>;
async createProgram(params: CreateProgramRequest, opts?: client.RequestOptions): Promise<CreateProgramResponse>;
async createSourceLocation(params: CreateSourceLocationRequest, opts?: client.RequestOptions): Promise<CreateSourceLocationResponse>;
async createVodSource(params: CreateVodSourceRequest, opts?: client.RequestOptions): Promise<CreateVodSourceResponse>;
async deleteChannel(params: DeleteChannelRequest, opts?: client.RequestOptions): Promise<void>;
async deleteChannelPolicy(params: DeleteChannelPolicyRequest, opts?: client.RequestOptions): Promise<void>;
async deletePlaybackConfiguration(params: DeletePlaybackConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteProgram(params: DeleteProgramRequest, opts?: client.RequestOptions): Promise<void>;
async deleteSourceLocation(params: DeleteSourceLocationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteVodSource(params: DeleteVodSourceRequest, opts?: client.RequestOptions): Promise<void>;
async describeChannel(params: DescribeChannelRequest, opts?: client.RequestOptions): Promise<DescribeChannelResponse>;
async describeProgram(params: DescribeProgramRequest, opts?: client.RequestOptions): Promise<DescribeProgramResponse>;
async describeSourceLocation(params: DescribeSourceLocationRequest, opts?: client.RequestOptions): Promise<DescribeSourceLocationResponse>;
async describeVodSource(params: DescribeVodSourceRequest, opts?: client.RequestOptions): Promise<DescribeVodSourceResponse>;
async getChannelPolicy(params: GetChannelPolicyRequest, opts?: client.RequestOptions): Promise<GetChannelPolicyResponse>;
async getChannelSchedule(params: GetChannelScheduleRequest, opts?: client.RequestOptions): Promise<GetChannelScheduleResponse>;
async getPlaybackConfiguration(params: GetPlaybackConfigurationRequest, opts?: client.RequestOptions): Promise<GetPlaybackConfigurationResponse>;
async listAlerts(params: ListAlertsRequest, opts?: client.RequestOptions): Promise<ListAlertsResponse>;
async listChannels(params?: ListChannelsRequest, opts?: client.RequestOptions): Promise<ListChannelsResponse>;
async listPlaybackConfigurations(params?: ListPlaybackConfigurationsRequest, opts?: client.RequestOptions): Promise<ListPlaybackConfigurationsResponse>;
async listSourceLocations(params?: ListSourceLocationsRequest, opts?: client.RequestOptions): Promise<ListSourceLocationsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async listVodSources(params: ListVodSourcesRequest, opts?: client.RequestOptions): Promise<ListVodSourcesResponse>;
async putChannelPolicy(params: PutChannelPolicyRequest, opts?: client.RequestOptions): Promise<void>;
async putPlaybackConfiguration(params?: PutPlaybackConfigurationRequest, opts?: client.RequestOptions): Promise<PutPlaybackConfigurationResponse>;
async startChannel(params: StartChannelRequest, opts?: client.RequestOptions): Promise<void>;
async stopChannel(params: StopChannelRequest, opts?: client.RequestOptions): Promise<void>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateChannel(params: UpdateChannelRequest, opts?: client.RequestOptions): Promise<UpdateChannelResponse>;
async updateSourceLocation(params: UpdateSourceLocationRequest, opts?: client.RequestOptions): Promise<UpdateSourceLocationResponse>;
async updateVodSource(params: UpdateVodSourceRequest, opts?: client.RequestOptions): Promise<UpdateVodSourceResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new MediaTailor(apiFactory: client.ApiFactory)
[src]

§Methods

§

Creates a channel.

§

Creates a program.

§

Creates a source location on a specific channel.

§

Creates name for a specific VOD source in a source location.

§
deleteChannel(params: DeleteChannelRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a channel. You must stop the channel before it can be deleted.

§
deleteChannelPolicy(params: DeleteChannelPolicyRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a channel's IAM policy.

§
deletePlaybackConfiguration(params: DeletePlaybackConfigurationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the playback configuration for the specified name.

§
deleteProgram(params: DeleteProgramRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a specific program on a specific channel.

§
deleteSourceLocation(params: DeleteSourceLocationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a source location on a specific channel.

§
deleteVodSource(params: DeleteVodSourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes a specific VOD source in a specific source location.

§

Describes the properties of a specific channel.

§

Retrieves the properties of the requested program.

§

Retrieves the properties of the requested source location.

§

Provides details about a specific VOD source in a specific source location.

§

Retrieves information about a channel's IAM policy.

§

Retrieves information about your channel's schedule.

§

Returns the playback configuration for the specified name.

§

Returns a list of alerts for the given resource.

§

Retrieves a list of channels that are associated with this account.

§

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.

§

Retrieves a list of source locations.

§

Returns a list of the tags assigned to the specified playback configuration resource.

§

Lists all the VOD sources in a source location.

§
putChannelPolicy(params: PutChannelPolicyRequest, opts?: client.RequestOptions): Promise<void>
[src]

Creates an IAM policy for the channel.

§

Adds a new playback configuration to AWS Elemental MediaTailor.

§
startChannel(params: StartChannelRequest, opts?: client.RequestOptions): Promise<void>
[src]

Starts a specific channel.

§
stopChannel(params: StopChannelRequest, opts?: client.RequestOptions): Promise<void>
[src]

Stops a specific channel.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds tags to the specified playback configuration resource. You can specify one or more tags to add.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes tags from the specified playback configuration resource. You can specify one or more tags to remove.

§

Updates an existing channel.

§

Updates a source location on a specific channel.

§

Updates a specific VOD source in a specific source location.

§Static Properties