PreparedStatementReference

class aws_cdk.aws_athena.PreparedStatementReference(*, statement_name, work_group)

Bases: object

A reference to a PreparedStatement resource.

Parameters:
  • statement_name (str) – The StatementName of the PreparedStatement resource.

  • work_group (str) – The WorkGroup of the PreparedStatement resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_athena as athena

prepared_statement_reference = athena.PreparedStatementReference(
    statement_name="statementName",
    work_group="workGroup"
)

Attributes

statement_name

The StatementName of the PreparedStatement resource.

work_group

The WorkGroup of the PreparedStatement resource.