Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.awsnative.iam.kotlin
import com.pulumi.awsnative.iam.OidcProviderArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::IAM::OIDCProvider
* @property clientIdList A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see [CreateOpenIDConnectProvider](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html) .
* @property tags A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see [Tagging IAM resources](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html) in the *IAM User Guide* .
* @property thumbprintList A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see [CreateOpenIDConnectProvider](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html) .
* @property url The URL that the IAM OIDC provider resource object is associated with. For more information, see [CreateOpenIDConnectProvider](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html) .
*/
public data class OidcProviderArgs(
public val clientIdList: Output>? = null,
public val tags: Output>? = null,
public val thumbprintList: Output>? = null,
public val url: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iam.OidcProviderArgs =
com.pulumi.awsnative.iam.OidcProviderArgs.builder()
.clientIdList(clientIdList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.thumbprintList(thumbprintList?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.url(url?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OidcProviderArgs].
*/
@PulumiTagMarker
public class OidcProviderArgsBuilder internal constructor() {
private var clientIdList: Output>? = null
private var tags: Output>? = null
private var thumbprintList: Output>? = null
private var url: Output? = null
/**
* @param value A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see [CreateOpenIDConnectProvider](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html) .
*/
@JvmName("vripmwpoebntujoh")
public suspend fun clientIdList(`value`: Output>) {
this.clientIdList = value
}
@JvmName("potftrdinhdnbucm")
public suspend fun clientIdList(vararg values: Output) {
this.clientIdList = Output.all(values.asList())
}
/**
* @param values A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see [CreateOpenIDConnectProvider](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html) .
*/
@JvmName("ipoptfobulmyvkno")
public suspend fun clientIdList(values: List