interface RedshiftQueryEngineConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_RedshiftQueryEngineConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.RedshiftQueryEngineConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const redshiftQueryEngineConfigurationProperty: bedrock.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