aws.sagemaker.MlflowTrackingServer
Explore with Pulumi AI
Provides a SageMaker MLFlow Tracking Server resource.
Example Usage
Cognito Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.sagemaker.MlflowTrackingServer("example", {
trackingServerName: "example",
roleArn: exampleAwsIamRole.arn,
artifactStoreUri: `s3://${exampleAwsS3Bucket.bucket}/path`,
});
import pulumi
import pulumi_aws as aws
example = aws.sagemaker.MlflowTrackingServer("example",
tracking_server_name="example",
role_arn=example_aws_iam_role["arn"],
artifact_store_uri=f"s3://{example_aws_s3_bucket['bucket']}/path")
package main
import (
"fmt"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sagemaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sagemaker.NewMlflowTrackingServer(ctx, "example", &sagemaker.MlflowTrackingServerArgs{
TrackingServerName: pulumi.String("example"),
RoleArn: pulumi.Any(exampleAwsIamRole.Arn),
ArtifactStoreUri: pulumi.Sprintf("s3://%v/path", exampleAwsS3Bucket.Bucket),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Sagemaker.MlflowTrackingServer("example", new()
{
TrackingServerName = "example",
RoleArn = exampleAwsIamRole.Arn,
ArtifactStoreUri = $"s3://{exampleAwsS3Bucket.Bucket}/path",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.MlflowTrackingServer;
import com.pulumi.aws.sagemaker.MlflowTrackingServerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new MlflowTrackingServer("example", MlflowTrackingServerArgs.builder()
.trackingServerName("example")
.roleArn(exampleAwsIamRole.arn())
.artifactStoreUri(String.format("s3://%s/path", exampleAwsS3Bucket.bucket()))
.build());
}
}
resources:
example:
type: aws:sagemaker:MlflowTrackingServer
properties:
trackingServerName: example
roleArn: ${exampleAwsIamRole.arn}
artifactStoreUri: s3://${exampleAwsS3Bucket.bucket}/path
Create MlflowTrackingServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MlflowTrackingServer(name: string, args: MlflowTrackingServerArgs, opts?: CustomResourceOptions);
@overload
def MlflowTrackingServer(resource_name: str,
args: MlflowTrackingServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MlflowTrackingServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
artifact_store_uri: Optional[str] = None,
role_arn: Optional[str] = None,
tracking_server_name: Optional[str] = None,
automatic_model_registration: Optional[bool] = None,
mlflow_version: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tracking_server_size: Optional[str] = None,
weekly_maintenance_window_start: Optional[str] = None)
func NewMlflowTrackingServer(ctx *Context, name string, args MlflowTrackingServerArgs, opts ...ResourceOption) (*MlflowTrackingServer, error)
public MlflowTrackingServer(string name, MlflowTrackingServerArgs args, CustomResourceOptions? opts = null)
public MlflowTrackingServer(String name, MlflowTrackingServerArgs args)
public MlflowTrackingServer(String name, MlflowTrackingServerArgs args, CustomResourceOptions options)
type: aws:sagemaker:MlflowTrackingServer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MlflowTrackingServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MlflowTrackingServerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MlflowTrackingServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MlflowTrackingServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MlflowTrackingServerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var mlflowTrackingServerResource = new Aws.Sagemaker.MlflowTrackingServer("mlflowTrackingServerResource", new()
{
ArtifactStoreUri = "string",
RoleArn = "string",
TrackingServerName = "string",
AutomaticModelRegistration = false,
MlflowVersion = "string",
Tags =
{
{ "string", "string" },
},
TrackingServerSize = "string",
WeeklyMaintenanceWindowStart = "string",
});
example, err := sagemaker.NewMlflowTrackingServer(ctx, "mlflowTrackingServerResource", &sagemaker.MlflowTrackingServerArgs{
ArtifactStoreUri: pulumi.String("string"),
RoleArn: pulumi.String("string"),
TrackingServerName: pulumi.String("string"),
AutomaticModelRegistration: pulumi.Bool(false),
MlflowVersion: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TrackingServerSize: pulumi.String("string"),
WeeklyMaintenanceWindowStart: pulumi.String("string"),
})
var mlflowTrackingServerResource = new MlflowTrackingServer("mlflowTrackingServerResource", MlflowTrackingServerArgs.builder()
.artifactStoreUri("string")
.roleArn("string")
.trackingServerName("string")
.automaticModelRegistration(false)
.mlflowVersion("string")
.tags(Map.of("string", "string"))
.trackingServerSize("string")
.weeklyMaintenanceWindowStart("string")
.build());
mlflow_tracking_server_resource = aws.sagemaker.MlflowTrackingServer("mlflowTrackingServerResource",
artifact_store_uri="string",
role_arn="string",
tracking_server_name="string",
automatic_model_registration=False,
mlflow_version="string",
tags={
"string": "string",
},
tracking_server_size="string",
weekly_maintenance_window_start="string")
const mlflowTrackingServerResource = new aws.sagemaker.MlflowTrackingServer("mlflowTrackingServerResource", {
artifactStoreUri: "string",
roleArn: "string",
trackingServerName: "string",
automaticModelRegistration: false,
mlflowVersion: "string",
tags: {
string: "string",
},
trackingServerSize: "string",
weeklyMaintenanceWindowStart: "string",
});
type: aws:sagemaker:MlflowTrackingServer
properties:
artifactStoreUri: string
automaticModelRegistration: false
mlflowVersion: string
roleArn: string
tags:
string: string
trackingServerName: string
trackingServerSize: string
weeklyMaintenanceWindowStart: string
MlflowTrackingServer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MlflowTrackingServer resource accepts the following input properties:
- Artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- Role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- Automatic
Model boolRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- Mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- Weekly
Maintenance stringWindow Start - 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.
- Artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- Role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- Automatic
Model boolRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- Mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- Weekly
Maintenance stringWindow Start - 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.
- artifact
Store StringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- role
Arn String - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- tracking
Server StringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- automatic
Model BooleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version String - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - tracking
Server StringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- weekly
Maintenance StringWindow Start - 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.
- artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- automatic
Model booleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- weekly
Maintenance stringWindow Start - 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.
- artifact_
store_ struri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- role_
arn str - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- tracking_
server_ strname - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- automatic_
model_ boolregistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow_
version str - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - tracking_
server_ strsize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- weekly_
maintenance_ strwindow_ start - 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.
- artifact
Store StringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- role
Arn String - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- tracking
Server StringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- automatic
Model BooleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version String - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - tracking
Server StringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- weekly
Maintenance StringWindow Start - 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the MlflowTrackingServer resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- Arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- arn String
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server StringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- arn str
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking_
server_ strurl - The URL to connect to the MLflow user interface for the described tracking server.
- arn String
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server StringUrl - The URL to connect to the MLflow user interface for the described tracking server.
Look up Existing MlflowTrackingServer Resource
Get an existing MlflowTrackingServer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MlflowTrackingServerState, opts?: CustomResourceOptions): MlflowTrackingServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
artifact_store_uri: Optional[str] = None,
automatic_model_registration: Optional[bool] = None,
mlflow_version: Optional[str] = None,
role_arn: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
tracking_server_name: Optional[str] = None,
tracking_server_size: Optional[str] = None,
tracking_server_url: Optional[str] = None,
weekly_maintenance_window_start: Optional[str] = None) -> MlflowTrackingServer
func GetMlflowTrackingServer(ctx *Context, name string, id IDInput, state *MlflowTrackingServerState, opts ...ResourceOption) (*MlflowTrackingServer, error)
public static MlflowTrackingServer Get(string name, Input<string> id, MlflowTrackingServerState? state, CustomResourceOptions? opts = null)
public static MlflowTrackingServer get(String name, Output<String> id, MlflowTrackingServerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- Artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- Automatic
Model boolRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- Mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- Tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- Tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- Weekly
Maintenance stringWindow Start - 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.
- Arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- Artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- Automatic
Model boolRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- Mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- Role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- Tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- Tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- Weekly
Maintenance stringWindow Start - 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.
- arn String
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- artifact
Store StringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- automatic
Model BooleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version String - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- role
Arn String - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server StringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- tracking
Server StringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- tracking
Server StringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- weekly
Maintenance StringWindow Start - 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.
- arn string
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- artifact
Store stringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- automatic
Model booleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version string - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- role
Arn string - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server stringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- tracking
Server stringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- tracking
Server stringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- weekly
Maintenance stringWindow Start - 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.
- arn str
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- artifact_
store_ struri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- automatic_
model_ boolregistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow_
version str - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- role_
arn str - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking_
server_ strname - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- tracking_
server_ strsize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- tracking_
server_ strurl - The URL to connect to the MLflow user interface for the described tracking server.
- weekly_
maintenance_ strwindow_ start - 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.
- arn String
- The Amazon Resource Name (ARN) assigned by AWS to this MLFlow Tracking Server.
- artifact
Store StringUri - The S3 URI for a general purpose bucket to use as the MLflow Tracking Server artifact store.
- automatic
Model BooleanRegistration - A list of Member Definitions that contains objects that identify the workers that make up the work team.
- mlflow
Version String - The version of MLflow that the tracking server uses. To see which MLflow versions are available to use, see How it works.
- role
Arn String - The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow Tracking Server uses to access the artifact store in Amazon S3. The role should have AmazonS3FullAccess permissions. For more information on IAM permissions for tracking server creation, see Set up IAM permissions for MLflow.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - tracking
Server StringName - A unique string identifying the tracking server name. This string is part of the tracking server ARN.
- tracking
Server StringSize - The size of the tracking server you want to create. You can choose between "Small", "Medium", and "Large". The default MLflow Tracking Server configuration size is "Small". You can choose a size depending on the projected use of the tracking server such as the volume of data logged, number of users, and frequency of use.
- tracking
Server StringUrl - The URL to connect to the MLflow user interface for the described tracking server.
- weekly
Maintenance StringWindow Start - 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.
Import
Using pulumi import
, import SageMaker MLFlow Tracking Servers using the workteam_name
. For example:
$ pulumi import aws:sagemaker/mlflowTrackingServer:MlflowTrackingServer example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.