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

com.pulumi.awsnative.lookoutmetrics.kotlin.outputs.AnomalyDetectorS3SourceConfig.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.lookoutmetrics.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property fileFormatDescriptor Contains information about a source file's formatting.
 * @property historicalDataPathList A list of paths to the historical data files.
 * @property roleArn The ARN of an IAM role that has read and write access permissions to the source S3 bucket.
 * @property templatedPathList A list of templated paths to the source files.
 */
public data class AnomalyDetectorS3SourceConfig(
    public val fileFormatDescriptor: AnomalyDetectorFileFormatDescriptor,
    public val historicalDataPathList: List? = null,
    public val roleArn: String,
    public val templatedPathList: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.lookoutmetrics.outputs.AnomalyDetectorS3SourceConfig): AnomalyDetectorS3SourceConfig = AnomalyDetectorS3SourceConfig(
            fileFormatDescriptor = javaType.fileFormatDescriptor().let({ args0 ->
                com.pulumi.awsnative.lookoutmetrics.kotlin.outputs.AnomalyDetectorFileFormatDescriptor.Companion.toKotlin(args0)
            }),
            historicalDataPathList = javaType.historicalDataPathList().map({ args0 -> args0 }),
            roleArn = javaType.roleArn(),
            templatedPathList = javaType.templatedPathList().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy