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

com.pulumi.aws.eks.kotlin.outputs.AddonPodIdentityAssociation.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@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