interface CfnTransitGatewayMulticastGroupMemberProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayMulticastGroupMemberProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayMulticastGroupMemberProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayMulticastGroupMemberProps |
TypeScript | @aws-cdk/aws-ec2 » CfnTransitGatewayMulticastGroupMemberProps |
Properties for defining a CfnTransitGatewayMulticastGroupMember.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnTransitGatewayMulticastGroupMemberProps: ec2.CfnTransitGatewayMulticastGroupMemberProps = {
groupIpAddress: 'groupIpAddress',
networkInterfaceId: 'networkInterfaceId',
transitGatewayMulticastDomainId: 'transitGatewayMulticastDomainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The IP address assigned to the transit gateway multicast group. |
| network | string | The group members' network interface IDs to register with the transit gateway multicast group. |
| transit | string | The ID of the transit gateway multicast domain. |
groupIpAddress
Type:
string
The IP address assigned to the transit gateway multicast group.
networkInterfaceId
Type:
string
The group members' network interface IDs to register with the transit gateway multicast group.
transitGatewayMulticastDomainId
Type:
string
The ID of the transit gateway multicast domain.

.NET
Java
Python
TypeScript