Class CfnExport.DataQueryProperty
The SQL query of column selections and row filters from the data table you want.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BCMDataExports
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnExport.DataQueryProperty : CfnExport.IDataQueryProperty
Syntax (vb)
Public Class CfnExport.DataQueryProperty Implements CfnExport.IDataQueryProperty
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.AWS.BCMDataExports;
var dataQueryProperty = new DataQueryProperty {
QueryStatement = "queryStatement",
// the properties below are optional
TableConfigurations = new Dictionary<string, object> {
{ "tableConfigurationsKey", new Dictionary<string, string> {
{ "tableConfigurationsKey", "tableConfigurations" }
} }
}
};
Synopsis
Constructors
| DataQueryProperty() | The SQL query of column selections and row filters from the data table you want. |
Properties
| QueryStatement | The query statement. |
| TableConfigurations | The table configuration. |
Constructors
DataQueryProperty()
The SQL query of column selections and row filters from the data table you want.
public DataQueryProperty()
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.AWS.BCMDataExports;
var dataQueryProperty = new DataQueryProperty {
QueryStatement = "queryStatement",
// the properties below are optional
TableConfigurations = new Dictionary<string, object> {
{ "tableConfigurationsKey", new Dictionary<string, string> {
{ "tableConfigurationsKey", "tableConfigurations" }
} }
}
};
Properties
QueryStatement
The query statement.
public string QueryStatement { get; set; }
Property Value
Remarks
TableConfigurations
The table configuration.
public object? TableConfigurations { get; set; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, either Dictionary<string, string> or IResolvable>