![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ivs.kotlin.outputs.GetStorageConfigurationResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ivs.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn Storage Configuration ARN is automatically generated on creation and assigned as the unique identifier.
* @property tags A list of key-value pairs that contain metadata for the asset model.
*/
public data class GetStorageConfigurationResult(
public val arn: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ivs.outputs.GetStorageConfigurationResult): GetStorageConfigurationResult = GetStorageConfigurationResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy