Interface CfnMlflowAppMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMlflowAppMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-07-02T13:33:01.394Z")
@Stability(Stable)
public interface CfnMlflowAppMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMlflowAppPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CfnMlflowAppMixinProps cfnMlflowAppMixinProps = CfnMlflowAppMixinProps.builder()
.artifactStoreUri("artifactStoreUri")
.modelRegistrationMode("modelRegistrationMode")
.name("name")
.roleArn("roleArn")
.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 forCfnMlflowAppMixinPropsstatic final classAn implementation forCfnMlflowAppMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe 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.default StringgetName()The name of the MLflow App.default StringThe 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:
-
getModelRegistrationMode
Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.- 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:
-
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
CfnMlflowAppMixinProps.BuilderofCfnMlflowAppMixinProps
-