import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The AWS::Rekognition::StreamProcessor type is used to create an Amazon Rekognition StreamProcessor that you can use to analyze streaming videos. */ export declare function getStreamProcessor(args: GetStreamProcessorArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetStreamProcessorArgs { /** * Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor. */ name: string; } export interface GetStreamProcessorResult { /** * Amazon Resource Name for the newly created stream processor. */ readonly arn?: string; /** * Current status of the stream processor. */ readonly status?: string; /** * Detailed status message about the stream processor. */ readonly statusMessage?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * The AWS::Rekognition::StreamProcessor type is used to create an Amazon Rekognition StreamProcessor that you can use to analyze streaming videos. */ export declare function getStreamProcessorOutput(args: GetStreamProcessorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetStreamProcessorOutputArgs { /** * Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor. */ name: pulumi.Input; }