Interface CfnMlflowTrackingServerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMlflowTrackingServerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:26.775Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMlflowTrackingServerProps
static final class
An implementation forCfnMlflowTrackingServerProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon S3 URI for MLFlow Tracking Server artifacts.default Object
A flag to enable Automatic SageMaker Model Registration.default String
The 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 String
The size of the MLFlow Tracking Server.default String
The 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.- 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
-