interface RedshiftProvisionedConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.RedshiftProvisionedConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_RedshiftProvisionedConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.RedshiftProvisionedConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.RedshiftProvisionedConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnKnowledgeBasePropsMixin » 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/cfn-property-mixins';
const redshiftProvisionedConfigurationProperty: bedrock.CfnKnowledgeBasePropsMixin.RedshiftProvisionedConfigurationProperty = {
authConfiguration: {
databaseUser: 'databaseUser',
type: 'type',
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
(optional)
Specifies configurations for authentication to Amazon Redshift.
clusterIdentifier?
Type:
string
(optional)
The ID of the Amazon Redshift cluster.

.NET
Go
Java
Python
TypeScript