Show / Hide Table of Contents

Class CfnMlflowTrackingServer

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnMlflowTrackingServer
Implements
IInspectable
ITaggableV2
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMlflowTrackingServer : CfnResource, IInspectable, ITaggableV2
Syntax (vb)
Public Class CfnMlflowTrackingServer Inherits CfnResource Implements IInspectable, ITaggableV2
Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

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 cfnMlflowTrackingServer = new CfnMlflowTrackingServer(this, "MyCfnMlflowTrackingServer", new CfnMlflowTrackingServerProps {
                 ArtifactStoreUri = "artifactStoreUri",
                 RoleArn = "roleArn",
                 TrackingServerName = "trackingServerName",

                 // the properties below are optional
                 AutomaticModelRegistration = false,
                 MlflowVersion = "mlflowVersion",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 TrackingServerSize = "trackingServerSize",
                 WeeklyMaintenanceWindowStart = "weeklyMaintenanceWindowStart"
             });

Synopsis

Constructors

CfnMlflowTrackingServer(Construct, string, ICfnMlflowTrackingServerProps)

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

Properties

ArtifactStoreUri

The Amazon S3 URI for MLFlow Tracking Server artifacts.

AttrTrackingServerArn

The Amazon Resource Name (ARN) of the MLFlow Tracking Server.

AutomaticModelRegistration

A flag to enable Automatic SageMaker Model Registration.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CdkTagManager

Tag Manager which manages the tags for this resource.

CfnProperties

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

MlflowVersion

The MLFlow Version used on the MLFlow Tracking Server.

RoleArn

The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.

Tags

An array of key-value pairs to apply to this resource.

TrackingServerName

The name of the MLFlow Tracking Server.

TrackingServerSize

The size of the MLFlow Tracking Server.

WeeklyMaintenanceWindowStart

The start of the time window for maintenance of the MLFlow Tracking Server in UTC time.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<string, object>)

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

Constructors

CfnMlflowTrackingServer(Construct, string, ICfnMlflowTrackingServerProps)

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

public CfnMlflowTrackingServer(Construct scope, string id, ICfnMlflowTrackingServerProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnMlflowTrackingServerProps

Resource properties.

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

Properties

ArtifactStoreUri

The Amazon S3 URI for MLFlow Tracking Server artifacts.

public virtual string ArtifactStoreUri { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

AttrTrackingServerArn

The Amazon Resource Name (ARN) of the MLFlow Tracking Server.

public virtual string AttrTrackingServerArn { get; }
Property Value

string

Remarks

CloudformationAttribute: TrackingServerArn

AutomaticModelRegistration

A flag to enable Automatic SageMaker Model Registration.

public virtual object? AutomaticModelRegistration { get; set; }
Property Value

object

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

CdkTagManager

Tag Manager which manages the tags for this resource.

public virtual TagManager CdkTagManager { get; }
Property Value

TagManager

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

CfnProperties

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

MlflowVersion

The MLFlow Version used on the MLFlow Tracking Server.

public virtual string? MlflowVersion { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

RoleArn

The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.

public virtual string RoleArn { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

Tags

An array of key-value pairs to apply to this resource.

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

ICfnTag[]

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

TrackingServerName

The name of the MLFlow Tracking Server.

public virtual string TrackingServerName { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

TrackingServerSize

The size of the MLFlow Tracking Server.

public virtual string? TrackingServerSize { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

WeeklyMaintenanceWindowStart

The start of the time window for maintenance of the MLFlow Tracking Server in UTC time.

public virtual string? WeeklyMaintenanceWindowStart { get; set; }
Property Value

string

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

For more information, see Create an MLflow Tracking Server .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html

CloudformationResource: AWS::SageMaker::MlflowTrackingServer

ExampleMetadata: fixture=_generated

Implements

IInspectable
ITaggableV2
Back to top Generated by DocFX