Interface CfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty
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.lex.*;
BedrockAgentIntentKnowledgeBaseConfigurationProperty bedrockAgentIntentKnowledgeBaseConfigurationProperty = BedrockAgentIntentKnowledgeBaseConfigurationProperty.builder()
.bedrockKnowledgeBaseArn("bedrockKnowledgeBaseArn")
.bedrockModelConfiguration(BedrockModelSpecificationProperty.builder()
.modelArn("modelArn")
// the properties below are optional
.bedrockGuardrailConfiguration(BedrockGuardrailConfigurationProperty.builder()
.bedrockGuardrailIdentifier("bedrockGuardrailIdentifier")
.bedrockGuardrailVersion("bedrockGuardrailVersion")
.build())
.bedrockModelCustomPrompt("bedrockModelCustomPrompt")
.bedrockTraceStatus("bedrockTraceStatus")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableorCfnBot.BedrockModelSpecificationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBedrockKnowledgeBaseArn
- See Also:
-
getBedrockModelConfiguration
Returns union: eitherIResolvableorCfnBot.BedrockModelSpecificationProperty- See Also:
-
builder
@Stability(Stable) static CfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty.Builder builder()
-