interface TransitGatewayMulticastGroupSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.TransitGatewayMulticastGroupSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#TransitGatewayMulticastGroupSourceReference |
Java | software.amazon.awscdk.interfaces.ec2.TransitGatewayMulticastGroupSourceReference |
Python | aws_cdk.interfaces.aws_ec2.TransitGatewayMulticastGroupSourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » TransitGatewayMulticastGroupSourceReference |
A reference to a TransitGatewayMulticastGroupSource resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_aws_ec2 } from 'aws-cdk-lib/interfaces';
const transitGatewayMulticastGroupSourceReference: interfaces_aws_ec2.TransitGatewayMulticastGroupSourceReference = {
groupIpAddress: 'groupIpAddress',
networkInterfaceId: 'networkInterfaceId',
transitGatewayMulticastDomainId: 'transitGatewayMulticastDomainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The GroupIpAddress of the TransitGatewayMulticastGroupSource resource. |
| network | string | The NetworkInterfaceId of the TransitGatewayMulticastGroupSource resource. |
| transit | string | The TransitGatewayMulticastDomainId of the TransitGatewayMulticastGroupSource resource. |
groupIpAddress
Type:
string
The GroupIpAddress of the TransitGatewayMulticastGroupSource resource.
networkInterfaceId
Type:
string
The NetworkInterfaceId of the TransitGatewayMulticastGroupSource resource.
transitGatewayMulticastDomainId
Type:
string
The TransitGatewayMulticastDomainId of the TransitGatewayMulticastGroupSource resource.

.NET
Go
Java
Python
TypeScript