Class: Aws::BedrockAgent::Types::PromptInferenceConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::PromptInferenceConfiguration
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
    Note:
    
  
  PromptInferenceConfiguration is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
PromptInferenceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PromptInferenceConfiguration corresponding to the set member.
Contains inference configurations for the prompt.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #text  ⇒ Types::PromptModelInferenceConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains inference configurations for a text prompt.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#text ⇒ Types::PromptModelInferenceConfiguration
Contains inference configurations for a text prompt.
      5989 5990 5991 5992 5993 5994 5995 5996 5997 5998  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 5989 class PromptInferenceConfiguration < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < PromptInferenceConfiguration; end class Unknown < PromptInferenceConfiguration; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      5989 5990 5991  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 5989 def unknown @unknown end  |