CfnTransitGatewayMulticastGroupSourceProps
- class aws_cdk.aws_ec2.CfnTransitGatewayMulticastGroupSourceProps(*, group_ip_address, network_interface_id, transit_gateway_multicast_domain_id)
Bases:
object
Properties for defining a
CfnTransitGatewayMulticastGroupSource
.- Parameters:
group_ip_address (
str
) – The IP address assigned to the transit gateway multicast group.network_interface_id (
str
) – The group sources’ network interface IDs to register with the transit gateway multicast group.transit_gateway_multicast_domain_id (
str
) – The ID of the transit gateway multicast domain.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ec2 as ec2 cfn_transit_gateway_multicast_group_source_props = ec2.CfnTransitGatewayMulticastGroupSourceProps( group_ip_address="groupIpAddress", network_interface_id="networkInterfaceId", transit_gateway_multicast_domain_id="transitGatewayMulticastDomainId" )
Attributes
- group_ip_address
The IP address assigned to the transit gateway multicast group.
- network_interface_id
The group sources’ network interface IDs to register with the transit gateway multicast group.
- transit_gateway_multicast_domain_id
The ID of the transit gateway multicast domain.