Class: Aws::Firehose::Types::Record
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::Record
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
The unit of data in a Firehose stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ String
The data blob, which is base64-encoded when the blob is serialized.
Instance Attribute Details
#data ⇒ String
The data blob, which is base64-encoded when the blob is serialized. The maximum size of the data blob, before base64-encoding, is 1,000 KiB.
4140 4141 4142 4143 4144 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4140 class Record < Struct.new( :data) SENSITIVE = [] include Aws::Structure end |