interface CfnPreparedStatementMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnPreparedStatementMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnPreparedStatementMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnPreparedStatementMixinProps |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnPreparedStatementMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » 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 { mixins as athena_mixins } from '@aws-cdk/mixins-preview/aws-athena';
const cfnPreparedStatementMixinProps: athena_mixins.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 | 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
(optional)
The workgroup to which the prepared statement belongs.

.NET
Go
Java
Python
TypeScript