Skip to content

Resource: awsEc2TransitGatewayMulticastGroupMember

Registers members (network interfaces) with the transit gateway multicast group. A member is a network interface associated with a supported EC2 instance that receives multicast traffic.

Example Usage

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as aws from "./.gen/providers/aws";
new aws.ec2TransitGatewayMulticastGroupMember.Ec2TransitGatewayMulticastGroupMember(
  this,
  "example",
  {
    groupIpAddress: "224.0.0.1",
    networkInterfaceId: "${aws_network_interface.example.id}",
    transitGatewayMulticastDomainId:
      "${aws_ec2_transit_gateway_multicast_domain.example.id}",
  }
);

Argument Reference

The following arguments are supported:

  • groupIpAddress - (Required) The IP address assigned to the transit gateway multicast group.
  • networkInterfaceId - (Required) The group members' network interface ID to register with the transit gateway multicast group.
  • transitGatewayMulticastDomainId - (Required) The ID of the transit gateway multicast domain.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • id - EC2 Transit Gateway Multicast Group Member identifier.