interface CfnNamedQueryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnNamedQueryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnNamedQueryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnNamedQueryMixinProps |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnNamedQueryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » 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 { mixins as athena_mixins } from '@aws-cdk/mixins-preview/aws-athena';
const cfnNamedQueryMixinProps: athena_mixins.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 | 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
(optional)
The name of the workgroup that contains the named query.

.NET
Go
Java
Python
TypeScript