interface SqlConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Kendra.CfnDataSource.SqlConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_SqlConfigurationProperty |
Java | software.amazon.awscdk.services.kendra.CfnDataSource.SqlConfigurationProperty |
Python | aws_cdk.aws_kendra.CfnDataSource.SqlConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kendra » CfnDataSource » SqlConfigurationProperty |
Provides information that configures Amazon Kendra to use a SQL database.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from 'aws-cdk-lib';
const sqlConfigurationProperty: kendra.CfnDataSource.SqlConfigurationProperty = {
queryIdentifiersEnclosingOption: 'queryIdentifiersEnclosingOption',
};
Properties
Name | Type | Description |
---|---|---|
query | string | Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query. |
queryIdentifiersEnclosingOption?
Type:
string
(optional)
Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.
You can set the value to DOUBLE_QUOTES
or NONE
.
By default, Amazon Kendra passes SQL identifiers the way that they are entered into the data source configuration. It does not change the case of identifiers or enclose them in quotes.
PostgreSQL internally converts uppercase characters to lower case characters in identifiers unless they are quoted. Choosing this option encloses identifiers in quotes so that PostgreSQL does not convert the character's case.
For MySQL databases, you must enable the ansi_quotes option when you set this field to DOUBLE_QUOTES
.