Class: Aws::Kinesis::Types::PutRecordOutput

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

Overview

Represents the output for ‘PutRecord`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_typeString

The encryption type to use on the record. This parameter can be one of the following values:

  • ‘NONE`: Do not encrypt the records in the stream.

  • ‘KMS`: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.

Returns:

  • (String)


1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-kinesis/types.rb', line 1507

class PutRecordOutput < Struct.new(
  :shard_id,
  :sequence_number,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end

#sequence_numberString

The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.

Returns:

  • (String)


1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-kinesis/types.rb', line 1507

class PutRecordOutput < Struct.new(
  :shard_id,
  :sequence_number,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end

#shard_idString

The shard ID of the shard where the data record was placed.

Returns:

  • (String)


1507
1508
1509
1510
1511
1512
1513
# File 'lib/aws-sdk-kinesis/types.rb', line 1507

class PutRecordOutput < Struct.new(
  :shard_id,
  :sequence_number,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end