CfnNamedQueryMixinProps
- class aws_cdk.mixins_preview.aws_athena.mixins.CfnNamedQueryMixinProps(*, database=None, description=None, name=None, query_string=None, work_group=None)
Bases:
objectProperties for CfnNamedQueryPropsMixin.
- Parameters:
database (
Optional[str]) – The database to which the query belongs.description (
Optional[str]) – The query description.name (
Optional[str]) – The query name.query_string (
Optional[str]) – The SQL statements that make up the query.work_group (
Optional[str]) – The name of the workgroup that contains the named query.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.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_named_query_mixin_props = athena_mixins.CfnNamedQueryMixinProps( database="database", description="description", name="name", query_string="queryString", work_group="workGroup" )
Attributes
- database
The database to which the query belongs.
- description
The query description.
- name
The query name.
- query_string
The SQL statements that make up the query.
- work_group
The name of the workgroup that contains the named query.