TextTemplateConfigurationProps
- class aws_cdk.aws_bedrock_alpha.TextTemplateConfigurationProps(*, text, input_variables=None)
Bases:
object
(experimental) Properties for creating a text template configuration.
- Parameters:
text (
str
) – (experimental) The text content of the template.input_variables (
Optional
[Sequence
[str
]]) – (experimental) The input variables for the template. Default: - No input variables
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_alpha as bedrock_alpha text_template_configuration_props = bedrock_alpha.TextTemplateConfigurationProps( text="text", # the properties below are optional input_variables=["inputVariables"] )
Attributes
- input_variables
(experimental) The input variables for the template.
- Default:
No input variables
- Stability:
experimental
- text
(experimental) The text content of the template.
- Stability:
experimental