import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::SageMaker::Project * * ## Example Usage * ### Example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws_native from "@pulumi/aws-native"; * * const sampleProject = new aws_native.sagemaker.Project("sampleProject", { * projectName: "project1", * projectDescription: "Project Description", * serviceCatalogProvisioningDetails: { * productId: "prod-53ibyqbj2cgmo", * provisioningArtifactId: "pa-sm4pjfuzictpe", * }, * }); * * ``` * ### Example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws_native from "@pulumi/aws-native"; * * const sampleProject = new aws_native.sagemaker.Project("sampleProject", { * projectName: "SampleProject", * projectDescription: "Project Description", * serviceCatalogProvisioningDetails: { * productId: "prod-53ibyqbj2cgmo", * provisioningArtifactId: "pa-sm4pjfuzictpe", * }, * }); * * ``` */ export declare class Project extends pulumi.CustomResource { /** * Get an existing Project resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Project; /** * Returns true if the given object is an instance of Project. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Project; /** * The time at which the project was created. */ readonly creationTime: pulumi.Output; /** * The Amazon Resource Name (ARN) of the project. */ readonly projectArn: pulumi.Output; /** * The description of the project. */ readonly projectDescription: pulumi.Output; /** * The ID of the project. This ID is prepended to all entities associated with this project. */ readonly projectId: pulumi.Output; /** * The name of the project. */ readonly projectName: pulumi.Output; /** * The status of a project. */ readonly projectStatus: pulumi.Output; /** * Provisioned ServiceCatalog Details */ readonly serviceCatalogProvisionedProductDetails: pulumi.Output; /** * Input ServiceCatalog Provisioning Details */ readonly serviceCatalogProvisioningDetails: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * An array of template providers associated with the project. */ readonly templateProviderDetails: pulumi.Output; /** * Create a Project resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ProjectArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Project resource. */ export interface ProjectArgs { /** * The description of the project. */ projectDescription?: pulumi.Input; /** * The name of the project. */ projectName?: pulumi.Input; /** * Provisioned ServiceCatalog Details */ serviceCatalogProvisionedProductDetails?: pulumi.Input; /** * Input ServiceCatalog Provisioning Details */ serviceCatalogProvisioningDetails?: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; /** * An array of template providers associated with the project. */ templateProviderDetails?: pulumi.Input[]>; }