interface CfnMlflowTrackingServerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnMlflowTrackingServerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnMlflowTrackingServerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnMlflowTrackingServerMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnMlflowTrackingServerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnMlflowTrackingServerMixinProps |
Properties for CfnMlflowTrackingServerPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const cfnMlflowTrackingServerMixinProps: sagemaker_mixins.CfnMlflowTrackingServerMixinProps = {
artifactStoreUri: 'artifactStoreUri',
automaticModelRegistration: false,
mlflowVersion: 'mlflowVersion',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
trackingServerName: 'trackingServerName',
trackingServerSize: 'trackingServerSize',
weeklyMaintenanceWindowStart: 'weeklyMaintenanceWindowStart',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | The Amazon S3 URI for MLFlow Tracking Server artifacts. |
| automatic | boolean | IResolvable | A flag to enable Automatic SageMaker Model Registration. |
| mlflow | string | The MLFlow Version used on the MLFlow Tracking Server. |
| role | string | The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| tracking | string | The name of the MLFlow Tracking Server. |
| tracking | string | The size of the MLFlow Tracking Server. |
| weekly | string | The start of the time window for maintenance of the MLFlow Tracking Server in UTC time. |
artifactStoreUri?
Type:
string
(optional)
The Amazon S3 URI for MLFlow Tracking Server artifacts.
automaticModelRegistration?
Type:
boolean | IResolvable
(optional)
A flag to enable Automatic SageMaker Model Registration.
mlflowVersion?
Type:
string
(optional)
The MLFlow Version used on the MLFlow Tracking Server.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
trackingServerName?
Type:
string
(optional)
The name of the MLFlow Tracking Server.
trackingServerSize?
Type:
string
(optional)
The size of the MLFlow Tracking Server.
weeklyMaintenanceWindowStart?
Type:
string
(optional)
The start of the time window for maintenance of the MLFlow Tracking Server in UTC time.

.NET
Go
Java
Python
TypeScript