Interface CfnDatasetPropsMixin.IDatabaseInputDefinitionProperty
Connection information for dataset input files stored in a database.
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDatasetPropsMixin.IDatabaseInputDefinitionProperty
Syntax (vb)
Public Interface CfnDatasetPropsMixin.IDatabaseInputDefinitionProperty
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.Mixins.Preview.AWS.DataBrew.Mixins;
var databaseInputDefinitionProperty = new DatabaseInputDefinitionProperty {
DatabaseTableName = "databaseTableName",
GlueConnectionName = "glueConnectionName",
QueryString = "queryString",
TempDirectory = new S3LocationProperty {
Bucket = "bucket",
BucketOwner = "bucketOwner",
Key = "key"
}
};
Synopsis
Properties
| DatabaseTableName | The table within the target database. |
| GlueConnectionName | The AWS Glue Connection that stores the connection information for the target database. |
| QueryString | Custom SQL to run against the provided AWS Glue connection. |
| TempDirectory | An Amazon location that AWS Glue Data Catalog can use as a temporary directory. |
Properties
DatabaseTableName
The table within the target database.
string? DatabaseTableName { get; }
Property Value
Remarks
GlueConnectionName
The AWS Glue Connection that stores the connection information for the target database.
string? GlueConnectionName { get; }
Property Value
Remarks
QueryString
Custom SQL to run against the provided AWS Glue connection.
string? QueryString { get; }
Property Value
Remarks
This SQL will be used as the input for DataBrew projects and jobs.
TempDirectory
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.
object? TempDirectory { get; }