com.pulumi.aws.glue.kotlin.outputs.CrawlerIcebergTarget.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.glue.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property connectionName The name of the connection to use to connect to the Iceberg target.
* @property exclusions A list of glob patterns used to exclude from the crawl.
* @property maximumTraversalDepth The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path. Used to limit the crawler run time. Valid values are between `1` and `20`.
* @property paths One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix.
*/
public data class CrawlerIcebergTarget(
public val connectionName: String? = null,
public val exclusions: List? = null,
public val maximumTraversalDepth: Int,
public val paths: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.glue.outputs.CrawlerIcebergTarget): CrawlerIcebergTarget = CrawlerIcebergTarget(
connectionName = javaType.connectionName().map({ args0 -> args0 }).orElse(null),
exclusions = javaType.exclusions().map({ args0 -> args0 }),
maximumTraversalDepth = javaType.maximumTraversalDepth(),
paths = javaType.paths().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy