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

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

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

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

import com.pulumi.awsnative.sagemaker.kotlin.enums.DataQualityJobDefinitionEndpointInputS3DataDistributionType
import com.pulumi.awsnative.sagemaker.kotlin.enums.DataQualityJobDefinitionEndpointInputS3InputMode
import kotlin.String
import kotlin.Suppress

/**
 * The endpoint for a monitoring job.
 * @property endpointName An endpoint in customer's account which has enabled `DataCaptureConfig` enabled.
 * @property excludeFeaturesAttribute Indexes or names of the features to be excluded from analysis
 * @property localPath Path to the filesystem where the endpoint data is available to the container.
 * @property s3DataDistributionType Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
 * @property s3InputMode Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
 */
public data class DataQualityJobDefinitionEndpointInput(
    public val endpointName: String,
    public val excludeFeaturesAttribute: String? = null,
    public val localPath: String,
    public val s3DataDistributionType: DataQualityJobDefinitionEndpointInputS3DataDistributionType? =
        null,
    public val s3InputMode: DataQualityJobDefinitionEndpointInputS3InputMode? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.DataQualityJobDefinitionEndpointInput): DataQualityJobDefinitionEndpointInput = DataQualityJobDefinitionEndpointInput(
            endpointName = javaType.endpointName(),
            excludeFeaturesAttribute = javaType.excludeFeaturesAttribute().map({ args0 -> args0 }).orElse(null),
            localPath = javaType.localPath(),
            s3DataDistributionType = javaType.s3DataDistributionType().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.sagemaker.kotlin.enums.DataQualityJobDefinitionEndpointInputS3DataDistributionType.Companion.toKotlin(args0)
                })
            }).orElse(null),
            s3InputMode = javaType.s3InputMode().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.sagemaker.kotlin.enums.DataQualityJobDefinitionEndpointInputS3InputMode.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy