CfnTransitGatewayMulticastGroupSourceMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastGroupSourceMixinProps(*, group_ip_address=None, network_interface_id=None, transit_gateway_multicast_domain_id=None)
Bases:
objectProperties for CfnTransitGatewayMulticastGroupSourcePropsMixin.
- Parameters:
group_ip_address (
Optional[str]) – The IP address assigned to the transit gateway multicast group.network_interface_id (
Optional[str]) – The group sources’ network interface IDs to register with the transit gateway multicast group.transit_gateway_multicast_domain_id (
Optional[str]) – The ID of the transit gateway multicast domain.
- See:
- 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.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_transit_gateway_multicast_group_source_mixin_props = ec2_mixins.CfnTransitGatewayMulticastGroupSourceMixinProps( 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.