UNPKG

@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)

109 lines (108 loc) 4.36 kB
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::MlflowApp */ export declare class MlflowApp extends pulumi.CustomResource { /** * Get an existing MlflowApp 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): MlflowApp; /** * Returns true if the given object is an instance of MlflowApp. 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 MlflowApp; /** * The Amazon Resource Name (ARN) of the MLflow App. */ readonly arn: pulumi.Output<string>; /** * The S3 URI for a general purpose bucket to use as the MLflow App artifact store. */ readonly artifactStoreUri: pulumi.Output<string>; /** * The date and time that the MLflow App was created. */ readonly creationTime: pulumi.Output<string>; /** * The date and time that the MLflow App was last modified. */ readonly lastModifiedTime: pulumi.Output<string>; /** * The server-generated identifier of the MLflow App. */ readonly mlflowAppId: pulumi.Output<string>; /** * The MLflow version used by the MLflow App. */ readonly mlflowVersion: pulumi.Output<string>; /** * Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. */ readonly modelRegistrationMode: pulumi.Output<enums.sagemaker.MlflowAppModelRegistrationMode | undefined>; /** * The name of the MLflow App. */ readonly name: pulumi.Output<string>; /** * The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow App uses to access the artifact store in Amazon S3. */ readonly roleArn: pulumi.Output<string>; /** * The status of the MLflow App. */ readonly status: pulumi.Output<enums.sagemaker.MlflowAppStatus>; /** * Tags to associate with the MLflow App. */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. For example: Tue:03:30. */ readonly weeklyMaintenanceWindowStart: pulumi.Output<string | undefined>; /** * Create a MlflowApp 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: MlflowAppArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a MlflowApp resource. */ export interface MlflowAppArgs { /** * The S3 URI for a general purpose bucket to use as the MLflow App artifact store. */ artifactStoreUri: pulumi.Input<string>; /** * Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. */ modelRegistrationMode?: pulumi.Input<enums.sagemaker.MlflowAppModelRegistrationMode>; /** * The name of the MLflow App. */ name?: pulumi.Input<string>; /** * The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow App uses to access the artifact store in Amazon S3. */ roleArn: pulumi.Input<string>; /** * Tags to associate with the MLflow App. */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; /** * The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. For example: Tue:03:30. */ weeklyMaintenanceWindowStart?: pulumi.Input<string>; }