Interface CfnMlflowTrackingServerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMlflowTrackingServerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:17.426Z")
@Stability(Stable)
public interface CfnMlflowTrackingServerProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMlflowTrackingServer.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
CfnMlflowTrackingServerProps cfnMlflowTrackingServerProps = CfnMlflowTrackingServerProps.builder()
.artifactStoreUri("artifactStoreUri")
.roleArn("roleArn")
.trackingServerName("trackingServerName")
// the properties below are optional
.automaticModelRegistration(false)
.mlflowVersion("mlflowVersion")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.trackingServerSize("trackingServerSize")
.weeklyMaintenanceWindowStart("weeklyMaintenanceWindowStart")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMlflowTrackingServerPropsstatic final classAn implementation forCfnMlflowTrackingServerProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon S3 URI for MLFlow Tracking Server artifacts.default ObjectA flag to enable Automatic SageMaker Model Registration.default StringThe MLFlow Version used on the MLFlow Tracking Server.The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.getTags()An array of key-value pairs to apply to this resource.The name of the MLFlow Tracking Server.default StringThe size of the MLFlow Tracking Server.default StringThe start of the time window for maintenance of the MLFlow Tracking Server in UTC time.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifactStoreUri
The Amazon S3 URI for MLFlow Tracking Server artifacts.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.- See Also:
-
getTrackingServerName
The name of the MLFlow Tracking Server.- See Also:
-
getAutomaticModelRegistration
A flag to enable Automatic SageMaker Model Registration.Returns union: either
BooleanorIResolvable- See Also:
-
getMlflowVersion
The MLFlow Version used on the MLFlow Tracking Server.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getTrackingServerSize
The size of the MLFlow Tracking Server.- See Also:
-
getWeeklyMaintenanceWindowStart
The start of the time window for maintenance of the MLFlow Tracking Server in UTC time.- See Also:
-
builder
-