Class: Aws::Firehose::Types::PutRecordInput

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 PutRecordInput data as a hash:

{
  delivery_stream_name: "DeliveryStreamName", # required
  record: { # required
    data: "data", # required
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_nameString

The name of the delivery stream.

Returns:

  • (String)


2640
2641
2642
2643
2644
# File 'lib/aws-sdk-firehose/types.rb', line 2640

class PutRecordInput < Struct.new(
  :delivery_stream_name,
  :record)
  include Aws::Structure
end

#recordTypes::Record

The record.

Returns:



2640
2641
2642
2643
2644
# File 'lib/aws-sdk-firehose/types.rb', line 2640

class PutRecordInput < Struct.new(
  :delivery_stream_name,
  :record)
  include Aws::Structure
end