![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.hybridconnectivity.kotlin.inputs.AwsCloudProfileArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.hybridconnectivity.kotlin.inputs
import com.pulumi.azurenative.hybridconnectivity.inputs.AwsCloudProfileArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* cloud profile for AWS.
* @property accountId Account id for the AWS account.
* @property excludedAccounts List of AWS accounts which need to be excluded.
* @property isOrganizationalAccount Boolean value that indicates whether the account is organizational or not. True represents organization account, whereas false represents a single account.
*/
public data class AwsCloudProfileArgs(
public val accountId: Output,
public val excludedAccounts: Output>? = null,
public val isOrganizationalAccount: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hybridconnectivity.inputs.AwsCloudProfileArgs =
com.pulumi.azurenative.hybridconnectivity.inputs.AwsCloudProfileArgs.builder()
.accountId(accountId.applyValue({ args0 -> args0 }))
.excludedAccounts(excludedAccounts?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.isOrganizationalAccount(isOrganizationalAccount?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AwsCloudProfileArgs].
*/
@PulumiTagMarker
public class AwsCloudProfileArgsBuilder internal constructor() {
private var accountId: Output? = null
private var excludedAccounts: Output>? = null
private var isOrganizationalAccount: Output? = null
/**
* @param value Account id for the AWS account.
*/
@JvmName("lvawghnaexrxhvxo")
public suspend fun accountId(`value`: Output) {
this.accountId = value
}
/**
* @param value List of AWS accounts which need to be excluded.
*/
@JvmName("rfsocmhafokalxlk")
public suspend fun excludedAccounts(`value`: Output>) {
this.excludedAccounts = value
}
@JvmName("qojecjcesqqdauod")
public suspend fun excludedAccounts(vararg values: Output) {
this.excludedAccounts = Output.all(values.asList())
}
/**
* @param values List of AWS accounts which need to be excluded.
*/
@JvmName("oyjotcrymkiqwbyd")
public suspend fun excludedAccounts(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy