MDAA TS Docs
    Preparing search index...

    Configuration for a SageMaker RegisterModel step.

    interface SmRegisterModelStepProps {
        approvalStatus?: string | StepOutputReference;
        contentTypes?: string[];
        dependsOn?: string[];
        imageUri: string;
        inferenceInstanceTypes?: string[];
        modelData: string | StepOutputReference;
        modelMetricsStatisticsContentType?: string;
        modelMetricsStatisticsS3Uri?: string | StepOutputReference;
        modelPackageGroupName: string;
        responseTypes?: string[];
        transformInstanceTypes?: string[];
    }
    Index

    Properties

    approvalStatus?: string | StepOutputReference

    Initial approval status (default: "PendingManualApproval"). Can be a parameter reference.

    contentTypes?: string[]

    Supported content types for inference (e.g. ["text/csv"]).

    dependsOn?: string[]

    Explicit step dependencies.

    imageUri: string

    Container image URI for inference.

    inferenceInstanceTypes?: string[]

    Instance types supported for real-time inference.

    modelData: string | StepOutputReference

    S3 URI of the model artifacts (typically from a training step).

    modelMetricsStatisticsContentType?: string

    Content type of the model metrics file (default: "application/json").

    modelMetricsStatisticsS3Uri?: string | StepOutputReference

    Model metrics source (S3 URI or step output reference).

    modelPackageGroupName: string

    Model Package Group name.

    responseTypes?: string[]

    Supported response content types (e.g. ["text/csv"]).

    transformInstanceTypes?: string[]

    Instance types supported for batch transform.