Class PreparedStatementReference
A reference to a PreparedStatement resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Athena
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PreparedStatementReference : IPreparedStatementReference
Syntax (vb)
Public Class PreparedStatementReference Implements IPreparedStatementReference
Remarks
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.Interfaces.Athena;
var preparedStatementReference = new PreparedStatementReference {
StatementName = "statementName",
WorkGroup = "workGroup"
};
Synopsis
Constructors
| PreparedStatementReference() | A reference to a PreparedStatement resource. |
Properties
| StatementName | The StatementName of the PreparedStatement resource. |
| WorkGroup | The WorkGroup of the PreparedStatement resource. |
Constructors
PreparedStatementReference()
A reference to a PreparedStatement resource.
public PreparedStatementReference()
Remarks
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.Interfaces.Athena;
var preparedStatementReference = new PreparedStatementReference {
StatementName = "statementName",
WorkGroup = "workGroup"
};
Properties
StatementName
The StatementName of the PreparedStatement resource.
public string StatementName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
WorkGroup
The WorkGroup of the PreparedStatement resource.
public string WorkGroup { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated