Class: Aws::BedrockRuntime::Types::SystemContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::SystemContentBlock
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
Note:
SystemContentBlock is a union - when making an API calls you must set exactly one of the members.
A system content block
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text ⇒ String
A system prompt for the model.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text ⇒ String
A system prompt for the model.
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 1075 class SystemContentBlock < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < SystemContentBlock; end class Unknown < SystemContentBlock; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1075 1076 1077 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 1075 def unknown @unknown end |