Interface CfnKnowledgeBase.QueryGenerationTableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.QueryGenerationTableProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.QueryGenerationTableProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a table for the query engine to consider.

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.*;
 QueryGenerationTableProperty queryGenerationTableProperty = 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();
 

See Also: