import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::MediaTailor::LiveSource Resource Type */ export declare function getLiveSource(args: GetLiveSourceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLiveSourceArgs { /** * The name that's used to refer to a live source. */ liveSourceName: string; /** * The name of the source location. */ sourceLocationName: string; } export interface GetLiveSourceResult { /** *

The ARN of the live source.

*/ readonly arn?: string; /** *

A list of HTTP package configuration parameters for this live source.

*/ readonly httpPackageConfigurations?: outputs.mediatailor.LiveSourceHttpPackageConfiguration[]; /** * The tags to assign to the live source. */ readonly tags?: outputs.Tag[]; } /** * Definition of AWS::MediaTailor::LiveSource Resource Type */ export declare function getLiveSourceOutput(args: GetLiveSourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLiveSourceOutputArgs { /** * The name that's used to refer to a live source. */ liveSourceName: pulumi.Input; /** * The name of the source location. */ sourceLocationName: pulumi.Input; }