![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.DataSourceS3Parameters.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The parameters for S3.
* @property manifestFileLocation Location of the Amazon S3 manifest file. This is NULL if the manifest file was uploaded into Amazon QuickSight.
* @property roleArn Use the RoleArn
structure to override an account-wide role for a specific S3 data source. For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use RoleArn
to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
*/
public data class DataSourceS3Parameters(
public val manifestFileLocation: DataSourceManifestFileLocation,
public val roleArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DataSourceS3Parameters): DataSourceS3Parameters = DataSourceS3Parameters(
manifestFileLocation = javaType.manifestFileLocation().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DataSourceManifestFileLocation.Companion.toKotlin(args0)
}),
roleArn = javaType.roleArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy