interface CfnPreparedStatementMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Athena.CfnPreparedStatementMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsathena#CfnPreparedStatementMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.athena.CfnPreparedStatementMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_athena.CfnPreparedStatementMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_athena » CfnPreparedStatementMixinProps |
Properties for CfnPreparedStatementPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_athena as athena } from '@aws-cdk/cfn-property-mixins';
const cfnPreparedStatementMixinProps: athena.CfnPreparedStatementMixinProps = {
description: 'description',
queryStatement: 'queryStatement',
statementName: 'statementName',
workGroup: 'workGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the prepared statement. |
| query | string | The query string for the prepared statement. |
| statement | string | The name of the prepared statement. |
| work | string | IWork | The workgroup to which the prepared statement belongs. |
description?
Type:
string
(optional)
The description of the prepared statement.
queryStatement?
Type:
string
(optional)
The query string for the prepared statement.
statementName?
Type:
string
(optional)
The name of the prepared statement.
workGroup?
Type:
string | IWork
(optional)
The workgroup to which the prepared statement belongs.

.NET
Go
Java
Python
TypeScript