/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The AWS::EC2::TransitGatewayMulticastGroupSource registers and deregisters members and sources (network interfaces) with the transit gateway multicast group */ export interface AwsEc2Transitgatewaymulticastgroupsource { /** * The IP address assigned to the transit gateway multicast group. */ GroupIpAddress: string; /** * The ID of the transit gateway attachment. */ TransitGatewayAttachmentId?: string; /** * The ID of the transit gateway multicast domain. */ TransitGatewayMulticastDomainId: string; /** * The ID of the subnet. */ SubnetId?: string; /** * The ID of the resource. */ ResourceId?: string; /** * The type of resource, for example a VPC attachment. */ ResourceType?: string; /** * The ID of the transit gateway attachment. */ NetworkInterfaceId: string; /** * Indicates that the resource is a transit gateway multicast group member. */ GroupMember?: boolean; /** * Indicates that the resource is a transit gateway multicast group member. */ GroupSource?: boolean; /** * The member type (for example, static). */ MemberType?: string; /** * The source type. */ SourceType?: string; }