com.pulumi.aws.cloudfront.kotlin.outputs.GetOriginAccessIdentitiesResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.cloudfront.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getOriginAccessIdentities.
* @property comments
* @property iamArns Set of ARNs of the matched origin access identities.
* @property id The provider-assigned unique ID for this managed resource.
* @property ids Set of ids of the matched origin access identities.
* @property s3CanonicalUserIds Set of S3 canonical user IDs of the matched origin access identities.
*/
public data class GetOriginAccessIdentitiesResult(
public val comments: List? = null,
public val iamArns: List,
public val id: String,
public val ids: List,
public val s3CanonicalUserIds: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.cloudfront.outputs.GetOriginAccessIdentitiesResult): GetOriginAccessIdentitiesResult = GetOriginAccessIdentitiesResult(
comments = javaType.comments().map({ args0 -> args0 }),
iamArns = javaType.iamArns().map({ args0 -> args0 }),
id = javaType.id(),
ids = javaType.ids().map({ args0 -> args0 }),
s3CanonicalUserIds = javaType.s3CanonicalUserIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy