Show / Hide Table of Contents

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database

Description

The query description.

string? Description { get; }
Property Value

string

Remarks

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

Name

The query name.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name

QueryString

The SQL statements that make up the query.

string? QueryString { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring

WorkGroup

The name of the workgroup that contains the named query.

object? WorkGroup { get; }
Property Value

object

Remarks

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

Type union: either string or IWorkGroupRef

Back to top Generated by DocFX