TransitRouterMulticastDomainMemberArgs

data class TransitRouterMulticastDomainMemberArgs(val dryRun: Output<Boolean>? = null, val groupIpAddress: Output<String>? = null, val networkInterfaceId: Output<String>? = null, val transitRouterMulticastDomainId: Output<String>? = null, val vpcId: Output<String>? = null) : ConvertibleToJava<TransitRouterMulticastDomainMemberArgs>

Provides a Cen Transit Router Multicast Domain Member resource. For information about Cen Transit Router Multicast Domain Member and how to use it, see What is Transit Router Multicast Domain Member.

NOTE: Available in v1.195.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cen.TransitRouterMulticastDomainMember;
import com.pulumi.alicloud.cen.TransitRouterMulticastDomainMemberArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var default_ = new TransitRouterMulticastDomainMember("default", TransitRouterMulticastDomainMemberArgs.builder()
.groupIpAddress("239.1.1.1")
.networkInterfaceId("eni-d7o632ny4ryst9ydmt93")
.transitRouterMulticastDomainId("tr-mcast-domain-2d9oq455uk533zfr29")
.vpcId("vpc-d7oapc6waducz2ytvg6b6")
.build());
}
}

Import

Cen Transit Router Multicast Domain Member can be imported using the id, e.g.

$ pulumi import alicloud:cen/transitRouterMulticastDomainMember:TransitRouterMulticastDomainMember example <transit_router_multicast_domain_id>:<group_ip_address>:<network_interface_id>

Constructors

Link copied to clipboard
fun TransitRouterMulticastDomainMemberArgs(dryRun: Output<Boolean>? = null, groupIpAddress: Output<String>? = null, networkInterfaceId: Output<String>? = null, transitRouterMulticastDomainId: Output<String>? = null, vpcId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TransitRouterMulticastDomainMemberArgs

Properties

Link copied to clipboard
val dryRun: Output<Boolean>? = null

Specifies whether only to precheck the request.

Link copied to clipboard
val groupIpAddress: Output<String>? = null

The IP address of the multicast group to which the multicast member belongs. If the multicast group you specified does not exist in the current multicast domain, the system will automatically create a new multicast group for you in the current multicast domain.

Link copied to clipboard
val networkInterfaceId: Output<String>? = null

The ID of the ENI.

Link copied to clipboard

The ID of the multicast domain to which the multicast member belongs.

Link copied to clipboard
val vpcId: Output<String>? = null

The VPC to which the ENI of the multicast member belongs. This field is mandatory for VPCs owned by another accounts.