TransitGatewayMulticastGroupSourceReference

class aws_cdk.aws_ec2.TransitGatewayMulticastGroupSourceReference(*, group_ip_address, network_interface_id, transit_gateway_multicast_domain_id)

Bases: object

A reference to a TransitGatewayMulticastGroupSource resource.

Parameters:
  • group_ip_address (str) – The GroupIpAddress of the TransitGatewayMulticastGroupSource resource.

  • network_interface_id (str) – The NetworkInterfaceId of the TransitGatewayMulticastGroupSource resource.

  • transit_gateway_multicast_domain_id (str) – The TransitGatewayMulticastDomainId of the TransitGatewayMulticastGroupSource resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

transit_gateway_multicast_group_source_reference = ec2.TransitGatewayMulticastGroupSourceReference(
    group_ip_address="groupIpAddress",
    network_interface_id="networkInterfaceId",
    transit_gateway_multicast_domain_id="transitGatewayMulticastDomainId"
)

Attributes

group_ip_address

The GroupIpAddress of the TransitGatewayMulticastGroupSource resource.

network_interface_id

The NetworkInterfaceId of the TransitGatewayMulticastGroupSource resource.

transit_gateway_multicast_domain_id

The TransitGatewayMulticastDomainId of the TransitGatewayMulticastGroupSource resource.