Class: Aws::TimestreamWrite::Types::RejectedRecordsException

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

Overview

WriteRecords would throw this exception in the following cases:

  • Records with duplicate data where there are multiple records with the same dimensions, timestamps, and measure names but different measure values.

  • Records with timestamps that lie outside the retention duration of the memory store

  • Records with dimensions or measures that exceed the Timestream defined limits.

For more information, see [Access Management] in the Timestream Developer Guide.

[1]: docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

Returns:

  • (String)


718
719
720
721
722
723
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 718

class RejectedRecordsException < Struct.new(
  :message,
  :rejected_records)
  SENSITIVE = []
  include Aws::Structure
end

#rejected_recordsArray<Types::RejectedRecord>

Returns:



718
719
720
721
722
723
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 718

class RejectedRecordsException < Struct.new(
  :message,
  :rejected_records)
  SENSITIVE = []
  include Aws::Structure
end