Interface CfnBotPropsMixin.SlotResolutionImprovementSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.SlotResolutionImprovementSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.SlotResolutionImprovementSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Contains specifications for the assisted slot resolution feature.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.lex.*;
SlotResolutionImprovementSpecificationProperty slotResolutionImprovementSpecificationProperty = SlotResolutionImprovementSpecificationProperty.builder()
.bedrockModelSpecification(BedrockModelSpecificationProperty.builder()
.bedrockGuardrailConfiguration(BedrockGuardrailConfigurationProperty.builder()
.bedrockGuardrailIdentifier("bedrockGuardrailIdentifier")
.bedrockGuardrailVersion("bedrockGuardrailVersion")
.build())
.bedrockModelCustomPrompt("bedrockModelCustomPrompt")
.bedrockTraceStatus("bedrockTraceStatus")
.modelArn("modelArn")
.build())
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnBotPropsMixin.SlotResolutionImprovementSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBedrockModelSpecification
An object containing information about the Amazon Bedrock model used to assist slot resolution.Returns union: either
IResolvableorCfnBotPropsMixin.BedrockModelSpecificationProperty- See Also:
-
getEnabled
Specifies whether assisted slot resolution is turned on or off.Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnBotPropsMixin.SlotResolutionImprovementSpecificationProperty.Builder builder()
-