import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** *

Represents an entry point into AWS Elemental MediaPackage for an ABR video content stream sent from an upstream encoder such as AWS Elemental MediaLive. The channel continuously analyzes the content that it receives and prepares it to be distributed to consumers via one or more origin endpoints.

*/ export declare class Channel extends pulumi.CustomResource { /** * Get an existing Channel resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Channel; /** * Returns true if the given object is an instance of Channel. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Channel; /** *

The Amazon Resource Name (ARN) associated with the resource.

*/ readonly arn: pulumi.Output; /** * The name of the channel group associated with the channel configuration. */ readonly channelGroupName: pulumi.Output; /** * The name of the channel. */ readonly channelName: pulumi.Output; /** *

The date and time the channel was created.

*/ readonly createdAt: pulumi.Output; /** *

Enter any descriptive text that helps you to identify the channel.

*/ readonly description: pulumi.Output; /** * The ingest domain URL where the source stream should be sent. */ readonly ingestEndpointUrls: pulumi.Output; /** *

The list of ingest endpoints.

*/ readonly ingestEndpoints: pulumi.Output; /** * The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. */ readonly inputSwitchConfiguration: pulumi.Output; /** * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. * * The allowed values are: * * - `HLS` - The HLS streaming specification (which defines M3U8 manifests and TS segments). * - `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests). */ readonly inputType: pulumi.Output; /** *

The date and time the channel was modified.

*/ readonly modifiedAt: pulumi.Output; /** * The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. */ readonly outputHeaderConfiguration: pulumi.Output; readonly tags: pulumi.Output; /** * Create a Channel resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ChannelArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Channel resource. */ export interface ChannelArgs { /** * The name of the channel group associated with the channel configuration. */ channelGroupName: pulumi.Input; /** * The name of the channel. */ channelName?: pulumi.Input; /** *

Enter any descriptive text that helps you to identify the channel.

*/ description?: pulumi.Input; /** * The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive. */ inputSwitchConfiguration?: pulumi.Input; /** * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. * * The allowed values are: * * - `HLS` - The HLS streaming specification (which defines M3U8 manifests and TS segments). * - `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests). */ inputType?: pulumi.Input; /** * The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN. */ outputHeaderConfiguration?: pulumi.Input; tags?: pulumi.Input[]>; }