CfnPreparedStatementMixinProps

class aws_cdk.mixins_preview.aws_athena.mixins.CfnPreparedStatementMixinProps(*, description=None, query_statement=None, statement_name=None, work_group=None)

Bases: object

Properties for CfnPreparedStatementPropsMixin.

Parameters:
  • description (Optional[str]) – The description of the prepared statement.

  • query_statement (Optional[str]) – The query string for the prepared statement.

  • statement_name (Optional[str]) – The name of the prepared statement.

  • work_group (Optional[str]) – The workgroup to which the prepared statement belongs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html

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.mixins_preview.aws_athena import mixins as athena_mixins

cfn_prepared_statement_mixin_props = athena_mixins.CfnPreparedStatementMixinProps(
    description="description",
    query_statement="queryStatement",
    statement_name="statementName",
    work_group="workGroup"
)

Attributes

description

The description of the prepared statement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-description

query_statement

The query string for the prepared statement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-querystatement

statement_name

The name of the prepared statement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-statementname

work_group

The workgroup to which the prepared statement belongs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-preparedstatement.html#cfn-athena-preparedstatement-workgroup