Interface CfnKnowledgeBase.RedshiftConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnKnowledgeBase.RedshiftConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.RedshiftConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for an Amazon Redshift database.
 
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 software.amazon.awscdk.services.bedrock.*;
 RedshiftConfigurationProperty redshiftConfigurationProperty = RedshiftConfigurationProperty.builder()
         .queryEngineConfiguration(RedshiftQueryEngineConfigurationProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .provisionedConfiguration(RedshiftProvisionedConfigurationProperty.builder()
                         .authConfiguration(RedshiftProvisionedAuthConfigurationProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .databaseUser("databaseUser")
                                 .usernamePasswordSecretArn("usernamePasswordSecretArn")
                                 .build())
                         .clusterIdentifier("clusterIdentifier")
                         .build())
                 .serverlessConfiguration(RedshiftServerlessConfigurationProperty.builder()
                         .authConfiguration(RedshiftServerlessAuthConfigurationProperty.builder()
                                 .type("type")
                                 // the properties below are optional
                                 .usernamePasswordSecretArn("usernamePasswordSecretArn")
                                 .build())
                         .workgroupArn("workgroupArn")
                         .build())
                 .build())
         .storageConfigurations(List.of(RedshiftQueryEngineStorageConfigurationProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .awsDataCatalogConfiguration(RedshiftQueryEngineAwsDataCatalogStorageConfigurationProperty.builder()
                         .tableNames(List.of("tableNames"))
                         .build())
                 .redshiftConfiguration(RedshiftQueryEngineRedshiftStorageConfigurationProperty.builder()
                         .databaseName("databaseName")
                         .build())
                 .build()))
         // the properties below are optional
         .queryGenerationConfiguration(QueryGenerationConfigurationProperty.builder()
                 .executionTimeoutSeconds(123)
                 .generationContext(QueryGenerationContextProperty.builder()
                         .curatedQueries(List.of(CuratedQueryProperty.builder()
                                 .naturalLanguage("naturalLanguage")
                                 .sql("sql")
                                 .build()))
                         .tables(List.of(QueryGenerationTableProperty.builder()
                                 .name("name")
                                 // the properties below are optional
                                 .columns(List.of(QueryGenerationColumnProperty.builder()
                                         .description("description")
                                         .inclusion("inclusion")
                                         .name("name")
                                         .build()))
                                 .description("description")
                                 .inclusion("inclusion")
                                 .build()))
                         .build())
                 .build())
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKnowledgeBase.RedshiftConfigurationPropertystatic final classAn implementation forCfnKnowledgeBase.RedshiftConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getQueryEngineConfigurationSpecifies configurations for an Amazon Redshift query engine.Returns union: either IResolvableorCfnKnowledgeBase.RedshiftQueryEngineConfigurationProperty- See Also:
 
- 
getStorageConfigurationsSpecifies configurations for Amazon Redshift database storage.Returns union: either IResolvableor Listinvalid input: '<'eitherIResolvableorCfnKnowledgeBase.RedshiftQueryEngineStorageConfigurationProperty>- See Also:
 
- 
getQueryGenerationConfigurationSpecifies configurations for generating queries.Returns union: either IResolvableorCfnKnowledgeBase.QueryGenerationConfigurationProperty- See Also:
 
- 
builder
 
-