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

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

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

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

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * S3 buckets and Regions to include/exclude in the Amazon S3 Storage Lens configuration.
 * @property buckets This property contains the details of the buckets for the Amazon S3 Storage Lens configuration. This should be the bucket Amazon Resource Name(ARN). For valid values, see [Buckets ARN format here](https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_Include.html#API_control_Include_Contents) in the *Amazon S3 API Reference* .
 * @property regions This property contains the details of the Regions for the S3 Storage Lens configuration.
 */
public data class StorageLensBucketsAndRegions(
    public val buckets: List? = null,
    public val regions: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.StorageLensBucketsAndRegions): StorageLensBucketsAndRegions = StorageLensBucketsAndRegions(
            buckets = javaType.buckets().map({ args0 -> args0 }),
            regions = javaType.regions().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy