interface RedshiftQueryEngineStorageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_RedshiftQueryEngineStorageConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineStorageConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineStorageConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnKnowledgeBasePropsMixin » RedshiftQueryEngineStorageConfigurationProperty |
Contains configurations for Amazon Redshift data storage.
Specify the data storage service to use in the type field and include the corresponding field. For more information, see Build a knowledge base by connecting to a structured data source in the Amazon Bedrock User Guide.
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/cfn-property-mixins';
const redshiftQueryEngineStorageConfigurationProperty: bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineStorageConfigurationProperty = {
awsDataCatalogConfiguration: {
tableNames: ['tableNames'],
},
redshiftConfiguration: {
databaseName: 'databaseName',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | Redshift | Specifies configurations for storage in AWS Glue Data Catalog. |
| redshift | IResolvable | Redshift | Specifies configurations for storage in Amazon Redshift. |
| type? | string | The data storage service to use. |
awsDataCatalogConfiguration?
Type:
IResolvable | Redshift
(optional)
Specifies configurations for storage in AWS Glue Data Catalog.
redshiftConfiguration?
Type:
IResolvable | Redshift
(optional)
Specifies configurations for storage in Amazon Redshift.
type?
Type:
string
(optional)
The data storage service to use.

.NET
Go
Java
Python
TypeScript