UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

27 lines (26 loc) 868 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Represents a feed that receives media for inference processing */ export declare function getFeed(args: GetFeedArgs, opts?: pulumi.InvokeOptions): Promise<GetFeedResult>; export interface GetFeedArgs { id: string; } export interface GetFeedResult { readonly arn?: string; readonly dataEndpoints?: string[]; readonly id?: string; readonly name?: string; readonly outputs?: outputs.elementalinference.FeedGetOutput[]; readonly tags?: { [key: string]: string; }; } /** * Represents a feed that receives media for inference processing */ export declare function getFeedOutput(args: GetFeedOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFeedResult>; export interface GetFeedOutputArgs { id: pulumi.Input<string>; }