import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The AWS::Rekognition::Project type creates an Amazon Rekognition CustomLabels Project. A project is a grouping of the resources needed to create and manage Dataset and ProjectVersions. */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetProjectArgs { /** * The name of the project to create. */ projectName: string; } export interface GetProjectResult { /** * Returns the Amazon Resource Name of the project. */ readonly arn?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * The AWS::Rekognition::Project type creates an Amazon Rekognition CustomLabels Project. A project is a grouping of the resources needed to create and manage Dataset and ProjectVersions. */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetProjectOutputArgs { /** * The name of the project to create. */ projectName: pulumi.Input; }