interface CfnNamedQueryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Athena.CfnNamedQueryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsathena#CfnNamedQueryMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.athena.CfnNamedQueryMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_athena.CfnNamedQueryMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_athena » CfnNamedQueryMixinProps |
Properties for CfnNamedQueryPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_athena as athena } from '@aws-cdk/cfn-property-mixins';
const cfnNamedQueryMixinProps: athena.CfnNamedQueryMixinProps = {
database: 'database',
description: 'description',
name: 'name',
queryString: 'queryString',
workGroup: 'workGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| database? | string | The database to which the query belongs. |
| description? | string | The query description. |
| name? | string | The query name. |
| query | string | The SQL statements that make up the query. |
| work | string | IWork | The name of the workgroup that contains the named query. |
database?
Type:
string
(optional)
The database to which the query belongs.
description?
Type:
string
(optional)
The query description.
name?
Type:
string
(optional)
The query name.
queryString?
Type:
string
(optional)
The SQL statements that make up the query.
workGroup?
Type:
string | IWork
(optional)
The name of the workgroup that contains the named query.

.NET
Go
Java
Python
TypeScript