All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.sagemaker.kotlin.outputs.InferenceExperimentRealTimeInferenceConfig.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.sagemaker.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * The infrastructure configuration for deploying the model to a real-time inference endpoint.
 * @property instanceCount The number of instances of the type specified by InstanceType.
 * @property instanceType The instance type the model is deployed to.
 */
public data class InferenceExperimentRealTimeInferenceConfig(
    public val instanceCount: Int,
    public val instanceType: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.InferenceExperimentRealTimeInferenceConfig): InferenceExperimentRealTimeInferenceConfig = InferenceExperimentRealTimeInferenceConfig(
            instanceCount = javaType.instanceCount(),
            instanceType = javaType.instanceType(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy