![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.neptunegraph.kotlin.PrivateGraphEndpointArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.neptunegraph.kotlin
import com.pulumi.awsnative.neptunegraph.PrivateGraphEndpointArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The AWS::NeptuneGraph::PrivateGraphEndpoint resource creates an Amazon NeptuneGraph PrivateGraphEndpoint.
* @property graphIdentifier The auto-generated Graph Id assigned by the service.
* @property securityGroupIds The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.
* @property subnetIds The subnet Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.
* @property vpcId The VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.
*/
public data class PrivateGraphEndpointArgs(
public val graphIdentifier: Output? = null,
public val securityGroupIds: Output>? = null,
public val subnetIds: Output>? = null,
public val vpcId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.neptunegraph.PrivateGraphEndpointArgs =
com.pulumi.awsnative.neptunegraph.PrivateGraphEndpointArgs.builder()
.graphIdentifier(graphIdentifier?.applyValue({ args0 -> args0 }))
.securityGroupIds(securityGroupIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.subnetIds(subnetIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PrivateGraphEndpointArgs].
*/
@PulumiTagMarker
public class PrivateGraphEndpointArgsBuilder internal constructor() {
private var graphIdentifier: Output? = null
private var securityGroupIds: Output>? = null
private var subnetIds: Output>? = null
private var vpcId: Output? = null
/**
* @param value The auto-generated Graph Id assigned by the service.
*/
@JvmName("afelquggvlpyvrdl")
public suspend fun graphIdentifier(`value`: Output) {
this.graphIdentifier = value
}
/**
* @param value The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.
*/
@JvmName("lkbhtitpxbvxuibd")
public suspend fun securityGroupIds(`value`: Output>) {
this.securityGroupIds = value
}
@JvmName("bobnhgyxiepkrxos")
public suspend fun securityGroupIds(vararg values: Output) {
this.securityGroupIds = Output.all(values.asList())
}
/**
* @param values The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC.
*/
@JvmName("wqbklwepysydgbih")
public suspend fun securityGroupIds(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy