Class: Aws::Firehose::Types::Record

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass Record data as a hash:

{
  data: "data", # required
}

The unit of data in a delivery stream.

Instance Attribute Summary collapse

Instance Attribute Details

#dataString

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.

Returns:

  • (String)


2680
2681
2682
2683
# File 'lib/aws-sdk-firehose/types.rb', line 2680

class Record < Struct.new(
  :data)
  include Aws::Structure
end