interface PreparedStatementReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Athena.PreparedStatementReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsathena#PreparedStatementReference |
Java | software.amazon.awscdk.interfaces.athena.PreparedStatementReference |
Python | aws_cdk.interfaces.aws_athena.PreparedStatementReference |
TypeScript | aws-cdk-lib » interfaces » aws_athena » PreparedStatementReference |
A reference to a PreparedStatement resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_athena as interfaces_athena } from 'aws-cdk-lib/interfaces';
const preparedStatementReference: interfaces_athena.PreparedStatementReference = {
statementName: 'statementName',
workGroup: 'workGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| statement | string | The StatementName of the PreparedStatement resource. |
| work | string | The WorkGroup of the PreparedStatement resource. |
statementName
Type:
string
The StatementName of the PreparedStatement resource.
workGroup
Type:
string
The WorkGroup of the PreparedStatement resource.

.NET
Go
Java
Python
TypeScript