/* 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::TransitGatewayMulticastDomainAssociation type */ export interface AwsEc2Transitgatewaymulticastdomainassociation { /** * The ID of the transit gateway multicast domain. */ TransitGatewayMulticastDomainId: string; /** * The ID of the transit gateway attachment. */ TransitGatewayAttachmentId: string; /** * The ID of the resource. */ ResourceId?: string; /** * The type of resource, for example a VPC attachment. */ ResourceType?: string; /** * The state of the subnet association. */ State?: string; /** * The IDs of the subnets to associate with the transit gateway multicast domain. */ SubnetId: string; }