Class: Aws::QConnect::Types::AIPromptInferenceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::AIPromptInferenceConfiguration
- 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
Defined Under Namespace
Classes: TextAiPromptInferenceConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text_ai_prompt_inference_configuration ⇒ Types::TextAIPromptInferenceConfiguration
The inference configuration for text-based AI Prompts.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text_ai_prompt_inference_configuration ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
705 706 707 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 705 def unknown @unknown end |