Class: Aws::QConnect::Types::AIPromptTemplateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::AIPromptTemplateConfiguration
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
AIPromptTemplateConfiguration is a union - when making an API calls you must set exactly one of the members.
AIPromptTemplateConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AIPromptTemplateConfiguration corresponding to the set member.
A typed union that specifies the configuration for a prompt template based on its type.
Direct Known Subclasses
Defined Under Namespace
Classes: TextFullAiPromptEditTemplateConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text_full_ai_prompt_edit_template_configuration ⇒ Types::TextFullAIPromptEditTemplateConfiguration
The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text_full_ai_prompt_edit_template_configuration ⇒ Types::TextFullAIPromptEditTemplateConfiguration
The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
704 705 706 707 708 709 710 711 712 713 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 704 class AIPromptTemplateConfiguration < Struct.new( :text_full_ai_prompt_edit_template_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TextFullAiPromptEditTemplateConfiguration < AIPromptTemplateConfiguration; end class Unknown < AIPromptTemplateConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
704 705 706 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 704 def unknown @unknown end |