interface RedshiftQueryEngineConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_RedshiftQueryEngineConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » RedshiftQueryEngineConfigurationProperty |
Contains configurations for an Amazon Redshift query engine.
Specify the type of query engine in type 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const redshiftQueryEngineConfigurationProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty = {
provisionedConfiguration: {
authConfiguration: {
databaseUser: 'databaseUser',
type: 'type',
usernamePasswordSecretArn: 'usernamePasswordSecretArn',
},
clusterIdentifier: 'clusterIdentifier',
},
serverlessConfiguration: {
authConfiguration: {
type: 'type',
usernamePasswordSecretArn: 'usernamePasswordSecretArn',
},
workgroupArn: 'workgroupArn',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| provisioned | IResolvable | Redshift | Specifies configurations for a provisioned Amazon Redshift query engine. |
| serverless | IResolvable | Redshift | Specifies configurations for a serverless Amazon Redshift query engine. |
| type? | string | The type of query engine. |
provisionedConfiguration?
Type:
IResolvable | Redshift
(optional)
Specifies configurations for a provisioned Amazon Redshift query engine.
serverlessConfiguration?
Type:
IResolvable | Redshift
(optional)
Specifies configurations for a serverless Amazon Redshift query engine.
type?
Type:
string
(optional)
The type of query engine.

.NET
Go
Java
Python
TypeScript