/* 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::ElastiCache::SubnetGroup */ export interface AwsElasticacheSubnetgroup { /** * The description for the cache subnet group. */ Description: string; /** * The EC2 subnet IDs for the cache subnet group. */ SubnetIds: string[]; /** * The name for the cache subnet group. This value is stored as a lowercase string. */ CacheSubnetGroupName?: string; Tags?: Tag[]; } /** * A tag that can be added to an ElastiCache subnet group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your subnet groups. A tag with a null Value is permitted. */ export interface Tag { Value: string; Key: string; }