@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)
45 lines (44 loc) • 1.18 kB
TypeScript
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<GetProjectResult>;
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<GetProjectResult>;
export interface GetProjectOutputArgs {
/**
* The ARN of the project.
*/
arn: pulumi.Input<string>;
}