interface CfnTransitGatewayMulticastGroupSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayMulticastGroupSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayMulticastGroupSourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayMulticastGroupSourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayMulticastGroupSourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayMulticastGroupSourceMixinProps |
Properties for CfnTransitGatewayMulticastGroupSourcePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTransitGatewayMulticastGroupSourceMixinProps: ec2.CfnTransitGatewayMulticastGroupSourceMixinProps = {
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 sources' network interface IDs to register with the transit gateway multicast group. |
| transit | string | The ID of the transit gateway multicast domain. |
groupIpAddress?
Type:
string
(optional)
The IP address assigned to the transit gateway multicast group.
networkInterfaceId?
Type:
string
(optional)
The group sources' network interface IDs to register with the transit gateway multicast group.
transitGatewayMulticastDomainId?
Type:
string
(optional)
The ID of the transit gateway multicast domain.

.NET
Go
Java
Python
TypeScript