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

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

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

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

import com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupSourcePlainArgs.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 GetTransitGatewayMulticastGroupSourcePlainArgs(
    public val groupIpAddress: String,
    public val networkInterfaceId: String,
    public val transitGatewayMulticastDomainId: String,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupSourcePlainArgs =
        com.pulumi.awsnative.ec2.inputs.GetTransitGatewayMulticastGroupSourcePlainArgs.builder()
            .groupIpAddress(groupIpAddress.let({ args0 -> args0 }))
            .networkInterfaceId(networkInterfaceId.let({ args0 -> args0 }))
            .transitGatewayMulticastDomainId(transitGatewayMulticastDomainId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetTransitGatewayMulticastGroupSourcePlainArgs].
 */
@PulumiTagMarker
public class GetTransitGatewayMulticastGroupSourcePlainArgsBuilder 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("tctwgmckreaybfmq")
    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("bhrkxpsmqrnujleb")
    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("ogincexxllknaywq")
    public suspend fun transitGatewayMulticastDomainId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.transitGatewayMulticastDomainId = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy