Class: Aws::BedrockRuntime::Types::GuardrailImageSource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb

Overview

Note:

GuardrailImageSource is a union - when making an API calls you must set exactly one of the members.

The image source (image bytes) of the guardrail image source. Object used in independent api.

Direct Known Subclasses

Bytes, Unknown

Defined Under Namespace

Classes: Bytes, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bytesString

The bytes details of the guardrail image source. Object used in independent api.

Returns:

  • (String)


1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1869

class GuardrailImageSource < Struct.new(
  :bytes,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Bytes < GuardrailImageSource; end
  class Unknown < GuardrailImageSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1869
1870
1871
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1869

def unknown
  @unknown
end