com.pulumi.aws.eks.kotlin.outputs.AddonPodIdentityAssociation.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.eks.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property roleArn The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity agent manages credentials to assume this role for applications in the containers in the pods that use this service account.
* @property serviceAccount The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.
*/
public data class AddonPodIdentityAssociation(
public val roleArn: String,
public val serviceAccount: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.eks.outputs.AddonPodIdentityAssociation): AddonPodIdentityAssociation = AddonPodIdentityAssociation(
roleArn = javaType.roleArn(),
serviceAccount = javaType.serviceAccount(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy