All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.s3.kotlin.outputs.StorageLensGroupLevel.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.s3.kotlin.outputs

import kotlin.Suppress

/**
 * Specifies the details of Amazon S3 Storage Lens Group configuration.
 * @property storageLensGroupSelectionCriteria This property indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation. If this value is left null, then all Storage Lens groups are selected.
 */
public data class StorageLensGroupLevel(
    public val storageLensGroupSelectionCriteria: StorageLensGroupSelectionCriteria? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.StorageLensGroupLevel): StorageLensGroupLevel = StorageLensGroupLevel(
            storageLensGroupSelectionCriteria = javaType.storageLensGroupSelectionCriteria().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.s3.kotlin.outputs.StorageLensGroupSelectionCriteria.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy