CfnMlflowAppMixinProps

class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnMlflowAppMixinProps(*, artifact_store_uri=None, model_registration_mode=None, name=None, role_arn=None, tags=None, weekly_maintenance_window_start=None)

Bases: object

Properties for CfnMlflowAppPropsMixin.

Parameters:
  • artifact_store_uri (Optional[str]) – The S3 URI for a general purpose bucket to use as the MLflow App artifact store.

  • model_registration_mode (Optional[str]) – Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.

  • name (Optional[str]) – The name of the MLflow App.

  • role_arn (Optional[str]) – 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.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to associate with the MLflow App.

  • weekly_maintenance_window_start (Optional[str]) – 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_sagemaker as sagemaker

cfn_mlflow_app_mixin_props = sagemaker.CfnMlflowAppMixinProps(
    artifact_store_uri="artifactStoreUri",
    model_registration_mode="modelRegistrationMode",
    name="name",
    role_arn="roleArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    weekly_maintenance_window_start="weeklyMaintenanceWindowStart"
)

Attributes

artifact_store_uri

The S3 URI for a general purpose bucket to use as the MLflow App artifact store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-artifactstoreuri

model_registration_mode

Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-modelregistrationmode

name

The name of the MLflow App.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-name

role_arn

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-rolearn

tags

Tags to associate with the MLflow App.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-tags

weekly_maintenance_window_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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowapp.html#cfn-sagemaker-mlflowapp-weeklymaintenancewindowstart