Interface CfnMlflowAppProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMlflowAppProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:32.780Z")
@Stability(Stable)
public interface CfnMlflowAppProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMlflowApp.
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.*;
CfnMlflowAppProps cfnMlflowAppProps = CfnMlflowAppProps.builder()
.artifactStoreUri("artifactStoreUri")
.name("name")
.roleArn("roleArn")
// the properties below are optional
.modelRegistrationMode("modelRegistrationMode")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.weeklyMaintenanceWindowStart("weeklyMaintenanceWindowStart")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMlflowAppPropsstatic final classAn implementation forCfnMlflowAppProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMlflowAppProps.Builderbuilder()The S3 URI for a general purpose bucket to use as the MLflow App artifact store.default StringWhether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.getName()The name of the MLflow App.The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow App uses to access the artifact store in Amazon S3.getTags()Tags to associate with the MLflow App.default StringThe day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifactStoreUri
The S3 URI for a general purpose bucket to use as the MLflow App artifact store.- See Also:
-
getName
The name of the MLflow App.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow App uses to access the artifact store in Amazon S3.- See Also:
-
getModelRegistrationMode
Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.- See Also:
-
getTags
Tags to associate with the MLflow App.- See Also:
-
getWeeklyMaintenanceWindowStart
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.
- See Also:
-
builder
- Returns:
- a
CfnMlflowAppProps.BuilderofCfnMlflowAppProps
-