Interface TextTemplateConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TextTemplateConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:17.959Z")
@Stability(Experimental)
public interface TextTemplateConfigurationProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for creating a text template configuration.
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.bedrock.alpha.*;
TextTemplateConfigurationProps textTemplateConfigurationProps = TextTemplateConfigurationProps.builder()
.text("text")
// the properties below are optional
.inputVariables(List.of("inputVariables"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTextTemplateConfigurationPropsstatic final classAn implementation forTextTemplateConfigurationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getText
(experimental) The text content of the template. -
getInputVariables
(experimental) The input variables for the template.Default: - No input variables
-
builder
-