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)

41 lines (40 loc) 1.63 kB
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<GetStreamProcessorResult>; 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<GetStreamProcessorResult>; 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<string>; }