Interface SqlConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SqlConfiguration.Builder,SqlConfiguration>,SdkBuilder<SqlConfiguration.Builder,SqlConfiguration>,SdkPojo
- Enclosing class:
- SqlConfiguration
public static interface SqlConfiguration.Builder extends SdkPojo, CopyableBuilder<SqlConfiguration.Builder,SqlConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlConfiguration.BuilderqueryIdentifiersEnclosingOption(String queryIdentifiersEnclosingOption)Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.SqlConfiguration.BuilderqueryIdentifiersEnclosingOption(QueryIdentifiersEnclosingOption queryIdentifiersEnclosingOption)Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
queryIdentifiersEnclosingOption
SqlConfiguration.Builder queryIdentifiersEnclosingOption(String queryIdentifiersEnclosingOption)
Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.
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_quotesoption when you set this field toDOUBLE_QUOTES.- Parameters:
queryIdentifiersEnclosingOption- Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.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_quotesoption when you set this field toDOUBLE_QUOTES.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryIdentifiersEnclosingOption,QueryIdentifiersEnclosingOption
-
queryIdentifiersEnclosingOption
SqlConfiguration.Builder queryIdentifiersEnclosingOption(QueryIdentifiersEnclosingOption queryIdentifiersEnclosingOption)
Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.
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_quotesoption when you set this field toDOUBLE_QUOTES.- Parameters:
queryIdentifiersEnclosingOption- Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (") when making a database query.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_quotesoption when you set this field toDOUBLE_QUOTES.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryIdentifiersEnclosingOption,QueryIdentifiersEnclosingOption
-
-