Show / Hide Table of Contents

Class NamedQueryArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NamedQueryArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Athena
Assembly: Pulumi.Aws.dll
Syntax
public sealed class NamedQueryArgs : ResourceArgs

Constructors

View Source

NamedQueryArgs()

Declaration
public NamedQueryArgs()

Properties

View Source

Database

The database to which the query belongs.

Declaration
public Input<string> Database { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

A brief explanation of the query. Maximum length of 1024.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The plain language name for the query. Maximum length of 128.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Query

The text of the query itself. In other words, all query statements. Maximum length of 262144.

Declaration
public Input<string> Query { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Workgroup

The workgroup to which the query belongs. Defaults to primary

Declaration
public Input<string> Workgroup { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.