Class CfnKnowledgeBase

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.640Z") @Stability(Stable) public class CfnKnowledgeBase extends CfnResource implements IInspectable
A CloudFormation AWS::Wisdom::KnowledgeBase.

Specifies a knowledge base.

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.*;
 CfnKnowledgeBase cfnKnowledgeBase = CfnKnowledgeBase.Builder.create(this, "MyCfnKnowledgeBase")
         .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")
                         // the properties below are optional
                         .objectFields(List.of("objectFields"))
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnKnowledgeBase

      protected CfnKnowledgeBase(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnKnowledgeBase

      protected CfnKnowledgeBase(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnKnowledgeBase

      @Stability(Stable) public CfnKnowledgeBase(@NotNull Construct scope, @NotNull String id, @NotNull CfnKnowledgeBaseProps props)
      Create a new AWS::Wisdom::KnowledgeBase.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrKnowledgeBaseArn

      @Stability(Stable) @NotNull public String getAttrKnowledgeBaseArn()
      The Amazon Resource Name (ARN) of the knowledge base.
    • getAttrKnowledgeBaseId

      @Stability(Stable) @NotNull public String getAttrKnowledgeBaseId()
      The ID of the knowledge base.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      The tags used to organize, track, or control access for this resource.
    • getKnowledgeBaseType

      @Stability(Stable) @NotNull public String getKnowledgeBaseType()
      The type of knowledge base.

      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.

    • setKnowledgeBaseType

      @Stability(Stable) public void setKnowledgeBaseType(@NotNull String value)
      The type of knowledge base.

      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.

    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the knowledge base.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the knowledge base.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The description.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The description.
    • getRenderingConfiguration

      @Stability(Stable) @Nullable public Object getRenderingConfiguration()
      Information about how to render the content.
    • setRenderingConfiguration

      @Stability(Stable) public void setRenderingConfiguration(@Nullable IResolvable value)
      Information about how to render the content.
    • setRenderingConfiguration

      @Stability(Stable) public void setRenderingConfiguration(@Nullable CfnKnowledgeBase.RenderingConfigurationProperty value)
      Information about how to render the content.
    • getServerSideEncryptionConfiguration

      @Stability(Stable) @Nullable public Object getServerSideEncryptionConfiguration()
      The KMS key used for encryption.
    • setServerSideEncryptionConfiguration

      @Stability(Stable) public void setServerSideEncryptionConfiguration(@Nullable IResolvable value)
      The KMS key used for encryption.
    • setServerSideEncryptionConfiguration

      @Stability(Stable) public void setServerSideEncryptionConfiguration(@Nullable CfnKnowledgeBase.ServerSideEncryptionConfigurationProperty value)
      The KMS key used for encryption.
    • getSourceConfiguration

      @Stability(Stable) @Nullable public Object getSourceConfiguration()
      The source of the knowledge base content.

      Only set this argument for EXTERNAL knowledge bases.

    • setSourceConfiguration

      @Stability(Stable) public void setSourceConfiguration(@Nullable IResolvable value)
      The source of the knowledge base content.

      Only set this argument for EXTERNAL knowledge bases.

    • setSourceConfiguration

      @Stability(Stable) public void setSourceConfiguration(@Nullable CfnKnowledgeBase.SourceConfigurationProperty value)
      The source of the knowledge base content.

      Only set this argument for EXTERNAL knowledge bases.