Class: Aws::BedrockRuntime::Types::GuardrailConverseImageSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::GuardrailConverseImageSource
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
Note:
GuardrailConverseImageSource is a union - when making an API calls you must set exactly one of the members.
Note:
GuardrailConverseImageSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GuardrailConverseImageSource corresponding to the set member.
The image source (image bytes) of the guardrail converse image source.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes ⇒ String
The raw image bytes for the image.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#bytes ⇒ String
The raw image bytes for the image.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2392 class GuardrailConverseImageSource < Struct.new( :bytes, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Bytes < GuardrailConverseImageSource; end class Unknown < GuardrailConverseImageSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2392 2393 2394 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2392 def unknown @unknown end |