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.
5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5948 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
5948 5949 5950 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5948 def unknown @unknown end |