Interface ICfnNamedQueryMixinProps
Properties for CfnNamedQueryPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Athena
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnNamedQueryMixinProps
Syntax (vb)
Public Interface ICfnNamedQueryMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Athena;
var cfnNamedQueryMixinProps = new CfnNamedQueryMixinProps {
Database = "database",
Description = "description",
Name = "name",
QueryString = "queryString",
WorkGroup = "workGroup"
};
Synopsis
Properties
| Database | The database to which the query belongs. |
| Description | The query description. |
| Name | The query name. |
| QueryString | The SQL statements that make up the query. |
| WorkGroup | The name of the workgroup that contains the named query. |
Properties
Database
The database to which the query belongs.
string? Database { get; }
Property Value
Remarks
Description
The query description.
string? Description { get; }
Property Value
Remarks
Name
The query name.
string? Name { get; }
Property Value
Remarks
QueryString
The SQL statements that make up the query.
string? QueryString { get; }
Property Value
Remarks
WorkGroup
The name of the workgroup that contains the named query.
object? WorkGroup { get; }