/* 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. */ /** * Resource Type definition for AWS::EC2::Subnet */ export interface AwsEc2Subnet { AssignIpv6AddressOnCreation?: boolean; VpcId: string; MapPublicIpOnLaunch?: boolean; NetworkAclAssociationId?: string; AvailabilityZone?: string; AvailabilityZoneId?: string; CidrBlock?: string; SubnetId?: string; Ipv6CidrBlocks?: string[]; Ipv6CidrBlock?: string; OutpostArn?: string; Ipv6Native?: boolean; EnableDns64?: boolean; PrivateDnsNameOptionsOnLaunch?: { HostnameType?: string; EnableResourceNameDnsARecord?: boolean; EnableResourceNameDnsAAAARecord?: boolean; }; Tags?: Tag[]; } export interface Tag { Value: string; Key: string; }