com.pulumi.awsnative.s3.kotlin.outputs.StorageLensAwsOrg.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.outputs
import kotlin.String
import kotlin.Suppress
/**
* 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 StorageLensAwsOrg(
public val arn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.StorageLensAwsOrg): StorageLensAwsOrg = StorageLensAwsOrg(
arn = javaType.arn(),
)
}
}