Class: Aws::Bedrock::Types::ByteContentDoc
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::ByteContentDoc
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Contains the document contained in the wrapper object, along with its attributes/fields.
Constant Summary collapse
- SENSITIVE =
[:identifier, :data]
Instance Attribute Summary collapse
-
#content_type ⇒ String
The MIME type of the document contained in the wrapper object.
-
#data ⇒ String
The byte value of the file to upload, encoded as a Base-64 string.
-
#identifier ⇒ String
The file name of the document contained in the wrapper object.
Instance Attribute Details
#content_type ⇒ String
The MIME type of the document contained in the wrapper object.
161 162 163 164 165 166 167 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 161 class ByteContentDoc < Struct.new( :identifier, :content_type, :data) SENSITIVE = [:identifier, :data] include Aws::Structure end |
#data ⇒ String
The byte value of the file to upload, encoded as a Base-64 string.
161 162 163 164 165 166 167 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 161 class ByteContentDoc < Struct.new( :identifier, :content_type, :data) SENSITIVE = [:identifier, :data] include Aws::Structure end |
#identifier ⇒ String
The file name of the document contained in the wrapper object.
161 162 163 164 165 166 167 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 161 class ByteContentDoc < Struct.new( :identifier, :content_type, :data) SENSITIVE = [:identifier, :data] include Aws::Structure end |