typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
35 lines (34 loc) • 1.64 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type PreparedStatement_Type = 'AWS::Athena::PreparedStatement';
export declare const PreparedStatement_Type = "AWS::Athena::PreparedStatement";
/**
* Resource schema for AWS::Athena::PreparedStatement {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html}
*/
export default function PreparedStatement(props: PreparedStatement_Properties): CfnResource<PreparedStatement_Properties>;
/**
* Resource schema for AWS::Athena::PreparedStatement {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html}
*/
export declare type PreparedStatement_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-statementname}
*/
StatementName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-workgroup}
*/
WorkGroup: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-querystatement}
*/
QueryStatement: Resolvable<string>;
};