Class CfnMlflowAppProps
Properties for defining a CfnMlflowApp.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMlflowAppProps : ICfnMlflowAppProps
Syntax (vb)
Public Class CfnMlflowAppProps Implements ICfnMlflowAppProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cfnMlflowAppProps = new CfnMlflowAppProps {
ArtifactStoreUri = "artifactStoreUri",
Name = "name",
RoleArn = "roleArn",
// the properties below are optional
ModelRegistrationMode = "modelRegistrationMode",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
WeeklyMaintenanceWindowStart = "weeklyMaintenanceWindowStart"
};
Synopsis
Constructors
| CfnMlflowAppProps() | Properties for defining a |
Properties
| ArtifactStoreUri | The S3 URI for a general purpose bucket to use as the MLflow App artifact store. |
| ModelRegistrationMode | Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. |
| Name | The name of the MLflow App. |
| RoleArn | 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. |
| Tags | Tags to associate with the MLflow App. |
| WeeklyMaintenanceWindowStart | The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. |
Constructors
CfnMlflowAppProps()
Properties for defining a CfnMlflowApp.
public CfnMlflowAppProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cfnMlflowAppProps = new CfnMlflowAppProps {
ArtifactStoreUri = "artifactStoreUri",
Name = "name",
RoleArn = "roleArn",
// the properties below are optional
ModelRegistrationMode = "modelRegistrationMode",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
WeeklyMaintenanceWindowStart = "weeklyMaintenanceWindowStart"
};
Properties
ArtifactStoreUri
The S3 URI for a general purpose bucket to use as the MLflow App artifact store.
public string ArtifactStoreUri { get; set; }
Property Value
Remarks
ModelRegistrationMode
Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.
public string? ModelRegistrationMode { get; set; }
Property Value
Remarks
Name
The name of the MLflow App.
public string Name { get; set; }
Property Value
Remarks
RoleArn
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.
public string RoleArn { get; set; }
Property Value
Remarks
Tags
Tags to associate with the MLflow App.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
WeeklyMaintenanceWindowStart
The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled.
public string? WeeklyMaintenanceWindowStart { get; set; }