Class: Aws::QConnect::Types::AIPromptTemplateConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb

Overview

Note:

AIPromptTemplateConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Defined Under Namespace

Classes: TextFullAiPromptEditTemplateConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#text_full_ai_prompt_edit_template_configurationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



704
705
706
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 704

def unknown
  @unknown
end