Interface CfnBot.BedrockAgentIntentConfigurationProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnBot.BedrockAgentIntentConfigurationProperty.Jsii$Proxy
- Enclosing class:
 CfnBot
@Stability(Stable)
public static interface CfnBot.BedrockAgentIntentConfigurationProperty
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.*;
 BedrockAgentIntentConfigurationProperty bedrockAgentIntentConfigurationProperty = BedrockAgentIntentConfigurationProperty.builder()
         .bedrockAgentConfiguration(BedrockAgentConfigurationProperty.builder()
                 .bedrockAgentAliasId("bedrockAgentAliasId")
                 .bedrockAgentId("bedrockAgentId")
                 .build())
         .bedrockAgentIntentKnowledgeBaseConfiguration(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())
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.BedrockAgentIntentConfigurationPropertystatic final classAn implementation forCfnBot.BedrockAgentIntentConfigurationProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnBot.BedrockAgentConfigurationPropertydefault ObjectReturns union: eitherIResolvableorCfnBot.BedrockAgentIntentKnowledgeBaseConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getBedrockAgentConfiguration
Returns union: eitherIResolvableorCfnBot.BedrockAgentConfigurationProperty- See Also:
 
 - 
getBedrockAgentIntentKnowledgeBaseConfiguration
Returns union: eitherIResolvableorCfnBot.BedrockAgentIntentKnowledgeBaseConfigurationProperty- See Also:
 
 - 
builder
 
 -