interface RedshiftProvisionedConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnKnowledgeBase.RedshiftProvisionedConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_RedshiftProvisionedConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.RedshiftProvisionedConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.RedshiftProvisionedConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » RedshiftProvisionedConfigurationProperty |
Contains configurations for a provisioned Amazon Redshift query engine.
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 redshiftProvisionedConfigurationProperty: bedrock.CfnKnowledgeBase.RedshiftProvisionedConfigurationProperty = {
authConfiguration: {
type: 'type',
// the properties below are optional
databaseUser: 'databaseUser',
usernamePasswordSecretArn: 'usernamePasswordSecretArn',
},
clusterIdentifier: 'clusterIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | IResolvable | Redshift | Specifies configurations for authentication to Amazon Redshift. |
| cluster | string | The ID of the Amazon Redshift cluster. |
authConfiguration
Type:
IResolvable | Redshift
Specifies configurations for authentication to Amazon Redshift.
clusterIdentifier
Type:
string
The ID of the Amazon Redshift cluster.

.NET
Go
Java
Python
TypeScript