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

com.pulumi.awsnative.ec2.kotlin.inputs.GetTransitGatewayMulticastGroupMemberPlainArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ec2.kotlin.inputs

import com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupMemberPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property groupIpAddress The IP address assigned to the transit gateway multicast group.
 * @property networkInterfaceId The ID of the transit gateway attachment.
 * @property transitGatewayMulticastDomainId The ID of the transit gateway multicast domain.
 */
public data class GetTransitGatewayMulticastGroupMemberPlainArgs(
    public val groupIpAddress: String,
    public val networkInterfaceId: String,
    public val transitGatewayMulticastDomainId: String,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupMemberPlainArgs =
        com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupMemberPlainArgs.builder()
            .groupIpAddress(groupIpAddress.let({ args0 -> args0 }))
            .networkInterfaceId(networkInterfaceId.let({ args0 -> args0 }))
            .transitGatewayMulticastDomainId(transitGatewayMulticastDomainId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetTransitGatewayMulticastGroupMemberPlainArgs].
 */
@PulumiTagMarker
public class GetTransitGatewayMulticastGroupMemberPlainArgsBuilder internal constructor() {
    private var groupIpAddress: String? = null

    private var networkInterfaceId: String? = null

    private var transitGatewayMulticastDomainId: String? = null

    /**
     * @param value The IP address assigned to the transit gateway multicast group.
     */
    @JvmName("myhlbjhrwxlupmor")
    public suspend fun groupIpAddress(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.groupIpAddress = mapped
    }

    /**
     * @param value The ID of the transit gateway attachment.
     */
    @JvmName("ufqtehtlcmxmifdn")
    public suspend fun networkInterfaceId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.networkInterfaceId = mapped
    }

    /**
     * @param value The ID of the transit gateway multicast domain.
     */
    @JvmName("iipvnbxpyouiwcwt")
    public suspend fun transitGatewayMulticastDomainId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.transitGatewayMulticastDomainId = mapped
    }

    internal fun build(): GetTransitGatewayMulticastGroupMemberPlainArgs =
        GetTransitGatewayMulticastGroupMemberPlainArgs(
            groupIpAddress = groupIpAddress ?: throw PulumiNullFieldException("groupIpAddress"),
            networkInterfaceId = networkInterfaceId ?: throw PulumiNullFieldException("networkInterfaceId"),
            transitGatewayMulticastDomainId = transitGatewayMulticastDomainId ?: throw
                PulumiNullFieldException("transitGatewayMulticastDomainId"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy