interface RedshiftQueryEngineStorageConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_bedrock.CfnKnowledgeBase.RedshiftQueryEngineStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_RedshiftQueryEngineStorageConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.RedshiftQueryEngineStorageConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.RedshiftQueryEngineStorageConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » RedshiftQueryEngineStorageConfigurationProperty |
Configurations for available Redshift query engine storage types.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const redshiftQueryEngineStorageConfigurationProperty: bedrock.CfnKnowledgeBase.RedshiftQueryEngineStorageConfigurationProperty = {
type: 'type',
// the properties below are optional
awsDataCatalogConfiguration: {
tableNames: ['tableNames'],
},
redshiftConfiguration: {
databaseName: 'databaseName',
},
};
Properties
Name | Type | Description |
---|---|---|
type | string | Redshift query engine storage type. |
aws | IResolvable | Redshift | Configurations for Redshift query engine AWS Data Catalog backed storage. |
redshift | IResolvable | Redshift | Configurations for Redshift query engine Redshift backed storage. |
type
Type:
string
Redshift query engine storage type.
awsDataCatalogConfiguration?
Type:
IResolvable
|
Redshift
(optional)
Configurations for Redshift query engine AWS Data Catalog backed storage.
redshiftConfiguration?
Type:
IResolvable
|
Redshift
(optional)
Configurations for Redshift query engine Redshift backed storage.