com.pulumi.aws.sagemaker.kotlin.inputs.DataQualityJobDefinitionNetworkConfigVpcConfigArgs.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.sagemaker.kotlin.inputs
import com.pulumi.aws.sagemaker.inputs.DataQualityJobDefinitionNetworkConfigVpcConfigArgs.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.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property securityGroupIds The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the `subnets` field.
* @property subnets The ID of the subnets in the VPC to which you want to connect your training job or model.
*/
public data class DataQualityJobDefinitionNetworkConfigVpcConfigArgs(
public val securityGroupIds: Output>,
public val subnets: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.sagemaker.inputs.DataQualityJobDefinitionNetworkConfigVpcConfigArgs =
com.pulumi.aws.sagemaker.inputs.DataQualityJobDefinitionNetworkConfigVpcConfigArgs.builder()
.securityGroupIds(securityGroupIds.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.subnets(subnets.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DataQualityJobDefinitionNetworkConfigVpcConfigArgs].
*/
@PulumiTagMarker
public class DataQualityJobDefinitionNetworkConfigVpcConfigArgsBuilder internal constructor() {
private var securityGroupIds: Output>? = null
private var subnets: Output>? = null
/**
* @param value The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the `subnets` field.
*/
@JvmName("ksllndrhleemkcac")
public suspend fun securityGroupIds(`value`: Output>) {
this.securityGroupIds = value
}
@JvmName("betmonwwarryqdyt")
public suspend fun securityGroupIds(vararg values: Output) {
this.securityGroupIds = Output.all(values.asList())
}
/**
* @param values The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the `subnets` field.
*/
@JvmName("wbmaxbmsltpjdhhw")
public suspend fun securityGroupIds(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy