import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::MediaTailor::VodSource Resource Type */ export declare function getVodSource(args: GetVodSourceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetVodSourceArgs { /** * The name of the source location that the VOD source is associated with. */ sourceLocationName: string; /** * The name of the VOD source. */ vodSourceName: string; } export interface GetVodSourceResult { /** *

The ARN of the VOD source.

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

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

*/ readonly httpPackageConfigurations?: outputs.mediatailor.VodSourceHttpPackageConfiguration[]; /** * The tags to assign to the VOD source. */ readonly tags?: outputs.Tag[]; } /** * Definition of AWS::MediaTailor::VodSource Resource Type */ export declare function getVodSourceOutput(args: GetVodSourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetVodSourceOutputArgs { /** * The name of the source location that the VOD source is associated with. */ sourceLocationName: pulumi.Input; /** * The name of the VOD source. */ vodSourceName: pulumi.Input; }