Interface TextTemplateConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TextTemplateConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-29T17:51:11.516Z")
@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 class
A builder forTextTemplateConfigurationProps
static final class
An 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
-