import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource type definition for AWS::BedrockMantle::Project */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetProjectArgs { /** * The ARN of the project. */ arn: string; } export interface GetProjectResult { /** * The ARN of the project. */ readonly arn?: string; /** * The timestamp when the project was created. */ readonly createdAt?: string; /** * The unique identifier of the project. */ readonly id?: string; /** * The name of the project. */ readonly name?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource type definition for AWS::BedrockMantle::Project */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetProjectOutputArgs { /** * The ARN of the project. */ arn: pulumi.Input; }