/* 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. */ export type NetworkFabricType = "TRANSIT_GATEWAY" | "NONE"; /** * Definition of AWS::RefactorSpaces::Environment Resource Type */ export interface AwsRefactorspacesEnvironment { Description?: string; EnvironmentIdentifier?: string; Name?: string; NetworkFabricType?: NetworkFabricType; Arn?: string; TransitGatewayId?: string; /** * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair. */ Tags?: Tag[]; } /** * A label for tagging Environment resource */ export interface Tag { /** * A string used to identify this tag */ Key: string; /** * A string containing the value for the tag */ Value: string; }