interface CfnMlflowAppProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnMlflowAppProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnMlflowAppProps |
Java | software.amazon.awscdk.services.sagemaker.CfnMlflowAppProps |
Python | aws_cdk.aws_sagemaker.CfnMlflowAppProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnMlflowAppProps |
Properties for defining a CfnMlflowApp.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnMlflowAppProps: sagemaker.CfnMlflowAppProps = {
artifactStoreUri: 'artifactStoreUri',
name: 'name',
roleArn: 'roleArn',
// the properties below are optional
modelRegistrationMode: 'modelRegistrationMode',
tags: [{
key: 'key',
value: 'value',
}],
weeklyMaintenanceWindowStart: 'weeklyMaintenanceWindowStart',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | The S3 URI for a general purpose bucket to use as the MLflow App artifact store. |
| name | string | The name of the MLflow App. |
| role | 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. |
| model | string | Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. |
| tags? | Cfn[] | Tags to associate with the MLflow App. |
| weekly | string | The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. |
artifactStoreUri
Type:
string
The S3 URI for a general purpose bucket to use as the MLflow App artifact store.
name
Type:
string
The name of the MLflow App.
roleArn
Type:
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.
modelRegistrationMode?
Type:
string
(optional)
Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.
tags?
Type:
Cfn[]
(optional)
Tags to associate with the MLflow App.
weeklyMaintenanceWindowStart?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript