Interface CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Contains specifications for the descriptive bot building 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.*;
DescriptiveBotBuilderSpecificationProperty descriptiveBotBuilderSpecificationProperty = DescriptiveBotBuilderSpecificationProperty.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.DescriptiveBotBuilderSpecificationProperty -
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 interpret the prompt used in descriptive bot building.Returns union: either
IResolvableorCfnBotPropsMixin.BedrockModelSpecificationProperty- See Also:
-
getEnabled
Specifies whether the descriptive bot building feature is activated or not.Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty.Builder builder()
-