interface CfnTransitGatewayMulticastGroupSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayMulticastGroupSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayMulticastGroupSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayMulticastGroupSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastGroupSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnTransitGatewayMulticastGroupSourceMixinProps: ec2_mixins.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