/* 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 schema for AWS::Athena::PreparedStatement */ export interface AwsAthenaPreparedstatement { /** * The name of the prepared statement. */ StatementName: string; /** * The name of the workgroup to which the prepared statement belongs. */ WorkGroup: string; /** * The description of the prepared statement. */ Description?: string; /** * The query string for the prepared statement. */ QueryStatement: string; }