@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)
46 lines (45 loc) • 1.47 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::SageMaker::Project
*/
export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
export interface GetProjectArgs {
/**
* The Amazon Resource Name (ARN) of the project.
*/
projectArn: string;
}
export interface GetProjectResult {
/**
* The time at which the project was created.
*/
readonly creationTime?: string;
/**
* The Amazon Resource Name (ARN) of the project.
*/
readonly projectArn?: string;
/**
* The ID of the project. This ID is prepended to all entities associated with this project.
*/
readonly projectId?: string;
/**
* The status of a project.
*/
readonly projectStatus?: enums.sagemaker.ProjectStatus;
/**
* Provisioned ServiceCatalog Details
*/
readonly serviceCatalogProvisionedProductDetails?: outputs.sagemaker.ServiceCatalogProvisionedProductDetailsProperties;
}
/**
* Resource Type definition for AWS::SageMaker::Project
*/
export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>;
export interface GetProjectOutputArgs {
/**
* The Amazon Resource Name (ARN) of the project.
*/
projectArn: pulumi.Input<string>;
}