@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.829Z") @Stability(value=Stable) public interface CfnKnowledgeBaseProps extends software.amazon.jsii.JsiiSerializable
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.wisdom.*;
CfnKnowledgeBaseProps cfnKnowledgeBaseProps = CfnKnowledgeBaseProps.builder()
.knowledgeBaseType("knowledgeBaseType")
.name("name")
// the properties below are optional
.description("description")
.renderingConfiguration(RenderingConfigurationProperty.builder()
.templateUri("templateUri")
.build())
.serverSideEncryptionConfiguration(ServerSideEncryptionConfigurationProperty.builder()
.kmsKeyId("kmsKeyId")
.build())
.sourceConfiguration(SourceConfigurationProperty.builder()
.appIntegrations(AppIntegrationsConfigurationProperty.builder()
.appIntegrationArn("appIntegrationArn")
.objectFields(List.of("objectFields"))
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnKnowledgeBaseProps.Builder
A builder for
CfnKnowledgeBaseProps |
static class |
CfnKnowledgeBaseProps.Jsii$Proxy
An implementation for
CfnKnowledgeBaseProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnKnowledgeBaseProps.Builder |
builder() |
default String |
getDescription()
The description.
|
String |
getKnowledgeBaseType()
The type of knowledge base.
|
String |
getName()
The name of the knowledge base.
|
default Object |
getRenderingConfiguration()
Information about how to render the content.
|
default Object |
getServerSideEncryptionConfiguration()
The KMS key used for encryption.
|
default Object |
getSourceConfiguration()
The source of the knowledge base content.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
@Stability(value=Stable) @NotNull String getKnowledgeBaseType()
Only CUSTOM knowledge bases allow you to upload your own content. EXTERNAL knowledge bases support integrations with third-party systems whose content is synchronized automatically.
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getRenderingConfiguration()
@Stability(value=Stable) @Nullable default Object getServerSideEncryptionConfiguration()
@Stability(value=Stable) @Nullable default Object getSourceConfiguration()
Only set this argument for EXTERNAL knowledge bases.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnKnowledgeBaseProps.Builder builder()
CfnKnowledgeBaseProps.Builder of CfnKnowledgeBasePropsCopyright © 2022. All rights reserved.