com.pulumi.awsnative.s3.kotlin.outputs.StorageLensPrefixLevel.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.Suppress
/**
* Prefix-level metrics configurations.
* @property storageMetrics A property for the prefix-level storage metrics for Amazon S3 Storage Lens.
*/
public data class StorageLensPrefixLevel(
public val storageMetrics: StorageLensPrefixLevelStorageMetrics,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.StorageLensPrefixLevel): StorageLensPrefixLevel = StorageLensPrefixLevel(
storageMetrics = javaType.storageMetrics().let({ args0 ->
com.pulumi.awsnative.s3.kotlin.outputs.StorageLensPrefixLevelStorageMetrics.Companion.toKotlin(args0)
}),
)
}
}