Show / Hide Table of Contents

Class CfnMlflowAppProps

Properties for defining a CfnMlflowApp.

Inheritance
object
CfnMlflowAppProps
Implements
ICfnMlflowAppProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 CfnMlflowApp.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-artifactstoreuri

ModelRegistrationMode

Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.

public string? ModelRegistrationMode { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-modelregistrationmode

Name

The name of the MLflow App.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-name

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-rolearn

Tags

Tags to associate with the MLflow App.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-tags

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; }
Property Value

string

Remarks

For example: Tue:03:30.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-weeklymaintenancewindowstart

Implements

ICfnMlflowAppProps
Back to top Generated by DocFX