Class: Aws::QConnect::Types::AIPromptInferenceConfiguration

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

Overview

Note:

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

Note:

AIPromptInferenceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AIPromptInferenceConfiguration corresponding to the set member.

The configuration for inference parameters when using AI Prompts.

Direct Known Subclasses

TextAiPromptInferenceConfiguration, Unknown

Defined Under Namespace

Classes: TextAiPromptInferenceConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#text_ai_prompt_inference_configurationTypes::TextAIPromptInferenceConfiguration

The inference configuration for text-based AI Prompts.



705
706
707
708
709
710
711
712
713
714
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 705

class AIPromptInferenceConfiguration < Struct.new(
  :text_ai_prompt_inference_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class TextAiPromptInferenceConfiguration < AIPromptInferenceConfiguration; end
  class Unknown < AIPromptInferenceConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



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

def unknown
  @unknown
end