com.pulumi.awsnative.s3.kotlin.inputs.StorageLensAwsOrgArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.s3.kotlin.inputs
import com.pulumi.awsnative.s3.inputs.StorageLensAwsOrgArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The AWS Organizations ARN to use in the Amazon S3 Storage Lens configuration.
* @property arn This resource contains the ARN of the AWS Organization.
*/
public data class StorageLensAwsOrgArgs(
public val arn: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.s3.inputs.StorageLensAwsOrgArgs =
com.pulumi.awsnative.s3.inputs.StorageLensAwsOrgArgs.builder()
.arn(arn.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StorageLensAwsOrgArgs].
*/
@PulumiTagMarker
public class StorageLensAwsOrgArgsBuilder internal constructor() {
private var arn: Output? = null
/**
* @param value This resource contains the ARN of the AWS Organization.
*/
@JvmName("eteiqrphjamoygsj")
public suspend fun arn(`value`: Output) {
this.arn = value
}
/**
* @param value This resource contains the ARN of the AWS Organization.
*/
@JvmName("mojgyybskvvyjadd")
public suspend fun arn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.arn = mapped
}
internal fun build(): StorageLensAwsOrgArgs = StorageLensAwsOrgArgs(
arn = arn ?: throw PulumiNullFieldException("arn"),
)
}