/* 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::MemoryDB::SubnetGroup resource creates an Amazon MemoryDB Subnet Group. */ export interface AwsMemorydbSubnetgroup { /** * The name of the subnet group. This value must be unique as it also serves as the subnet group identifier. */ SubnetGroupName: string; /** * An optional description of the subnet group. */ Description?: string; /** * A list of VPC subnet IDs for the subnet group. */ SubnetIds: string[]; /** * An array of key-value pairs to apply to this subnet group. * * @maxItems 50 */ Tags?: Tag[]; /** * The Amazon Resource Name (ARN) of the subnet group. */ ARN?: string; } /** * A key-value pair to associate with a resource. */ export interface Tag { /** * The key for the tag. May not be null. */ Key: string; /** * The tag's value. May be null. */ Value: string; }