Interface CfnBot.DescriptiveBotBuilderSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.DescriptiveBotBuilderSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.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.services.lex.*; DescriptiveBotBuilderSpecificationProperty descriptiveBotBuilderSpecificationProperty = DescriptiveBotBuilderSpecificationProperty.builder() .enabled(false) // the properties below are optional .bedrockModelSpecification(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 class
A builder forCfnBot.DescriptiveBotBuilderSpecificationProperty
static final class
An implementation forCfnBot.DescriptiveBotBuilderSpecificationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Specifies whether the descriptive bot building feature is activated or not.- See Also:
-
getBedrockModelSpecification
An object containing information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.- See Also:
-
builder
-