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

com.pulumi.awsnative.ec2.kotlin.TransitGatewayMulticastGroupMemberArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.ec2.kotlin

import com.pulumi.awsnative.ec2.TransitGatewayMulticastGroupMemberArgs.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.jvm.JvmName

/**
 * The AWS::EC2::TransitGatewayMulticastGroupMember registers and deregisters members and sources (network interfaces) with the transit gateway multicast group
 * @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 TransitGatewayMulticastGroupMemberArgs(
    public val groupIpAddress: Output? = null,
    public val networkInterfaceId: Output? = null,
    public val transitGatewayMulticastDomainId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.TransitGatewayMulticastGroupMemberArgs =
        com.pulumi.awsnative.ec2.TransitGatewayMulticastGroupMemberArgs.builder()
            .groupIpAddress(groupIpAddress?.applyValue({ args0 -> args0 }))
            .networkInterfaceId(networkInterfaceId?.applyValue({ args0 -> args0 }))
            .transitGatewayMulticastDomainId(
                transitGatewayMulticastDomainId?.applyValue({ args0 ->
                    args0
                }),
            ).build()
}

/**
 * Builder for [TransitGatewayMulticastGroupMemberArgs].
 */
@PulumiTagMarker
public class TransitGatewayMulticastGroupMemberArgsBuilder internal constructor() {
    private var groupIpAddress: Output? = null

    private var networkInterfaceId: Output? = null

    private var transitGatewayMulticastDomainId: Output? = null

    /**
     * @param value The IP address assigned to the transit gateway multicast group.
     */
    @JvmName("tlhjxxttmfjycgwy")
    public suspend fun groupIpAddress(`value`: Output) {
        this.groupIpAddress = value
    }

    /**
     * @param value The ID of the transit gateway attachment.
     */
    @JvmName("woepoumsunmhihrg")
    public suspend fun networkInterfaceId(`value`: Output) {
        this.networkInterfaceId = value
    }

    /**
     * @param value The ID of the transit gateway multicast domain.
     */
    @JvmName("aaksyjyohswwxsjk")
    public suspend fun transitGatewayMulticastDomainId(`value`: Output) {
        this.transitGatewayMulticastDomainId = value
    }

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

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

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

    internal fun build(): TransitGatewayMulticastGroupMemberArgs =
        TransitGatewayMulticastGroupMemberArgs(
            groupIpAddress = groupIpAddress,
            networkInterfaceId = networkInterfaceId,
            transitGatewayMulticastDomainId = transitGatewayMulticastDomainId,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy